@progress/kendo-theme-default 4.43.1-dev.3 → 4.43.1-dev.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -8
- package/dist/all.css +567 -591
- package/dist/all.scss +849 -899
- package/package.json +2 -2
- package/scss/appbar/_layout.scss +13 -0
- package/scss/autocomplete/_layout.scss +4 -4
- package/scss/button/_layout.scss +1 -7
- package/scss/checkbox/_index.scss +1 -0
- package/scss/checkbox/_layout.scss +2 -1
- package/scss/color-preview/_layout.scss +49 -7
- package/scss/color-preview/_theme.scss +0 -14
- package/scss/coloreditor/_layout.scss +5 -1
- package/scss/coloreditor/_variables.scss +3 -3
- package/scss/colorpicker/_layout.scss +6 -0
- package/scss/combobox/_layout.scss +22 -29
- package/scss/combobox/_theme.scss +59 -99
- package/scss/combobox/_variables.scss +1 -32
- package/scss/dropdowngrid/_layout.scss +1 -0
- package/scss/dropdownlist/_layout.scss +37 -55
- package/scss/dropdownlist/_theme.scss +33 -75
- package/scss/editor/_layout.scss +9 -16
- package/scss/fab/index.md +0 -0
- package/scss/forms/_layout.scss +0 -4
- package/scss/grid/_variables.scss +6 -6
- package/scss/imageeditor/_layout.scss +4 -8
- package/scss/imageeditor/_variables.scss +1 -0
- package/scss/input/_variables.scss +1 -1
- package/scss/list/_index.scss +1 -0
- package/scss/list/_layout.scss +15 -3
- package/scss/list/_variables.scss +4 -0
- package/scss/map/_layout.scss +4 -7
- package/scss/maskedtextbox/_layout.scss +17 -31
- package/scss/maskedtextbox/_theme.scss +44 -14
- package/scss/mediaplayer/_layout.scss +5 -0
- package/scss/radio/_index.scss +1 -0
- package/scss/radio/_layout.scss +2 -1
- package/scss/scheduler/_layout.scss +1 -1
- package/scss/spreadsheet/_layout.scss +4 -8
- package/scss/toolbar/_layout.scss +15 -0
package/dist/all.css
CHANGED
|
@@ -10467,6 +10467,272 @@ kendo-sortable {
|
|
|
10467
10467
|
background-color: #d9d9d9;
|
|
10468
10468
|
}
|
|
10469
10469
|
|
|
10470
|
+
.k-checkbox {
|
|
10471
|
+
border-radius: 2px;
|
|
10472
|
+
margin: 0;
|
|
10473
|
+
padding: 0;
|
|
10474
|
+
width: 16px;
|
|
10475
|
+
height: 16px;
|
|
10476
|
+
line-height: initial;
|
|
10477
|
+
border-width: 1px;
|
|
10478
|
+
border-style: solid;
|
|
10479
|
+
outline: 0;
|
|
10480
|
+
box-sizing: border-box;
|
|
10481
|
+
background-position: center;
|
|
10482
|
+
background-repeat: no-repeat;
|
|
10483
|
+
background-size: contain;
|
|
10484
|
+
display: inline-block;
|
|
10485
|
+
flex: none;
|
|
10486
|
+
vertical-align: middle;
|
|
10487
|
+
position: relative;
|
|
10488
|
+
cursor: pointer;
|
|
10489
|
+
-webkit-appearance: none;
|
|
10490
|
+
}
|
|
10491
|
+
|
|
10492
|
+
.k-checkbox::before {
|
|
10493
|
+
content: "";
|
|
10494
|
+
width: 12px;
|
|
10495
|
+
height: 12px;
|
|
10496
|
+
font-size: 12px;
|
|
10497
|
+
font-family: "WebComponentsIcons", monospace;
|
|
10498
|
+
line-height: 1;
|
|
10499
|
+
transform: scale(0) translate(-50%, -50%);
|
|
10500
|
+
overflow: hidden;
|
|
10501
|
+
position: absolute;
|
|
10502
|
+
top: 50%;
|
|
10503
|
+
left: 50%;
|
|
10504
|
+
}
|
|
10505
|
+
|
|
10506
|
+
.k-checkbox:checked::before,
|
|
10507
|
+
.k-checkbox.k-checked::before {
|
|
10508
|
+
transform: scale(1) translate(-50%, -50%);
|
|
10509
|
+
}
|
|
10510
|
+
|
|
10511
|
+
.k-checkbox:indeterminate::before,
|
|
10512
|
+
.k-checkbox.k-indeterminate::before,
|
|
10513
|
+
.k-checkbox.k-state-indeterminate::before {
|
|
10514
|
+
content: "";
|
|
10515
|
+
transform: scale(1) translate(-50%, -50%);
|
|
10516
|
+
}
|
|
10517
|
+
|
|
10518
|
+
.k-checkbox:disabled,
|
|
10519
|
+
.k-checkbox.k-disabled,
|
|
10520
|
+
.k-checkbox:disabled + .k-checkbox-label,
|
|
10521
|
+
.k-checkbox.k-disabled + .k-checkbox-label {
|
|
10522
|
+
outline: none;
|
|
10523
|
+
cursor: default;
|
|
10524
|
+
opacity: 0.6;
|
|
10525
|
+
filter: grayscale(0.1);
|
|
10526
|
+
pointer-events: none;
|
|
10527
|
+
box-shadow: none;
|
|
10528
|
+
}
|
|
10529
|
+
|
|
10530
|
+
.k-checkbox-label {
|
|
10531
|
+
margin: 0;
|
|
10532
|
+
padding: 0;
|
|
10533
|
+
line-height: 17px;
|
|
10534
|
+
display: inline-flex;
|
|
10535
|
+
align-items: flex-start;
|
|
10536
|
+
vertical-align: middle;
|
|
10537
|
+
position: relative;
|
|
10538
|
+
cursor: pointer;
|
|
10539
|
+
}
|
|
10540
|
+
|
|
10541
|
+
.k-checkbox-label .k-label {
|
|
10542
|
+
cursor: pointer;
|
|
10543
|
+
}
|
|
10544
|
+
|
|
10545
|
+
.k-checkbox-label .k-ripple {
|
|
10546
|
+
top: 8px;
|
|
10547
|
+
left: 8px;
|
|
10548
|
+
right: auto;
|
|
10549
|
+
bottom: auto;
|
|
10550
|
+
width: 40px;
|
|
10551
|
+
height: 40px;
|
|
10552
|
+
transform: translate(-50%, -50%);
|
|
10553
|
+
border-radius: 50%;
|
|
10554
|
+
visibility: hidden !important;
|
|
10555
|
+
}
|
|
10556
|
+
|
|
10557
|
+
.k-checkbox-label .k-ripple-blob {
|
|
10558
|
+
top: 50% !important;
|
|
10559
|
+
left: 50% !important;
|
|
10560
|
+
width: 200% !important;
|
|
10561
|
+
height: 200% !important;
|
|
10562
|
+
}
|
|
10563
|
+
|
|
10564
|
+
.k-checkbox + .k-checkbox-label {
|
|
10565
|
+
display: inline;
|
|
10566
|
+
}
|
|
10567
|
+
|
|
10568
|
+
.k-checkbox + .k-checkbox-label,
|
|
10569
|
+
.k-checkbox-label + .k-checkbox {
|
|
10570
|
+
margin-left: 4px;
|
|
10571
|
+
}
|
|
10572
|
+
|
|
10573
|
+
.k-checkbox-label > .k-checkbox {
|
|
10574
|
+
margin-right: 4px;
|
|
10575
|
+
flex-shrink: 0;
|
|
10576
|
+
}
|
|
10577
|
+
|
|
10578
|
+
kendo-label.k-checkbox-label > .k-checkbox:last-child {
|
|
10579
|
+
margin-right: 0;
|
|
10580
|
+
}
|
|
10581
|
+
|
|
10582
|
+
kendo-label.k-checkbox-label > .k-label:first-child {
|
|
10583
|
+
margin-right: 4px;
|
|
10584
|
+
}
|
|
10585
|
+
|
|
10586
|
+
kendo-label.k-checkbox-label > .k-label {
|
|
10587
|
+
display: inline;
|
|
10588
|
+
}
|
|
10589
|
+
|
|
10590
|
+
.k-checkbox-label:empty {
|
|
10591
|
+
display: none !important;
|
|
10592
|
+
}
|
|
10593
|
+
|
|
10594
|
+
.k-checkbox-label.k-no-text {
|
|
10595
|
+
min-width: 1px;
|
|
10596
|
+
}
|
|
10597
|
+
|
|
10598
|
+
.k-checkbox-list {
|
|
10599
|
+
margin: 0px;
|
|
10600
|
+
padding: 0px;
|
|
10601
|
+
list-style: none;
|
|
10602
|
+
}
|
|
10603
|
+
|
|
10604
|
+
.k-checkbox-list .k-checkbox-item {
|
|
10605
|
+
padding: 4px 0px;
|
|
10606
|
+
}
|
|
10607
|
+
|
|
10608
|
+
.k-list-horizontal .k-checkbox-item {
|
|
10609
|
+
display: inline-block;
|
|
10610
|
+
margin: 0 32px 0 0;
|
|
10611
|
+
}
|
|
10612
|
+
|
|
10613
|
+
.k-list-horizontal .k-checkbox-item:last-child {
|
|
10614
|
+
margin-right: 0;
|
|
10615
|
+
}
|
|
10616
|
+
|
|
10617
|
+
.k-rtl .k-checkbox + .k-checkbox-label,
|
|
10618
|
+
.k-rtl .k-checkbox-label + .k-checkbox,
|
|
10619
|
+
[dir="rtl"] .k-checkbox + .k-checkbox-label,
|
|
10620
|
+
[dir="rtl"] .k-checkbox-label + .k-checkbox {
|
|
10621
|
+
margin-left: 0;
|
|
10622
|
+
margin-right: 4px;
|
|
10623
|
+
}
|
|
10624
|
+
|
|
10625
|
+
.k-rtl .k-checkbox-label > .k-checkbox,
|
|
10626
|
+
[dir="rtl"] .k-checkbox-label > .k-checkbox {
|
|
10627
|
+
margin-right: 0;
|
|
10628
|
+
margin-left: 4px;
|
|
10629
|
+
}
|
|
10630
|
+
|
|
10631
|
+
.k-rtl kendo-label.k-checkbox-label > .k-checkbox:last-child,
|
|
10632
|
+
[dir="rtl"] kendo-label.k-checkbox-label > .k-checkbox:last-child {
|
|
10633
|
+
margin-left: 0;
|
|
10634
|
+
}
|
|
10635
|
+
|
|
10636
|
+
.k-rtl kendo-label.k-checkbox-label > .k-label:first-child,
|
|
10637
|
+
[dir="rtl"] kendo-label.k-checkbox-label > .k-label:first-child {
|
|
10638
|
+
margin-right: 0;
|
|
10639
|
+
margin-left: 4px;
|
|
10640
|
+
}
|
|
10641
|
+
|
|
10642
|
+
.k-rtl .k-list-horizontal .k-checkbox-item,
|
|
10643
|
+
[dir="rtl"] .k-list-horizontal .k-checkbox-item {
|
|
10644
|
+
margin-right: 0;
|
|
10645
|
+
margin-left: 32px;
|
|
10646
|
+
}
|
|
10647
|
+
|
|
10648
|
+
.k-rtl .k-list-horizontal .k-checkbox-item:last-child,
|
|
10649
|
+
[dir="rtl"] .k-list-horizontal .k-checkbox-item:last-child {
|
|
10650
|
+
margin-left: 0;
|
|
10651
|
+
}
|
|
10652
|
+
|
|
10653
|
+
.k-ripple-container .k-checkbox::after {
|
|
10654
|
+
content: "";
|
|
10655
|
+
display: block;
|
|
10656
|
+
position: absolute;
|
|
10657
|
+
left: 0;
|
|
10658
|
+
top: 0;
|
|
10659
|
+
width: 48px;
|
|
10660
|
+
height: 48px;
|
|
10661
|
+
margin-left: -18px;
|
|
10662
|
+
margin-top: -18px;
|
|
10663
|
+
border-radius: 100%;
|
|
10664
|
+
z-index: 1;
|
|
10665
|
+
transform: scale(0);
|
|
10666
|
+
}
|
|
10667
|
+
|
|
10668
|
+
.k-ripple-container .k-checkbox:disabled::after,
|
|
10669
|
+
.k-ripple-container .k-checkbox.k-disabled::after {
|
|
10670
|
+
display: none;
|
|
10671
|
+
}
|
|
10672
|
+
|
|
10673
|
+
.k-checkbox::-ms-check {
|
|
10674
|
+
border-width: 1px;
|
|
10675
|
+
border-color: inherit;
|
|
10676
|
+
color: inherit;
|
|
10677
|
+
background-color: inherit;
|
|
10678
|
+
}
|
|
10679
|
+
|
|
10680
|
+
.k-checkbox {
|
|
10681
|
+
border-color: rgba(0, 0, 0, 0.08);
|
|
10682
|
+
color: transparent;
|
|
10683
|
+
background-color: #ffffff;
|
|
10684
|
+
}
|
|
10685
|
+
|
|
10686
|
+
.k-checkbox:focus,
|
|
10687
|
+
.k-checkbox.k-state-focus {
|
|
10688
|
+
box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.06);
|
|
10689
|
+
}
|
|
10690
|
+
|
|
10691
|
+
.k-checkbox:indeterminate,
|
|
10692
|
+
.k-checkbox.k-state-indeterminate,
|
|
10693
|
+
.k-checkbox.k-indeterminate {
|
|
10694
|
+
border-color: rgba(0, 0, 0, 0.08);
|
|
10695
|
+
color: #ff6358;
|
|
10696
|
+
background-color: #ffffff;
|
|
10697
|
+
}
|
|
10698
|
+
|
|
10699
|
+
.k-checkbox:checked,
|
|
10700
|
+
.k-checkbox.k-checked {
|
|
10701
|
+
border-color: #ff6358;
|
|
10702
|
+
color: white;
|
|
10703
|
+
background-color: #ff6358;
|
|
10704
|
+
}
|
|
10705
|
+
|
|
10706
|
+
.k-checkbox:checked:focus,
|
|
10707
|
+
.k-checkbox.k-checked.k-state-focus {
|
|
10708
|
+
box-shadow: 0 0 0 2px rgba(255, 99, 88, 0.3);
|
|
10709
|
+
}
|
|
10710
|
+
|
|
10711
|
+
.k-checkbox.k-invalid,
|
|
10712
|
+
.k-checkbox.k-state-invalid,
|
|
10713
|
+
.k-checkbox.ng-invalid.ng-touched,
|
|
10714
|
+
.k-checkbox.ng-invalid.ng-dirty {
|
|
10715
|
+
border-color: rgba(243, 23, 0, 0.5);
|
|
10716
|
+
}
|
|
10717
|
+
|
|
10718
|
+
.k-checkbox.k-invalid + .k-checkbox-label,
|
|
10719
|
+
.k-checkbox.k-state-invalid + .k-checkbox-label,
|
|
10720
|
+
.k-checkbox.ng-invalid.ng-touched + .k-checkbox-label,
|
|
10721
|
+
.k-checkbox.ng-invalid.ng-dirty + .k-checkbox-label {
|
|
10722
|
+
color: #f31700;
|
|
10723
|
+
}
|
|
10724
|
+
|
|
10725
|
+
.k-ripple-container .k-checkbox::after {
|
|
10726
|
+
background: #ff6358;
|
|
10727
|
+
opacity: 0.3;
|
|
10728
|
+
}
|
|
10729
|
+
|
|
10730
|
+
.k-list,
|
|
10731
|
+
.k-list-container {
|
|
10732
|
+
font-size: 14px;
|
|
10733
|
+
line-height: 1.4285714286;
|
|
10734
|
+
}
|
|
10735
|
+
|
|
10470
10736
|
.k-list-scroller {
|
|
10471
10737
|
position: relative;
|
|
10472
10738
|
overflow: auto;
|
|
@@ -10523,7 +10789,7 @@ kendo-list > .k-group-header,
|
|
|
10523
10789
|
.k-list-optionlabel {
|
|
10524
10790
|
padding: 4px 8px;
|
|
10525
10791
|
min-height: 1.4285714286em;
|
|
10526
|
-
line-height: 1.
|
|
10792
|
+
line-height: 1.4285714286;
|
|
10527
10793
|
white-space: normal;
|
|
10528
10794
|
display: flex;
|
|
10529
10795
|
align-items: center;
|
|
@@ -10537,6 +10803,12 @@ kendo-list > .k-group-header,
|
|
|
10537
10803
|
outline: none;
|
|
10538
10804
|
}
|
|
10539
10805
|
|
|
10806
|
+
.k-list__item .k-checkbox, .k-list .k-item .k-checkbox, .k-list-optionlabel .k-checkbox {
|
|
10807
|
+
margin-top: calc(0.7142857143em - 8px);
|
|
10808
|
+
font-size: inherit;
|
|
10809
|
+
align-self: flex-start;
|
|
10810
|
+
}
|
|
10811
|
+
|
|
10540
10812
|
.k-list__item.k-first::before, .k-list .k-first.k-item::before,
|
|
10541
10813
|
.k-first.k-list-optionlabel::before {
|
|
10542
10814
|
content: "";
|
|
@@ -11303,7 +11575,7 @@ kendo-list > .k-group-header,
|
|
|
11303
11575
|
.k-textbox-container,
|
|
11304
11576
|
.k-floating-label-container {
|
|
11305
11577
|
padding-top: 20.0000000004px;
|
|
11306
|
-
width:
|
|
11578
|
+
width: 200px;
|
|
11307
11579
|
display: inline-flex;
|
|
11308
11580
|
vertical-align: middle;
|
|
11309
11581
|
position: relative;
|
|
@@ -11401,117 +11673,91 @@ kendo-list > .k-group-header,
|
|
|
11401
11673
|
}
|
|
11402
11674
|
|
|
11403
11675
|
.k-combobox {
|
|
11404
|
-
|
|
11405
|
-
|
|
11676
|
+
border-radius: 2px;
|
|
11677
|
+
width: 200px;
|
|
11678
|
+
border-width: 1px;
|
|
11679
|
+
border-style: solid;
|
|
11406
11680
|
box-sizing: border-box;
|
|
11407
11681
|
outline: 0;
|
|
11408
|
-
background: none;
|
|
11409
11682
|
font-family: inherit;
|
|
11410
11683
|
font-size: 14px;
|
|
11411
11684
|
line-height: 1.4285714286;
|
|
11412
|
-
text-align:
|
|
11685
|
+
text-align: start;
|
|
11413
11686
|
white-space: nowrap;
|
|
11414
11687
|
display: inline-flex;
|
|
11688
|
+
flex-flow: row nowrap;
|
|
11415
11689
|
vertical-align: middle;
|
|
11416
11690
|
position: relative;
|
|
11691
|
+
overflow: hidden;
|
|
11692
|
+
transition: all .1s ease;
|
|
11417
11693
|
-webkit-touch-callout: none;
|
|
11418
11694
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
11419
11695
|
}
|
|
11420
11696
|
|
|
11421
|
-
.k-combobox .k-
|
|
11422
|
-
|
|
11423
|
-
|
|
11424
|
-
width: 100%;
|
|
11425
|
-
border-width: 1px;
|
|
11426
|
-
border-style: solid;
|
|
11427
|
-
box-sizing: border-box;
|
|
11428
|
-
position: relative;
|
|
11429
|
-
display: flex;
|
|
11430
|
-
flex-flow: row nowrap;
|
|
11431
|
-
transition: all .1s ease;
|
|
11432
|
-
outline: 0;
|
|
11433
|
-
cursor: initial;
|
|
11434
|
-
overflow: hidden;
|
|
11697
|
+
.k-combobox .k-i-loading {
|
|
11698
|
+
width: 24px;
|
|
11699
|
+
height: 28px;
|
|
11435
11700
|
}
|
|
11436
11701
|
|
|
11437
11702
|
.k-combobox .k-select {
|
|
11438
|
-
padding:
|
|
11703
|
+
padding: 4px 4px;
|
|
11439
11704
|
width: calc(1.4285714286em + 8px);
|
|
11440
11705
|
border-width: 0;
|
|
11441
11706
|
border-inline-start-width: 0px;
|
|
11442
|
-
box-sizing: border-box;
|
|
11443
11707
|
border-style: solid;
|
|
11708
|
+
box-sizing: border-box;
|
|
11709
|
+
outline: 0;
|
|
11444
11710
|
display: flex;
|
|
11711
|
+
flex-flow: row nowrap;
|
|
11445
11712
|
align-items: center;
|
|
11446
11713
|
justify-content: center;
|
|
11447
11714
|
flex: 0 0 auto;
|
|
11448
|
-
text-align: center;
|
|
11449
11715
|
cursor: pointer;
|
|
11450
11716
|
}
|
|
11451
11717
|
|
|
11452
|
-
.k-combobox
|
|
11453
|
-
.k-rtl .k-combobox {
|
|
11454
|
-
text-align: right;
|
|
11455
|
-
}
|
|
11456
|
-
|
|
11457
|
-
.k-combobox .k-dropdown-wrap {
|
|
11718
|
+
.k-combobox {
|
|
11458
11719
|
border-color: rgba(0, 0, 0, 0.08);
|
|
11459
11720
|
color: #424242;
|
|
11460
11721
|
background-color: #ffffff;
|
|
11461
11722
|
}
|
|
11462
11723
|
|
|
11463
|
-
.k-combobox
|
|
11464
|
-
border-color: rgba(243, 23, 0, 0.5);
|
|
11465
|
-
}
|
|
11466
|
-
|
|
11467
|
-
.k-combobox .k-dropdown-wrap.k-invalid .k-input-validation-icon, .k-combobox .k-dropdown-wrap.k-invalid:hover .k-input-validation-icon, .k-combobox .k-dropdown-wrap.k-state-invalid .k-input-validation-icon {
|
|
11468
|
-
color: #f31700;
|
|
11469
|
-
}
|
|
11470
|
-
|
|
11471
|
-
.k-combobox .k-select {
|
|
11472
|
-
border-color: rgba(0, 0, 0, 0.08);
|
|
11473
|
-
color: #424242;
|
|
11474
|
-
background-color: #f5f5f5;
|
|
11475
|
-
background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.02));
|
|
11476
|
-
}
|
|
11477
|
-
|
|
11478
|
-
.k-combobox > :hover,
|
|
11479
|
-
.k-combobox .k-state-hover {
|
|
11724
|
+
.k-combobox:hover, .k-combobox.k-state-hover {
|
|
11480
11725
|
border-color: rgba(0, 0, 0, 0.16);
|
|
11481
11726
|
}
|
|
11482
11727
|
|
|
11483
|
-
.k-combobox .k-
|
|
11484
|
-
|
|
11728
|
+
.k-combobox:focus, .k-combobox.k-state-focus {
|
|
11729
|
+
border-color: rgba(0, 0, 0, 0.16);
|
|
11730
|
+
box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08);
|
|
11485
11731
|
}
|
|
11486
11732
|
|
|
11487
|
-
.k-combobox
|
|
11733
|
+
.k-combobox:focus-within {
|
|
11488
11734
|
border-color: rgba(0, 0, 0, 0.16);
|
|
11489
11735
|
box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08);
|
|
11490
11736
|
}
|
|
11491
11737
|
|
|
11492
|
-
.k-combobox.k-
|
|
11738
|
+
.k-combobox.k-invalid, .k-combobox.ng-invalid, .k-combobox.k-state-invalid {
|
|
11493
11739
|
border-color: rgba(243, 23, 0, 0.5);
|
|
11494
11740
|
}
|
|
11495
11741
|
|
|
11496
|
-
.k-combobox.k-
|
|
11742
|
+
.k-combobox.k-invalid .k-input-validation-icon, .k-combobox.ng-invalid .k-input-validation-icon, .k-combobox.k-state-invalid .k-input-validation-icon {
|
|
11497
11743
|
color: #f31700;
|
|
11498
11744
|
}
|
|
11499
11745
|
|
|
11500
|
-
.k-combobox
|
|
11501
|
-
border-color: rgba(0, 0, 0, 0.
|
|
11502
|
-
|
|
11503
|
-
|
|
11504
|
-
|
|
11505
|
-
border-color: rgba(0, 0, 0, 0.16);
|
|
11506
|
-
box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08);
|
|
11746
|
+
.k-combobox .k-select {
|
|
11747
|
+
border-color: rgba(0, 0, 0, 0.08);
|
|
11748
|
+
color: #424242;
|
|
11749
|
+
background-color: #f5f5f5;
|
|
11750
|
+
background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.02));
|
|
11507
11751
|
}
|
|
11508
11752
|
|
|
11509
|
-
.k-combobox
|
|
11510
|
-
|
|
11753
|
+
.k-combobox .k-select:hover,
|
|
11754
|
+
.k-combobox .k-select.k-state-hover {
|
|
11755
|
+
background-color: #ebebeb;
|
|
11511
11756
|
}
|
|
11512
11757
|
|
|
11513
|
-
.k-combobox
|
|
11514
|
-
|
|
11758
|
+
.k-combobox .k-select:active,
|
|
11759
|
+
.k-combobox .k-select.k-state-active {
|
|
11760
|
+
background-color: #d8d8d8;
|
|
11515
11761
|
}
|
|
11516
11762
|
|
|
11517
11763
|
.k-table {
|
|
@@ -12658,6 +12904,7 @@ kendo-badge-container {
|
|
|
12658
12904
|
.k-color-preview {
|
|
12659
12905
|
border-width: 1px;
|
|
12660
12906
|
border-radius: 2px;
|
|
12907
|
+
box-sizing: border-box;
|
|
12661
12908
|
border-style: solid;
|
|
12662
12909
|
display: inline-flex;
|
|
12663
12910
|
flex-direction: row;
|
|
@@ -12666,17 +12913,50 @@ kendo-badge-container {
|
|
|
12666
12913
|
overflow: hidden;
|
|
12667
12914
|
}
|
|
12668
12915
|
|
|
12669
|
-
.k-color
|
|
12670
|
-
|
|
12916
|
+
.k-coloreditor-current-color {
|
|
12917
|
+
cursor: pointer;
|
|
12918
|
+
}
|
|
12919
|
+
|
|
12920
|
+
.k-icon-color-preview {
|
|
12921
|
+
border-width: 0;
|
|
12922
|
+
border-radius: 0;
|
|
12923
|
+
display: flex;
|
|
12924
|
+
flex-flow: column nowrap;
|
|
12925
|
+
align-items: center;
|
|
12926
|
+
justify-content: center;
|
|
12927
|
+
gap: 2px;
|
|
12928
|
+
}
|
|
12929
|
+
|
|
12930
|
+
.k-icon-color-preview .k-color-preview-mask {
|
|
12931
|
+
width: 14px;
|
|
12932
|
+
height: 2px;
|
|
12933
|
+
}
|
|
12934
|
+
|
|
12935
|
+
.k-color-preview-mask {
|
|
12671
12936
|
width: 100%;
|
|
12672
12937
|
height: 100%;
|
|
12673
|
-
display: block;
|
|
12674
12938
|
position: relative;
|
|
12939
|
+
}
|
|
12940
|
+
|
|
12941
|
+
.k-color-preview-mask::before {
|
|
12942
|
+
content: "";
|
|
12943
|
+
width: 100%;
|
|
12944
|
+
height: 100%;
|
|
12945
|
+
position: absolute;
|
|
12946
|
+
top: 0;
|
|
12947
|
+
left: 0;
|
|
12675
12948
|
z-index: -1;
|
|
12949
|
+
background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAuSURBVHgBxYyxDQAwDMJIL+YT+DjtzFRliUfLcklqBCRT4eCTxbD6kdL2/LgYXqpvCbs3kBv/AAAAAElFTkSuQmCC");
|
|
12950
|
+
background-size: contain;
|
|
12951
|
+
background-position: 0 0;
|
|
12676
12952
|
}
|
|
12677
12953
|
|
|
12678
|
-
.k-
|
|
12679
|
-
|
|
12954
|
+
.k-no-color .k-color-preview-mask::before {
|
|
12955
|
+
content: "";
|
|
12956
|
+
background-color: #ffffff;
|
|
12957
|
+
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' version='1.1'%3e%3cline x1='0' x2='20' y1='0' y2='20' stroke='%23f31700' stroke-width='1'/%3e%3c/svg%3e");
|
|
12958
|
+
background-size: 100% 100%;
|
|
12959
|
+
background-position: 0 0;
|
|
12680
12960
|
}
|
|
12681
12961
|
|
|
12682
12962
|
.k-no-color::before {
|
|
@@ -12692,23 +12972,10 @@ kendo-badge-container {
|
|
|
12692
12972
|
border-color: rgba(0, 0, 0, 0.08);
|
|
12693
12973
|
}
|
|
12694
12974
|
|
|
12695
|
-
.k-color-preview::before {
|
|
12696
|
-
background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAuSURBVHgBxYyxDQAwDMJIL+YT+DjtzFRliUfLcklqBCRT4eCTxbD6kdL2/LgYXqpvCbs3kBv/AAAAAElFTkSuQmCC");
|
|
12697
|
-
background-size: contain;
|
|
12698
|
-
background-position: 0;
|
|
12699
|
-
}
|
|
12700
|
-
|
|
12701
12975
|
.k-color-preview:hover, .k-color-preview.k-state-hover, .k-color-preview.k-hover {
|
|
12702
12976
|
border-color: rgba(0, 0, 0, 0.08);
|
|
12703
12977
|
}
|
|
12704
12978
|
|
|
12705
|
-
.k-no-color::before {
|
|
12706
|
-
background-color: #ffffff;
|
|
12707
|
-
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' version='1.1'%3e%3cline x1='0' x2='20' y1='0' y2='20' stroke='%23f31700' stroke-width='1'/%3e%3c/svg%3e");
|
|
12708
|
-
background-size: 100% 100%;
|
|
12709
|
-
background-position: 0 0;
|
|
12710
|
-
}
|
|
12711
|
-
|
|
12712
12979
|
.k-loader {
|
|
12713
12980
|
position: relative;
|
|
12714
12981
|
display: inline-block;
|
|
@@ -13522,7 +13789,7 @@ kendo-badge-container {
|
|
|
13522
13789
|
}
|
|
13523
13790
|
|
|
13524
13791
|
.k-button::after {
|
|
13525
|
-
border-radius:
|
|
13792
|
+
border-radius: inherit;
|
|
13526
13793
|
content: "";
|
|
13527
13794
|
opacity: 0;
|
|
13528
13795
|
display: none;
|
|
@@ -13536,12 +13803,6 @@ kendo-badge-container {
|
|
|
13536
13803
|
transition: opacity .2s ease-in-out;
|
|
13537
13804
|
}
|
|
13538
13805
|
|
|
13539
|
-
.k-ie .k-button,
|
|
13540
|
-
.k-ie .k-button-group {
|
|
13541
|
-
display: inline-block;
|
|
13542
|
-
overflow: visible;
|
|
13543
|
-
}
|
|
13544
|
-
|
|
13545
13806
|
.k-ie .k-button-icontext .k-icon,
|
|
13546
13807
|
.k-ie .k-button-icontext .k-image,
|
|
13547
13808
|
.k-ie .k-button-icontext .k-sprite {
|
|
@@ -13824,6 +14085,18 @@ kendo-badge-container {
|
|
|
13824
14085
|
align-items: center;
|
|
13825
14086
|
}
|
|
13826
14087
|
|
|
14088
|
+
.k-toolbar .k-textbox,
|
|
14089
|
+
.k-toolbar .k-combobox,
|
|
14090
|
+
.k-toolbar .k-dropdown,
|
|
14091
|
+
.k-toolbar .k-dropdowntree,
|
|
14092
|
+
.k-toolbar .k-searchbox,
|
|
14093
|
+
.k-toolbar .k-numerictextbox,
|
|
14094
|
+
.k-toolbar .k-datepicker,
|
|
14095
|
+
.k-toolbar .k-timepicker,
|
|
14096
|
+
.k-toolbar .k-datetimepicker {
|
|
14097
|
+
width: 10em;
|
|
14098
|
+
}
|
|
14099
|
+
|
|
13827
14100
|
.k-toolbar-group {
|
|
13828
14101
|
display: flex;
|
|
13829
14102
|
flex-direction: inherit;
|
|
@@ -13832,6 +14105,7 @@ kendo-badge-container {
|
|
|
13832
14105
|
}
|
|
13833
14106
|
|
|
13834
14107
|
kendo-toolbar-renderer {
|
|
14108
|
+
display: inline-block;
|
|
13835
14109
|
border-color: inherit;
|
|
13836
14110
|
}
|
|
13837
14111
|
|
|
@@ -14133,10 +14407,6 @@ kendo-label > .k-label {
|
|
|
14133
14407
|
width: 100%;
|
|
14134
14408
|
}
|
|
14135
14409
|
|
|
14136
|
-
.k-form .k-editor .k-dropdown, .k-form .k-editor .k-dropdowntree {
|
|
14137
|
-
width: 12.4em;
|
|
14138
|
-
}
|
|
14139
|
-
|
|
14140
14410
|
.k-form-buttons {
|
|
14141
14411
|
margin-top: 2em;
|
|
14142
14412
|
padding: 0;
|
|
@@ -14563,7 +14833,7 @@ kendo-label > .k-label {
|
|
|
14563
14833
|
border-radius: 2px;
|
|
14564
14834
|
margin: 0;
|
|
14565
14835
|
padding: 0;
|
|
14566
|
-
width:
|
|
14836
|
+
width: 200px;
|
|
14567
14837
|
height: calc(1.4285714286em + 10px);
|
|
14568
14838
|
border-width: 1px;
|
|
14569
14839
|
border-style: solid;
|
|
@@ -14611,120 +14881,15 @@ kendo-label > .k-label {
|
|
|
14611
14881
|
border: 0;
|
|
14612
14882
|
}
|
|
14613
14883
|
|
|
14614
|
-
.k-textbox .k-textbox-separator {
|
|
14615
|
-
margin: 0;
|
|
14616
|
-
width: 0;
|
|
14617
|
-
height: 16px;
|
|
14618
|
-
border-width: 0 0 0 1px;
|
|
14619
|
-
border-style: solid;
|
|
14620
|
-
}
|
|
14621
|
-
|
|
14622
|
-
.k-textbox:disabled, .k-textbox[disabled], .k-textbox.k-state-disabled {
|
|
14623
|
-
outline: none;
|
|
14624
|
-
cursor: default;
|
|
14625
|
-
opacity: 0.6;
|
|
14626
|
-
filter: grayscale(0.1);
|
|
14627
|
-
pointer-events: none;
|
|
14628
|
-
box-shadow: none;
|
|
14629
|
-
}
|
|
14630
|
-
|
|
14631
|
-
.k-textbox:disabled::selection, .k-textbox[disabled]::selection, .k-textbox.k-state-disabled::selection {
|
|
14632
|
-
color: #424242;
|
|
14633
|
-
background-color: transparent;
|
|
14634
|
-
}
|
|
14635
|
-
|
|
14636
|
-
input.k-textbox {
|
|
14637
|
-
padding: 4px 8px;
|
|
14638
|
-
}
|
|
14639
|
-
|
|
14640
|
-
.k-textbox {
|
|
14641
|
-
border-color: rgba(0, 0, 0, 0.08);
|
|
14642
|
-
color: #424242;
|
|
14643
|
-
background-color: #ffffff;
|
|
14644
|
-
}
|
|
14645
|
-
|
|
14646
|
-
.k-textbox::selection,
|
|
14647
|
-
.k-textbox .k-input::selection {
|
|
14648
|
-
color: white;
|
|
14649
|
-
background-color: #ff6358;
|
|
14650
|
-
}
|
|
14651
|
-
|
|
14652
|
-
.k-textbox .k-textbox-separator {
|
|
14653
|
-
border-color: #424242;
|
|
14654
|
-
opacity: 0.5;
|
|
14655
|
-
}
|
|
14656
|
-
|
|
14657
|
-
.k-textbox:focus, .k-textbox.k-state-focus, .k-textbox.k-state-focused {
|
|
14658
|
-
border-color: rgba(0, 0, 0, 0.16);
|
|
14659
|
-
box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08);
|
|
14660
|
-
}
|
|
14661
|
-
|
|
14662
|
-
.k-textbox:focus-within {
|
|
14663
|
-
border-color: rgba(0, 0, 0, 0.16);
|
|
14664
|
-
box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08);
|
|
14665
|
-
}
|
|
14666
|
-
|
|
14667
|
-
.k-textbox:hover, .k-textbox.k-state-hover {
|
|
14668
|
-
border-color: rgba(0, 0, 0, 0.16);
|
|
14669
|
-
}
|
|
14670
|
-
|
|
14671
|
-
.k-textbox.k-invalid, .k-textbox.k-state-invalid, .k-textbox.ng-invalid.ng-touched, .k-textbox.ng-invalid.ng-dirty {
|
|
14672
|
-
border-color: rgba(243, 23, 0, 0.5);
|
|
14673
|
-
}
|
|
14674
|
-
|
|
14675
|
-
.k-textbox.k-invalid .k-input-validation-icon, .k-textbox.k-state-invalid .k-input-validation-icon, .k-textbox.ng-invalid.ng-touched .k-input-validation-icon, .k-textbox.ng-invalid.ng-dirty .k-input-validation-icon {
|
|
14676
|
-
color: #f31700;
|
|
14677
|
-
}
|
|
14678
|
-
|
|
14679
|
-
.k-textarea {
|
|
14680
|
-
border-radius: 2px;
|
|
14681
|
-
margin: 0;
|
|
14682
|
-
padding: 0;
|
|
14683
|
-
width: 18em;
|
|
14684
|
-
border-width: 1px;
|
|
14685
|
-
border-style: solid;
|
|
14686
|
-
outline: 0;
|
|
14687
|
-
font-family: inherit;
|
|
14688
|
-
font-size: 14px;
|
|
14689
|
-
line-height: 1.4285714286;
|
|
14690
|
-
box-sizing: border-box;
|
|
14691
|
-
box-shadow: none;
|
|
14692
|
-
background: none;
|
|
14693
|
-
display: inline-flex;
|
|
14694
|
-
flex-wrap: nowrap;
|
|
14695
|
-
vertical-align: middle;
|
|
14696
|
-
position: relative;
|
|
14697
|
-
-webkit-appearance: none;
|
|
14698
|
-
}
|
|
14699
|
-
|
|
14700
|
-
.k-textarea::-ms-clear {
|
|
14701
|
-
display: none;
|
|
14702
|
-
}
|
|
14703
|
-
|
|
14704
|
-
.k-textarea:-ms-input-placeholder {
|
|
14705
|
-
color: #666666;
|
|
14706
|
-
opacity: 1;
|
|
14707
|
-
-ms-user-select: none;
|
|
14708
|
-
user-select: none;
|
|
14709
|
-
}
|
|
14710
|
-
|
|
14711
|
-
.k-textarea::placeholder {
|
|
14712
|
-
color: #666666;
|
|
14713
|
-
opacity: 1;
|
|
14714
|
-
-webkit-user-select: none;
|
|
14715
|
-
-ms-user-select: none;
|
|
14716
|
-
user-select: none;
|
|
14717
|
-
}
|
|
14718
|
-
|
|
14719
|
-
.k-textarea > .k-input {
|
|
14720
|
-
padding: 4px 8px;
|
|
14721
|
-
height: auto;
|
|
14722
|
-
min-height: calc(1.4285714286em + 10px);
|
|
14723
|
-
overflow-y: auto;
|
|
14724
|
-
resize: vertical;
|
|
14884
|
+
.k-textbox .k-textbox-separator {
|
|
14885
|
+
margin: 0;
|
|
14886
|
+
width: 0;
|
|
14887
|
+
height: 16px;
|
|
14888
|
+
border-width: 0 0 0 1px;
|
|
14889
|
+
border-style: solid;
|
|
14725
14890
|
}
|
|
14726
14891
|
|
|
14727
|
-
.k-
|
|
14892
|
+
.k-textbox:disabled, .k-textbox[disabled], .k-textbox.k-state-disabled {
|
|
14728
14893
|
outline: none;
|
|
14729
14894
|
cursor: default;
|
|
14730
14895
|
opacity: 0.6;
|
|
@@ -14733,323 +14898,169 @@ input.k-textbox {
|
|
|
14733
14898
|
box-shadow: none;
|
|
14734
14899
|
}
|
|
14735
14900
|
|
|
14736
|
-
.k-
|
|
14901
|
+
.k-textbox:disabled::selection, .k-textbox[disabled]::selection, .k-textbox.k-state-disabled::selection {
|
|
14737
14902
|
color: #424242;
|
|
14738
14903
|
background-color: transparent;
|
|
14739
14904
|
}
|
|
14740
14905
|
|
|
14741
|
-
.k-
|
|
14742
|
-
flex-shrink: 0;
|
|
14743
|
-
}
|
|
14744
|
-
|
|
14745
|
-
textarea.k-textarea {
|
|
14906
|
+
input.k-textbox {
|
|
14746
14907
|
padding: 4px 8px;
|
|
14747
|
-
min-height: calc(1.4285714286em + 10px);
|
|
14748
|
-
display: inline-block;
|
|
14749
|
-
resize: both;
|
|
14750
|
-
}
|
|
14751
|
-
|
|
14752
|
-
.k-textbox-container > .k-textarea,
|
|
14753
|
-
.k-floating-label-container > .k-textarea {
|
|
14754
|
-
flex: 1 1 auto;
|
|
14755
|
-
width: 100%;
|
|
14756
|
-
}
|
|
14757
|
-
|
|
14758
|
-
.k-ie .k-textarea :-ms-input-placeholder, .k-ie .k-textarea:-ms-input-placeholder {
|
|
14759
|
-
color: #666666;
|
|
14760
14908
|
}
|
|
14761
14909
|
|
|
14762
|
-
.k-
|
|
14910
|
+
.k-textbox {
|
|
14763
14911
|
border-color: rgba(0, 0, 0, 0.08);
|
|
14764
14912
|
color: #424242;
|
|
14765
14913
|
background-color: #ffffff;
|
|
14766
14914
|
}
|
|
14767
14915
|
|
|
14768
|
-
.k-
|
|
14769
|
-
.k-
|
|
14916
|
+
.k-textbox::selection,
|
|
14917
|
+
.k-textbox .k-input::selection {
|
|
14770
14918
|
color: white;
|
|
14771
14919
|
background-color: #ff6358;
|
|
14772
14920
|
}
|
|
14773
14921
|
|
|
14774
|
-
.k-
|
|
14775
|
-
border-color:
|
|
14922
|
+
.k-textbox .k-textbox-separator {
|
|
14923
|
+
border-color: #424242;
|
|
14924
|
+
opacity: 0.5;
|
|
14776
14925
|
}
|
|
14777
14926
|
|
|
14778
|
-
.k-
|
|
14927
|
+
.k-textbox:focus, .k-textbox.k-state-focus, .k-textbox.k-state-focused {
|
|
14779
14928
|
border-color: rgba(0, 0, 0, 0.16);
|
|
14780
14929
|
box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08);
|
|
14781
14930
|
}
|
|
14782
14931
|
|
|
14783
|
-
.k-
|
|
14932
|
+
.k-textbox:focus-within {
|
|
14784
14933
|
border-color: rgba(0, 0, 0, 0.16);
|
|
14785
14934
|
box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08);
|
|
14786
14935
|
}
|
|
14787
14936
|
|
|
14788
|
-
.k-
|
|
14937
|
+
.k-textbox:hover, .k-textbox.k-state-hover {
|
|
14938
|
+
border-color: rgba(0, 0, 0, 0.16);
|
|
14939
|
+
}
|
|
14940
|
+
|
|
14941
|
+
.k-textbox.k-invalid, .k-textbox.k-state-invalid, .k-textbox.ng-invalid.ng-touched, .k-textbox.ng-invalid.ng-dirty {
|
|
14789
14942
|
border-color: rgba(243, 23, 0, 0.5);
|
|
14790
14943
|
}
|
|
14791
14944
|
|
|
14792
|
-
.k-
|
|
14945
|
+
.k-textbox.k-invalid .k-input-validation-icon, .k-textbox.k-state-invalid .k-input-validation-icon, .k-textbox.ng-invalid.ng-touched .k-input-validation-icon, .k-textbox.ng-invalid.ng-dirty .k-input-validation-icon {
|
|
14793
14946
|
color: #f31700;
|
|
14794
14947
|
}
|
|
14795
14948
|
|
|
14796
|
-
.k-
|
|
14949
|
+
.k-textarea {
|
|
14797
14950
|
border-radius: 2px;
|
|
14798
14951
|
margin: 0;
|
|
14799
14952
|
padding: 0;
|
|
14800
|
-
width:
|
|
14801
|
-
height: 16px;
|
|
14802
|
-
line-height: initial;
|
|
14953
|
+
width: 18em;
|
|
14803
14954
|
border-width: 1px;
|
|
14804
14955
|
border-style: solid;
|
|
14805
14956
|
outline: 0;
|
|
14957
|
+
font-family: inherit;
|
|
14958
|
+
font-size: 14px;
|
|
14959
|
+
line-height: 1.4285714286;
|
|
14806
14960
|
box-sizing: border-box;
|
|
14807
|
-
background-position: center;
|
|
14808
|
-
background-repeat: no-repeat;
|
|
14809
|
-
background-size: contain;
|
|
14810
|
-
display: inline-block;
|
|
14811
|
-
vertical-align: middle;
|
|
14812
|
-
position: relative;
|
|
14813
|
-
cursor: pointer;
|
|
14814
|
-
-webkit-appearance: none;
|
|
14815
|
-
}
|
|
14816
|
-
|
|
14817
|
-
.k-checkbox::before {
|
|
14818
|
-
content: "";
|
|
14819
|
-
width: 12px;
|
|
14820
|
-
height: 12px;
|
|
14821
|
-
font-size: 12px;
|
|
14822
|
-
font-family: "WebComponentsIcons", monospace;
|
|
14823
|
-
line-height: 1;
|
|
14824
|
-
transform: scale(0) translate(-50%, -50%);
|
|
14825
|
-
overflow: hidden;
|
|
14826
|
-
position: absolute;
|
|
14827
|
-
top: 50%;
|
|
14828
|
-
left: 50%;
|
|
14829
|
-
}
|
|
14830
|
-
|
|
14831
|
-
.k-checkbox:checked::before,
|
|
14832
|
-
.k-checkbox.k-checked::before {
|
|
14833
|
-
transform: scale(1) translate(-50%, -50%);
|
|
14834
|
-
}
|
|
14835
|
-
|
|
14836
|
-
.k-checkbox:indeterminate::before,
|
|
14837
|
-
.k-checkbox.k-indeterminate::before,
|
|
14838
|
-
.k-checkbox.k-state-indeterminate::before {
|
|
14839
|
-
content: "";
|
|
14840
|
-
transform: scale(1) translate(-50%, -50%);
|
|
14841
|
-
}
|
|
14842
|
-
|
|
14843
|
-
.k-checkbox:disabled,
|
|
14844
|
-
.k-checkbox.k-disabled,
|
|
14845
|
-
.k-checkbox:disabled + .k-checkbox-label,
|
|
14846
|
-
.k-checkbox.k-disabled + .k-checkbox-label {
|
|
14847
|
-
outline: none;
|
|
14848
|
-
cursor: default;
|
|
14849
|
-
opacity: 0.6;
|
|
14850
|
-
filter: grayscale(0.1);
|
|
14851
|
-
pointer-events: none;
|
|
14852
14961
|
box-shadow: none;
|
|
14853
|
-
|
|
14854
|
-
|
|
14855
|
-
.k-checkbox-label {
|
|
14856
|
-
margin: 0;
|
|
14857
|
-
padding: 0;
|
|
14858
|
-
line-height: 17px;
|
|
14962
|
+
background: none;
|
|
14859
14963
|
display: inline-flex;
|
|
14860
|
-
|
|
14964
|
+
flex-wrap: nowrap;
|
|
14861
14965
|
vertical-align: middle;
|
|
14862
14966
|
position: relative;
|
|
14863
|
-
|
|
14864
|
-
}
|
|
14865
|
-
|
|
14866
|
-
.k-checkbox-label .k-label {
|
|
14867
|
-
cursor: pointer;
|
|
14868
|
-
}
|
|
14869
|
-
|
|
14870
|
-
.k-checkbox-label .k-ripple {
|
|
14871
|
-
top: 8px;
|
|
14872
|
-
left: 8px;
|
|
14873
|
-
right: auto;
|
|
14874
|
-
bottom: auto;
|
|
14875
|
-
width: 40px;
|
|
14876
|
-
height: 40px;
|
|
14877
|
-
transform: translate(-50%, -50%);
|
|
14878
|
-
border-radius: 50%;
|
|
14879
|
-
visibility: hidden !important;
|
|
14880
|
-
}
|
|
14881
|
-
|
|
14882
|
-
.k-checkbox-label .k-ripple-blob {
|
|
14883
|
-
top: 50% !important;
|
|
14884
|
-
left: 50% !important;
|
|
14885
|
-
width: 200% !important;
|
|
14886
|
-
height: 200% !important;
|
|
14887
|
-
}
|
|
14888
|
-
|
|
14889
|
-
.k-checkbox + .k-checkbox-label {
|
|
14890
|
-
display: inline;
|
|
14891
|
-
}
|
|
14892
|
-
|
|
14893
|
-
.k-checkbox + .k-checkbox-label,
|
|
14894
|
-
.k-checkbox-label + .k-checkbox {
|
|
14895
|
-
margin-left: 4px;
|
|
14896
|
-
}
|
|
14897
|
-
|
|
14898
|
-
.k-checkbox-label > .k-checkbox {
|
|
14899
|
-
margin-right: 4px;
|
|
14900
|
-
flex-shrink: 0;
|
|
14901
|
-
}
|
|
14902
|
-
|
|
14903
|
-
kendo-label.k-checkbox-label > .k-checkbox:last-child {
|
|
14904
|
-
margin-right: 0;
|
|
14905
|
-
}
|
|
14906
|
-
|
|
14907
|
-
kendo-label.k-checkbox-label > .k-label:first-child {
|
|
14908
|
-
margin-right: 4px;
|
|
14909
|
-
}
|
|
14910
|
-
|
|
14911
|
-
kendo-label.k-checkbox-label > .k-label {
|
|
14912
|
-
display: inline;
|
|
14967
|
+
-webkit-appearance: none;
|
|
14913
14968
|
}
|
|
14914
14969
|
|
|
14915
|
-
.k-
|
|
14970
|
+
.k-textarea::-ms-clear {
|
|
14916
14971
|
display: none;
|
|
14917
14972
|
}
|
|
14918
14973
|
|
|
14919
|
-
.k-
|
|
14920
|
-
|
|
14921
|
-
|
|
14922
|
-
|
|
14923
|
-
|
|
14924
|
-
margin: 0px;
|
|
14925
|
-
padding: 0px;
|
|
14926
|
-
list-style: none;
|
|
14927
|
-
}
|
|
14928
|
-
|
|
14929
|
-
.k-checkbox-list .k-checkbox-item {
|
|
14930
|
-
padding: 4px 0px;
|
|
14931
|
-
}
|
|
14932
|
-
|
|
14933
|
-
.k-list-horizontal .k-checkbox-item {
|
|
14934
|
-
display: inline-block;
|
|
14935
|
-
margin: 0 32px 0 0;
|
|
14936
|
-
}
|
|
14937
|
-
|
|
14938
|
-
.k-list-horizontal .k-checkbox-item:last-child {
|
|
14939
|
-
margin-right: 0;
|
|
14940
|
-
}
|
|
14941
|
-
|
|
14942
|
-
.k-rtl .k-checkbox + .k-checkbox-label,
|
|
14943
|
-
.k-rtl .k-checkbox-label + .k-checkbox,
|
|
14944
|
-
[dir="rtl"] .k-checkbox + .k-checkbox-label,
|
|
14945
|
-
[dir="rtl"] .k-checkbox-label + .k-checkbox {
|
|
14946
|
-
margin-left: 0;
|
|
14947
|
-
margin-right: 4px;
|
|
14948
|
-
}
|
|
14949
|
-
|
|
14950
|
-
.k-rtl .k-checkbox-label > .k-checkbox,
|
|
14951
|
-
[dir="rtl"] .k-checkbox-label > .k-checkbox {
|
|
14952
|
-
margin-right: 0;
|
|
14953
|
-
margin-left: 4px;
|
|
14954
|
-
}
|
|
14955
|
-
|
|
14956
|
-
.k-rtl kendo-label.k-checkbox-label > .k-checkbox:last-child,
|
|
14957
|
-
[dir="rtl"] kendo-label.k-checkbox-label > .k-checkbox:last-child {
|
|
14958
|
-
margin-left: 0;
|
|
14959
|
-
}
|
|
14960
|
-
|
|
14961
|
-
.k-rtl kendo-label.k-checkbox-label > .k-label:first-child,
|
|
14962
|
-
[dir="rtl"] kendo-label.k-checkbox-label > .k-label:first-child {
|
|
14963
|
-
margin-right: 0;
|
|
14964
|
-
margin-left: 4px;
|
|
14974
|
+
.k-textarea:-ms-input-placeholder {
|
|
14975
|
+
color: #666666;
|
|
14976
|
+
opacity: 1;
|
|
14977
|
+
-ms-user-select: none;
|
|
14978
|
+
user-select: none;
|
|
14965
14979
|
}
|
|
14966
14980
|
|
|
14967
|
-
.k-
|
|
14968
|
-
|
|
14969
|
-
|
|
14970
|
-
|
|
14981
|
+
.k-textarea::placeholder {
|
|
14982
|
+
color: #666666;
|
|
14983
|
+
opacity: 1;
|
|
14984
|
+
-webkit-user-select: none;
|
|
14985
|
+
-ms-user-select: none;
|
|
14986
|
+
user-select: none;
|
|
14971
14987
|
}
|
|
14972
14988
|
|
|
14973
|
-
.k-
|
|
14974
|
-
|
|
14975
|
-
|
|
14989
|
+
.k-textarea > .k-input {
|
|
14990
|
+
padding: 4px 8px;
|
|
14991
|
+
height: auto;
|
|
14992
|
+
min-height: calc(1.4285714286em + 10px);
|
|
14993
|
+
overflow-y: auto;
|
|
14994
|
+
resize: vertical;
|
|
14976
14995
|
}
|
|
14977
14996
|
|
|
14978
|
-
.k-
|
|
14979
|
-
|
|
14980
|
-
|
|
14981
|
-
|
|
14982
|
-
|
|
14983
|
-
|
|
14984
|
-
|
|
14985
|
-
height: 48px;
|
|
14986
|
-
margin-left: -18px;
|
|
14987
|
-
margin-top: -18px;
|
|
14988
|
-
border-radius: 100%;
|
|
14989
|
-
z-index: 1;
|
|
14990
|
-
transform: scale(0);
|
|
14997
|
+
.k-textarea:disabled, .k-textarea[disabled], .k-textarea.k-state-disabled {
|
|
14998
|
+
outline: none;
|
|
14999
|
+
cursor: default;
|
|
15000
|
+
opacity: 0.6;
|
|
15001
|
+
filter: grayscale(0.1);
|
|
15002
|
+
pointer-events: none;
|
|
15003
|
+
box-shadow: none;
|
|
14991
15004
|
}
|
|
14992
15005
|
|
|
14993
|
-
.k-
|
|
14994
|
-
|
|
14995
|
-
|
|
15006
|
+
.k-textarea:disabled::selection, .k-textarea[disabled]::selection, .k-textarea.k-state-disabled::selection {
|
|
15007
|
+
color: #424242;
|
|
15008
|
+
background-color: transparent;
|
|
14996
15009
|
}
|
|
14997
15010
|
|
|
14998
|
-
.k-
|
|
14999
|
-
|
|
15000
|
-
border-color: inherit;
|
|
15001
|
-
color: inherit;
|
|
15002
|
-
background-color: inherit;
|
|
15011
|
+
.k-textarea-suffix {
|
|
15012
|
+
flex-shrink: 0;
|
|
15003
15013
|
}
|
|
15004
15014
|
|
|
15005
|
-
.k-
|
|
15006
|
-
|
|
15007
|
-
|
|
15008
|
-
|
|
15015
|
+
textarea.k-textarea {
|
|
15016
|
+
padding: 4px 8px;
|
|
15017
|
+
min-height: calc(1.4285714286em + 10px);
|
|
15018
|
+
display: inline-block;
|
|
15019
|
+
resize: both;
|
|
15009
15020
|
}
|
|
15010
15021
|
|
|
15011
|
-
.k-
|
|
15012
|
-
.k-
|
|
15013
|
-
|
|
15022
|
+
.k-textbox-container > .k-textarea,
|
|
15023
|
+
.k-floating-label-container > .k-textarea {
|
|
15024
|
+
flex: 1 1 auto;
|
|
15025
|
+
width: 100%;
|
|
15014
15026
|
}
|
|
15015
15027
|
|
|
15016
|
-
.k-
|
|
15017
|
-
|
|
15018
|
-
|
|
15028
|
+
.k-ie .k-textarea :-ms-input-placeholder, .k-ie .k-textarea:-ms-input-placeholder {
|
|
15029
|
+
color: #666666;
|
|
15030
|
+
}
|
|
15031
|
+
|
|
15032
|
+
.k-textarea {
|
|
15019
15033
|
border-color: rgba(0, 0, 0, 0.08);
|
|
15020
|
-
color: #
|
|
15034
|
+
color: #424242;
|
|
15021
15035
|
background-color: #ffffff;
|
|
15022
15036
|
}
|
|
15023
15037
|
|
|
15024
|
-
.k-
|
|
15025
|
-
.k-
|
|
15026
|
-
border-color: #ff6358;
|
|
15038
|
+
.k-textarea::selection,
|
|
15039
|
+
.k-textarea .k-input::selection {
|
|
15027
15040
|
color: white;
|
|
15028
15041
|
background-color: #ff6358;
|
|
15029
15042
|
}
|
|
15030
15043
|
|
|
15031
|
-
.k-
|
|
15032
|
-
|
|
15033
|
-
box-shadow: 0 0 0 2px rgba(255, 99, 88, 0.3);
|
|
15044
|
+
.k-textarea:hover, .k-textarea.k-state-hover {
|
|
15045
|
+
border-color: rgba(0, 0, 0, 0.16);
|
|
15034
15046
|
}
|
|
15035
15047
|
|
|
15036
|
-
.k-
|
|
15037
|
-
|
|
15038
|
-
|
|
15039
|
-
.k-checkbox.ng-invalid.ng-dirty {
|
|
15040
|
-
border-color: rgba(243, 23, 0, 0.5);
|
|
15048
|
+
.k-textarea:focus, .k-textarea.k-state-focus, .k-textarea.k-state-focused {
|
|
15049
|
+
border-color: rgba(0, 0, 0, 0.16);
|
|
15050
|
+
box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08);
|
|
15041
15051
|
}
|
|
15042
15052
|
|
|
15043
|
-
.k-
|
|
15044
|
-
|
|
15045
|
-
|
|
15046
|
-
.k-checkbox.ng-invalid.ng-dirty + .k-checkbox-label {
|
|
15047
|
-
color: #f31700;
|
|
15053
|
+
.k-textarea:focus-within {
|
|
15054
|
+
border-color: rgba(0, 0, 0, 0.16);
|
|
15055
|
+
box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08);
|
|
15048
15056
|
}
|
|
15049
15057
|
|
|
15050
|
-
.k-
|
|
15051
|
-
|
|
15052
|
-
|
|
15058
|
+
.k-textarea.k-invalid, .k-textarea.k-state-invalid, .k-textarea.ng-invalid.ng-touched, .k-textarea.ng-invalid.ng-dirty {
|
|
15059
|
+
border-color: rgba(243, 23, 0, 0.5);
|
|
15060
|
+
}
|
|
15061
|
+
|
|
15062
|
+
.k-textarea.k-invalid .k-input-validation-icon, .k-textarea.k-state-invalid .k-input-validation-icon, .k-textarea.ng-invalid.ng-touched .k-input-validation-icon, .k-textarea.ng-invalid.ng-dirty .k-input-validation-icon {
|
|
15063
|
+
color: #f31700;
|
|
15053
15064
|
}
|
|
15054
15065
|
|
|
15055
15066
|
.k-listbox {
|
|
@@ -15422,6 +15433,7 @@ kendo-label.k-checkbox-label > .k-label {
|
|
|
15422
15433
|
background-repeat: no-repeat;
|
|
15423
15434
|
background-size: contain;
|
|
15424
15435
|
display: inline-block;
|
|
15436
|
+
flex: none;
|
|
15425
15437
|
vertical-align: middle;
|
|
15426
15438
|
position: relative;
|
|
15427
15439
|
cursor: pointer;
|
|
@@ -15478,7 +15490,7 @@ kendo-label.k-checkbox-label > .k-label {
|
|
|
15478
15490
|
}
|
|
15479
15491
|
|
|
15480
15492
|
.k-radio-label:empty {
|
|
15481
|
-
display: none;
|
|
15493
|
+
display: none !important;
|
|
15482
15494
|
}
|
|
15483
15495
|
|
|
15484
15496
|
.k-radio-label .k-ripple {
|
|
@@ -17123,22 +17135,22 @@ kendo-label.k-radio-label > .k-label {
|
|
|
17123
17135
|
|
|
17124
17136
|
.k-autocomplete {
|
|
17125
17137
|
border-radius: 2px;
|
|
17126
|
-
width:
|
|
17138
|
+
width: 200px;
|
|
17127
17139
|
border-width: 1px;
|
|
17128
17140
|
border-style: solid;
|
|
17129
|
-
outline: 0;
|
|
17130
17141
|
box-sizing: border-box;
|
|
17142
|
+
outline: 0;
|
|
17131
17143
|
font-family: inherit;
|
|
17132
17144
|
font-size: 14px;
|
|
17133
17145
|
line-height: 1.4285714286;
|
|
17146
|
+
text-align: start;
|
|
17134
17147
|
white-space: nowrap;
|
|
17135
17148
|
display: inline-flex;
|
|
17136
17149
|
flex-flow: row nowrap;
|
|
17137
|
-
align-items: stretch;
|
|
17138
17150
|
vertical-align: middle;
|
|
17139
|
-
transition: all .1s ease;
|
|
17140
17151
|
position: relative;
|
|
17141
|
-
|
|
17152
|
+
overflow: hidden;
|
|
17153
|
+
transition: all .1s ease;
|
|
17142
17154
|
-webkit-touch-callout: none;
|
|
17143
17155
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
17144
17156
|
}
|
|
@@ -17300,7 +17312,7 @@ kendo-label.k-radio-label > .k-label {
|
|
|
17300
17312
|
}
|
|
17301
17313
|
|
|
17302
17314
|
.k-numerictextbox {
|
|
17303
|
-
width:
|
|
17315
|
+
width: 200px;
|
|
17304
17316
|
border-width: 0;
|
|
17305
17317
|
box-sizing: border-box;
|
|
17306
17318
|
outline: 0;
|
|
@@ -17689,14 +17701,18 @@ kendo-label.k-radio-label > .k-label {
|
|
|
17689
17701
|
}
|
|
17690
17702
|
|
|
17691
17703
|
.k-coloreditor-preview {
|
|
17704
|
+
display: flex;
|
|
17705
|
+
flex-flow: column nowrap;
|
|
17706
|
+
align-items: stretch;
|
|
17707
|
+
justify-content: center;
|
|
17708
|
+
gap: 4px;
|
|
17692
17709
|
position: relative;
|
|
17693
|
-
gap: 3px;
|
|
17694
17710
|
z-index: 1;
|
|
17695
17711
|
}
|
|
17696
17712
|
|
|
17697
17713
|
.k-coloreditor-preview .k-color-preview {
|
|
17698
|
-
width:
|
|
17699
|
-
height:
|
|
17714
|
+
width: 32px;
|
|
17715
|
+
height: 12px;
|
|
17700
17716
|
}
|
|
17701
17717
|
|
|
17702
17718
|
.k-coloreditor-views {
|
|
@@ -17773,6 +17789,13 @@ kendo-label.k-radio-label > .k-label {
|
|
|
17773
17789
|
overflow: hidden;
|
|
17774
17790
|
}
|
|
17775
17791
|
|
|
17792
|
+
.k-colorpicker .k-color-preview {
|
|
17793
|
+
margin: 4px;
|
|
17794
|
+
width: 1.4285714286em;
|
|
17795
|
+
height: 1.4285714286em;
|
|
17796
|
+
z-index: 1;
|
|
17797
|
+
}
|
|
17798
|
+
|
|
17776
17799
|
.k-colorpicker .k-tool-icon {
|
|
17777
17800
|
padding: 4px;
|
|
17778
17801
|
width: calc(1.4285714286em + 8px);
|
|
@@ -17859,7 +17882,7 @@ kendo-label.k-radio-label > .k-label {
|
|
|
17859
17882
|
|
|
17860
17883
|
.k-dateinput {
|
|
17861
17884
|
border-radius: 2px;
|
|
17862
|
-
width:
|
|
17885
|
+
width: 200px;
|
|
17863
17886
|
border-width: 1px;
|
|
17864
17887
|
border-style: solid;
|
|
17865
17888
|
box-sizing: border-box;
|
|
@@ -17976,7 +17999,7 @@ kendo-label.k-radio-label > .k-label {
|
|
|
17976
17999
|
|
|
17977
18000
|
.k-datepicker {
|
|
17978
18001
|
border-radius: 2px;
|
|
17979
|
-
width:
|
|
18002
|
+
width: 200px;
|
|
17980
18003
|
border-width: 1px;
|
|
17981
18004
|
border-style: solid;
|
|
17982
18005
|
box-sizing: border-box;
|
|
@@ -18059,7 +18082,7 @@ kendo-label.k-radio-label > .k-label {
|
|
|
18059
18082
|
|
|
18060
18083
|
.k-timepicker {
|
|
18061
18084
|
border-radius: 2px;
|
|
18062
|
-
width:
|
|
18085
|
+
width: 200px;
|
|
18063
18086
|
border-width: 1px;
|
|
18064
18087
|
border-style: solid;
|
|
18065
18088
|
box-sizing: border-box;
|
|
@@ -18142,7 +18165,7 @@ kendo-label.k-radio-label > .k-label {
|
|
|
18142
18165
|
|
|
18143
18166
|
.k-datetimepicker {
|
|
18144
18167
|
border-radius: 2px;
|
|
18145
|
-
width:
|
|
18168
|
+
width: 200px;
|
|
18146
18169
|
border-width: 1px;
|
|
18147
18170
|
border-style: solid;
|
|
18148
18171
|
box-sizing: border-box;
|
|
@@ -18575,74 +18598,58 @@ kendo-label.k-radio-label > .k-label {
|
|
|
18575
18598
|
}
|
|
18576
18599
|
|
|
18577
18600
|
.k-dropdown, .k-dropdowntree {
|
|
18578
|
-
|
|
18579
|
-
|
|
18580
|
-
|
|
18581
|
-
|
|
18601
|
+
border-radius: 2px;
|
|
18602
|
+
width: 200px;
|
|
18603
|
+
border-width: 1px;
|
|
18604
|
+
border-style: solid;
|
|
18582
18605
|
box-sizing: border-box;
|
|
18606
|
+
outline: 0;
|
|
18583
18607
|
font-family: inherit;
|
|
18584
18608
|
font-size: 14px;
|
|
18585
18609
|
line-height: 1.4285714286;
|
|
18586
|
-
text-align:
|
|
18610
|
+
text-align: start;
|
|
18587
18611
|
white-space: nowrap;
|
|
18588
18612
|
display: inline-flex;
|
|
18613
|
+
flex-flow: row nowrap;
|
|
18589
18614
|
vertical-align: middle;
|
|
18590
18615
|
position: relative;
|
|
18616
|
+
overflow: hidden;
|
|
18617
|
+
transition: all .1s ease;
|
|
18591
18618
|
-webkit-touch-callout: none;
|
|
18592
18619
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
18593
18620
|
}
|
|
18594
18621
|
|
|
18595
|
-
.k-dropdown .k-
|
|
18596
|
-
|
|
18597
|
-
|
|
18598
|
-
width: 100%;
|
|
18599
|
-
display: flex;
|
|
18600
|
-
flex-flow: row nowrap;
|
|
18601
|
-
border-width: 1px;
|
|
18602
|
-
border-style: solid;
|
|
18603
|
-
box-sizing: border-box;
|
|
18604
|
-
position: relative;
|
|
18605
|
-
transition: all .1s ease;
|
|
18606
|
-
cursor: pointer;
|
|
18607
|
-
outline: 0;
|
|
18608
|
-
overflow: hidden;
|
|
18622
|
+
.k-dropdown .k-i-loading, .k-dropdowntree .k-i-loading {
|
|
18623
|
+
width: 24px;
|
|
18624
|
+
height: 28px;
|
|
18609
18625
|
}
|
|
18610
18626
|
|
|
18611
|
-
.k-dropdown .k-
|
|
18627
|
+
.k-dropdown .k-select, .k-dropdowntree .k-select {
|
|
18612
18628
|
padding: 4px 4px;
|
|
18613
18629
|
width: calc(1.4285714286em + 8px);
|
|
18614
18630
|
border-width: 0;
|
|
18615
18631
|
border-inline-start-width: 0px;
|
|
18632
|
+
border-style: solid;
|
|
18616
18633
|
border-color: transparent;
|
|
18617
18634
|
box-sizing: border-box;
|
|
18618
|
-
|
|
18635
|
+
outline: 0;
|
|
18619
18636
|
display: flex;
|
|
18637
|
+
flex-flow: row nowrap;
|
|
18620
18638
|
align-items: center;
|
|
18621
18639
|
justify-content: center;
|
|
18622
18640
|
flex: 0 0 auto;
|
|
18623
|
-
text-align: center;
|
|
18624
18641
|
cursor: pointer;
|
|
18625
18642
|
}
|
|
18626
18643
|
|
|
18627
|
-
.k-dropdown.k-rtl, .k-rtl.k-dropdowntree,
|
|
18628
|
-
.k-dropdown[dir="rtl"],
|
|
18629
|
-
.k-dropdowntree[dir="rtl"],
|
|
18630
|
-
.k-rtl .k-dropdown,
|
|
18631
|
-
.k-rtl .k-dropdowntree,
|
|
18632
|
-
[dir="rtl"] .k-dropdown,
|
|
18633
|
-
[dir="rtl"] .k-dropdowntree {
|
|
18634
|
-
text-align: right;
|
|
18635
|
-
}
|
|
18636
|
-
|
|
18637
18644
|
.k-dropdown-operator {
|
|
18638
18645
|
width: auto;
|
|
18639
18646
|
}
|
|
18640
18647
|
|
|
18641
|
-
.k-dropdown-operator .k-
|
|
18648
|
+
.k-dropdown-operator .k-input {
|
|
18642
18649
|
display: none;
|
|
18643
18650
|
}
|
|
18644
18651
|
|
|
18645
|
-
.k-dropdown-operator .k-
|
|
18652
|
+
.k-dropdown-operator .k-select {
|
|
18646
18653
|
width: calc(1.4285714286em + 8px);
|
|
18647
18654
|
height: calc(1.4285714286em + 8px);
|
|
18648
18655
|
}
|
|
@@ -18660,52 +18667,33 @@ select.k-dropdown, select.k-dropdowntree {
|
|
|
18660
18667
|
cursor: pointer;
|
|
18661
18668
|
}
|
|
18662
18669
|
|
|
18663
|
-
.k-dropdown
|
|
18670
|
+
.k-dropdown, .k-dropdowntree {
|
|
18664
18671
|
border-color: rgba(0, 0, 0, 0.08);
|
|
18665
18672
|
color: #424242;
|
|
18666
18673
|
background-color: #f5f5f5;
|
|
18667
18674
|
background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.02));
|
|
18668
18675
|
}
|
|
18669
18676
|
|
|
18670
|
-
.k-dropdown
|
|
18677
|
+
.k-dropdown:hover, .k-dropdowntree:hover, .k-dropdown.k-state-hover, .k-state-hover.k-dropdowntree {
|
|
18671
18678
|
background-color: #ebebeb;
|
|
18672
18679
|
}
|
|
18673
18680
|
|
|
18674
|
-
.k-dropdown .k-dropdown
|
|
18681
|
+
.k-dropdown:focus, .k-dropdowntree:focus, .k-dropdown.k-state-focus, .k-state-focus.k-dropdowntree {
|
|
18675
18682
|
box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08);
|
|
18676
18683
|
}
|
|
18677
18684
|
|
|
18678
|
-
.k-dropdown
|
|
18679
|
-
|
|
18680
|
-
}
|
|
18681
|
-
|
|
18682
|
-
.k-dropdown .k-dropdown-wrap.k-invalid .k-input-validation-icon, .k-dropdowntree .k-dropdown-wrap.k-invalid .k-input-validation-icon, .k-dropdown .k-dropdown-wrap.k-invalid:hover .k-input-validation-icon, .k-dropdowntree .k-dropdown-wrap.k-invalid:hover .k-input-validation-icon, .k-dropdown .k-dropdown-wrap.k-state-invalid .k-input-validation-icon, .k-dropdowntree .k-dropdown-wrap.k-state-invalid .k-input-validation-icon {
|
|
18683
|
-
color: #f31700;
|
|
18685
|
+
.k-dropdown:focus-within, .k-dropdowntree:focus-within {
|
|
18686
|
+
box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08);
|
|
18684
18687
|
}
|
|
18685
18688
|
|
|
18686
|
-
.k-dropdown.k-
|
|
18689
|
+
.k-dropdown.k-invalid, .k-invalid.k-dropdowntree, .k-dropdown.ng-invalid, .ng-invalid.k-dropdowntree, .k-dropdown.k-state-invalid, .k-state-invalid.k-dropdowntree {
|
|
18687
18690
|
border-color: rgba(243, 23, 0, 0.5);
|
|
18688
18691
|
}
|
|
18689
18692
|
|
|
18690
|
-
.k-dropdown.k-
|
|
18693
|
+
.k-dropdown.k-invalid .k-input-validation-icon, .k-invalid.k-dropdowntree .k-input-validation-icon, .k-dropdown.ng-invalid .k-input-validation-icon, .ng-invalid.k-dropdowntree .k-input-validation-icon, .k-dropdown.k-state-invalid .k-input-validation-icon, .k-state-invalid.k-dropdowntree .k-input-validation-icon {
|
|
18691
18694
|
color: #f31700;
|
|
18692
18695
|
}
|
|
18693
18696
|
|
|
18694
|
-
select.k-dropdown, select.k-dropdowntree {
|
|
18695
|
-
border-color: rgba(0, 0, 0, 0.08);
|
|
18696
|
-
color: #424242;
|
|
18697
|
-
background-color: #f5f5f5;
|
|
18698
|
-
background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.02));
|
|
18699
|
-
}
|
|
18700
|
-
|
|
18701
|
-
select.k-dropdown:hover, select.k-dropdowntree:hover {
|
|
18702
|
-
background-color: #ebebeb;
|
|
18703
|
-
}
|
|
18704
|
-
|
|
18705
|
-
select.k-dropdown:focus, select.k-dropdowntree:focus {
|
|
18706
|
-
box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08);
|
|
18707
|
-
}
|
|
18708
|
-
|
|
18709
18697
|
.k-multiselect, .k-dropdowntree {
|
|
18710
18698
|
border-radius: 2px;
|
|
18711
18699
|
width: 100%;
|
|
@@ -19179,7 +19167,7 @@ select.k-dropdown:focus, select.k-dropdowntree:focus {
|
|
|
19179
19167
|
}
|
|
19180
19168
|
|
|
19181
19169
|
.k-dropdowntree {
|
|
19182
|
-
width:
|
|
19170
|
+
width: 200px;
|
|
19183
19171
|
}
|
|
19184
19172
|
|
|
19185
19173
|
.k-popup-dropdowntree {
|
|
@@ -19195,63 +19183,57 @@ select.k-dropdown:focus, select.k-dropdowntree:focus {
|
|
|
19195
19183
|
}
|
|
19196
19184
|
|
|
19197
19185
|
.k-maskedtextbox {
|
|
19198
|
-
|
|
19186
|
+
border-radius: 2px;
|
|
19187
|
+
width: 200px;
|
|
19188
|
+
border-width: 1px;
|
|
19189
|
+
border-style: solid;
|
|
19190
|
+
box-sizing: border-box;
|
|
19191
|
+
outline: 0;
|
|
19199
19192
|
font-family: inherit;
|
|
19200
19193
|
font-size: 14px;
|
|
19201
19194
|
line-height: 1.4285714286;
|
|
19202
|
-
|
|
19203
|
-
box-sizing: border-box;
|
|
19204
|
-
outline: 0;
|
|
19205
|
-
background: none;
|
|
19206
|
-
text-align: left;
|
|
19195
|
+
text-align: start;
|
|
19207
19196
|
white-space: nowrap;
|
|
19208
19197
|
display: inline-flex;
|
|
19198
|
+
flex-flow: row nowrap;
|
|
19209
19199
|
vertical-align: middle;
|
|
19210
19200
|
position: relative;
|
|
19201
|
+
overflow: hidden;
|
|
19202
|
+
transition: all .1s ease;
|
|
19211
19203
|
-webkit-touch-callout: none;
|
|
19212
19204
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
19213
19205
|
}
|
|
19214
19206
|
|
|
19215
|
-
.k-maskedtextbox
|
|
19216
|
-
|
|
19217
|
-
|
|
19218
|
-
}
|
|
19219
|
-
|
|
19220
|
-
.k-maskedtextbox > .k-textbox.k-state-invalid {
|
|
19221
|
-
transition: none;
|
|
19222
|
-
}
|
|
19223
|
-
|
|
19224
|
-
.k-maskedtextbox .k-i-warning {
|
|
19225
|
-
position: absolute;
|
|
19226
|
-
top: 50%;
|
|
19227
|
-
transform: translateY(-50%);
|
|
19228
|
-
right: 8px;
|
|
19207
|
+
.k-maskedtextbox .k-i-loading {
|
|
19208
|
+
width: 24px;
|
|
19209
|
+
height: 28px;
|
|
19229
19210
|
}
|
|
19230
19211
|
|
|
19231
|
-
.k-maskedtextbox
|
|
19232
|
-
|
|
19233
|
-
|
|
19212
|
+
.k-maskedtextbox {
|
|
19213
|
+
border-color: rgba(0, 0, 0, 0.08);
|
|
19214
|
+
color: #424242;
|
|
19215
|
+
background-color: #ffffff;
|
|
19234
19216
|
}
|
|
19235
19217
|
|
|
19236
|
-
.k-maskedtextbox
|
|
19237
|
-
|
|
19238
|
-
right: auto;
|
|
19239
|
-
left: 8px;
|
|
19218
|
+
.k-maskedtextbox:hover, .k-maskedtextbox.k-state-hover {
|
|
19219
|
+
border-color: rgba(0, 0, 0, 0.16);
|
|
19240
19220
|
}
|
|
19241
19221
|
|
|
19242
|
-
.k-maskedtextbox
|
|
19243
|
-
|
|
19222
|
+
.k-maskedtextbox:focus, .k-maskedtextbox.k-state-focus {
|
|
19223
|
+
border-color: rgba(0, 0, 0, 0.16);
|
|
19224
|
+
box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08);
|
|
19244
19225
|
}
|
|
19245
19226
|
|
|
19246
|
-
.k-maskedtextbox
|
|
19247
|
-
color:
|
|
19227
|
+
.k-maskedtextbox:focus-within {
|
|
19228
|
+
border-color: rgba(0, 0, 0, 0.16);
|
|
19229
|
+
box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08);
|
|
19248
19230
|
}
|
|
19249
19231
|
|
|
19250
|
-
.k-maskedtextbox.k-
|
|
19232
|
+
.k-maskedtextbox.k-invalid, .k-maskedtextbox.ng-invalid, .k-maskedtextbox.k-state-invalid {
|
|
19251
19233
|
border-color: rgba(243, 23, 0, 0.5);
|
|
19252
19234
|
}
|
|
19253
19235
|
|
|
19254
|
-
.k-maskedtextbox.k-
|
|
19236
|
+
.k-maskedtextbox.k-invalid .k-input-validation-icon, .k-maskedtextbox.ng-invalid .k-input-validation-icon, .k-maskedtextbox.k-state-invalid .k-input-validation-icon {
|
|
19255
19237
|
color: #f31700;
|
|
19256
19238
|
}
|
|
19257
19239
|
|
|
@@ -20211,6 +20193,18 @@ select.k-dropdown:focus, select.k-dropdowntree:focus {
|
|
|
20211
20193
|
display: inline-block;
|
|
20212
20194
|
}
|
|
20213
20195
|
|
|
20196
|
+
.k-appbar .k-textbox,
|
|
20197
|
+
.k-appbar .k-combobox,
|
|
20198
|
+
.k-appbar .k-dropdown,
|
|
20199
|
+
.k-appbar .k-dropdowntree,
|
|
20200
|
+
.k-appbar .k-searchbox,
|
|
20201
|
+
.k-appbar .k-numerictextbox,
|
|
20202
|
+
.k-appbar .k-datepicker,
|
|
20203
|
+
.k-appbar .k-timepicker,
|
|
20204
|
+
.k-appbar .k-datetimepicker {
|
|
20205
|
+
width: 10em;
|
|
20206
|
+
}
|
|
20207
|
+
|
|
20214
20208
|
.k-appbar-static {
|
|
20215
20209
|
position: static;
|
|
20216
20210
|
}
|
|
@@ -25834,7 +25828,7 @@ kendo-card-footer {
|
|
|
25834
25828
|
}
|
|
25835
25829
|
|
|
25836
25830
|
.k-grid-search {
|
|
25837
|
-
width:
|
|
25831
|
+
width: 200px;
|
|
25838
25832
|
}
|
|
25839
25833
|
|
|
25840
25834
|
.k-grouping-header {
|
|
@@ -26141,7 +26135,6 @@ div.k-grid-footer {
|
|
|
26141
26135
|
}
|
|
26142
26136
|
|
|
26143
26137
|
.k-grid-columnmenu-popup.k-popup {
|
|
26144
|
-
padding: 2px 0;
|
|
26145
26138
|
}
|
|
26146
26139
|
|
|
26147
26140
|
.k-filter-row {
|
|
@@ -26625,14 +26618,14 @@ div.k-grid-norecords {
|
|
|
26625
26618
|
.k-grid-filter-popup.k-popup .k-multicheck-wrap .k-item,
|
|
26626
26619
|
.k-popup .k-filter-menu .k-multicheck-wrap .k-item,
|
|
26627
26620
|
.k-popup .k-grid-filter-popup .k-multicheck-wrap .k-item {
|
|
26628
|
-
padding:
|
|
26621
|
+
padding: 4px 0;
|
|
26629
26622
|
}
|
|
26630
26623
|
|
|
26631
26624
|
.k-filter-menu.k-popup .k-multicheck-wrap .k-check-all-wrap,
|
|
26632
26625
|
.k-grid-filter-popup.k-popup .k-multicheck-wrap .k-check-all-wrap,
|
|
26633
26626
|
.k-popup .k-filter-menu .k-multicheck-wrap .k-check-all-wrap,
|
|
26634
26627
|
.k-popup .k-grid-filter-popup .k-multicheck-wrap .k-check-all-wrap {
|
|
26635
|
-
padding-bottom:
|
|
26628
|
+
padding-bottom: 8px;
|
|
26636
26629
|
border-bottom-width: 1px;
|
|
26637
26630
|
border-bottom-style: solid;
|
|
26638
26631
|
}
|
|
@@ -26722,7 +26715,7 @@ div.k-grid-norecords {
|
|
|
26722
26715
|
|
|
26723
26716
|
.k-column-chooser-title,
|
|
26724
26717
|
.k-column-list-item {
|
|
26725
|
-
padding:
|
|
26718
|
+
padding: 4px 8px;
|
|
26726
26719
|
}
|
|
26727
26720
|
|
|
26728
26721
|
.k-column-list-item {
|
|
@@ -27464,18 +27457,12 @@ kendo-grid tr.k-state-hover .k-grid-content-sticky.k-state-selected {
|
|
|
27464
27457
|
min-width: 1.4285714286em;
|
|
27465
27458
|
}
|
|
27466
27459
|
|
|
27467
|
-
.k-spreadsheet-toolbar
|
|
27460
|
+
.k-spreadsheet-toolbar .k-combobox,
|
|
27461
|
+
.k-spreadsheet-toolbar .k-dropdown,
|
|
27462
|
+
.k-spreadsheet-toolbar .k-dropdowntree {
|
|
27468
27463
|
width: 5em;
|
|
27469
27464
|
}
|
|
27470
27465
|
|
|
27471
|
-
.k-spreadsheet-toolbar [data-tool="fontFamily"] {
|
|
27472
|
-
width: 6em;
|
|
27473
|
-
}
|
|
27474
|
-
|
|
27475
|
-
.k-spreadsheet-toolbar [data-tool="format"] {
|
|
27476
|
-
width: 4em;
|
|
27477
|
-
}
|
|
27478
|
-
|
|
27479
27466
|
.k-spreadsheet-action-bar {
|
|
27480
27467
|
border-width: 0 0 1px;
|
|
27481
27468
|
border-style: solid;
|
|
@@ -30218,6 +30205,7 @@ kendo-editor.k-readonly .k-editor-content.k-state-focused {
|
|
|
30218
30205
|
background: transparent;
|
|
30219
30206
|
}
|
|
30220
30207
|
|
|
30208
|
+
.k-editor-toolbar,
|
|
30221
30209
|
.k-editor > .k-toolbar {
|
|
30222
30210
|
border-width: 0 0 1px 0;
|
|
30223
30211
|
flex-shrink: 0;
|
|
@@ -30245,7 +30233,7 @@ kendo-editor.k-readonly .k-editor-content.k-state-focused {
|
|
|
30245
30233
|
visibility: hidden;
|
|
30246
30234
|
}
|
|
30247
30235
|
|
|
30248
|
-
.k-editor-toolbar .k-overflow-anchor {
|
|
30236
|
+
.k-editor-toolbar .k-overflow-tools .k-overflow-anchor {
|
|
30249
30237
|
border-width: 0;
|
|
30250
30238
|
padding: 8px;
|
|
30251
30239
|
width: calc(1.4285714286em + 26px);
|
|
@@ -30362,14 +30350,6 @@ td.k-editor-content {
|
|
|
30362
30350
|
display: none;
|
|
30363
30351
|
}
|
|
30364
30352
|
|
|
30365
|
-
.k-rtl .k-editor .k-editor-widget .k-dropdown-wrap {
|
|
30366
|
-
padding-left: 0;
|
|
30367
|
-
}
|
|
30368
|
-
|
|
30369
|
-
.k-rtl .k-editor .k-editor-widget .k-dropdown-wrap .k-select {
|
|
30370
|
-
border-width: 0;
|
|
30371
|
-
}
|
|
30372
|
-
|
|
30373
30353
|
.k-editor-find-replace .k-content {
|
|
30374
30354
|
position: relative;
|
|
30375
30355
|
}
|
|
@@ -30867,18 +30847,17 @@ kendo-editor.k-readonly .k-editor-content.k-state-focused {
|
|
|
30867
30847
|
}
|
|
30868
30848
|
|
|
30869
30849
|
.k-imageeditor-action-pane {
|
|
30850
|
+
padding: 32px 16px;
|
|
30851
|
+
width: 241px;
|
|
30870
30852
|
border-width: 0;
|
|
30871
30853
|
border-left-width: 1px;
|
|
30872
30854
|
border-style: solid;
|
|
30873
30855
|
border-color: inherit;
|
|
30874
|
-
|
|
30856
|
+
box-sizing: border-box;
|
|
30857
|
+
flex: none;
|
|
30875
30858
|
overflow-y: auto;
|
|
30876
30859
|
}
|
|
30877
30860
|
|
|
30878
|
-
.k-imageeditor-action-pane > .k-form {
|
|
30879
|
-
padding: 32px 16px;
|
|
30880
|
-
}
|
|
30881
|
-
|
|
30882
30861
|
.k-imageeditor-crop-overlay {
|
|
30883
30862
|
width: 100%;
|
|
30884
30863
|
height: 100%;
|
|
@@ -30957,10 +30936,6 @@ kendo-editor.k-readonly .k-editor-content.k-state-focused {
|
|
|
30957
30936
|
align-self: flex-start;
|
|
30958
30937
|
}
|
|
30959
30938
|
|
|
30960
|
-
.k-ie .k-imageeditor-action-pane {
|
|
30961
|
-
flex: 0 0 auto;
|
|
30962
|
-
}
|
|
30963
|
-
|
|
30964
30939
|
.k-imageeditor {
|
|
30965
30940
|
border-color: rgba(0, 0, 0, 0.08);
|
|
30966
30941
|
color: #424242;
|
|
@@ -33099,7 +33074,7 @@ kendo-scheduler .k-recurrence-editor {
|
|
|
33099
33074
|
.k-scheduler-edit-form .k-widget.k-recur-month,
|
|
33100
33075
|
.k-scheduler-edit-form .k-widget.k-recur-weekday,
|
|
33101
33076
|
.k-scheduler-edit-form .k-widget.k-recur-weekday-offset {
|
|
33102
|
-
width:
|
|
33077
|
+
width: 10em;
|
|
33103
33078
|
}
|
|
33104
33079
|
|
|
33105
33080
|
.k-rtl .k-scheduler-header th,
|
|
@@ -34084,6 +34059,10 @@ ul.k-scheduler-views li:focus, ul.k-scheduler-views li.k-state-focus, ul.k-sched
|
|
|
34084
34059
|
box-shadow: none;
|
|
34085
34060
|
}
|
|
34086
34061
|
|
|
34062
|
+
.k-mediaplayer-toolbar .k-dropdown, .k-mediaplayer-toolbar .k-dropdowntree {
|
|
34063
|
+
width: auto;
|
|
34064
|
+
}
|
|
34065
|
+
|
|
34087
34066
|
.k-mediaplayer-time-wrap {
|
|
34088
34067
|
flex: 1;
|
|
34089
34068
|
}
|
|
@@ -35900,39 +35879,36 @@ div.k-scrollview.k-scrollview-light .k-scrollview-nav-wrap {
|
|
|
35900
35879
|
}
|
|
35901
35880
|
|
|
35902
35881
|
.k-navigator .k-button {
|
|
35903
|
-
margin: 0;
|
|
35904
35882
|
padding: 0;
|
|
35905
35883
|
width: auto;
|
|
35906
35884
|
height: auto;
|
|
35907
|
-
border-radius: 100%;
|
|
35908
35885
|
line-height: 1;
|
|
35909
35886
|
box-shadow: none;
|
|
35910
35887
|
position: absolute;
|
|
35911
35888
|
}
|
|
35912
35889
|
|
|
35913
|
-
.k-navigator .k-
|
|
35914
|
-
border-color: transparent;
|
|
35915
|
-
background: none;
|
|
35916
|
-
}
|
|
35917
|
-
|
|
35890
|
+
.k-navigator .k-navigator-n,
|
|
35918
35891
|
.k-navigator .k-navigator-up {
|
|
35919
35892
|
transform: translateX(-50%);
|
|
35920
35893
|
top: 2px;
|
|
35921
35894
|
left: 50%;
|
|
35922
35895
|
}
|
|
35923
35896
|
|
|
35897
|
+
.k-navigator .k-navigator-e,
|
|
35924
35898
|
.k-navigator .k-navigator-right {
|
|
35925
35899
|
transform: translateY(-50%);
|
|
35926
35900
|
right: 2px;
|
|
35927
35901
|
top: 50%;
|
|
35928
35902
|
}
|
|
35929
35903
|
|
|
35904
|
+
.k-navigator .k-navigator-s,
|
|
35930
35905
|
.k-navigator .k-navigator-down {
|
|
35931
35906
|
transform: translateX(-50%);
|
|
35932
35907
|
bottom: 2px;
|
|
35933
35908
|
left: 50%;
|
|
35934
35909
|
}
|
|
35935
35910
|
|
|
35911
|
+
.k-navigator .k-navigator-w,
|
|
35936
35912
|
.k-navigator .k-navigator-left {
|
|
35937
35913
|
transform: translateY(-50%);
|
|
35938
35914
|
left: 2px;
|