@progress/kendo-theme-bootstrap 5.3.2-dev.2 → 5.4.0
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/dist/all.css +197 -26
- package/dist/all.scss +335 -21
- package/lib/swatches/bootstrap-3-dark.json +1 -1
- package/lib/swatches/bootstrap-3.json +1 -1
- package/lib/swatches/bootstrap-4-dark.json +1 -1
- package/lib/swatches/bootstrap-4.json +1 -1
- package/lib/swatches/bootstrap-dataviz-v4.json +1 -1
- package/lib/swatches/bootstrap-main-dark.json +1 -1
- package/lib/swatches/bootstrap-main.json +1 -1
- package/lib/swatches/bootstrap-nordic.json +1 -1
- package/lib/swatches/bootstrap-turquoise-dark.json +1 -1
- package/lib/swatches/bootstrap-turquoise.json +1 -1
- package/lib/swatches/bootstrap-urban.json +1 -1
- package/lib/swatches/bootstrap-vintage.json +1 -1
- package/package.json +3 -3
- package/scss/button/_variables.scss +2 -2
- package/scss/input/_variables.scss +58 -1
- package/scss/panelbar/_variables.scss +2 -0
- package/scss/scheduler/_layout.scss +3 -0
package/dist/all.css
CHANGED
|
@@ -13731,20 +13731,28 @@ textarea.k-input-inner {
|
|
|
13731
13731
|
border-radius: 0 !important;
|
|
13732
13732
|
border-width: 1px 0;
|
|
13733
13733
|
border-top-color: transparent !important;
|
|
13734
|
-
background: none !important;
|
|
13734
|
+
background-image: none !important;
|
|
13735
13735
|
}
|
|
13736
13736
|
|
|
13737
|
-
.k-input-flat .k-input-
|
|
13738
|
-
.k-picker-flat
|
|
13739
|
-
|
|
13740
|
-
|
|
13737
|
+
.k-input-flat:focus, .k-input-flat.k-focus,
|
|
13738
|
+
.k-picker-flat:focus,
|
|
13739
|
+
.k-picker-flat.k-focus {
|
|
13740
|
+
border-radius: 0.25rem 0.25rem 0px 0px !important;
|
|
13741
13741
|
}
|
|
13742
13742
|
|
|
13743
|
-
.k-input-
|
|
13744
|
-
.k-picker-
|
|
13743
|
+
.k-input-flat:focus-within,
|
|
13744
|
+
.k-picker-flat:focus-within {
|
|
13745
|
+
border-radius: 0.25rem 0.25rem 0px 0px !important;
|
|
13746
|
+
}
|
|
13747
|
+
|
|
13748
|
+
.k-input-outline {
|
|
13745
13749
|
background: none !important;
|
|
13746
13750
|
}
|
|
13747
13751
|
|
|
13752
|
+
.k-picker.k-picker-flat {
|
|
13753
|
+
border-radius: 0.25rem 0.25rem 0px 0px !important;
|
|
13754
|
+
}
|
|
13755
|
+
|
|
13748
13756
|
.k-input-sm,
|
|
13749
13757
|
.k-picker-sm {
|
|
13750
13758
|
font-size: 1rem;
|
|
@@ -14016,10 +14024,14 @@ textarea.k-input-inner {
|
|
|
14016
14024
|
}
|
|
14017
14025
|
|
|
14018
14026
|
.k-picker:focus, .k-picker.k-focus {
|
|
14027
|
+
border-color: #bfc6d0;
|
|
14028
|
+
background-color: #c7cdd5;
|
|
14019
14029
|
box-shadow: 0 0 0 0.25rem rgba(228, 231, 235, 0.5);
|
|
14020
14030
|
}
|
|
14021
14031
|
|
|
14022
14032
|
.k-picker:focus-within {
|
|
14033
|
+
border-color: #bfc6d0;
|
|
14034
|
+
background-color: #c7cdd5;
|
|
14023
14035
|
box-shadow: 0 0 0 0.25rem rgba(228, 231, 235, 0.5);
|
|
14024
14036
|
}
|
|
14025
14037
|
|
|
@@ -14039,6 +14051,139 @@ textarea.k-input-inner {
|
|
|
14039
14051
|
box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
|
|
14040
14052
|
}
|
|
14041
14053
|
|
|
14054
|
+
.k-input-outline {
|
|
14055
|
+
border-color: rgba(33, 37, 41, 0.5);
|
|
14056
|
+
color: #212529;
|
|
14057
|
+
}
|
|
14058
|
+
|
|
14059
|
+
.k-input-outline > .k-input-button {
|
|
14060
|
+
border-color: inherit;
|
|
14061
|
+
}
|
|
14062
|
+
|
|
14063
|
+
.k-input-outline > .k-input-spinner {
|
|
14064
|
+
border-color: inherit;
|
|
14065
|
+
}
|
|
14066
|
+
|
|
14067
|
+
.k-input-outline > .k-input-spinner > .k-spinner-increase,
|
|
14068
|
+
.k-input-outline > .k-input-spinner > .k-spinner-decrease {
|
|
14069
|
+
border-color: inherit;
|
|
14070
|
+
}
|
|
14071
|
+
|
|
14072
|
+
.k-input-outline.k-invalid, .k-input-outline.ng-invalid.ng-touched, .k-input-outline.ng-invalid.ng-dirty {
|
|
14073
|
+
border-color: #dc3545;
|
|
14074
|
+
}
|
|
14075
|
+
|
|
14076
|
+
.k-input-outline.k-invalid .k-input-validation-icon, .k-input-outline.ng-invalid.ng-touched .k-input-validation-icon, .k-input-outline.ng-invalid.ng-dirty .k-input-validation-icon {
|
|
14077
|
+
color: #dc3545;
|
|
14078
|
+
}
|
|
14079
|
+
|
|
14080
|
+
.k-input-outline.k-invalid:focus, .k-input-outline.k-invalid.k-focus, .k-input-outline.ng-invalid.ng-touched:focus, .k-input-outline.ng-invalid.ng-touched.k-focus, .k-input-outline.ng-invalid.ng-dirty:focus, .k-input-outline.ng-invalid.ng-dirty.k-focus {
|
|
14081
|
+
box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
|
|
14082
|
+
}
|
|
14083
|
+
|
|
14084
|
+
.k-input-outline.k-invalid:focus-within, .k-input-outline.ng-invalid.ng-touched:focus-within, .k-input-outline.ng-invalid.ng-dirty:focus-within {
|
|
14085
|
+
box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
|
|
14086
|
+
}
|
|
14087
|
+
|
|
14088
|
+
.k-picker-outline {
|
|
14089
|
+
border-color: #212529;
|
|
14090
|
+
color: #212529;
|
|
14091
|
+
background-color: transparent;
|
|
14092
|
+
}
|
|
14093
|
+
|
|
14094
|
+
.k-picker-outline:hover, .k-picker-outline.k-hover {
|
|
14095
|
+
border-color: #212529;
|
|
14096
|
+
color: #ffffff;
|
|
14097
|
+
background-color: #212529;
|
|
14098
|
+
}
|
|
14099
|
+
|
|
14100
|
+
.k-picker-outline:focus, .k-picker-outline.k-focus {
|
|
14101
|
+
border-color: #212529;
|
|
14102
|
+
color: #212529;
|
|
14103
|
+
background-color: transparent;
|
|
14104
|
+
box-shadow: 0 0 0 0.25rem rgba(228, 231, 235, 0.5);
|
|
14105
|
+
}
|
|
14106
|
+
|
|
14107
|
+
.k-picker-outline:focus:hover, .k-picker-outline:focus.k-hover, .k-picker-outline.k-focus:hover, .k-picker-outline.k-focus.k-hover {
|
|
14108
|
+
border-color: #212529;
|
|
14109
|
+
color: #ffffff;
|
|
14110
|
+
background-color: #212529;
|
|
14111
|
+
}
|
|
14112
|
+
|
|
14113
|
+
.k-picker-outline.k-invalid, .k-picker-outline.ng-invalid.ng-touched, .k-picker-outline.ng-invalid.ng-dirty {
|
|
14114
|
+
border-color: #dc3545;
|
|
14115
|
+
}
|
|
14116
|
+
|
|
14117
|
+
.k-picker-outline.k-invalid .k-input-validation-icon, .k-picker-outline.ng-invalid.ng-touched .k-input-validation-icon, .k-picker-outline.ng-invalid.ng-dirty .k-input-validation-icon {
|
|
14118
|
+
color: #dc3545;
|
|
14119
|
+
}
|
|
14120
|
+
|
|
14121
|
+
.k-picker-outline.k-invalid:focus, .k-picker-outline.k-invalid.k-focus, .k-picker-outline.ng-invalid.ng-touched:focus, .k-picker-outline.ng-invalid.ng-touched.k-focus, .k-picker-outline.ng-invalid.ng-dirty:focus, .k-picker-outline.ng-invalid.ng-dirty.k-focus {
|
|
14122
|
+
box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
|
|
14123
|
+
}
|
|
14124
|
+
|
|
14125
|
+
.k-picker-outline.k-invalid:focus-within, .k-picker-outline.ng-invalid.ng-touched:focus-within, .k-picker-outline.ng-invalid.ng-dirty:focus-within {
|
|
14126
|
+
box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
|
|
14127
|
+
}
|
|
14128
|
+
|
|
14129
|
+
.k-input-flat {
|
|
14130
|
+
background-color: transparent;
|
|
14131
|
+
}
|
|
14132
|
+
|
|
14133
|
+
.k-input-flat:focus, .k-input-flat.k-focus {
|
|
14134
|
+
border-color: #0d6efd;
|
|
14135
|
+
}
|
|
14136
|
+
|
|
14137
|
+
.k-input-flat.k-invalid, .k-input-flat.ng-invalid.ng-touched, .k-input-flat.ng-invalid.ng-dirty {
|
|
14138
|
+
border-color: #dc3545;
|
|
14139
|
+
}
|
|
14140
|
+
|
|
14141
|
+
.k-input-flat.k-invalid .k-input-validation-icon, .k-input-flat.ng-invalid.ng-touched .k-input-validation-icon, .k-input-flat.ng-invalid.ng-dirty .k-input-validation-icon {
|
|
14142
|
+
color: #dc3545;
|
|
14143
|
+
}
|
|
14144
|
+
|
|
14145
|
+
.k-input-flat.k-invalid:focus, .k-input-flat.k-invalid.k-focus, .k-input-flat.ng-invalid.ng-touched:focus, .k-input-flat.ng-invalid.ng-touched.k-focus, .k-input-flat.ng-invalid.ng-dirty:focus, .k-input-flat.ng-invalid.ng-dirty.k-focus {
|
|
14146
|
+
box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
|
|
14147
|
+
}
|
|
14148
|
+
|
|
14149
|
+
.k-input-flat.k-invalid:focus-within, .k-input-flat.ng-invalid.ng-touched:focus-within, .k-input-flat.ng-invalid.ng-dirty:focus-within {
|
|
14150
|
+
box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
|
|
14151
|
+
}
|
|
14152
|
+
|
|
14153
|
+
.k-picker-flat {
|
|
14154
|
+
background-color: transparent;
|
|
14155
|
+
}
|
|
14156
|
+
|
|
14157
|
+
.k-picker-flat:hover, .k-picker-flat.k-hover {
|
|
14158
|
+
background-color: rgba(33, 37, 41, 0.08);
|
|
14159
|
+
}
|
|
14160
|
+
|
|
14161
|
+
.k-picker-flat:focus, .k-picker-flat.k-focus {
|
|
14162
|
+
border-color: #bfc6d0;
|
|
14163
|
+
background-color: transparent;
|
|
14164
|
+
box-shadow: 0 0 0 0.25rem rgba(228, 231, 235, 0.5);
|
|
14165
|
+
}
|
|
14166
|
+
|
|
14167
|
+
.k-picker-flat:focus:hover, .k-picker-flat:focus.k-hover, .k-picker-flat.k-focus:hover, .k-picker-flat.k-focus.k-hover {
|
|
14168
|
+
background-color: rgba(33, 37, 41, 0.08);
|
|
14169
|
+
}
|
|
14170
|
+
|
|
14171
|
+
.k-picker-flat.k-invalid, .k-picker-flat.ng-invalid.ng-touched, .k-picker-flat.ng-invalid.ng-dirty {
|
|
14172
|
+
border-color: #dc3545;
|
|
14173
|
+
}
|
|
14174
|
+
|
|
14175
|
+
.k-picker-flat.k-invalid .k-input-validation-icon, .k-picker-flat.ng-invalid.ng-touched .k-input-validation-icon, .k-picker-flat.ng-invalid.ng-dirty .k-input-validation-icon {
|
|
14176
|
+
color: #dc3545;
|
|
14177
|
+
}
|
|
14178
|
+
|
|
14179
|
+
.k-picker-flat.k-invalid:focus, .k-picker-flat.k-invalid.k-focus, .k-picker-flat.ng-invalid.ng-touched:focus, .k-picker-flat.ng-invalid.ng-touched.k-focus, .k-picker-flat.ng-invalid.ng-dirty:focus, .k-picker-flat.ng-invalid.ng-dirty.k-focus {
|
|
14180
|
+
box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
|
|
14181
|
+
}
|
|
14182
|
+
|
|
14183
|
+
.k-picker-flat.k-invalid:focus-within, .k-picker-flat.ng-invalid.ng-touched:focus-within, .k-picker-flat.ng-invalid.ng-dirty:focus-within {
|
|
14184
|
+
box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
|
|
14185
|
+
}
|
|
14186
|
+
|
|
14042
14187
|
.k-floating-label-container {
|
|
14043
14188
|
padding-top: 1.5rem;
|
|
14044
14189
|
box-sizing: border-box;
|
|
@@ -18614,7 +18759,7 @@ kendo-label > .k-label {
|
|
|
18614
18759
|
color: #0d6efd;
|
|
18615
18760
|
}
|
|
18616
18761
|
|
|
18617
|
-
.k-calendar .k-nav-today:hover, .k-calendar .k-nav-today.k-state-hover, .k-calendar .k-nav-today:focus, .k-calendar .k-nav-today.k-state-focus {
|
|
18762
|
+
.k-calendar .k-nav-today:hover, .k-calendar .k-nav-today.k-hover, .k-calendar .k-nav-today.k-state-hover, .k-calendar .k-nav-today:focus, .k-calendar .k-nav-today.k-state-focus, .k-calendar .k-nav-today.k-focus {
|
|
18618
18763
|
color: #0a58ca;
|
|
18619
18764
|
}
|
|
18620
18765
|
|
|
@@ -18629,7 +18774,8 @@ kendo-label > .k-label {
|
|
|
18629
18774
|
box-shadow: inset 0 0 0 1px #0d6efd;
|
|
18630
18775
|
}
|
|
18631
18776
|
|
|
18632
|
-
.k-calendar .k-calendar-view .k-today.k-state-focused .k-link
|
|
18777
|
+
.k-calendar .k-calendar-view .k-today.k-state-focused .k-link,
|
|
18778
|
+
.k-calendar .k-calendar-view .k-today.k-focus .k-link {
|
|
18633
18779
|
box-shadow: inset 0 0 0 1px #0d6efd, inset 0 0 0 0.25rem rgba(228, 231, 235, 0.5);
|
|
18634
18780
|
}
|
|
18635
18781
|
|
|
@@ -18648,32 +18794,39 @@ kendo-label > .k-label {
|
|
|
18648
18794
|
}
|
|
18649
18795
|
|
|
18650
18796
|
.k-calendar .k-calendar-td:hover .k-link,
|
|
18651
|
-
.k-calendar .k-calendar-td.k-state-hover .k-link
|
|
18797
|
+
.k-calendar .k-calendar-td.k-state-hover .k-link,
|
|
18798
|
+
.k-calendar .k-calendar-td.k-hover .k-link {
|
|
18652
18799
|
border-color: #d6d9dc;
|
|
18653
18800
|
color: #212529;
|
|
18654
18801
|
background-color: #e9ecef;
|
|
18655
18802
|
}
|
|
18656
18803
|
|
|
18657
|
-
.k-calendar .k-calendar-td.k-state-selected .k-link
|
|
18804
|
+
.k-calendar .k-calendar-td.k-state-selected .k-link,
|
|
18805
|
+
.k-calendar .k-calendar-td.k-selected .k-link {
|
|
18658
18806
|
border-color: #0c65e9;
|
|
18659
18807
|
color: white;
|
|
18660
18808
|
background-color: #0d6efd;
|
|
18661
18809
|
}
|
|
18662
18810
|
|
|
18663
18811
|
.k-calendar .k-calendar-td.k-state-selected:hover .k-link,
|
|
18664
|
-
.k-calendar .k-calendar-td.k-state-selected.k-state-hover .k-link
|
|
18812
|
+
.k-calendar .k-calendar-td.k-state-selected.k-state-hover .k-link,
|
|
18813
|
+
.k-calendar .k-calendar-td.k-selected:hover .k-link,
|
|
18814
|
+
.k-calendar .k-calendar-td.k-selected.k-hover .k-link {
|
|
18665
18815
|
border-color: #e4e5e6;
|
|
18666
18816
|
color: white;
|
|
18667
18817
|
background-color: #0c6af3;
|
|
18668
18818
|
}
|
|
18669
18819
|
|
|
18670
18820
|
.k-calendar .k-calendar-td.k-state-focused .k-link,
|
|
18671
|
-
.k-calendar .k-calendar-td.k-state-focus .k-link
|
|
18821
|
+
.k-calendar .k-calendar-td.k-state-focus .k-link,
|
|
18822
|
+
.k-calendar .k-calendar-td.k-focus .k-link {
|
|
18672
18823
|
box-shadow: inset 0 0 0 0.25rem rgba(228, 231, 235, 0.5);
|
|
18673
18824
|
}
|
|
18674
18825
|
|
|
18675
18826
|
.k-calendar .k-calendar-td.k-state-selected.k-state-focused .k-link,
|
|
18676
|
-
.k-calendar .k-calendar-td.k-state-selected.k-state-focus .k-link
|
|
18827
|
+
.k-calendar .k-calendar-td.k-state-selected.k-state-focus .k-link,
|
|
18828
|
+
.k-calendar .k-calendar-td.k-selected:focus .k-link,
|
|
18829
|
+
.k-calendar .k-calendar-td.k-selected.k-focus .k-link {
|
|
18677
18830
|
box-shadow: inset 0 0 0 2px rgba(2, 82, 201, 0.5);
|
|
18678
18831
|
}
|
|
18679
18832
|
|
|
@@ -18684,7 +18837,8 @@ kendo-label > .k-label {
|
|
|
18684
18837
|
}
|
|
18685
18838
|
|
|
18686
18839
|
.k-calendar .k-calendar-navigation li:hover,
|
|
18687
|
-
.k-calendar .k-calendar-navigation li.k-state-hover
|
|
18840
|
+
.k-calendar .k-calendar-navigation li.k-state-hover,
|
|
18841
|
+
.k-calendar .k-calendar-navigation li.k-hover {
|
|
18688
18842
|
color: #0a58ca;
|
|
18689
18843
|
}
|
|
18690
18844
|
|
|
@@ -18732,7 +18886,8 @@ kendo-label > .k-label {
|
|
|
18732
18886
|
}
|
|
18733
18887
|
|
|
18734
18888
|
.k-calendar .k-range-start.k-state-active .k-link,
|
|
18735
|
-
.k-calendar .k-range-end.k-state-active .k-link
|
|
18889
|
+
.k-calendar .k-range-end.k-state-active .k-link,
|
|
18890
|
+
.k-calendar .k-range-end.k-active .k-link {
|
|
18736
18891
|
box-shadow: inset 0 0 2px 2px rgba(0, 0, 0, 0.2);
|
|
18737
18892
|
}
|
|
18738
18893
|
|
|
@@ -22627,7 +22782,11 @@ kendo-card-footer {
|
|
|
22627
22782
|
background-color: #ffffff;
|
|
22628
22783
|
}
|
|
22629
22784
|
|
|
22630
|
-
.k-card:focus, .k-card.k-state-focus {
|
|
22785
|
+
.k-card:focus, .k-card.k-focus, .k-card.k-state-focus {
|
|
22786
|
+
box-shadow: 0 0 0 3px rgba(222, 226, 230, 0.5);
|
|
22787
|
+
}
|
|
22788
|
+
|
|
22789
|
+
.k-card.k-selected, .k-card.k-state-selected {
|
|
22631
22790
|
box-shadow: 0 0 0 3px rgba(222, 226, 230, 0.5);
|
|
22632
22791
|
}
|
|
22633
22792
|
|
|
@@ -22756,7 +22915,7 @@ kendo-card-footer {
|
|
|
22756
22915
|
color: inherit;
|
|
22757
22916
|
}
|
|
22758
22917
|
|
|
22759
|
-
.k-card-wrap.k-state-focused > .k-card, .k-card-wrap.k-state-selected > .k-card {
|
|
22918
|
+
.k-card-wrap.k-state-focused > .k-card, .k-card-wrap.k-focus > .k-card, .k-card-wrap:focus > .k-card, .k-card-wrap.k-state-selected > .k-card, .k-card-wrap.k-selected > .k-card {
|
|
22760
22919
|
box-shadow: 0 0 0 3px rgba(222, 226, 230, 0.5);
|
|
22761
22920
|
}
|
|
22762
22921
|
|
|
@@ -22766,21 +22925,25 @@ kendo-card-footer {
|
|
|
22766
22925
|
}
|
|
22767
22926
|
|
|
22768
22927
|
.k-card:focus .k-card-callout.k-callout-n,
|
|
22928
|
+
.k-card.k-focus .k-card-callout.k-callout-n,
|
|
22769
22929
|
.k-card.k-state-focus .k-card-callout.k-callout-n {
|
|
22770
22930
|
box-shadow: 0 0 0 3px rgba(222, 226, 230, 0.5);
|
|
22771
22931
|
}
|
|
22772
22932
|
|
|
22773
22933
|
.k-card:focus .k-card-callout.k-callout-e,
|
|
22934
|
+
.k-card.k-focus .k-card-callout.k-callout-e,
|
|
22774
22935
|
.k-card.k-state-focus .k-card-callout.k-callout-e {
|
|
22775
22936
|
box-shadow: 0 0 0 3px rgba(222, 226, 230, 0.5);
|
|
22776
22937
|
}
|
|
22777
22938
|
|
|
22778
22939
|
.k-card:focus .k-card-callout.k-callout-s,
|
|
22940
|
+
.k-card.k-focus .k-card-callout.k-callout-s,
|
|
22779
22941
|
.k-card.k-state-focus .k-card-callout.k-callout-s {
|
|
22780
22942
|
box-shadow: 3px -3px 0 0 rgba(222, 226, 230, 0.5);
|
|
22781
22943
|
}
|
|
22782
22944
|
|
|
22783
22945
|
.k-card:focus .k-card-callout.k-callout-w,
|
|
22946
|
+
.k-card.k-focus .k-card-callout.k-callout-w,
|
|
22784
22947
|
.k-card.k-state-focus .k-card-callout.k-callout-w {
|
|
22785
22948
|
box-shadow: 0 0 0 3px rgba(222, 226, 230, 0.5);
|
|
22786
22949
|
}
|
|
@@ -25218,6 +25381,7 @@ kendo-card-footer {
|
|
|
25218
25381
|
}
|
|
25219
25382
|
|
|
25220
25383
|
.k-tilelayout-item:focus,
|
|
25384
|
+
.k-tilelayout-item.k-focus,
|
|
25221
25385
|
.k-tilelayout-item.k-state-focus,
|
|
25222
25386
|
.k-tilelayout-item.k-state-focused {
|
|
25223
25387
|
box-shadow: 0 0 0 3px rgba(222, 226, 230, 0.5);
|
|
@@ -26985,6 +27149,7 @@ div.k-grid-norecords {
|
|
|
26985
27149
|
.k-filter-menu-container kendo-numeric-filter-menu,
|
|
26986
27150
|
.k-filter-menu-container kendo-grid-string-filter-menu,
|
|
26987
27151
|
.k-filter-menu-container kendo-grid-date-filter-menu,
|
|
27152
|
+
.k-filter-menu-container kendo-grid-numeric-filter-menu,
|
|
26988
27153
|
.k-filter-menu-container kendo-grid-filter-menu-input-wrapper {
|
|
26989
27154
|
display: flex;
|
|
26990
27155
|
flex-flow: column nowrap;
|
|
@@ -30245,7 +30410,7 @@ kendo-grid tr.k-state-hover .k-grid-content-sticky.k-state-selected {
|
|
|
30245
30410
|
overflow-wrap: anywhere;
|
|
30246
30411
|
}
|
|
30247
30412
|
|
|
30248
|
-
.k-taskboard-card .k-card-title:focus, .k-taskboard-card .k-card-title.k-state-focus, .k-taskboard-card .k-card-title:hover, .k-taskboard-card .k-card-title.k-state-hover {
|
|
30413
|
+
.k-taskboard-card .k-card-title:focus, .k-taskboard-card .k-card-title.k-focus, .k-taskboard-card .k-card-title.k-state-focus, .k-taskboard-card .k-card-title:hover, .k-taskboard-card .k-card-title.k-hover, .k-taskboard-card .k-card-title.k-state-hover {
|
|
30249
30414
|
text-decoration: underline;
|
|
30250
30415
|
}
|
|
30251
30416
|
|
|
@@ -30317,29 +30482,29 @@ kendo-grid tr.k-state-hover .k-grid-content-sticky.k-state-selected {
|
|
|
30317
30482
|
color: #0d6efd;
|
|
30318
30483
|
}
|
|
30319
30484
|
|
|
30320
|
-
.k-taskboard-card .k-card-title:focus, .k-taskboard-card .k-card-title.k-state-focus {
|
|
30485
|
+
.k-taskboard-card .k-card-title:focus, .k-taskboard-card .k-card-title.k-focus, .k-taskboard-card .k-card-title.k-state-focus {
|
|
30321
30486
|
color: #0b5cd5;
|
|
30322
30487
|
}
|
|
30323
30488
|
|
|
30324
|
-
.k-taskboard-card .k-card-title:hover, .k-taskboard-card .k-card-title.k-state-hover {
|
|
30489
|
+
.k-taskboard-card .k-card-title:hover, .k-taskboard-card .k-card-title.k-hover, .k-taskboard-card .k-card-title.k-state-hover {
|
|
30325
30490
|
color: #0b5cd5;
|
|
30326
30491
|
}
|
|
30327
30492
|
|
|
30328
|
-
.k-taskboard-card:focus, .k-taskboard-card.k-state-focus {
|
|
30493
|
+
.k-taskboard-card:focus, .k-taskboard-card.k-focus, .k-taskboard-card.k-state-focus {
|
|
30329
30494
|
border-color: #b6b9bd;
|
|
30330
30495
|
box-shadow: 0 0 0 3px rgba(222, 226, 230, 0.5);
|
|
30331
30496
|
}
|
|
30332
30497
|
|
|
30333
|
-
.k-taskboard-card:hover, .k-taskboard-card.k-state-hover {
|
|
30498
|
+
.k-taskboard-card:hover, .k-taskboard-card.k-hover, .k-taskboard-card.k-state-hover {
|
|
30334
30499
|
border-color: #c8cbcf;
|
|
30335
30500
|
}
|
|
30336
30501
|
|
|
30337
|
-
.k-taskboard-card.k-state-selected {
|
|
30502
|
+
.k-taskboard-card.k-selected, .k-taskboard-card.k-state-selected {
|
|
30338
30503
|
border-color: #b6d3fe;
|
|
30339
30504
|
box-shadow: none;
|
|
30340
30505
|
}
|
|
30341
30506
|
|
|
30342
|
-
.k-taskboard-card.k-state-disabled {
|
|
30507
|
+
.k-taskboard-card.k-disabled, .k-taskboard-card.k-state-disabled {
|
|
30343
30508
|
outline: none;
|
|
30344
30509
|
cursor: default;
|
|
30345
30510
|
opacity: 0.65;
|
|
@@ -33359,6 +33524,11 @@ kendo-scheduler .k-event .k-event-actions,
|
|
|
33359
33524
|
font-size: 0.875rem;
|
|
33360
33525
|
}
|
|
33361
33526
|
|
|
33527
|
+
kendo-scheduler .k-event .k-event-actions:first-child,
|
|
33528
|
+
.k-event .k-event-actions:first-child {
|
|
33529
|
+
margin: 0.1ex 0.4ex 0 0.5rem;
|
|
33530
|
+
}
|
|
33531
|
+
|
|
33362
33532
|
.k-scheduler {
|
|
33363
33533
|
border-color: #dee2e6;
|
|
33364
33534
|
color: #212529;
|
|
@@ -36140,7 +36310,7 @@ kendo-scrollview.k-scrollview-wrap.k-scrollview-light .k-scrollview-nav-wrap,
|
|
|
36140
36310
|
border-color: transparent;
|
|
36141
36311
|
}
|
|
36142
36312
|
|
|
36143
|
-
.k-orgchart-card:focus, .k-orgchart-card.k-state-focus {
|
|
36313
|
+
.k-orgchart-card:focus, .k-orgchart-card.k-focus, .k-orgchart-card.k-state-focus {
|
|
36144
36314
|
box-shadow: 0 0 0 3px rgba(222, 226, 230, 0.5);
|
|
36145
36315
|
}
|
|
36146
36316
|
|
|
@@ -36151,6 +36321,7 @@ kendo-scrollview.k-scrollview-wrap.k-scrollview-light .k-scrollview-nav-wrap,
|
|
|
36151
36321
|
}
|
|
36152
36322
|
|
|
36153
36323
|
.k-orgchart-node-group-container:focus,
|
|
36324
|
+
.k-orgchart-node-group-container.k-focus,
|
|
36154
36325
|
.k-orgchart-node-group-container.k-state-focus,
|
|
36155
36326
|
.k-orgchart-node-group-container.k-state-focused {
|
|
36156
36327
|
box-shadow: 0 0 0 3px rgba(222, 226, 230, 0.5);
|
package/dist/all.scss
CHANGED
|
@@ -10267,13 +10267,13 @@ $kendo-button-selected-shadow: $kendo-button-active-shadow !default;
|
|
|
10267
10267
|
|
|
10268
10268
|
/// The base background of focused button.
|
|
10269
10269
|
/// @group button
|
|
10270
|
-
$kendo-button-focus-bg:
|
|
10270
|
+
$kendo-button-focus-bg: try-darken( $kendo-button-bg, 10% ) !default;
|
|
10271
10271
|
/// The base text color of focused button.
|
|
10272
10272
|
/// @group button
|
|
10273
10273
|
$kendo-button-focus-text: null !default;
|
|
10274
10274
|
/// The base border color of focused button.
|
|
10275
10275
|
/// @group button
|
|
10276
|
-
$kendo-button-focus-border:
|
|
10276
|
+
$kendo-button-focus-border: try-darken( $kendo-button-bg, 12.5% ) !default;
|
|
10277
10277
|
/// The base background gradient of focused button.
|
|
10278
10278
|
/// @group button
|
|
10279
10279
|
$kendo-button-focus-gradient: null !default;
|
|
@@ -11063,6 +11063,29 @@ $kendo-input-disabled-border: null !default;
|
|
|
11063
11063
|
$kendo-input-disabled-gradient: null !default;
|
|
11064
11064
|
$kendo-input-disabled-shadow: null !default;
|
|
11065
11065
|
|
|
11066
|
+
$kendo-input-outline-bg: null !default;
|
|
11067
|
+
$kendo-input-outline-text: $base-text !default;
|
|
11068
|
+
$kendo-input-outline-border: rgba( $base-text, .5 ) !default;
|
|
11069
|
+
|
|
11070
|
+
$kendo-input-outline-hover-bg: null !default;
|
|
11071
|
+
$kendo-input-outline-hover-text: null !default;
|
|
11072
|
+
$kendo-input-outline-hover-border: null !default;
|
|
11073
|
+
|
|
11074
|
+
$kendo-input-outline-focus-bg: null !default;
|
|
11075
|
+
$kendo-input-outline-focus-text: null !default;
|
|
11076
|
+
$kendo-input-outline-focus-border: null !default;
|
|
11077
|
+
$kendo-input-outline-focus-shadow: null !default;
|
|
11078
|
+
|
|
11079
|
+
$kendo-input-flat-bg: transparent !default;
|
|
11080
|
+
$kendo-input-flat-text: null !default;
|
|
11081
|
+
$kendo-input-flat-border: null !default;
|
|
11082
|
+
|
|
11083
|
+
$kendo-input-flat-focus-bg: null !default;
|
|
11084
|
+
$kendo-input-flat-focus-text: null !default;
|
|
11085
|
+
$kendo-input-flat-focus-border: $primary !default;
|
|
11086
|
+
|
|
11087
|
+
$kendo-input-flat-border-radius: $kendo-border-radius $kendo-border-radius 0px 0px !default;
|
|
11088
|
+
|
|
11066
11089
|
$kendo-picker-bg: $kendo-button-bg !default;
|
|
11067
11090
|
$kendo-picker-text: $kendo-button-text !default;
|
|
11068
11091
|
$kendo-picker-border: $kendo-button-border !default;
|
|
@@ -11075,7 +11098,7 @@ $kendo-picker-hover-border: $kendo-button-hover-border !default;
|
|
|
11075
11098
|
$kendo-picker-hover-gradient: $kendo-button-hover-gradient !default;
|
|
11076
11099
|
$kendo-picker-hover-shadow: $kendo-button-hover-shadow !default;
|
|
11077
11100
|
|
|
11078
|
-
$kendo-picker-focus-bg: $kendo-button-
|
|
11101
|
+
$kendo-picker-focus-bg: $kendo-button-active-bg !default;
|
|
11079
11102
|
$kendo-picker-focus-text: $kendo-button-focus-text !default;
|
|
11080
11103
|
$kendo-picker-focus-border: $kendo-button-focus-border !default;
|
|
11081
11104
|
$kendo-picker-focus-gradient: $kendo-button-focus-gradient !default;
|
|
@@ -11087,6 +11110,40 @@ $kendo-picker-disabled-border: null !default;
|
|
|
11087
11110
|
$kendo-picker-disabled-gradient: null !default;
|
|
11088
11111
|
$kendo-picker-disabled-shadow: null !default;
|
|
11089
11112
|
|
|
11113
|
+
$kendo-picker-outline-bg: transparent !default;
|
|
11114
|
+
$kendo-picker-outline-text: $kendo-button-text !default;
|
|
11115
|
+
$kendo-picker-outline-border: $kendo-picker-outline-text !default;
|
|
11116
|
+
|
|
11117
|
+
$kendo-picker-outline-hover-bg: $kendo-button-text !default;
|
|
11118
|
+
$kendo-picker-outline-hover-text: $body-bg !default;
|
|
11119
|
+
$kendo-picker-outline-hover-border: $kendo-picker-outline-hover-bg !default;
|
|
11120
|
+
|
|
11121
|
+
$kendo-picker-outline-focus-bg: transparent !default;
|
|
11122
|
+
$kendo-picker-outline-focus-text: $kendo-picker-outline-text !default;
|
|
11123
|
+
$kendo-picker-outline-focus-border: $kendo-picker-outline-border !default;
|
|
11124
|
+
$kendo-picker-outline-focus-shadow: $kendo-picker-focus-shadow !default;
|
|
11125
|
+
|
|
11126
|
+
$kendo-picker-outline-hover-focus-bg: $kendo-picker-outline-hover-bg !default;
|
|
11127
|
+
$kendo-picker-outline-hover-focus-text: $kendo-picker-outline-hover-text !default;
|
|
11128
|
+
$kendo-picker-outline-hover-focus-border: $kendo-picker-outline-hover-border !default;
|
|
11129
|
+
|
|
11130
|
+
$kendo-picker-flat-bg: transparent !default;
|
|
11131
|
+
$kendo-picker-flat-text: null !default;
|
|
11132
|
+
$kendo-picker-flat-border: null !default;
|
|
11133
|
+
|
|
11134
|
+
$kendo-picker-flat-hover-bg: rgba( $kendo-button-text, .08 ) !default;
|
|
11135
|
+
$kendo-picker-flat-hover-text: null !default;
|
|
11136
|
+
$kendo-picker-flat-hover-border: null !default;
|
|
11137
|
+
|
|
11138
|
+
$kendo-picker-flat-focus-bg: transparent !default;
|
|
11139
|
+
$kendo-picker-flat-focus-text: null !default;
|
|
11140
|
+
$kendo-picker-flat-focus-border: $kendo-picker-focus-border !default;
|
|
11141
|
+
$kendo-picker-flat-focus-shadow: $kendo-picker-focus-shadow !default;
|
|
11142
|
+
|
|
11143
|
+
$kendo-picker-flat-hover-focus-bg: rgba( $kendo-button-text, .08 ) !default;
|
|
11144
|
+
$kendo-picker-flat-hover-focus-text: null !default;
|
|
11145
|
+
$kendo-picker-flat-hover-focus-border: null !default;
|
|
11146
|
+
|
|
11090
11147
|
$kendo-input-placeholder-text: $input-placeholder-color !default;
|
|
11091
11148
|
$kendo-input-placeholder-opacity: 1 !default;
|
|
11092
11149
|
|
|
@@ -11464,19 +11521,25 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
11464
11521
|
@include border-radius( 0 !important ); // sass-lint:disable-line no-important
|
|
11465
11522
|
border-width: $kendo-input-border-width 0;
|
|
11466
11523
|
border-top-color: transparent !important; // sass-lint:disable-line no-important
|
|
11467
|
-
background: none !important; // sass-lint:disable-line no-important
|
|
11524
|
+
background-image: none !important; // sass-lint:disable-line no-important
|
|
11468
11525
|
|
|
11469
|
-
|
|
11470
|
-
|
|
11471
|
-
|
|
11526
|
+
&:focus,
|
|
11527
|
+
&.k-focus {
|
|
11528
|
+
@include border-radius( $kendo-input-flat-border-radius !important ); // sass-lint:disable-line no-important
|
|
11529
|
+
}
|
|
11530
|
+
&:focus-within {
|
|
11531
|
+
@include border-radius( $kendo-input-flat-border-radius !important ); // sass-lint:disable-line no-important
|
|
11472
11532
|
}
|
|
11473
11533
|
}
|
|
11474
11534
|
|
|
11475
|
-
.k-input-outline
|
|
11476
|
-
.k-picker-outline {
|
|
11535
|
+
.k-input-outline {
|
|
11477
11536
|
background: none !important; // sass-lint:disable-line no-important
|
|
11478
11537
|
}
|
|
11479
11538
|
|
|
11539
|
+
.k-picker.k-picker-flat {
|
|
11540
|
+
@include border-radius( $kendo-input-flat-border-radius !important ); // sass-lint:disable-line no-important
|
|
11541
|
+
}
|
|
11542
|
+
|
|
11480
11543
|
|
|
11481
11544
|
// Sizing
|
|
11482
11545
|
@each $size, $size-props in $kendo-input-sizes {
|
|
@@ -11737,6 +11800,218 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
11737
11800
|
}
|
|
11738
11801
|
}
|
|
11739
11802
|
|
|
11803
|
+
// Outline
|
|
11804
|
+
.k-input-outline {
|
|
11805
|
+
@include fill (
|
|
11806
|
+
$kendo-input-outline-text,
|
|
11807
|
+
$kendo-input-outline-bg,
|
|
11808
|
+
$kendo-input-outline-border
|
|
11809
|
+
);
|
|
11810
|
+
|
|
11811
|
+
& > .k-input-button {
|
|
11812
|
+
border-color: inherit;
|
|
11813
|
+
}
|
|
11814
|
+
|
|
11815
|
+
& > .k-input-spinner {
|
|
11816
|
+
border-color: inherit;
|
|
11817
|
+
|
|
11818
|
+
& > .k-spinner-increase,
|
|
11819
|
+
& > .k-spinner-decrease {
|
|
11820
|
+
border-color: inherit;
|
|
11821
|
+
}
|
|
11822
|
+
}
|
|
11823
|
+
|
|
11824
|
+
&:hover,
|
|
11825
|
+
&.k-hover {
|
|
11826
|
+
@include fill (
|
|
11827
|
+
$kendo-input-outline-hover-text,
|
|
11828
|
+
$kendo-input-outline-hover-bg,
|
|
11829
|
+
$kendo-input-outline-hover-border
|
|
11830
|
+
);
|
|
11831
|
+
}
|
|
11832
|
+
|
|
11833
|
+
&:focus,
|
|
11834
|
+
&.k-focus {
|
|
11835
|
+
@include fill (
|
|
11836
|
+
$kendo-input-outline-focus-text,
|
|
11837
|
+
$kendo-input-outline-focus-bg,
|
|
11838
|
+
$kendo-input-outline-focus-border
|
|
11839
|
+
);
|
|
11840
|
+
@include box-shadow ( $kendo-input-outline-focus-shadow );
|
|
11841
|
+
}
|
|
11842
|
+
|
|
11843
|
+
// Invalid
|
|
11844
|
+
&.k-invalid,
|
|
11845
|
+
&.ng-invalid.ng-touched,
|
|
11846
|
+
&.ng-invalid.ng-dirty {
|
|
11847
|
+
@include fill( $border: $invalid-border );
|
|
11848
|
+
|
|
11849
|
+
.k-input-validation-icon {
|
|
11850
|
+
color: $invalid-text;
|
|
11851
|
+
}
|
|
11852
|
+
|
|
11853
|
+
&:focus,
|
|
11854
|
+
&.k-focus {
|
|
11855
|
+
@include box-shadow($invalid-shadow);
|
|
11856
|
+
}
|
|
11857
|
+
&:focus-within {
|
|
11858
|
+
@include box-shadow($invalid-shadow);
|
|
11859
|
+
}
|
|
11860
|
+
}
|
|
11861
|
+
|
|
11862
|
+
}
|
|
11863
|
+
|
|
11864
|
+
.k-picker-outline {
|
|
11865
|
+
@include fill (
|
|
11866
|
+
$kendo-picker-outline-text,
|
|
11867
|
+
$kendo-picker-outline-bg,
|
|
11868
|
+
$kendo-picker-outline-border
|
|
11869
|
+
);
|
|
11870
|
+
|
|
11871
|
+
&:hover,
|
|
11872
|
+
&.k-hover {
|
|
11873
|
+
@include fill (
|
|
11874
|
+
$kendo-picker-outline-hover-text,
|
|
11875
|
+
$kendo-picker-outline-hover-bg,
|
|
11876
|
+
$kendo-picker-outline-hover-border
|
|
11877
|
+
);
|
|
11878
|
+
}
|
|
11879
|
+
|
|
11880
|
+
&:focus,
|
|
11881
|
+
&.k-focus {
|
|
11882
|
+
@include fill (
|
|
11883
|
+
$kendo-picker-outline-focus-text,
|
|
11884
|
+
$kendo-picker-outline-focus-bg,
|
|
11885
|
+
$kendo-picker-outline-focus-border
|
|
11886
|
+
);
|
|
11887
|
+
@include box-shadow ( $kendo-picker-outline-focus-shadow );
|
|
11888
|
+
}
|
|
11889
|
+
|
|
11890
|
+
&:focus:hover,
|
|
11891
|
+
&:focus.k-hover,
|
|
11892
|
+
&.k-focus:hover,
|
|
11893
|
+
&.k-focus.k-hover {
|
|
11894
|
+
@include fill (
|
|
11895
|
+
$kendo-picker-outline-hover-focus-text,
|
|
11896
|
+
$kendo-picker-outline-hover-focus-bg,
|
|
11897
|
+
$kendo-picker-outline-hover-focus-border
|
|
11898
|
+
);
|
|
11899
|
+
}
|
|
11900
|
+
|
|
11901
|
+
// Invalid
|
|
11902
|
+
&.k-invalid,
|
|
11903
|
+
&.ng-invalid.ng-touched,
|
|
11904
|
+
&.ng-invalid.ng-dirty {
|
|
11905
|
+
@include fill( $border: $invalid-border );
|
|
11906
|
+
|
|
11907
|
+
.k-input-validation-icon {
|
|
11908
|
+
color: $invalid-text;
|
|
11909
|
+
}
|
|
11910
|
+
|
|
11911
|
+
&:focus,
|
|
11912
|
+
&.k-focus {
|
|
11913
|
+
@include box-shadow($invalid-shadow);
|
|
11914
|
+
}
|
|
11915
|
+
&:focus-within {
|
|
11916
|
+
@include box-shadow($invalid-shadow);
|
|
11917
|
+
}
|
|
11918
|
+
}
|
|
11919
|
+
}
|
|
11920
|
+
|
|
11921
|
+
// Flat
|
|
11922
|
+
.k-input-flat {
|
|
11923
|
+
@include fill (
|
|
11924
|
+
$kendo-input-flat-text,
|
|
11925
|
+
$kendo-input-flat-bg,
|
|
11926
|
+
$kendo-input-flat-border
|
|
11927
|
+
);
|
|
11928
|
+
|
|
11929
|
+
&:focus,
|
|
11930
|
+
&.k-focus {
|
|
11931
|
+
@include fill (
|
|
11932
|
+
$kendo-input-flat-focus-text,
|
|
11933
|
+
$kendo-input-flat-focus-bg,
|
|
11934
|
+
$kendo-input-flat-focus-border
|
|
11935
|
+
);
|
|
11936
|
+
}
|
|
11937
|
+
|
|
11938
|
+
// Invalid
|
|
11939
|
+
&.k-invalid,
|
|
11940
|
+
&.ng-invalid.ng-touched,
|
|
11941
|
+
&.ng-invalid.ng-dirty {
|
|
11942
|
+
@include fill( $border: $kendo-input-invalid-border );
|
|
11943
|
+
|
|
11944
|
+
.k-input-validation-icon {
|
|
11945
|
+
color: $invalid-text;
|
|
11946
|
+
}
|
|
11947
|
+
|
|
11948
|
+
&:focus,
|
|
11949
|
+
&.k-focus {
|
|
11950
|
+
@include box-shadow( $kendo-input-invalid-shadow );
|
|
11951
|
+
}
|
|
11952
|
+
&:focus-within {
|
|
11953
|
+
@include box-shadow( $kendo-input-invalid-shadow );
|
|
11954
|
+
}
|
|
11955
|
+
}
|
|
11956
|
+
}
|
|
11957
|
+
|
|
11958
|
+
.k-picker-flat {
|
|
11959
|
+
@include fill (
|
|
11960
|
+
$kendo-picker-flat-text,
|
|
11961
|
+
$kendo-picker-flat-bg,
|
|
11962
|
+
$kendo-picker-flat-border
|
|
11963
|
+
);
|
|
11964
|
+
|
|
11965
|
+
&:hover,
|
|
11966
|
+
&.k-hover {
|
|
11967
|
+
@include fill (
|
|
11968
|
+
$kendo-picker-flat-hover-text,
|
|
11969
|
+
$kendo-picker-flat-hover-bg,
|
|
11970
|
+
$kendo-picker-flat-hover-border
|
|
11971
|
+
);
|
|
11972
|
+
}
|
|
11973
|
+
|
|
11974
|
+
&:focus,
|
|
11975
|
+
&.k-focus {
|
|
11976
|
+
@include fill (
|
|
11977
|
+
$kendo-picker-flat-focus-text,
|
|
11978
|
+
$kendo-picker-flat-focus-bg,
|
|
11979
|
+
$kendo-picker-flat-focus-border
|
|
11980
|
+
);
|
|
11981
|
+
@include box-shadow( $kendo-picker-flat-focus-shadow );
|
|
11982
|
+
}
|
|
11983
|
+
|
|
11984
|
+
&:focus:hover,
|
|
11985
|
+
&:focus.k-hover,
|
|
11986
|
+
&.k-focus:hover,
|
|
11987
|
+
&.k-focus.k-hover {
|
|
11988
|
+
@include fill (
|
|
11989
|
+
$kendo-picker-flat-hover-focus-text,
|
|
11990
|
+
$kendo-picker-flat-hover-focus-bg,
|
|
11991
|
+
$kendo-picker-flat-hover-focus-border
|
|
11992
|
+
);
|
|
11993
|
+
}
|
|
11994
|
+
|
|
11995
|
+
// Invalid
|
|
11996
|
+
&.k-invalid,
|
|
11997
|
+
&.ng-invalid.ng-touched,
|
|
11998
|
+
&.ng-invalid.ng-dirty {
|
|
11999
|
+
@include fill( $border: $kendo-input-invalid-border );
|
|
12000
|
+
|
|
12001
|
+
.k-input-validation-icon {
|
|
12002
|
+
color: $invalid-text;
|
|
12003
|
+
}
|
|
12004
|
+
|
|
12005
|
+
&:focus,
|
|
12006
|
+
&.k-focus {
|
|
12007
|
+
@include box-shadow( $kendo-input-invalid-shadow );
|
|
12008
|
+
}
|
|
12009
|
+
&:focus-within {
|
|
12010
|
+
@include box-shadow( $kendo-input-invalid-shadow );
|
|
12011
|
+
}
|
|
12012
|
+
}
|
|
12013
|
+
}
|
|
12014
|
+
|
|
11740
12015
|
}
|
|
11741
12016
|
|
|
11742
12017
|
// #endregion
|
|
@@ -18997,9 +19272,11 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
18997
19272
|
color: $calendar-today-nav-text;
|
|
18998
19273
|
|
|
18999
19274
|
&:hover,
|
|
19275
|
+
&.k-hover,
|
|
19000
19276
|
&.k-state-hover,
|
|
19001
19277
|
&:focus,
|
|
19002
|
-
&.k-state-focus
|
|
19278
|
+
&.k-state-focus,
|
|
19279
|
+
&.k-focus {
|
|
19003
19280
|
color: $calendar-today-nav-hover-text;
|
|
19004
19281
|
}
|
|
19005
19282
|
}
|
|
@@ -19020,7 +19297,8 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
19020
19297
|
.k-link {
|
|
19021
19298
|
box-shadow: inset 0 0 0 1px $calendar-today-color;
|
|
19022
19299
|
}
|
|
19023
|
-
&.k-state-focused .k-link
|
|
19300
|
+
&.k-state-focused .k-link,
|
|
19301
|
+
&.k-focus .k-link {
|
|
19024
19302
|
box-shadow: inset 0 0 0 1px $calendar-today-color, $calendar-cell-focused-shadow;
|
|
19025
19303
|
}
|
|
19026
19304
|
} @else if $calendar-today-style == color {
|
|
@@ -19055,7 +19333,8 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
19055
19333
|
|
|
19056
19334
|
// Interactive states
|
|
19057
19335
|
.k-calendar-td:hover .k-link,
|
|
19058
|
-
.k-calendar-td.k-state-hover .k-link
|
|
19336
|
+
.k-calendar-td.k-state-hover .k-link,
|
|
19337
|
+
.k-calendar-td.k-hover .k-link {
|
|
19059
19338
|
@include fill(
|
|
19060
19339
|
$calendar-cell-hover-text,
|
|
19061
19340
|
$calendar-cell-hover-bg,
|
|
@@ -19063,7 +19342,8 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
19063
19342
|
$calendar-cell-hover-gradient
|
|
19064
19343
|
);
|
|
19065
19344
|
}
|
|
19066
|
-
.k-calendar-td.k-state-selected .k-link
|
|
19345
|
+
.k-calendar-td.k-state-selected .k-link,
|
|
19346
|
+
.k-calendar-td.k-selected .k-link {
|
|
19067
19347
|
@include fill(
|
|
19068
19348
|
$calendar-cell-selected-text,
|
|
19069
19349
|
$calendar-cell-selected-bg,
|
|
@@ -19072,7 +19352,9 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
19072
19352
|
);
|
|
19073
19353
|
}
|
|
19074
19354
|
.k-calendar-td.k-state-selected:hover .k-link,
|
|
19075
|
-
.k-calendar-td.k-state-selected.k-state-hover .k-link
|
|
19355
|
+
.k-calendar-td.k-state-selected.k-state-hover .k-link,
|
|
19356
|
+
.k-calendar-td.k-selected:hover .k-link,
|
|
19357
|
+
.k-calendar-td.k-selected.k-hover .k-link {
|
|
19076
19358
|
@include fill(
|
|
19077
19359
|
$calendar-cell-selected-hover-text,
|
|
19078
19360
|
$calendar-cell-selected-hover-bg,
|
|
@@ -19081,11 +19363,14 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
19081
19363
|
);
|
|
19082
19364
|
}
|
|
19083
19365
|
.k-calendar-td.k-state-focused .k-link,
|
|
19084
|
-
.k-calendar-td.k-state-focus .k-link
|
|
19366
|
+
.k-calendar-td.k-state-focus .k-link,
|
|
19367
|
+
.k-calendar-td.k-focus .k-link {
|
|
19085
19368
|
box-shadow: $calendar-cell-focused-shadow;
|
|
19086
19369
|
}
|
|
19087
19370
|
.k-calendar-td.k-state-selected.k-state-focused .k-link,
|
|
19088
|
-
.k-calendar-td.k-state-selected.k-state-focus .k-link
|
|
19371
|
+
.k-calendar-td.k-state-selected.k-state-focus .k-link,
|
|
19372
|
+
.k-calendar-td.k-selected:focus .k-link,
|
|
19373
|
+
.k-calendar-td.k-selected.k-focus .k-link {
|
|
19089
19374
|
box-shadow: $calendar-cell-selected-focus-shadow;
|
|
19090
19375
|
}
|
|
19091
19376
|
|
|
@@ -19099,7 +19384,8 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
19099
19384
|
box-shadow: inset -1px 0 $calendar-navigation-border;
|
|
19100
19385
|
|
|
19101
19386
|
li:hover,
|
|
19102
|
-
li.k-state-hover
|
|
19387
|
+
li.k-state-hover,
|
|
19388
|
+
li.k-hover {
|
|
19103
19389
|
color: $calendar-today-nav-hover-text;
|
|
19104
19390
|
}
|
|
19105
19391
|
}
|
|
@@ -19182,7 +19468,8 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
19182
19468
|
}
|
|
19183
19469
|
|
|
19184
19470
|
.k-range-start.k-state-active,
|
|
19185
|
-
.k-range-end.k-state-active
|
|
19471
|
+
.k-range-end.k-state-active,
|
|
19472
|
+
.k-range-end.k-active {
|
|
19186
19473
|
.k-link {
|
|
19187
19474
|
box-shadow: inset 0 0 2px 2px rgba(0, 0, 0, .2);
|
|
19188
19475
|
}
|
|
@@ -25789,6 +26076,7 @@ $card-focus-callout-box-shadow-w: $card-focus-shadow !default;
|
|
|
25789
26076
|
@include box-shadow( $card-shadow );
|
|
25790
26077
|
|
|
25791
26078
|
&:focus,
|
|
26079
|
+
&.k-focus,
|
|
25792
26080
|
&.k-state-focus {
|
|
25793
26081
|
@include fill(
|
|
25794
26082
|
$card-focus-text,
|
|
@@ -25797,6 +26085,11 @@ $card-focus-callout-box-shadow-w: $card-focus-shadow !default;
|
|
|
25797
26085
|
);
|
|
25798
26086
|
@include box-shadow( $card-focus-shadow );
|
|
25799
26087
|
}
|
|
26088
|
+
|
|
26089
|
+
&.k-selected,
|
|
26090
|
+
&.k-state-selected {
|
|
26091
|
+
@include box-shadow( $card-focus-shadow );
|
|
26092
|
+
}
|
|
25800
26093
|
}
|
|
25801
26094
|
|
|
25802
26095
|
|
|
@@ -25847,7 +26140,10 @@ $card-focus-callout-box-shadow-w: $card-focus-shadow !default;
|
|
|
25847
26140
|
|
|
25848
26141
|
.k-card-wrap {
|
|
25849
26142
|
&.k-state-focused,
|
|
25850
|
-
&.k-
|
|
26143
|
+
&.k-focus,
|
|
26144
|
+
&:focus,
|
|
26145
|
+
&.k-state-selected,
|
|
26146
|
+
&.k-selected {
|
|
25851
26147
|
> .k-card {
|
|
25852
26148
|
@include box-shadow( $card-focus-shadow );
|
|
25853
26149
|
}
|
|
@@ -25869,6 +26165,7 @@ $card-focus-callout-box-shadow-w: $card-focus-shadow !default;
|
|
|
25869
26165
|
.k-card-callout.k-callout-w { @include box-shadow( $card-callout-box-shadow-w ); }
|
|
25870
26166
|
|
|
25871
26167
|
.k-card:focus .k-card-callout,
|
|
26168
|
+
.k-card.k-focus .k-card-callout,
|
|
25872
26169
|
.k-card.k-state-focus .k-card-callout {
|
|
25873
26170
|
@include fill(
|
|
25874
26171
|
$bg: $card-focus-bg,
|
|
@@ -28958,6 +29255,8 @@ $panelbar-font-family: $font-family !default;
|
|
|
28958
29255
|
$panelbar-font-size: $font-size !default;
|
|
28959
29256
|
$panelbar-line-height: $line-height !default;
|
|
28960
29257
|
$panelbar-border-width: 1px !default;
|
|
29258
|
+
$panelbar-item-border-width: 1px !default;
|
|
29259
|
+
$panelbar-item-border-style: solid !default;
|
|
28961
29260
|
|
|
28962
29261
|
$panelbar-header-padding-x: map-get( $spacing, 6 ) !default;
|
|
28963
29262
|
$panelbar-header-padding-y: map-get( $spacing, 4 ) !default;
|
|
@@ -29086,7 +29385,7 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
29086
29385
|
> .k-panelbar-header {
|
|
29087
29386
|
// TODO
|
|
29088
29387
|
border-width: 0;
|
|
29089
|
-
border-style:
|
|
29388
|
+
border-style: $panelbar-item-border-style;
|
|
29090
29389
|
border-color: inherit;
|
|
29091
29390
|
display: block;
|
|
29092
29391
|
|
|
@@ -29109,7 +29408,7 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
29109
29408
|
}
|
|
29110
29409
|
> .k-item + .k-item,
|
|
29111
29410
|
> .k-panelbar-header + .k-panelbar-header {
|
|
29112
|
-
border-top-width:
|
|
29411
|
+
border-top-width: $panelbar-item-border-width;
|
|
29113
29412
|
}
|
|
29114
29413
|
|
|
29115
29414
|
|
|
@@ -29857,6 +30156,7 @@ $tilelayout-hint-border: $component-border !default;
|
|
|
29857
30156
|
}
|
|
29858
30157
|
|
|
29859
30158
|
.k-tilelayout-item:focus,
|
|
30159
|
+
.k-tilelayout-item.k-focus,
|
|
29860
30160
|
.k-tilelayout-item.k-state-focus,
|
|
29861
30161
|
.k-tilelayout-item.k-state-focused {
|
|
29862
30162
|
@include box-shadow($tilelayout-card-focus-shadow);
|
|
@@ -31863,6 +32163,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
31863
32163
|
kendo-numeric-filter-menu,
|
|
31864
32164
|
kendo-grid-string-filter-menu,
|
|
31865
32165
|
kendo-grid-date-filter-menu,
|
|
32166
|
+
kendo-grid-numeric-filter-menu,
|
|
31866
32167
|
kendo-grid-filter-menu-input-wrapper {
|
|
31867
32168
|
display: flex;
|
|
31868
32169
|
flex-flow: column nowrap;
|
|
@@ -36384,8 +36685,10 @@ $taskboard-drag-placeholder-border: $component-border !default;
|
|
|
36384
36685
|
overflow-wrap: anywhere;
|
|
36385
36686
|
|
|
36386
36687
|
&:focus,
|
|
36688
|
+
&.k-focus,
|
|
36387
36689
|
&.k-state-focus,
|
|
36388
36690
|
&:hover,
|
|
36691
|
+
&.k-hover,
|
|
36389
36692
|
&.k-state-hover {
|
|
36390
36693
|
text-decoration: underline;
|
|
36391
36694
|
}
|
|
@@ -36516,32 +36819,38 @@ $taskboard-drag-placeholder-border: $component-border !default;
|
|
|
36516
36819
|
@include fill( $color: $taskboard-card-header-text );
|
|
36517
36820
|
|
|
36518
36821
|
&:focus,
|
|
36822
|
+
&.k-focus,
|
|
36519
36823
|
&.k-state-focus {
|
|
36520
36824
|
@include fill( $color: $taskboard-card-header-focus-text );
|
|
36521
36825
|
}
|
|
36522
36826
|
|
|
36523
36827
|
&:hover,
|
|
36828
|
+
&.k-hover,
|
|
36524
36829
|
&.k-state-hover {
|
|
36525
36830
|
@include fill( $color: $taskboard-card-header-hover-text );
|
|
36526
36831
|
}
|
|
36527
36832
|
}
|
|
36528
36833
|
|
|
36529
36834
|
&:focus,
|
|
36835
|
+
&.k-focus,
|
|
36530
36836
|
&.k-state-focus {
|
|
36531
36837
|
@include fill( $border: $taskboard-card-focus-border );
|
|
36532
36838
|
@include box-shadow( $taskboard-card-focus-shadow );
|
|
36533
36839
|
}
|
|
36534
36840
|
|
|
36535
36841
|
&:hover,
|
|
36842
|
+
&.k-hover,
|
|
36536
36843
|
&.k-state-hover {
|
|
36537
36844
|
@include fill( $border: $taskboard-card-hover-border );
|
|
36538
36845
|
}
|
|
36539
36846
|
|
|
36847
|
+
&.k-selected,
|
|
36540
36848
|
&.k-state-selected {
|
|
36541
36849
|
@include fill( $border: $taskboard-card-selected-border );
|
|
36542
36850
|
@include box-shadow( $taskboard-card-selected-shadow );
|
|
36543
36851
|
}
|
|
36544
36852
|
|
|
36853
|
+
&.k-disabled,
|
|
36545
36854
|
&.k-state-disabled {
|
|
36546
36855
|
@include disabled( $disabled-styling );
|
|
36547
36856
|
}
|
|
@@ -40297,6 +40606,9 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
40297
40606
|
.k-event-actions {
|
|
40298
40607
|
right: $padding-x-sm;
|
|
40299
40608
|
font-size: $font-size-sm;
|
|
40609
|
+
&:first-child {
|
|
40610
|
+
margin: .1ex .4ex 0 $padding-x-sm;
|
|
40611
|
+
}
|
|
40300
40612
|
}
|
|
40301
40613
|
}
|
|
40302
40614
|
|
|
@@ -44159,6 +44471,7 @@ $orgchart-line-v-height: 25px !default;
|
|
|
44159
44471
|
}
|
|
44160
44472
|
|
|
44161
44473
|
&:focus,
|
|
44474
|
+
&.k-focus,
|
|
44162
44475
|
&.k-state-focus {
|
|
44163
44476
|
@include box-shadow( $orgchart-card-focus-shadow );
|
|
44164
44477
|
}
|
|
@@ -44173,6 +44486,7 @@ $orgchart-line-v-height: 25px !default;
|
|
|
44173
44486
|
);
|
|
44174
44487
|
}
|
|
44175
44488
|
.k-orgchart-node-group-container:focus,
|
|
44489
|
+
.k-orgchart-node-group-container.k-focus,
|
|
44176
44490
|
.k-orgchart-node-group-container.k-state-focus,
|
|
44177
44491
|
.k-orgchart-node-group-container.k-state-focused {
|
|
44178
44492
|
@include box-shadow( $orgchart-node-group-focus-shadow );
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-theme-bootstrap",
|
|
3
3
|
"description": "Bootstrap theme for Kendo UI",
|
|
4
|
-
"version": "5.
|
|
4
|
+
"version": "5.4.0",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -49,8 +49,8 @@
|
|
|
49
49
|
"postpublish": "echo 'no postpublish for bootstrap theme'"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@progress/kendo-theme-default": "^5.
|
|
52
|
+
"@progress/kendo-theme-default": "^5.4.0",
|
|
53
53
|
"bootstrap": "^5.1.0"
|
|
54
54
|
},
|
|
55
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "b22eb7cb9edd01d6088487b6f0c0178dd1eb3847"
|
|
56
56
|
}
|
|
@@ -121,13 +121,13 @@ $kendo-button-selected-shadow: $kendo-button-active-shadow !default;
|
|
|
121
121
|
|
|
122
122
|
/// The base background of focused button.
|
|
123
123
|
/// @group button
|
|
124
|
-
$kendo-button-focus-bg:
|
|
124
|
+
$kendo-button-focus-bg: try-darken( $kendo-button-bg, 10% ) !default;
|
|
125
125
|
/// The base text color of focused button.
|
|
126
126
|
/// @group button
|
|
127
127
|
$kendo-button-focus-text: null !default;
|
|
128
128
|
/// The base border color of focused button.
|
|
129
129
|
/// @group button
|
|
130
|
-
$kendo-button-focus-border:
|
|
130
|
+
$kendo-button-focus-border: try-darken( $kendo-button-bg, 12.5% ) !default;
|
|
131
131
|
/// The base background gradient of focused button.
|
|
132
132
|
/// @group button
|
|
133
133
|
$kendo-button-focus-gradient: null !default;
|
|
@@ -77,6 +77,29 @@ $kendo-input-disabled-border: null !default;
|
|
|
77
77
|
$kendo-input-disabled-gradient: null !default;
|
|
78
78
|
$kendo-input-disabled-shadow: null !default;
|
|
79
79
|
|
|
80
|
+
$kendo-input-outline-bg: null !default;
|
|
81
|
+
$kendo-input-outline-text: $base-text !default;
|
|
82
|
+
$kendo-input-outline-border: rgba( $base-text, .5 ) !default;
|
|
83
|
+
|
|
84
|
+
$kendo-input-outline-hover-bg: null !default;
|
|
85
|
+
$kendo-input-outline-hover-text: null !default;
|
|
86
|
+
$kendo-input-outline-hover-border: null !default;
|
|
87
|
+
|
|
88
|
+
$kendo-input-outline-focus-bg: null !default;
|
|
89
|
+
$kendo-input-outline-focus-text: null !default;
|
|
90
|
+
$kendo-input-outline-focus-border: null !default;
|
|
91
|
+
$kendo-input-outline-focus-shadow: null !default;
|
|
92
|
+
|
|
93
|
+
$kendo-input-flat-bg: transparent !default;
|
|
94
|
+
$kendo-input-flat-text: null !default;
|
|
95
|
+
$kendo-input-flat-border: null !default;
|
|
96
|
+
|
|
97
|
+
$kendo-input-flat-focus-bg: null !default;
|
|
98
|
+
$kendo-input-flat-focus-text: null !default;
|
|
99
|
+
$kendo-input-flat-focus-border: $primary !default;
|
|
100
|
+
|
|
101
|
+
$kendo-input-flat-border-radius: $kendo-border-radius $kendo-border-radius 0px 0px !default;
|
|
102
|
+
|
|
80
103
|
$kendo-picker-bg: $kendo-button-bg !default;
|
|
81
104
|
$kendo-picker-text: $kendo-button-text !default;
|
|
82
105
|
$kendo-picker-border: $kendo-button-border !default;
|
|
@@ -89,7 +112,7 @@ $kendo-picker-hover-border: $kendo-button-hover-border !default;
|
|
|
89
112
|
$kendo-picker-hover-gradient: $kendo-button-hover-gradient !default;
|
|
90
113
|
$kendo-picker-hover-shadow: $kendo-button-hover-shadow !default;
|
|
91
114
|
|
|
92
|
-
$kendo-picker-focus-bg: $kendo-button-
|
|
115
|
+
$kendo-picker-focus-bg: $kendo-button-active-bg !default;
|
|
93
116
|
$kendo-picker-focus-text: $kendo-button-focus-text !default;
|
|
94
117
|
$kendo-picker-focus-border: $kendo-button-focus-border !default;
|
|
95
118
|
$kendo-picker-focus-gradient: $kendo-button-focus-gradient !default;
|
|
@@ -101,6 +124,40 @@ $kendo-picker-disabled-border: null !default;
|
|
|
101
124
|
$kendo-picker-disabled-gradient: null !default;
|
|
102
125
|
$kendo-picker-disabled-shadow: null !default;
|
|
103
126
|
|
|
127
|
+
$kendo-picker-outline-bg: transparent !default;
|
|
128
|
+
$kendo-picker-outline-text: $kendo-button-text !default;
|
|
129
|
+
$kendo-picker-outline-border: $kendo-picker-outline-text !default;
|
|
130
|
+
|
|
131
|
+
$kendo-picker-outline-hover-bg: $kendo-button-text !default;
|
|
132
|
+
$kendo-picker-outline-hover-text: $body-bg !default;
|
|
133
|
+
$kendo-picker-outline-hover-border: $kendo-picker-outline-hover-bg !default;
|
|
134
|
+
|
|
135
|
+
$kendo-picker-outline-focus-bg: transparent !default;
|
|
136
|
+
$kendo-picker-outline-focus-text: $kendo-picker-outline-text !default;
|
|
137
|
+
$kendo-picker-outline-focus-border: $kendo-picker-outline-border !default;
|
|
138
|
+
$kendo-picker-outline-focus-shadow: $kendo-picker-focus-shadow !default;
|
|
139
|
+
|
|
140
|
+
$kendo-picker-outline-hover-focus-bg: $kendo-picker-outline-hover-bg !default;
|
|
141
|
+
$kendo-picker-outline-hover-focus-text: $kendo-picker-outline-hover-text !default;
|
|
142
|
+
$kendo-picker-outline-hover-focus-border: $kendo-picker-outline-hover-border !default;
|
|
143
|
+
|
|
144
|
+
$kendo-picker-flat-bg: transparent !default;
|
|
145
|
+
$kendo-picker-flat-text: null !default;
|
|
146
|
+
$kendo-picker-flat-border: null !default;
|
|
147
|
+
|
|
148
|
+
$kendo-picker-flat-hover-bg: rgba( $kendo-button-text, .08 ) !default;
|
|
149
|
+
$kendo-picker-flat-hover-text: null !default;
|
|
150
|
+
$kendo-picker-flat-hover-border: null !default;
|
|
151
|
+
|
|
152
|
+
$kendo-picker-flat-focus-bg: transparent !default;
|
|
153
|
+
$kendo-picker-flat-focus-text: null !default;
|
|
154
|
+
$kendo-picker-flat-focus-border: $kendo-picker-focus-border !default;
|
|
155
|
+
$kendo-picker-flat-focus-shadow: $kendo-picker-focus-shadow !default;
|
|
156
|
+
|
|
157
|
+
$kendo-picker-flat-hover-focus-bg: rgba( $kendo-button-text, .08 ) !default;
|
|
158
|
+
$kendo-picker-flat-hover-focus-text: null !default;
|
|
159
|
+
$kendo-picker-flat-hover-focus-border: null !default;
|
|
160
|
+
|
|
104
161
|
$kendo-input-placeholder-text: $input-placeholder-color !default;
|
|
105
162
|
$kendo-input-placeholder-opacity: 1 !default;
|
|
106
163
|
|
|
@@ -5,6 +5,8 @@ $panelbar-font-family: $font-family !default;
|
|
|
5
5
|
$panelbar-font-size: $font-size !default;
|
|
6
6
|
$panelbar-line-height: $line-height !default;
|
|
7
7
|
$panelbar-border-width: 1px !default;
|
|
8
|
+
$panelbar-item-border-width: 1px !default;
|
|
9
|
+
$panelbar-item-border-style: solid !default;
|
|
8
10
|
|
|
9
11
|
$panelbar-header-padding-x: map-get( $spacing, 6 ) !default;
|
|
10
12
|
$panelbar-header-padding-y: map-get( $spacing, 4 ) !default;
|