@progress/kendo-theme-material 5.3.2-dev.1 → 5.3.2-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/dist/all.css +134 -31
- package/dist/all.scss +384 -40
- package/lib/swatches/material-aqua-dark.json +1 -1
- package/lib/swatches/material-arctic.json +1 -1
- package/lib/swatches/material-burnt-teal.json +1 -1
- package/lib/swatches/material-dataviz-v4.json +1 -1
- package/lib/swatches/material-eggplant.json +1 -1
- package/lib/swatches/material-lime-dark.json +1 -1
- package/lib/swatches/material-lime.json +1 -1
- package/lib/swatches/material-main-dark.json +1 -1
- package/lib/swatches/material-main.json +1 -1
- package/lib/swatches/material-nova.json +1 -1
- package/lib/swatches/material-pacific-dark.json +1 -1
- package/lib/swatches/material-pacific.json +1 -1
- package/lib/swatches/material-sky-dark.json +1 -1
- package/lib/swatches/material-sky.json +1 -1
- package/lib/swatches/material-smoke.json +1 -1
- package/package.json +3 -3
- package/scss/chip/_variables.scss +1 -1
- package/scss/floating-label/_theme.scss +2 -0
- package/scss/gantt/_variables.scss +1 -0
- package/scss/input/_layout.scss +14 -0
- package/scss/input/_variables.scss +59 -2
- package/scss/panelbar/_variables.scss +2 -0
- package/scss/treeview/_variables.scss +24 -13
package/dist/all.scss
CHANGED
|
@@ -10061,7 +10061,7 @@ $kendo-input-sizes: (
|
|
|
10061
10061
|
|
|
10062
10062
|
$kendo-input-bg: try-shade( $component-bg, .5 ) !default;
|
|
10063
10063
|
$kendo-input-text: $component-text !default;
|
|
10064
|
-
$kendo-input-border: $component-border !default;
|
|
10064
|
+
$kendo-input-border: rgba( $component-border, .54 ) !default;
|
|
10065
10065
|
$kendo-input-shadow: null !default;
|
|
10066
10066
|
|
|
10067
10067
|
$kendo-input-hover-bg: null !default;
|
|
@@ -10080,6 +10080,29 @@ $kendo-input-disabled-border: rgba( $component-border, (alpha( $component-border
|
|
|
10080
10080
|
$kendo-input-disabled-gradient: null !default;
|
|
10081
10081
|
$kendo-input-disabled-shadow: null !default;
|
|
10082
10082
|
|
|
10083
|
+
$kendo-input-outline-bg: null !default;
|
|
10084
|
+
$kendo-input-outline-text: null !default;
|
|
10085
|
+
$kendo-input-outline-border: null !default;
|
|
10086
|
+
|
|
10087
|
+
$kendo-input-outline-hover-bg: null !default;
|
|
10088
|
+
$kendo-input-outline-hover-text: null !default;
|
|
10089
|
+
$kendo-input-outline-hover-border: null !default;
|
|
10090
|
+
|
|
10091
|
+
$kendo-input-outline-focus-bg: null !default;
|
|
10092
|
+
$kendo-input-outline-focus-text: null !default;
|
|
10093
|
+
$kendo-input-outline-focus-border: null !default;
|
|
10094
|
+
$kendo-input-outline-focus-shadow: null !default;
|
|
10095
|
+
|
|
10096
|
+
$kendo-input-flat-bg: transparent !default;
|
|
10097
|
+
$kendo-input-flat-text: null !default;
|
|
10098
|
+
$kendo-input-flat-border: null !default;
|
|
10099
|
+
|
|
10100
|
+
$kendo-input-flat-focus-bg: null !default;
|
|
10101
|
+
$kendo-input-flat-focus-text: null !default;
|
|
10102
|
+
$kendo-input-flat-focus-border: null !default;
|
|
10103
|
+
|
|
10104
|
+
$kendo-input-flat-border-radius: null !default;
|
|
10105
|
+
|
|
10083
10106
|
$kendo-picker-bg: $kendo-input-bg !default;
|
|
10084
10107
|
$kendo-picker-text: $kendo-input-text !default;
|
|
10085
10108
|
$kendo-picker-border: $kendo-input-border !default;
|
|
@@ -10104,6 +10127,40 @@ $kendo-picker-disabled-border: $kendo-input-disabled-border !default;
|
|
|
10104
10127
|
$kendo-picker-disabled-gradient: null !default;
|
|
10105
10128
|
$kendo-picker-disabled-shadow: null !default;
|
|
10106
10129
|
|
|
10130
|
+
$kendo-picker-outline-bg: transparent !default;
|
|
10131
|
+
$kendo-picker-outline-text: null !default;
|
|
10132
|
+
$kendo-picker-outline-border: null !default;
|
|
10133
|
+
|
|
10134
|
+
$kendo-picker-outline-hover-bg: null !default;
|
|
10135
|
+
$kendo-picker-outline-hover-text: null !default;
|
|
10136
|
+
$kendo-picker-outline-hover-border: null !default;
|
|
10137
|
+
|
|
10138
|
+
$kendo-picker-outline-focus-bg: nul !default;
|
|
10139
|
+
$kendo-picker-outline-focus-text: null !default;
|
|
10140
|
+
$kendo-picker-outline-focus-border: null !default;
|
|
10141
|
+
$kendo-picker-outline-focus-shadow: null !default;
|
|
10142
|
+
|
|
10143
|
+
$kendo-picker-outline-hover-focus-bg: null !default;
|
|
10144
|
+
$kendo-picker-outline-hover-focus-text: null !default;
|
|
10145
|
+
$kendo-picker-outline-hover-focus-border: null !default;
|
|
10146
|
+
|
|
10147
|
+
$kendo-picker-flat-bg: transparent !default;
|
|
10148
|
+
$kendo-picker-flat-text: null !default;
|
|
10149
|
+
$kendo-picker-flat-border: null !default;
|
|
10150
|
+
|
|
10151
|
+
$kendo-picker-flat-hover-bg: null !default;
|
|
10152
|
+
$kendo-picker-flat-hover-text: null !default;
|
|
10153
|
+
$kendo-picker-flat-hover-border: null !default;
|
|
10154
|
+
|
|
10155
|
+
$kendo-picker-flat-focus-bg: null !default;
|
|
10156
|
+
$kendo-picker-flat-focus-text: null !default;
|
|
10157
|
+
$kendo-picker-flat-focus-border: null !default;
|
|
10158
|
+
$kendo-picker-flat-focus-shadow: null !default;
|
|
10159
|
+
|
|
10160
|
+
$kendo-picker-flat-hover-focus-bg: null !default;
|
|
10161
|
+
$kendo-picker-flat-hover-focus-text: null !default;
|
|
10162
|
+
$kendo-picker-flat-hover-focus-border: null !default;
|
|
10163
|
+
|
|
10107
10164
|
$kendo-input-placeholder-text: $subtle-text !default;
|
|
10108
10165
|
$kendo-input-placeholder-opacity: 1 !default;
|
|
10109
10166
|
|
|
@@ -10121,7 +10178,7 @@ $kendo-input-values-margin-x: $kendo-input-values-margin-y !default;
|
|
|
10121
10178
|
|
|
10122
10179
|
// Input actions
|
|
10123
10180
|
$kendo-input-button-width: null !default;
|
|
10124
|
-
$kendo-input-button-border-width:
|
|
10181
|
+
$kendo-input-button-border-width: 1px !default;
|
|
10125
10182
|
$kendo-input-spinner-width: null !default;
|
|
10126
10183
|
$kendo-input-spinner-icon-offset: null !default;
|
|
10127
10184
|
|
|
@@ -10481,19 +10538,25 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
10481
10538
|
@include border-radius( 0 !important ); // sass-lint:disable-line no-important
|
|
10482
10539
|
border-width: $kendo-input-border-width 0;
|
|
10483
10540
|
border-top-color: transparent !important; // sass-lint:disable-line no-important
|
|
10484
|
-
background: none !important; // sass-lint:disable-line no-important
|
|
10541
|
+
background-image: none !important; // sass-lint:disable-line no-important
|
|
10485
10542
|
|
|
10486
|
-
|
|
10487
|
-
|
|
10488
|
-
|
|
10543
|
+
&:focus,
|
|
10544
|
+
&.k-focus {
|
|
10545
|
+
@include border-radius( $kendo-input-flat-border-radius !important ); // sass-lint:disable-line no-important
|
|
10546
|
+
}
|
|
10547
|
+
&:focus-within {
|
|
10548
|
+
@include border-radius( $kendo-input-flat-border-radius !important ); // sass-lint:disable-line no-important
|
|
10489
10549
|
}
|
|
10490
10550
|
}
|
|
10491
10551
|
|
|
10492
|
-
.k-input-outline
|
|
10493
|
-
.k-picker-outline {
|
|
10552
|
+
.k-input-outline {
|
|
10494
10553
|
background: none !important; // sass-lint:disable-line no-important
|
|
10495
10554
|
}
|
|
10496
10555
|
|
|
10556
|
+
.k-picker.k-picker-flat {
|
|
10557
|
+
@include border-radius( $kendo-input-flat-border-radius !important ); // sass-lint:disable-line no-important
|
|
10558
|
+
}
|
|
10559
|
+
|
|
10497
10560
|
|
|
10498
10561
|
// Sizing
|
|
10499
10562
|
@each $size, $size-props in $kendo-input-sizes {
|
|
@@ -10608,6 +10671,20 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
10608
10671
|
}
|
|
10609
10672
|
}
|
|
10610
10673
|
|
|
10674
|
+
.k-input-solid:focus,
|
|
10675
|
+
.k-input-solid.k-focus {
|
|
10676
|
+
border-width: $kendo-input-border-width;
|
|
10677
|
+
border-top-color: $kendo-input-focus-border !important; // sass-lint:disable-line no-important
|
|
10678
|
+
|
|
10679
|
+
&.k-invalid,
|
|
10680
|
+
&.ng-invalid.ng-touched,
|
|
10681
|
+
&.ng-invalid.ng-dirty {
|
|
10682
|
+
border-top-color: $invalid-border !important; // sass-lint:disable-line no-important
|
|
10683
|
+
}
|
|
10684
|
+
}
|
|
10685
|
+
|
|
10686
|
+
|
|
10687
|
+
|
|
10611
10688
|
.k-input-flat,
|
|
10612
10689
|
.k-picker-flat {
|
|
10613
10690
|
|
|
@@ -10802,6 +10879,218 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
10802
10879
|
}
|
|
10803
10880
|
}
|
|
10804
10881
|
|
|
10882
|
+
// Outline
|
|
10883
|
+
.k-input-outline {
|
|
10884
|
+
@include fill (
|
|
10885
|
+
$kendo-input-outline-text,
|
|
10886
|
+
$kendo-input-outline-bg,
|
|
10887
|
+
$kendo-input-outline-border
|
|
10888
|
+
);
|
|
10889
|
+
|
|
10890
|
+
& > .k-input-button {
|
|
10891
|
+
border-color: inherit;
|
|
10892
|
+
}
|
|
10893
|
+
|
|
10894
|
+
& > .k-input-spinner {
|
|
10895
|
+
border-color: inherit;
|
|
10896
|
+
|
|
10897
|
+
& > .k-spinner-increase,
|
|
10898
|
+
& > .k-spinner-decrease {
|
|
10899
|
+
border-color: inherit;
|
|
10900
|
+
}
|
|
10901
|
+
}
|
|
10902
|
+
|
|
10903
|
+
&:hover,
|
|
10904
|
+
&.k-hover {
|
|
10905
|
+
@include fill (
|
|
10906
|
+
$kendo-input-outline-hover-text,
|
|
10907
|
+
$kendo-input-outline-hover-bg,
|
|
10908
|
+
$kendo-input-outline-hover-border
|
|
10909
|
+
);
|
|
10910
|
+
}
|
|
10911
|
+
|
|
10912
|
+
&:focus,
|
|
10913
|
+
&.k-focus {
|
|
10914
|
+
@include fill (
|
|
10915
|
+
$kendo-input-outline-focus-text,
|
|
10916
|
+
$kendo-input-outline-focus-bg,
|
|
10917
|
+
$kendo-input-outline-focus-border
|
|
10918
|
+
);
|
|
10919
|
+
@include box-shadow ( $kendo-input-outline-focus-shadow );
|
|
10920
|
+
}
|
|
10921
|
+
|
|
10922
|
+
// Invalid
|
|
10923
|
+
&.k-invalid,
|
|
10924
|
+
&.ng-invalid.ng-touched,
|
|
10925
|
+
&.ng-invalid.ng-dirty {
|
|
10926
|
+
@include fill( $border: $invalid-border );
|
|
10927
|
+
|
|
10928
|
+
.k-input-validation-icon {
|
|
10929
|
+
color: $invalid-text;
|
|
10930
|
+
}
|
|
10931
|
+
|
|
10932
|
+
&:focus,
|
|
10933
|
+
&.k-focus {
|
|
10934
|
+
@include box-shadow($invalid-shadow);
|
|
10935
|
+
}
|
|
10936
|
+
&:focus-within {
|
|
10937
|
+
@include box-shadow($invalid-shadow);
|
|
10938
|
+
}
|
|
10939
|
+
}
|
|
10940
|
+
|
|
10941
|
+
}
|
|
10942
|
+
|
|
10943
|
+
.k-picker-outline {
|
|
10944
|
+
@include fill (
|
|
10945
|
+
$kendo-picker-outline-text,
|
|
10946
|
+
$kendo-picker-outline-bg,
|
|
10947
|
+
$kendo-picker-outline-border
|
|
10948
|
+
);
|
|
10949
|
+
|
|
10950
|
+
&:hover,
|
|
10951
|
+
&.k-hover {
|
|
10952
|
+
@include fill (
|
|
10953
|
+
$kendo-picker-outline-hover-text,
|
|
10954
|
+
$kendo-picker-outline-hover-bg,
|
|
10955
|
+
$kendo-picker-outline-hover-border
|
|
10956
|
+
);
|
|
10957
|
+
}
|
|
10958
|
+
|
|
10959
|
+
&:focus,
|
|
10960
|
+
&.k-focus {
|
|
10961
|
+
@include fill (
|
|
10962
|
+
$kendo-picker-outline-focus-text,
|
|
10963
|
+
$kendo-picker-outline-focus-bg,
|
|
10964
|
+
$kendo-picker-outline-focus-border
|
|
10965
|
+
);
|
|
10966
|
+
@include box-shadow ( $kendo-picker-outline-focus-shadow );
|
|
10967
|
+
}
|
|
10968
|
+
|
|
10969
|
+
&:focus:hover,
|
|
10970
|
+
&:focus.k-hover,
|
|
10971
|
+
&.k-focus:hover,
|
|
10972
|
+
&.k-focus.k-hover {
|
|
10973
|
+
@include fill (
|
|
10974
|
+
$kendo-picker-outline-hover-focus-text,
|
|
10975
|
+
$kendo-picker-outline-hover-focus-bg,
|
|
10976
|
+
$kendo-picker-outline-hover-focus-border
|
|
10977
|
+
);
|
|
10978
|
+
}
|
|
10979
|
+
|
|
10980
|
+
// Invalid
|
|
10981
|
+
&.k-invalid,
|
|
10982
|
+
&.ng-invalid.ng-touched,
|
|
10983
|
+
&.ng-invalid.ng-dirty {
|
|
10984
|
+
@include fill( $border: $invalid-border );
|
|
10985
|
+
|
|
10986
|
+
.k-input-validation-icon {
|
|
10987
|
+
color: $invalid-text;
|
|
10988
|
+
}
|
|
10989
|
+
|
|
10990
|
+
&:focus,
|
|
10991
|
+
&.k-focus {
|
|
10992
|
+
@include box-shadow($invalid-shadow);
|
|
10993
|
+
}
|
|
10994
|
+
&:focus-within {
|
|
10995
|
+
@include box-shadow($invalid-shadow);
|
|
10996
|
+
}
|
|
10997
|
+
}
|
|
10998
|
+
}
|
|
10999
|
+
|
|
11000
|
+
// Flat
|
|
11001
|
+
.k-input-flat {
|
|
11002
|
+
@include fill (
|
|
11003
|
+
$kendo-input-flat-text,
|
|
11004
|
+
$kendo-input-flat-bg,
|
|
11005
|
+
$kendo-input-flat-border
|
|
11006
|
+
);
|
|
11007
|
+
|
|
11008
|
+
&:focus,
|
|
11009
|
+
&.k-focus {
|
|
11010
|
+
@include fill (
|
|
11011
|
+
$kendo-input-flat-focus-text,
|
|
11012
|
+
$kendo-input-flat-focus-bg,
|
|
11013
|
+
$kendo-input-flat-focus-border
|
|
11014
|
+
);
|
|
11015
|
+
}
|
|
11016
|
+
|
|
11017
|
+
// Invalid
|
|
11018
|
+
&.k-invalid,
|
|
11019
|
+
&.ng-invalid.ng-touched,
|
|
11020
|
+
&.ng-invalid.ng-dirty {
|
|
11021
|
+
@include fill( $border: $kendo-input-invalid-border );
|
|
11022
|
+
|
|
11023
|
+
.k-input-validation-icon {
|
|
11024
|
+
color: $invalid-text;
|
|
11025
|
+
}
|
|
11026
|
+
|
|
11027
|
+
&:focus,
|
|
11028
|
+
&.k-focus {
|
|
11029
|
+
@include box-shadow( $kendo-input-invalid-shadow );
|
|
11030
|
+
}
|
|
11031
|
+
&:focus-within {
|
|
11032
|
+
@include box-shadow( $kendo-input-invalid-shadow );
|
|
11033
|
+
}
|
|
11034
|
+
}
|
|
11035
|
+
}
|
|
11036
|
+
|
|
11037
|
+
.k-picker-flat {
|
|
11038
|
+
@include fill (
|
|
11039
|
+
$kendo-picker-flat-text,
|
|
11040
|
+
$kendo-picker-flat-bg,
|
|
11041
|
+
$kendo-picker-flat-border
|
|
11042
|
+
);
|
|
11043
|
+
|
|
11044
|
+
&:hover,
|
|
11045
|
+
&.k-hover {
|
|
11046
|
+
@include fill (
|
|
11047
|
+
$kendo-picker-flat-hover-text,
|
|
11048
|
+
$kendo-picker-flat-hover-bg,
|
|
11049
|
+
$kendo-picker-flat-hover-border
|
|
11050
|
+
);
|
|
11051
|
+
}
|
|
11052
|
+
|
|
11053
|
+
&:focus,
|
|
11054
|
+
&.k-focus {
|
|
11055
|
+
@include fill (
|
|
11056
|
+
$kendo-picker-flat-focus-text,
|
|
11057
|
+
$kendo-picker-flat-focus-bg,
|
|
11058
|
+
$kendo-picker-flat-focus-border
|
|
11059
|
+
);
|
|
11060
|
+
@include box-shadow( $kendo-picker-flat-focus-shadow );
|
|
11061
|
+
}
|
|
11062
|
+
|
|
11063
|
+
&:focus:hover,
|
|
11064
|
+
&:focus.k-hover,
|
|
11065
|
+
&.k-focus:hover,
|
|
11066
|
+
&.k-focus.k-hover {
|
|
11067
|
+
@include fill (
|
|
11068
|
+
$kendo-picker-flat-hover-focus-text,
|
|
11069
|
+
$kendo-picker-flat-hover-focus-bg,
|
|
11070
|
+
$kendo-picker-flat-hover-focus-border
|
|
11071
|
+
);
|
|
11072
|
+
}
|
|
11073
|
+
|
|
11074
|
+
// Invalid
|
|
11075
|
+
&.k-invalid,
|
|
11076
|
+
&.ng-invalid.ng-touched,
|
|
11077
|
+
&.ng-invalid.ng-dirty {
|
|
11078
|
+
@include fill( $border: $kendo-input-invalid-border );
|
|
11079
|
+
|
|
11080
|
+
.k-input-validation-icon {
|
|
11081
|
+
color: $invalid-text;
|
|
11082
|
+
}
|
|
11083
|
+
|
|
11084
|
+
&:focus,
|
|
11085
|
+
&.k-focus {
|
|
11086
|
+
@include box-shadow( $kendo-input-invalid-shadow );
|
|
11087
|
+
}
|
|
11088
|
+
&:focus-within {
|
|
11089
|
+
@include box-shadow( $kendo-input-invalid-shadow );
|
|
11090
|
+
}
|
|
11091
|
+
}
|
|
11092
|
+
}
|
|
11093
|
+
|
|
10805
11094
|
}
|
|
10806
11095
|
|
|
10807
11096
|
// #endregion
|
|
@@ -10992,6 +11281,7 @@ $floating-label-focus-text: $primary !default;
|
|
|
10992
11281
|
);
|
|
10993
11282
|
}
|
|
10994
11283
|
|
|
11284
|
+
&.k-focus > .k-label,
|
|
10995
11285
|
&.k-state-focused > .k-label {
|
|
10996
11286
|
@include fill(
|
|
10997
11287
|
$color: $floating-label-focus-text,
|
|
@@ -11011,6 +11301,8 @@ $floating-label-focus-text: $primary !default;
|
|
|
11011
11301
|
// Floating label
|
|
11012
11302
|
.k-floating-label-container {
|
|
11013
11303
|
|
|
11304
|
+
&.k-invalid + .k-label,
|
|
11305
|
+
.k-invalid + .k-label,
|
|
11014
11306
|
&.k-state-invalid + .k-label,
|
|
11015
11307
|
.k-state-invalid + .k-label,
|
|
11016
11308
|
.ng-invalid.ng-touched + .k-label,
|
|
@@ -12288,7 +12580,7 @@ $kendo-chip-sizes: (
|
|
|
12288
12580
|
|
|
12289
12581
|
/// The base background of the chip.
|
|
12290
12582
|
/// @group chip
|
|
12291
|
-
$kendo-chip-base-bg: $
|
|
12583
|
+
$kendo-chip-base-bg: $base-text !default;
|
|
12292
12584
|
|
|
12293
12585
|
/// Theme colors map for the chip.
|
|
12294
12586
|
/// @group chip
|
|
@@ -14169,9 +14461,9 @@ $tooltip-error-border: $tooltip-error-bg !default;
|
|
|
14169
14461
|
}
|
|
14170
14462
|
}
|
|
14171
14463
|
|
|
14172
|
-
.k-item
|
|
14173
|
-
|
|
14174
|
-
|
|
14464
|
+
.k-item:focus,
|
|
14465
|
+
.k-item.k-focus {
|
|
14466
|
+
> .k-link {
|
|
14175
14467
|
@include box-shadow( $kendo-menu-popup-item-focus-shadow );
|
|
14176
14468
|
}
|
|
14177
14469
|
}
|
|
@@ -18553,9 +18845,11 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
18553
18845
|
color: $calendar-today-nav-text;
|
|
18554
18846
|
|
|
18555
18847
|
&:hover,
|
|
18848
|
+
&.k-hover,
|
|
18556
18849
|
&.k-state-hover,
|
|
18557
18850
|
&:focus,
|
|
18558
|
-
&.k-state-focus
|
|
18851
|
+
&.k-state-focus,
|
|
18852
|
+
&.k-focus {
|
|
18559
18853
|
color: $calendar-today-nav-hover-text;
|
|
18560
18854
|
}
|
|
18561
18855
|
}
|
|
@@ -18576,7 +18870,8 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
18576
18870
|
.k-link {
|
|
18577
18871
|
box-shadow: inset 0 0 0 1px $calendar-today-color;
|
|
18578
18872
|
}
|
|
18579
|
-
&.k-state-focused .k-link
|
|
18873
|
+
&.k-state-focused .k-link,
|
|
18874
|
+
&.k-focus .k-link {
|
|
18580
18875
|
box-shadow: inset 0 0 0 1px $calendar-today-color, $calendar-cell-focused-shadow;
|
|
18581
18876
|
}
|
|
18582
18877
|
} @else if $calendar-today-style == color {
|
|
@@ -18611,7 +18906,8 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
18611
18906
|
|
|
18612
18907
|
// Interactive states
|
|
18613
18908
|
.k-calendar-td:hover .k-link,
|
|
18614
|
-
.k-calendar-td.k-state-hover .k-link
|
|
18909
|
+
.k-calendar-td.k-state-hover .k-link,
|
|
18910
|
+
.k-calendar-td.k-hover .k-link {
|
|
18615
18911
|
@include fill(
|
|
18616
18912
|
$calendar-cell-hover-text,
|
|
18617
18913
|
$calendar-cell-hover-bg,
|
|
@@ -18619,7 +18915,8 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
18619
18915
|
$calendar-cell-hover-gradient
|
|
18620
18916
|
);
|
|
18621
18917
|
}
|
|
18622
|
-
.k-calendar-td.k-state-selected .k-link
|
|
18918
|
+
.k-calendar-td.k-state-selected .k-link,
|
|
18919
|
+
.k-calendar-td.k-selected .k-link {
|
|
18623
18920
|
@include fill(
|
|
18624
18921
|
$calendar-cell-selected-text,
|
|
18625
18922
|
$calendar-cell-selected-bg,
|
|
@@ -18628,7 +18925,9 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
18628
18925
|
);
|
|
18629
18926
|
}
|
|
18630
18927
|
.k-calendar-td.k-state-selected:hover .k-link,
|
|
18631
|
-
.k-calendar-td.k-state-selected.k-state-hover .k-link
|
|
18928
|
+
.k-calendar-td.k-state-selected.k-state-hover .k-link,
|
|
18929
|
+
.k-calendar-td.k-selected:hover .k-link,
|
|
18930
|
+
.k-calendar-td.k-selected.k-hover .k-link {
|
|
18632
18931
|
@include fill(
|
|
18633
18932
|
$calendar-cell-selected-hover-text,
|
|
18634
18933
|
$calendar-cell-selected-hover-bg,
|
|
@@ -18637,11 +18936,14 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
18637
18936
|
);
|
|
18638
18937
|
}
|
|
18639
18938
|
.k-calendar-td.k-state-focused .k-link,
|
|
18640
|
-
.k-calendar-td.k-state-focus .k-link
|
|
18939
|
+
.k-calendar-td.k-state-focus .k-link,
|
|
18940
|
+
.k-calendar-td.k-focus .k-link {
|
|
18641
18941
|
box-shadow: $calendar-cell-focused-shadow;
|
|
18642
18942
|
}
|
|
18643
18943
|
.k-calendar-td.k-state-selected.k-state-focused .k-link,
|
|
18644
|
-
.k-calendar-td.k-state-selected.k-state-focus .k-link
|
|
18944
|
+
.k-calendar-td.k-state-selected.k-state-focus .k-link,
|
|
18945
|
+
.k-calendar-td.k-selected:focus .k-link,
|
|
18946
|
+
.k-calendar-td.k-selected.k-focus .k-link {
|
|
18645
18947
|
box-shadow: $calendar-cell-selected-focus-shadow;
|
|
18646
18948
|
}
|
|
18647
18949
|
|
|
@@ -18655,7 +18957,8 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
18655
18957
|
box-shadow: inset -1px 0 $calendar-navigation-border;
|
|
18656
18958
|
|
|
18657
18959
|
li:hover,
|
|
18658
|
-
li.k-state-hover
|
|
18960
|
+
li.k-state-hover,
|
|
18961
|
+
li.k-hover {
|
|
18659
18962
|
color: $calendar-today-nav-hover-text;
|
|
18660
18963
|
}
|
|
18661
18964
|
}
|
|
@@ -18738,7 +19041,8 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
18738
19041
|
}
|
|
18739
19042
|
|
|
18740
19043
|
.k-range-start.k-state-active,
|
|
18741
|
-
.k-range-end.k-state-active
|
|
19044
|
+
.k-range-end.k-state-active,
|
|
19045
|
+
.k-range-end.k-active {
|
|
18742
19046
|
.k-link {
|
|
18743
19047
|
box-shadow: inset 0 0 2px 2px rgba(0, 0, 0, .2);
|
|
18744
19048
|
}
|
|
@@ -20794,10 +21098,15 @@ $kendo-treeview-font-family: $font-family !default;
|
|
|
20794
21098
|
/// Font size of the treeview component.
|
|
20795
21099
|
/// @group treeview
|
|
20796
21100
|
$kendo-treeview-font-size: $font-size-lg !default;
|
|
21101
|
+
$kendo-treeview-font-size-sm: $font-size-lg !default;
|
|
21102
|
+
$kendo-treeview-font-size-md: $font-size-lg !default;
|
|
21103
|
+
$kendo-treeview-font-size-lg: $font-size-lg !default;
|
|
20797
21104
|
/// Line height of the treeview component.
|
|
20798
21105
|
/// @group treeview
|
|
20799
21106
|
$kendo-treeview-line-height: 1.25 !default;
|
|
20800
|
-
|
|
21107
|
+
$kendo-treeview-line-height-sm: 1.25 !default;
|
|
21108
|
+
$kendo-treeview-line-height-md: 1.25 !default;
|
|
21109
|
+
$kendo-treeview-line-height-lg: 1.25 !default;
|
|
20801
21110
|
/// Indentation of child groups in treeview component.
|
|
20802
21111
|
/// @group treeview
|
|
20803
21112
|
$kendo-treeview-indent: 16px !default;
|
|
@@ -20805,9 +21114,15 @@ $kendo-treeview-indent: 16px !default;
|
|
|
20805
21114
|
/// Horizontal padding of treeview items.
|
|
20806
21115
|
/// @group treeview
|
|
20807
21116
|
$kendo-treeview-item-padding-x: map-get( $spacing, 4 ) !default;
|
|
21117
|
+
$kendo-treeview-item-padding-x-sm: map-get( $spacing, 4 ) !default;
|
|
21118
|
+
$kendo-treeview-item-padding-x-md: map-get( $spacing, 4 ) !default;
|
|
21119
|
+
$kendo-treeview-item-padding-x-lg: map-get( $spacing, 4 ) !default;
|
|
20808
21120
|
/// Vertical padding of treeview items.
|
|
20809
21121
|
/// @group treeview
|
|
20810
21122
|
$kendo-treeview-item-padding-y: map-get( $spacing, 2 ) !default;
|
|
21123
|
+
$kendo-treeview-item-padding-y-sm: map-get( $spacing, 2 ) - map-get( $spacing, thin ) !default;
|
|
21124
|
+
$kendo-treeview-item-padding-y-md: map-get( $spacing, 2 ) !default;
|
|
21125
|
+
$kendo-treeview-item-padding-y-lg: map-get( $spacing, 2 ) + map-get( $spacing, thin ) !default;
|
|
20811
21126
|
/// Border width of treeview items.
|
|
20812
21127
|
/// @group treeview
|
|
20813
21128
|
$kendo-treeview-item-border-width: 0px !default;
|
|
@@ -20820,22 +21135,22 @@ $kendo-treeview-item-border-radius: null !default;
|
|
|
20820
21135
|
/// @group treeview
|
|
20821
21136
|
$kendo-treeview-sizes: (
|
|
20822
21137
|
sm: (
|
|
20823
|
-
font-size: $font-size-
|
|
20824
|
-
line-height:
|
|
20825
|
-
item-padding-x:
|
|
20826
|
-
item-padding-y:
|
|
21138
|
+
font-size: $kendo-treeview-font-size-sm,
|
|
21139
|
+
line-height: $kendo-treeview-line-height-sm,
|
|
21140
|
+
item-padding-x: $kendo-treeview-item-padding-x-sm,
|
|
21141
|
+
item-padding-y: $kendo-treeview-item-padding-y-sm
|
|
20827
21142
|
),
|
|
20828
21143
|
md: (
|
|
20829
|
-
font-size: $font-size-
|
|
20830
|
-
line-height:
|
|
20831
|
-
item-padding-x:
|
|
20832
|
-
item-padding-y:
|
|
21144
|
+
font-size: $kendo-treeview-font-size-md,
|
|
21145
|
+
line-height: $kendo-treeview-line-height-md,
|
|
21146
|
+
item-padding-x: $kendo-treeview-item-padding-x-md,
|
|
21147
|
+
item-padding-y: $kendo-treeview-item-padding-y-md
|
|
20833
21148
|
),
|
|
20834
21149
|
lg: (
|
|
20835
|
-
font-size: $font-size-lg,
|
|
20836
|
-
line-height:
|
|
20837
|
-
item-padding-x:
|
|
20838
|
-
item-padding-y:
|
|
21150
|
+
font-size: $kendo-treeview-font-size-lg,
|
|
21151
|
+
line-height: $kendo-treeview-line-height-lg,
|
|
21152
|
+
item-padding-x: $kendo-treeview-item-padding-x-lg,
|
|
21153
|
+
item-padding-y: $kendo-treeview-item-padding-y-lg
|
|
20839
21154
|
)
|
|
20840
21155
|
) !default;
|
|
20841
21156
|
|
|
@@ -25518,6 +25833,7 @@ $card-focus-callout-box-shadow-w: null !default;
|
|
|
25518
25833
|
@include box-shadow( $card-shadow );
|
|
25519
25834
|
|
|
25520
25835
|
&:focus,
|
|
25836
|
+
&.k-focus,
|
|
25521
25837
|
&.k-state-focus {
|
|
25522
25838
|
@include fill(
|
|
25523
25839
|
$card-focus-text,
|
|
@@ -25526,6 +25842,11 @@ $card-focus-callout-box-shadow-w: null !default;
|
|
|
25526
25842
|
);
|
|
25527
25843
|
@include box-shadow( $card-focus-shadow );
|
|
25528
25844
|
}
|
|
25845
|
+
|
|
25846
|
+
&.k-selected,
|
|
25847
|
+
&.k-state-selected {
|
|
25848
|
+
@include box-shadow( $card-focus-shadow );
|
|
25849
|
+
}
|
|
25529
25850
|
}
|
|
25530
25851
|
|
|
25531
25852
|
|
|
@@ -25576,7 +25897,10 @@ $card-focus-callout-box-shadow-w: null !default;
|
|
|
25576
25897
|
|
|
25577
25898
|
.k-card-wrap {
|
|
25578
25899
|
&.k-state-focused,
|
|
25579
|
-
&.k-
|
|
25900
|
+
&.k-focus,
|
|
25901
|
+
&:focus,
|
|
25902
|
+
&.k-state-selected,
|
|
25903
|
+
&.k-selected {
|
|
25580
25904
|
> .k-card {
|
|
25581
25905
|
@include box-shadow( $card-focus-shadow );
|
|
25582
25906
|
}
|
|
@@ -25598,6 +25922,7 @@ $card-focus-callout-box-shadow-w: null !default;
|
|
|
25598
25922
|
.k-card-callout.k-callout-w { @include box-shadow( $card-callout-box-shadow-w ); }
|
|
25599
25923
|
|
|
25600
25924
|
.k-card:focus .k-card-callout,
|
|
25925
|
+
.k-card.k-focus .k-card-callout,
|
|
25601
25926
|
.k-card.k-state-focus .k-card-callout {
|
|
25602
25927
|
@include fill(
|
|
25603
25928
|
$bg: $card-focus-bg,
|
|
@@ -28645,6 +28970,8 @@ $panelbar-font-family: $font-family !default;
|
|
|
28645
28970
|
$panelbar-font-size: $font-size !default;
|
|
28646
28971
|
$panelbar-line-height: (20 / 14) !default;
|
|
28647
28972
|
$panelbar-border-width: 1px !default;
|
|
28973
|
+
$panelbar-item-border-width: 1px !default;
|
|
28974
|
+
$panelbar-item-border-style: solid !default;
|
|
28648
28975
|
|
|
28649
28976
|
$panelbar-header-padding-x: map-get( $spacing, 6 ) !default;
|
|
28650
28977
|
$panelbar-header-padding-y: map-get( $spacing, 3 ) !default;
|
|
@@ -28774,7 +29101,7 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
28774
29101
|
> .k-panelbar-header {
|
|
28775
29102
|
// TODO
|
|
28776
29103
|
border-width: 0;
|
|
28777
|
-
border-style:
|
|
29104
|
+
border-style: $panelbar-item-border-style;
|
|
28778
29105
|
border-color: inherit;
|
|
28779
29106
|
display: block;
|
|
28780
29107
|
|
|
@@ -28797,7 +29124,7 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
28797
29124
|
}
|
|
28798
29125
|
> .k-item + .k-item,
|
|
28799
29126
|
> .k-panelbar-header + .k-panelbar-header {
|
|
28800
|
-
border-top-width:
|
|
29127
|
+
border-top-width: $panelbar-item-border-width;
|
|
28801
29128
|
}
|
|
28802
29129
|
|
|
28803
29130
|
|
|
@@ -29545,6 +29872,7 @@ $tilelayout-hint-border: $component-border !default;
|
|
|
29545
29872
|
}
|
|
29546
29873
|
|
|
29547
29874
|
.k-tilelayout-item:focus,
|
|
29875
|
+
.k-tilelayout-item.k-focus,
|
|
29548
29876
|
.k-tilelayout-item.k-state-focus,
|
|
29549
29877
|
.k-tilelayout-item.k-state-focused {
|
|
29550
29878
|
@include box-shadow($tilelayout-card-focus-shadow);
|
|
@@ -31565,6 +31893,7 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
31565
31893
|
kendo-numeric-filter-menu,
|
|
31566
31894
|
kendo-grid-string-filter-menu,
|
|
31567
31895
|
kendo-grid-date-filter-menu,
|
|
31896
|
+
kendo-grid-numeric-filter-menu,
|
|
31568
31897
|
kendo-grid-filter-menu-input-wrapper {
|
|
31569
31898
|
display: flex;
|
|
31570
31899
|
flex-flow: column nowrap;
|
|
@@ -36593,8 +36922,10 @@ $taskboard-drag-placeholder-border: $component-border !default;
|
|
|
36593
36922
|
overflow-wrap: anywhere;
|
|
36594
36923
|
|
|
36595
36924
|
&:focus,
|
|
36925
|
+
&.k-focus,
|
|
36596
36926
|
&.k-state-focus,
|
|
36597
36927
|
&:hover,
|
|
36928
|
+
&.k-hover,
|
|
36598
36929
|
&.k-state-hover {
|
|
36599
36930
|
text-decoration: underline;
|
|
36600
36931
|
}
|
|
@@ -36725,32 +37056,38 @@ $taskboard-drag-placeholder-border: $component-border !default;
|
|
|
36725
37056
|
@include fill( $color: $taskboard-card-header-text );
|
|
36726
37057
|
|
|
36727
37058
|
&:focus,
|
|
37059
|
+
&.k-focus,
|
|
36728
37060
|
&.k-state-focus {
|
|
36729
37061
|
@include fill( $color: $taskboard-card-header-focus-text );
|
|
36730
37062
|
}
|
|
36731
37063
|
|
|
36732
37064
|
&:hover,
|
|
37065
|
+
&.k-hover,
|
|
36733
37066
|
&.k-state-hover {
|
|
36734
37067
|
@include fill( $color: $taskboard-card-header-hover-text );
|
|
36735
37068
|
}
|
|
36736
37069
|
}
|
|
36737
37070
|
|
|
36738
37071
|
&:focus,
|
|
37072
|
+
&.k-focus,
|
|
36739
37073
|
&.k-state-focus {
|
|
36740
37074
|
@include fill( $border: $taskboard-card-focus-border );
|
|
36741
37075
|
@include box-shadow( $taskboard-card-focus-shadow );
|
|
36742
37076
|
}
|
|
36743
37077
|
|
|
36744
37078
|
&:hover,
|
|
37079
|
+
&.k-hover,
|
|
36745
37080
|
&.k-state-hover {
|
|
36746
37081
|
@include fill( $border: $taskboard-card-hover-border );
|
|
36747
37082
|
}
|
|
36748
37083
|
|
|
37084
|
+
&.k-selected,
|
|
36749
37085
|
&.k-state-selected {
|
|
36750
37086
|
@include fill( $border: $taskboard-card-selected-border );
|
|
36751
37087
|
@include box-shadow( $taskboard-card-selected-shadow );
|
|
36752
37088
|
}
|
|
36753
37089
|
|
|
37090
|
+
&.k-disabled,
|
|
36754
37091
|
&.k-state-disabled {
|
|
36755
37092
|
@include disabled( $disabled-styling );
|
|
36756
37093
|
}
|
|
@@ -38126,6 +38463,7 @@ $gantt-action-on-offset-text: #000000 !default;
|
|
|
38126
38463
|
$gantt-offset-resize-handler-top: 50% !default;
|
|
38127
38464
|
|
|
38128
38465
|
$gantt-validation-tooltip-width: 200px !default;
|
|
38466
|
+
$gantt-validation-tooltip-label-width: 50px !default;
|
|
38129
38467
|
$gantt-validation-tooltip-border: #656565 !default;
|
|
38130
38468
|
$gantt-validation-tooltip-valid-border: $success !default;
|
|
38131
38469
|
$gantt-validation-tooltip-invalid-border: $error !default;
|
|
@@ -38866,13 +39204,17 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
38866
39204
|
}
|
|
38867
39205
|
.k-gantt-tooltip-validation-label {
|
|
38868
39206
|
display: inline-flex;
|
|
38869
|
-
|
|
38870
|
-
overflow: hidden;
|
|
38871
|
-
text-overflow: ellipsis;
|
|
39207
|
+
min-width: $gantt-validation-tooltip-label-width;
|
|
38872
39208
|
}
|
|
38873
39209
|
.k-gantt-tooltip-validation-value {
|
|
38874
39210
|
font-weight: $font-weight-bold;
|
|
38875
39211
|
}
|
|
39212
|
+
.k-gantt-tooltip-validation-label,
|
|
39213
|
+
.k-gantt-tooltip-validation-value {
|
|
39214
|
+
white-space: nowrap;
|
|
39215
|
+
overflow: hidden;
|
|
39216
|
+
text-overflow: ellipsis;
|
|
39217
|
+
}
|
|
38876
39218
|
}
|
|
38877
39219
|
|
|
38878
39220
|
@include exports("gantt/export") {
|
|
@@ -44636,6 +44978,7 @@ $orgchart-line-v-height: 25px !default;
|
|
|
44636
44978
|
}
|
|
44637
44979
|
|
|
44638
44980
|
&:focus,
|
|
44981
|
+
&.k-focus,
|
|
44639
44982
|
&.k-state-focus {
|
|
44640
44983
|
@include box-shadow( $orgchart-card-focus-shadow );
|
|
44641
44984
|
}
|
|
@@ -44650,6 +44993,7 @@ $orgchart-line-v-height: 25px !default;
|
|
|
44650
44993
|
);
|
|
44651
44994
|
}
|
|
44652
44995
|
.k-orgchart-node-group-container:focus,
|
|
44996
|
+
.k-orgchart-node-group-container.k-focus,
|
|
44653
44997
|
.k-orgchart-node-group-container.k-state-focus,
|
|
44654
44998
|
.k-orgchart-node-group-container.k-state-focused {
|
|
44655
44999
|
@include box-shadow( $orgchart-node-group-focus-shadow );
|