@progress/kendo-theme-fluent 7.1.0-dev.8 → 7.1.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 +118 -95
- package/dist/meta/sassdoc-data.json +1252 -1196
- package/dist/meta/sassdoc-raw-data.json +623 -598
- package/lib/swatches/all.json +1 -1
- package/lib/swatches/fluent-main.json +1 -1
- package/package.json +4 -4
- package/scss/action-sheet/_variables.scss +1 -1
- package/scss/adaptive/_variables.scss +5 -5
- package/scss/appbar/_variables.scss +8 -8
- package/scss/avatar/_variables.scss +11 -11
- package/scss/badge/_variables.scss +11 -11
- package/scss/bottom-navigation/_variables.scss +35 -35
- package/scss/breadcrumb/_variables.scss +5 -5
- package/scss/button/_variables.scss +172 -172
- package/scss/calendar/_variables.scss +12 -12
- package/scss/card/_layout.scss +4 -0
- package/scss/card/_variables.scss +2 -2
- package/scss/chat/_variables.scss +8 -8
- package/scss/checkbox/_variables.scss +19 -19
- package/scss/chip/_variables.scss +44 -44
- package/scss/color-preview/_variables.scss +4 -4
- package/scss/coloreditor/_variables.scss +1 -1
- package/scss/colorgradient/_variables.scss +9 -9
- package/scss/colorpalette/_variables.scss +4 -4
- package/scss/core/_index.scss +40 -6
- package/scss/core/color-system/_index.scss +2 -0
- package/scss/core/color-system/_palettes.scss +293 -15
- package/scss/core/color-system/_swatch-legacy.scss +100 -0
- package/scss/core/color-system/_swatch.scss +261 -0
- package/scss/dataviz/_layout.scss +6 -6
- package/scss/dataviz/_variables.scss +41 -41
- package/scss/dialog/_variables.scss +5 -5
- package/scss/dock-manager/_variables.scss +7 -7
- package/scss/draggable/_variables.scss +1 -1
- package/scss/drawer/_variables.scss +10 -10
- package/scss/dropzone/_variables.scss +5 -5
- package/scss/editor/_variables.scss +6 -6
- package/scss/expansion-panel/_variables.scss +7 -7
- package/scss/fab/_variables.scss +6 -6
- package/scss/filemanager/_layout.scss +5 -0
- package/scss/filter/_variables.scss +3 -3
- package/scss/floating-label/_layout.scss +1 -1
- package/scss/forms/_variables.scss +2 -2
- package/scss/gantt/_layout.scss +11 -3
- package/scss/gantt/_variables.scss +32 -32
- package/scss/grid/_layout.scss +10 -0
- package/scss/grid/_theme.scss +82 -32
- package/scss/grid/_variables.scss +11 -11
- package/scss/imageeditor/_variables.scss +3 -4
- package/scss/index.scss +0 -1
- package/scss/input/_layout.scss +8 -2
- package/scss/input/_theme.scss +9 -0
- package/scss/input/_variables.scss +62 -56
- package/scss/list/_variables.scss +19 -19
- package/scss/listbox/_variables.scss +1 -1
- package/scss/listview/_variables.scss +1 -1
- package/scss/loader/_variables.scss +7 -7
- package/scss/map/_variables.scss +6 -6
- package/scss/mediaplayer/_variables.scss +3 -3
- package/scss/menu/_variables.scss +2 -2
- package/scss/notification/_variables.scss +6 -6
- package/scss/orgchart/_variables.scss +4 -4
- package/scss/pager/_variables.scss +4 -4
- package/scss/panelbar/_variables.scss +5 -5
- package/scss/pdf-viewer/_variables.scss +2 -2
- package/scss/pivotgrid/_variables.scss +3 -3
- package/scss/progressbar/_variables.scss +10 -10
- package/scss/radio/_variables.scss +10 -10
- package/scss/rating/_variables.scss +4 -4
- package/scss/scheduler/_theme.scss +1 -1
- package/scss/scheduler/_variables.scss +11 -11
- package/scss/scrollview/_variables.scss +8 -8
- package/scss/searchbox/_variables.scss +1 -1
- package/scss/signature/_variables.scss +2 -2
- package/scss/skeleton/_variables.scss +2 -2
- package/scss/slider/_variables.scss +11 -11
- package/scss/split-button/_variables.scss +1 -1
- package/scss/splitter/_variables.scss +3 -3
- package/scss/spreadsheet/_variables.scss +23 -23
- package/scss/stepper/_layout.scss +17 -2
- package/scss/stepper/_theme.scss +51 -15
- package/scss/stepper/_variables.scss +9 -9
- package/scss/switch/_variables.scss +24 -24
- package/scss/table/_theme.scss +18 -7
- package/scss/table/_variables.scss +3 -3
- package/scss/tabstrip/_variables.scss +4 -4
- package/scss/taskboard/_variables.scss +4 -4
- package/scss/tilelayout/_variables.scss +1 -1
- package/scss/timeline/_variables.scss +6 -6
- package/scss/timeselector/_theme.scss +1 -1
- package/scss/toolbar/_variables.scss +3 -3
- package/scss/tooltip/_variables.scss +9 -9
- package/scss/treeview/_variables.scss +1 -1
- package/scss/upload/_variables.scss +8 -8
- package/scss/window/_variables.scss +8 -8
- package/scss/wizard/_variables.scss +1 -1
|
@@ -41,13 +41,13 @@ $kendo-editor-selectednode-outline-width: map.get( $kendo-spacing, 0.5 ) !defaul
|
|
|
41
41
|
|
|
42
42
|
/// The selected text color of the Editor.
|
|
43
43
|
/// @group editor
|
|
44
|
-
$kendo-editor-selected-text: $kendo-color-white !default;
|
|
44
|
+
$kendo-editor-selected-text: if($kendo-enable-color-system, k-color( app-surface ), $kendo-color-white) !default;
|
|
45
45
|
/// The selected background color of the Editor.
|
|
46
46
|
/// @group editor
|
|
47
|
-
$kendo-editor-selected-bg: k-get-theme-color-var( primary-100 ) !default;
|
|
47
|
+
$kendo-editor-selected-bg: if($kendo-enable-color-system, k-color( primary ), k-get-theme-color-var( primary-100 )) !default;
|
|
48
48
|
/// The highlighted background color of the Editor.
|
|
49
49
|
/// @group editor
|
|
50
|
-
$kendo-editor-highlighted-bg: k-get-theme-color-var( primary-60 ) !default;
|
|
50
|
+
$kendo-editor-highlighted-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .55 ), k-get-theme-color-var( primary-60 )) !default;
|
|
51
51
|
|
|
52
52
|
/// The size of the Editor's resize handle.
|
|
53
53
|
/// @group editor
|
|
@@ -57,14 +57,14 @@ $kendo-editor-resize-handle-size: map.get( $kendo-spacing, 2 ) !default;
|
|
|
57
57
|
$kendo-editor-resize-handle-border-width: 1px !default;
|
|
58
58
|
/// The border color of the Editor's resize handle.
|
|
59
59
|
/// @group editor
|
|
60
|
-
$kendo-editor-resize-handle-border: $kendo-color-black !default;
|
|
60
|
+
$kendo-editor-resize-handle-border: if($kendo-enable-color-system, k-color( on-app-surface ), $kendo-color-black) !default;
|
|
61
61
|
/// The background color of the Editor's resize handle.
|
|
62
62
|
/// @group editor
|
|
63
|
-
$kendo-editor-resize-handle-bg: $kendo-color-white !default;
|
|
63
|
+
$kendo-editor-resize-handle-bg: if($kendo-enable-color-system, k-color( app-surface ), $kendo-color-white) !default;
|
|
64
64
|
|
|
65
65
|
/// The outline color of the Editor's selected node.
|
|
66
66
|
/// @group editor
|
|
67
|
-
$kendo-editor-selectednode-outline-color: k-get-theme-color-var( primary-100 ) !default;
|
|
67
|
+
$kendo-editor-selectednode-outline-color: if($kendo-enable-color-system, k-color( primary ), k-get-theme-color-var( primary-100 )) !default;
|
|
68
68
|
|
|
69
69
|
/// The border color of the Inline Editor data cell.
|
|
70
70
|
/// @group editor
|
|
@@ -22,13 +22,13 @@ $kendo-expander-line-height: var( --kendo-line-height, normal ) !default;
|
|
|
22
22
|
$kendo-expander-text: var( --kendo-component-text, initial ) !default;
|
|
23
23
|
/// The background color of the ExpansionPanel.
|
|
24
24
|
/// @group expander
|
|
25
|
-
$kendo-expander-bg: k-get-theme-color-var( neutral-10 ) !default;
|
|
25
|
+
$kendo-expander-bg: if($kendo-enable-color-system, k-color( surface ), k-get-theme-color-var( neutral-10 )) !default;
|
|
26
26
|
/// The border color of the ExpansionPanel.
|
|
27
27
|
/// @group expander
|
|
28
28
|
$kendo-expander-border: var( --kendo-component-border, initial ) !default;
|
|
29
29
|
/// The box shadow of the ExpansionPanel.
|
|
30
30
|
/// @group expander
|
|
31
|
-
$kendo-expander-shadow: inset 0 0 0 2px k-get-theme-color-var( neutral-30 ) !default;
|
|
31
|
+
$kendo-expander-shadow: inset 0 0 0 2px if($kendo-enable-color-system, rgba( k-color( border, true ), .16 ), k-get-theme-color-var( neutral-30 )) !default;
|
|
32
32
|
|
|
33
33
|
/// The background color of the expanded ExpansionPanel.
|
|
34
34
|
/// @group expander
|
|
@@ -52,14 +52,14 @@ $kendo-expander-focus-outline-width: 1px !default;
|
|
|
52
52
|
$kendo-expander-focus-outline-style: solid !default;
|
|
53
53
|
/// The outline color of the focused ExpansionPanel.
|
|
54
54
|
/// @group expander
|
|
55
|
-
$kendo-expander-focus-outline: k-get-theme-color-var( neutral-130
|
|
55
|
+
$kendo-expander-focus-outline: if($kendo-enable-color-system, k-color( base-emphasis ), k-get-theme-color-var( neutral-130)) !default;
|
|
56
56
|
|
|
57
57
|
/// The background color of the focused ExpansionPanel.
|
|
58
58
|
/// @group expander
|
|
59
59
|
$kendo-expander-focus-bg: var( --kendo-component-bg, initial ) !default;
|
|
60
60
|
/// The box shadow of the focused ExpansionPanel.
|
|
61
61
|
/// @group expander
|
|
62
|
-
$kendo-expander-focus-shadow: inset 0px 0px 0px 2px k-get-theme-color-var( neutral-130
|
|
62
|
+
$kendo-expander-focus-shadow: inset 0px 0px 0px 2px if($kendo-enable-color-system, k-color( base-emphasis ), k-get-theme-color-var( neutral-130)) !default;
|
|
63
63
|
|
|
64
64
|
/// The horizontal padding of the ExpansionPanel header.
|
|
65
65
|
/// @group expander
|
|
@@ -70,18 +70,18 @@ $kendo-expander-header-padding-y: map.get( $kendo-spacing, 3 ) !default;
|
|
|
70
70
|
|
|
71
71
|
/// The text color of the ExpansionPanel header.
|
|
72
72
|
/// @group expander
|
|
73
|
-
$kendo-expander-header-text: k-get-theme-color-var( primary-100 ) !default;
|
|
73
|
+
$kendo-expander-header-text: if($kendo-enable-color-system, k-color( primary ), k-get-theme-color-var( primary-100 )) !default;
|
|
74
74
|
/// The background color of the ExpansionPanel header.
|
|
75
75
|
/// @group expander
|
|
76
76
|
$kendo-expander-header-bg: inherit !default;
|
|
77
77
|
|
|
78
78
|
/// The background color of the hovered ExpansionPanel header.
|
|
79
79
|
/// @group expander
|
|
80
|
-
$kendo-expander-header-hover-bg: k-get-theme-color-var( neutral-20 ) !default;
|
|
80
|
+
$kendo-expander-header-hover-bg: if($kendo-enable-color-system, k-color( base-hover ), k-get-theme-color-var( neutral-20 )) !default;
|
|
81
81
|
|
|
82
82
|
/// The text color of the ExpansionPanel title.
|
|
83
83
|
/// @group expander
|
|
84
|
-
$kendo-expander-title-text: k-get-theme-color-var( primary-100 ) !default;
|
|
84
|
+
$kendo-expander-title-text: if($kendo-enable-color-system, k-color( primary ), k-get-theme-color-var( primary-100 )) !default;
|
|
85
85
|
|
|
86
86
|
/// The text color of the ExpansionPanel sub-title.
|
|
87
87
|
/// @group expander
|
package/scss/fab/_variables.scss
CHANGED
|
@@ -151,13 +151,13 @@ $kendo-fab-sizes: (
|
|
|
151
151
|
$kendo-fab-item-offset-y: map.get( $kendo-spacing, 2 ) !default;
|
|
152
152
|
/// The base text color of the FAB item.
|
|
153
153
|
/// @group floating-action-button
|
|
154
|
-
$kendo-fab-item-text: k-get-theme-color-var( neutral-160 ) !default;
|
|
154
|
+
$kendo-fab-item-text: if($kendo-enable-color-system, k-color( on-app-surface ), k-get-theme-color-var( neutral-160 )) !default;
|
|
155
155
|
/// The base background color of the FAB item.
|
|
156
156
|
/// @group floating-action-button
|
|
157
157
|
$kendo-fab-item-bg: var( --kendo-component-bg, inherit ) !default;
|
|
158
158
|
/// The base border color of the FAB item.
|
|
159
159
|
/// @group floating-action-button
|
|
160
|
-
$kendo-fab-item-border: k-get-theme-color-var( neutral-110 ) !default;
|
|
160
|
+
$kendo-fab-item-border: if($kendo-enable-color-system, k-color( border ), k-get-theme-color-var( neutral-110 )) !default;
|
|
161
161
|
/// The text color of the hovered FAB item.
|
|
162
162
|
/// @group floating-action-button
|
|
163
163
|
$kendo-fab-item-hover-text: var( --kendo-hover-text, inherit ) !default;
|
|
@@ -166,16 +166,16 @@ $kendo-fab-item-hover-text: var( --kendo-hover-text, inherit ) !default;
|
|
|
166
166
|
$kendo-fab-item-hover-bg: var( --kendo-hover-bg, inherit ) !default;
|
|
167
167
|
/// The border color of the hovered FAB item.
|
|
168
168
|
/// @group floating-action-button
|
|
169
|
-
$kendo-fab-item-hover-border: k-get-theme-color-var( neutral-110 ) !default;
|
|
169
|
+
$kendo-fab-item-hover-border: if($kendo-enable-color-system, k-color( border ), k-get-theme-color-var( neutral-110 )) !default;
|
|
170
170
|
/// The text color of the focused FAB item.
|
|
171
171
|
/// @group floating-action-button
|
|
172
|
-
$kendo-fab-item-focus-text: k-get-theme-color-var( neutral-160 ) !default;
|
|
172
|
+
$kendo-fab-item-focus-text: if($kendo-enable-color-system, k-color( on-app-surface ), k-get-theme-color-var( neutral-160 )) !default;
|
|
173
173
|
/// The background color of the focused FAB item.
|
|
174
174
|
/// @group floating-action-button
|
|
175
175
|
$kendo-fab-item-focus-bg: var( --kendo-component-bg, inherit ) !default;
|
|
176
176
|
/// The border color of the focused FAB item.
|
|
177
177
|
/// @group floating-action-button
|
|
178
|
-
$kendo-fab-item-focus-border: k-get-theme-color-var( neutral-110 ) !default;
|
|
178
|
+
$kendo-fab-item-focus-border: if($kendo-enable-color-system, k-color( border ), k-get-theme-color-var( neutral-110 )) !default;
|
|
179
179
|
/// The text color of the active FAB item.
|
|
180
180
|
/// @group floating-action-button
|
|
181
181
|
$kendo-fab-item-active-text: var( --kendo-selected-text, inherit ) !default;
|
|
@@ -184,4 +184,4 @@ $kendo-fab-item-active-text: var( --kendo-selected-text, inherit ) !default;
|
|
|
184
184
|
$kendo-fab-item-active-bg: var( --kendo-selected-bg, inherit ) !default;
|
|
185
185
|
/// The border color of the active FAB item.
|
|
186
186
|
/// @group floating-action-button
|
|
187
|
-
$kendo-fab-item-active-border: k-get-theme-color-var( neutral-110 ) !default;
|
|
187
|
+
$kendo-fab-item-active-border: if($kendo-enable-color-system, k-color( border ), k-get-theme-color-var( neutral-110 )) !default;
|
|
@@ -25,6 +25,7 @@
|
|
|
25
25
|
border-bottom-width: var( --kendo-file-manager-toolbar-border-width, #{$kendo-file-manager-toolbar-border-width} );
|
|
26
26
|
border-color: inherit;
|
|
27
27
|
flex-shrink: 0;
|
|
28
|
+
z-index: 1;
|
|
28
29
|
}
|
|
29
30
|
|
|
30
31
|
|
|
@@ -39,6 +40,10 @@
|
|
|
39
40
|
overflow: hidden;
|
|
40
41
|
}
|
|
41
42
|
|
|
43
|
+
.k-filemanager-splitter {
|
|
44
|
+
border-width: 0;
|
|
45
|
+
}
|
|
46
|
+
|
|
42
47
|
|
|
43
48
|
// Navigation
|
|
44
49
|
.k-filemanager-navigation {
|
|
@@ -24,10 +24,10 @@ $kendo-filter-text: var( --kendo-component-text, initial ) !default;
|
|
|
24
24
|
|
|
25
25
|
/// The text color of the Filter preview field.
|
|
26
26
|
/// @group filter
|
|
27
|
-
$kendo-filter-preview-field-text: k-get-theme-color-var( primary-100 ) !default;
|
|
27
|
+
$kendo-filter-preview-field-text: if($kendo-enable-color-system, k-color( primary ), k-get-theme-color-var( primary-100 )) !default;
|
|
28
28
|
/// The text color of the Filter preview operator.
|
|
29
29
|
/// @group filter
|
|
30
|
-
$kendo-filter-preview-operator-text: k-get-theme-color-var( neutral-130 ) !default;
|
|
30
|
+
$kendo-filter-preview-operator-text: if($kendo-enable-color-system, k-color( subtle ), k-get-theme-color-var( neutral-130 )) !default;
|
|
31
31
|
|
|
32
32
|
/// The background color of the line that connects the Filter items.
|
|
33
33
|
/// @group filter
|
|
@@ -35,4 +35,4 @@ $kendo-filter-line-bg: var( --kendo-component-border, initial ) !default;
|
|
|
35
35
|
|
|
36
36
|
/// The border color of the focused Filter.
|
|
37
37
|
/// @group filter
|
|
38
|
-
$kendo-filter-toolbar-focus-border: k-get-theme-color-var( neutral-130 ) !default;
|
|
38
|
+
$kendo-filter-toolbar-focus-border: if($kendo-enable-color-system, k-color( base-emphasis ), k-get-theme-color-var( neutral-130 )) !default;
|
|
@@ -81,7 +81,7 @@
|
|
|
81
81
|
&:focus-within > .k-label,
|
|
82
82
|
&.k-focus > .k-label {
|
|
83
83
|
left: auto;
|
|
84
|
-
right: var( --kendo-floating-label-offset-x, #{$kendo-floating-label-offset-x} );
|
|
84
|
+
right: var( --kendo-floating-label-focus-offset-x, #{$kendo-floating-label-focus-offset-x} );
|
|
85
85
|
}
|
|
86
86
|
}
|
|
87
87
|
|
|
@@ -89,7 +89,7 @@ $kendo-form-hint-margin-top: map.get( $kendo-spacing, 1 ) !default;
|
|
|
89
89
|
|
|
90
90
|
/// The text color of the Form hint.
|
|
91
91
|
/// @group form
|
|
92
|
-
$kendo-form-hint-text: k-get-theme-color-var( neutral-130 ) !default;
|
|
92
|
+
$kendo-form-hint-text: if($kendo-enable-color-system, k-color( subtle ), k-get-theme-color-var( neutral-130 )) !default;
|
|
93
93
|
|
|
94
94
|
/// The row spacing of the small Form.
|
|
95
95
|
/// @group form
|
|
@@ -171,7 +171,7 @@ $kendo-fieldset-border: initial !default;
|
|
|
171
171
|
$kendo-fieldset-legend-bg: transparent !default;
|
|
172
172
|
/// The text color of the Form legend.
|
|
173
173
|
/// @group form
|
|
174
|
-
$kendo-fieldset-legend-text: k-get-theme-color-var( neutral-130 ) !default;
|
|
174
|
+
$kendo-fieldset-legend-text: if($kendo-enable-color-system, k-color( subtle ), k-get-theme-color-var( neutral-130 )) !default;
|
|
175
175
|
/// The border color of the Form legend.
|
|
176
176
|
/// @group form
|
|
177
177
|
$kendo-fieldset-legend-border: initial !default;
|
package/scss/gantt/_layout.scss
CHANGED
|
@@ -288,12 +288,20 @@
|
|
|
288
288
|
|
|
289
289
|
|
|
290
290
|
// Timeline
|
|
291
|
-
.k-gantt-timeline {
|
|
291
|
+
.k-gantt-timeline-pane {
|
|
292
292
|
|
|
293
|
-
.k-timeline {
|
|
293
|
+
.k-gantt-timeline {
|
|
294
294
|
height: 100%;
|
|
295
295
|
border-width: 0;
|
|
296
296
|
display: flex;
|
|
297
|
+
|
|
298
|
+
*,
|
|
299
|
+
*::before,
|
|
300
|
+
*::after,
|
|
301
|
+
&::before,
|
|
302
|
+
&::after {
|
|
303
|
+
box-sizing: border-box;
|
|
304
|
+
}
|
|
297
305
|
}
|
|
298
306
|
.k-grid-header {}
|
|
299
307
|
.k-grid-content {
|
|
@@ -770,7 +778,7 @@
|
|
|
770
778
|
}
|
|
771
779
|
|
|
772
780
|
.k-gantt,
|
|
773
|
-
.k-gantt-timeline,
|
|
781
|
+
.k-gantt-timeline-pane,
|
|
774
782
|
.k-gantt-dependencies {
|
|
775
783
|
width: auto !important; // stylelint-disable-line declaration-no-important
|
|
776
784
|
height: auto !important; // stylelint-disable-line declaration-no-important
|
|
@@ -26,7 +26,7 @@ $kendo-gantt-border: var( --kendo-component-border, inherit ) !default;
|
|
|
26
26
|
|
|
27
27
|
/// Background color of the gantt non-working days.
|
|
28
28
|
/// @group gantt
|
|
29
|
-
$kendo-gantt-nonwork-bg: rgba( $kendo-color-black, .04 ) !default;
|
|
29
|
+
$kendo-gantt-nonwork-bg: rgba( if($kendo-enable-color-system, k-color( on-app-surface, true ), $kendo-color-black), .04 ) !default;
|
|
30
30
|
/// Text color of the gantt non-working days.
|
|
31
31
|
/// @group gantt
|
|
32
32
|
$kendo-gantt-nonwork-text: inherit !default;
|
|
@@ -42,7 +42,7 @@ $kendo-gantt-line-size: 2px !default;
|
|
|
42
42
|
$kendo-gantt-line-fill: black !default;
|
|
43
43
|
/// Selected background fill of the gantt connecting lines.
|
|
44
44
|
/// @group gantt
|
|
45
|
-
$kendo-gantt-line-selected-fill: k-get-theme-color-var( primary-120 ) !default;
|
|
45
|
+
$kendo-gantt-line-selected-fill: if($kendo-enable-color-system, k-color( primary-active ), k-get-theme-color-var( primary-120 )) !default;
|
|
46
46
|
|
|
47
47
|
/// Size of the gantt task dot.
|
|
48
48
|
/// @group gantt
|
|
@@ -52,16 +52,16 @@ $kendo-gantt-dot-size: 8px !default;
|
|
|
52
52
|
$kendo-gantt-dot-spacing: map.get( $kendo-spacing, 0.5 ) !default;
|
|
53
53
|
/// Background color of the gantt task dot.
|
|
54
54
|
/// @group gantt
|
|
55
|
-
$kendo-gantt-dot-bg: $kendo-color-black !default;
|
|
55
|
+
$kendo-gantt-dot-bg: if($kendo-enable-color-system, k-color( on-app-surface ), $kendo-color-black) !default;
|
|
56
56
|
/// Border color of the gantt task dot.
|
|
57
57
|
/// @group gantt
|
|
58
|
-
$kendo-gantt-dot-border: $kendo-color-black !default;
|
|
58
|
+
$kendo-gantt-dot-border: if($kendo-enable-color-system, k-color( on-app-surface ), $kendo-color-black) !default;
|
|
59
59
|
/// Hover background color of the gantt task dot.
|
|
60
60
|
/// @group gantt
|
|
61
|
-
$kendo-gantt-dot-hover-bg: $kendo-color-white !default;
|
|
61
|
+
$kendo-gantt-dot-hover-bg: if($kendo-enable-color-system, k-color( app-surface ), $kendo-color-white) !default;
|
|
62
62
|
/// Hover border color of the gantt task dot.
|
|
63
63
|
/// @group gantt
|
|
64
|
-
$kendo-gantt-dot-hover-border: $kendo-color-black !default;
|
|
64
|
+
$kendo-gantt-dot-hover-border: if($kendo-enable-color-system, k-color( on-app-surface ), $kendo-color-black) !default;
|
|
65
65
|
|
|
66
66
|
/// Background color of the gantt milestone.
|
|
67
67
|
/// @group gantt
|
|
@@ -71,23 +71,23 @@ $kendo-gantt-milestone-bg: $kendo-gantt-text !default;
|
|
|
71
71
|
$kendo-gantt-milestone-border: $kendo-gantt-text !default;
|
|
72
72
|
/// Selected background color of the gantt milestone.
|
|
73
73
|
/// @group gantt
|
|
74
|
-
$kendo-gantt-milestone-selected-bg: k-get-theme-color-var( primary-100 ) !default;
|
|
74
|
+
$kendo-gantt-milestone-selected-bg: if($kendo-enable-color-system, k-color( primary ), k-get-theme-color-var( primary-100 )) !default;
|
|
75
75
|
/// Selected border color of the gantt milestone.
|
|
76
76
|
/// @group gantt
|
|
77
|
-
$kendo-gantt-milestone-selected-border: k-get-theme-color-var( primary-100 ) !default;
|
|
77
|
+
$kendo-gantt-milestone-selected-border: if($kendo-enable-color-system, k-color( primary ), k-get-theme-color-var( primary-100 )) !default;
|
|
78
78
|
|
|
79
79
|
/// Background color of the gantt summary.
|
|
80
80
|
/// @group gantt
|
|
81
|
-
$kendo-gantt-summary-bg: k-get-theme-color-var( neutral-110 ) !default;
|
|
81
|
+
$kendo-gantt-summary-bg: if($kendo-enable-color-system, k-color( subtle ), k-get-theme-color-var( neutral-110 )) !default;
|
|
82
82
|
/// Background color of the gantt summary progress.
|
|
83
83
|
/// @group gantt
|
|
84
|
-
$kendo-gantt-summary-progress-bg: k-get-theme-color-var( neutral-160 ) !default;
|
|
84
|
+
$kendo-gantt-summary-progress-bg: if($kendo-enable-color-system, k-color( on-app-surface ), k-get-theme-color-var( neutral-160 )) !default;
|
|
85
85
|
/// Selected background color of the gantt summary.
|
|
86
86
|
/// @group gantt
|
|
87
|
-
$kendo-gantt-summary-selected-bg: k-get-theme-color-var( primary-50 ) !default;
|
|
87
|
+
$kendo-gantt-summary-selected-bg: if($kendo-enable-color-system, k-color( primary-subtle-active ), k-get-theme-color-var( primary-50 )) !default;
|
|
88
88
|
/// Selected background color of the gantt summary progress.
|
|
89
89
|
/// @group gantt
|
|
90
|
-
$kendo-gantt-summary-progress-selected-bg: k-get-theme-color-var( primary-100 ) !default;
|
|
90
|
+
$kendo-gantt-summary-progress-selected-bg: if($kendo-enable-color-system, k-color( primary ), k-get-theme-color-var( primary-100 )) !default;
|
|
91
91
|
|
|
92
92
|
/// Border width of the gantt task.
|
|
93
93
|
/// @group gantt
|
|
@@ -100,31 +100,31 @@ $kendo-gantt-task-padding-x: map.get( $kendo-spacing, 2 ) !default;
|
|
|
100
100
|
$kendo-gantt-task-padding-y: map.get( $kendo-spacing, 1 ) !default;
|
|
101
101
|
/// Background color of the gantt task.
|
|
102
102
|
/// @group gantt
|
|
103
|
-
$kendo-gantt-task-bg: k-get-theme-color-var( neutral-110 ) !default;
|
|
103
|
+
$kendo-gantt-task-bg: if($kendo-enable-color-system, k-color( subtle ), k-get-theme-color-var( neutral-110 )) !default;
|
|
104
104
|
/// Text color of the gantt task.
|
|
105
105
|
/// @group gantt
|
|
106
|
-
$kendo-gantt-task-text: $kendo-color-white !default;
|
|
106
|
+
$kendo-gantt-task-text: if($kendo-enable-color-system, k-color( app-surface ), $kendo-color-white) !default;
|
|
107
107
|
/// Border color of the gantt task.
|
|
108
108
|
/// @group gantt
|
|
109
109
|
$kendo-gantt-task-border: inherit !default;
|
|
110
110
|
/// Background color of the gantt task progress.
|
|
111
111
|
/// @group gantt
|
|
112
|
-
$kendo-gantt-task-progress-bg: k-get-theme-color-var( neutral-160 ) !default;
|
|
112
|
+
$kendo-gantt-task-progress-bg: if($kendo-enable-color-system, k-color( on-app-surface ), k-get-theme-color-var( neutral-160 )) !default;
|
|
113
113
|
/// Background hover color of the gantt task progress.
|
|
114
114
|
/// @group gantt
|
|
115
|
-
$kendo-gantt-task-progress-hover-bg: k-get-theme-color-var( neutral-
|
|
115
|
+
$kendo-gantt-task-progress-hover-bg: if($kendo-enable-color-system, k-color( on-app-surface ), k-get-theme-color-var( neutral-160 )) !default;
|
|
116
116
|
/// Selected background color of the gantt task.
|
|
117
117
|
/// @group gantt
|
|
118
|
-
$kendo-gantt-task-selected-bg: k-get-theme-color-var( primary-50 ) !default;
|
|
118
|
+
$kendo-gantt-task-selected-bg: if($kendo-enable-color-system, k-color( primary-subtle-active ), k-get-theme-color-var( primary-50 )) !default;
|
|
119
119
|
/// Selected text color of the gantt task.
|
|
120
120
|
/// @group gantt
|
|
121
|
-
$kendo-gantt-task-selected-text: $kendo-color-white !default;
|
|
121
|
+
$kendo-gantt-task-selected-text: if($kendo-enable-color-system, k-color( app-surface ), $kendo-color-white) !default;
|
|
122
122
|
/// Selected border color of the gantt task.
|
|
123
123
|
/// @group gantt
|
|
124
124
|
$kendo-gantt-task-selected-border: transparent !default;
|
|
125
125
|
/// Selected background color of the gantt task progress.
|
|
126
126
|
/// @group gantt
|
|
127
|
-
$kendo-gantt-task-progress-selected-bg: k-get-theme-color-var( primary-100 ) !default;
|
|
127
|
+
$kendo-gantt-task-progress-selected-bg: if($kendo-enable-color-system, k-color( primary ), k-get-theme-color-var( primary-100 )) !default;
|
|
128
128
|
|
|
129
129
|
/// Vertical padding of the gantt task actions.
|
|
130
130
|
/// @group gantt
|
|
@@ -186,40 +186,40 @@ $kendo-gantt-planned-offset-resize-handler-margin-x: 1.4em !default;
|
|
|
186
186
|
|
|
187
187
|
/// Text color of the gantt planned tooltip.
|
|
188
188
|
/// @group gantt
|
|
189
|
-
$kendo-gantt-planned-text: $kendo-color-white !default;
|
|
189
|
+
$kendo-gantt-planned-text: if($kendo-enable-color-system, k-color( app-surface ), $kendo-color-white) !default;
|
|
190
190
|
/// Background color of the gantt planned tooltip.
|
|
191
191
|
/// @group gantt
|
|
192
|
-
$kendo-gantt-planned-bg: k-get-theme-color-var( primary-100 ) !default;
|
|
192
|
+
$kendo-gantt-planned-bg: if($kendo-enable-color-system, k-color( primary ), k-get-theme-color-var( primary-100 )) !default;
|
|
193
193
|
/// Border color of the gantt planned tooltip.
|
|
194
194
|
/// @group gantt
|
|
195
|
-
$kendo-gantt-planned-border: k-get-theme-color-var( primary-100 ) !default;
|
|
195
|
+
$kendo-gantt-planned-border: if($kendo-enable-color-system, k-color( primary ), k-get-theme-color-var( primary-100 )) !default;
|
|
196
196
|
|
|
197
197
|
/// Text color of the gantt delayed task.
|
|
198
198
|
/// @group gantt
|
|
199
|
-
$kendo-gantt-delayed-text: $kendo-color-white !default;
|
|
199
|
+
$kendo-gantt-delayed-text: if($kendo-enable-color-system, k-color( app-surface ), $kendo-color-white) !default;
|
|
200
200
|
/// Background color of the gantt delayed task.
|
|
201
201
|
/// @group gantt
|
|
202
|
-
$kendo-gantt-delayed-bg: k-get-theme-color-var( error-160 ) !default;
|
|
202
|
+
$kendo-gantt-delayed-bg: if($kendo-enable-color-system, k-color( error-emphasis ), k-get-theme-color-var( error-160 )) !default;
|
|
203
203
|
/// Complement background color of the gantt delayed task.
|
|
204
204
|
/// @group gantt
|
|
205
|
-
$kendo-gantt-delayed-bg-lighter: k-get-theme-color-var( error-110) !default;
|
|
205
|
+
$kendo-gantt-delayed-bg-lighter: if($kendo-enable-color-system, k-color( error ), k-get-theme-color-var( error-110)) !default;
|
|
206
206
|
/// Background hover color of the gantt delayed task.
|
|
207
207
|
/// @group gantt
|
|
208
|
-
$kendo-gantt-delayed-hover-bg: k-get-theme-color-var( error-190 ) !default;
|
|
208
|
+
$kendo-gantt-delayed-hover-bg: if($kendo-enable-color-system, k-color( error-on-subtle ), k-get-theme-color-var( error-190 )) !default;
|
|
209
209
|
|
|
210
210
|
/// Background color of the gantt advanced task.
|
|
211
211
|
/// @group gantt
|
|
212
|
-
$kendo-gantt-advanced-bg: k-get-theme-color-var( success-160 ) !default;
|
|
212
|
+
$kendo-gantt-advanced-bg: if($kendo-enable-color-system, k-color( success-emphasis ), k-get-theme-color-var( success-160 )) !default;
|
|
213
213
|
/// Complement background color of the gantt advanced task.
|
|
214
214
|
/// @group gantt
|
|
215
|
-
$kendo-gantt-advanced-bg-lighter: k-get-theme-color-var( success-110 ) !default;
|
|
215
|
+
$kendo-gantt-advanced-bg-lighter: if($kendo-enable-color-system, k-color( success ), k-get-theme-color-var( success-110 )) !default;
|
|
216
216
|
/// Background hover color of the gantt advanced task.
|
|
217
217
|
/// @group gantt
|
|
218
|
-
$kendo-gantt-advanced-hover-bg: k-get-theme-color-var( success-190 ) !default;
|
|
218
|
+
$kendo-gantt-advanced-hover-bg: if($kendo-enable-color-system, k-color( success-on-subtle ), k-get-theme-color-var( success-190 )) !default;
|
|
219
219
|
|
|
220
220
|
/// Text color of the gantt delayed task action.
|
|
221
221
|
/// @group gantt
|
|
222
|
-
$kendo-gantt-action-on-offset-text: $kendo-color-black !default;
|
|
222
|
+
$kendo-gantt-action-on-offset-text: if($kendo-enable-color-system, k-color( on-app-surface ), $kendo-color-black) !default;
|
|
223
223
|
/// Top position of the gantt delayed task resize handler.
|
|
224
224
|
/// @group gantt
|
|
225
225
|
$kendo-gantt-offset-resize-handler-top: 50% !default;
|
|
@@ -235,7 +235,7 @@ $kendo-gantt-validation-tooltip-label-width: 50px !default;
|
|
|
235
235
|
$kendo-gantt-validation-tooltip-border: var( --kendo-component-border, inherit ) !default;
|
|
236
236
|
/// Border color of the gantt validation tooltip in valid state.
|
|
237
237
|
/// @group gantt
|
|
238
|
-
$kendo-gantt-validation-tooltip-valid-border: k-get-theme-color-var( success-100 ) !default;
|
|
238
|
+
$kendo-gantt-validation-tooltip-valid-border: if($kendo-enable-color-system, k-color( success ), k-get-theme-color-var( success-100 )) !default;
|
|
239
239
|
/// Border color of the gantt validation tooltip in invalid state.
|
|
240
240
|
/// @group gantt
|
|
241
|
-
$kendo-gantt-validation-tooltip-invalid-border: k-get-theme-color-var( error-100 ) !default;
|
|
241
|
+
$kendo-gantt-validation-tooltip-invalid-border: if($kendo-enable-color-system, k-color( error ), k-get-theme-color-var( error-100 )) !default;
|
package/scss/grid/_layout.scss
CHANGED
|
@@ -809,6 +809,16 @@
|
|
|
809
809
|
}
|
|
810
810
|
}
|
|
811
811
|
|
|
812
|
+
.k-master-row .k-grid-content-sticky::before {
|
|
813
|
+
content: "";
|
|
814
|
+
width: 100%;
|
|
815
|
+
height: 100%;
|
|
816
|
+
position: absolute;
|
|
817
|
+
top: 0;
|
|
818
|
+
left: 0;
|
|
819
|
+
z-index: -1;
|
|
820
|
+
}
|
|
821
|
+
|
|
812
822
|
kendo-grid {
|
|
813
823
|
.k-table-row.k-grid-row-sticky {
|
|
814
824
|
border: 0;
|
package/scss/grid/_theme.scss
CHANGED
|
@@ -100,20 +100,22 @@
|
|
|
100
100
|
border-block-color: var( --kendo-grid-selected-border, #{$kendo-grid-selected-border} );
|
|
101
101
|
}
|
|
102
102
|
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
103
|
+
@if($kendo-enable-color-system == false) {
|
|
104
|
+
// Selected hover state
|
|
105
|
+
.k-table-tbody > .k-table-row:not(.k-detail-row):hover td.k-selected,
|
|
106
|
+
.k-table-tbody > .k-table-row:not(.k-detail-row).k-hover.k-selected > td,
|
|
107
|
+
.k-table-tbody > .k-table-row:not(.k-detail-row):hover .k-table-td.k-selected,
|
|
108
|
+
.k-table-tbody > .k-table-row:not(.k-detail-row).k-hover.k-selected > .k-table-td,
|
|
109
|
+
.k-table-tbody > .k-table-row:not(.k-detail-row).k-hover.k-selected,
|
|
110
|
+
.k-table-tbody > .k-table-row:not(.k-detail-row).k-hover td.k-selected,
|
|
111
|
+
.k-table-tbody > .k-table-row:not(.k-detail-row).k-selected:hover > td,
|
|
112
|
+
.k-table-tbody > .k-table-row:not(.k-detail-row).k-hover .k-table-td.k-selected,
|
|
113
|
+
.k-table-tbody > .k-table-row:not(.k-detail-row).k-selected:hover > .k-table-td {
|
|
114
|
+
@include fill(
|
|
115
|
+
$color: var( --kendo-grid-selected-hover-text, #{$kendo-grid-selected-hover-text} ),
|
|
116
|
+
$bg: var( --kendo-grid-selected-hover-bg, #{$kendo-grid-selected-hover-bg} )
|
|
117
|
+
);
|
|
118
|
+
}
|
|
117
119
|
}
|
|
118
120
|
|
|
119
121
|
// Focused state
|
|
@@ -237,7 +239,7 @@
|
|
|
237
239
|
}
|
|
238
240
|
&:focus,
|
|
239
241
|
&.k-focus {
|
|
240
|
-
box-shadow: inset 0 0 0 2px rgba( $kendo-color-black, .1 );
|
|
242
|
+
box-shadow: inset 0 0 0 2px rgba( if($kendo-enable-color-system, k-color( on-app-surface, true ), $kendo-color-black), .1 );
|
|
241
243
|
}
|
|
242
244
|
&.k-active {
|
|
243
245
|
@include fill(
|
|
@@ -303,18 +305,34 @@
|
|
|
303
305
|
}
|
|
304
306
|
|
|
305
307
|
// Selected state
|
|
306
|
-
&.k-selected .k-grid-content-sticky,
|
|
307
|
-
&.k-selected .k-grid-row-sticky,
|
|
308
|
-
td.k-grid-content-sticky.k-selected,
|
|
309
|
-
.k-table-td.k-grid-content-sticky.k-selected {
|
|
310
|
-
@
|
|
308
|
+
&.k-table-row.k-selected td.k-grid-content-sticky,
|
|
309
|
+
&.k-table-row.k-selected .k-table-td.k-grid-row-sticky,
|
|
310
|
+
&.k-table-row td.k-grid-content-sticky.k-selected,
|
|
311
|
+
&.k-table-row .k-table-td.k-grid-content-sticky.k-selected {
|
|
312
|
+
@if($kendo-enable-color-system) {
|
|
313
|
+
@include fill( $bg: var( --kendo-grid-sticky-bg, #{$kendo-grid-sticky-bg} ) );
|
|
314
|
+
|
|
315
|
+
&::before {
|
|
316
|
+
@include fill( $bg: var( --kendo-grid-sticky-selected-bg, #{$kendo-grid-sticky-selected-bg} ) );
|
|
317
|
+
}
|
|
318
|
+
} @else {
|
|
319
|
+
@include fill( $bg: var( --kendo-grid-sticky-selected-bg, #{$kendo-grid-sticky-selected-bg} ) );
|
|
320
|
+
}
|
|
311
321
|
}
|
|
312
322
|
|
|
313
|
-
&.k-selected.k-table-alt-row .k-grid-content-sticky,
|
|
314
|
-
&.k-selected.k-table-alt-row .k-grid-row-sticky,
|
|
323
|
+
&.k-selected.k-table-alt-row td.k-grid-content-sticky,
|
|
324
|
+
&.k-selected.k-table-alt-row .k-table-td.k-grid-row-sticky,
|
|
315
325
|
&.k-table-alt-row td.k-grid-content-sticky.k-selected,
|
|
316
326
|
&.k-table-alt-row .k-table-td.k-grid-content-sticky.k-selected {
|
|
317
|
-
@
|
|
327
|
+
@if($kendo-enable-color-system) {
|
|
328
|
+
@include fill( $bg: var( --kendo-grid-sticky-alt-bg, #{$kendo-grid-sticky-alt-bg} ) );
|
|
329
|
+
|
|
330
|
+
&::before {
|
|
331
|
+
@include fill( $bg: var( --kendo-grid-sticky-selected-alt-bg, #{$kendo-grid-sticky-selected-alt-bg} ) );
|
|
332
|
+
}
|
|
333
|
+
} @else {
|
|
334
|
+
@include fill( $bg: var( --kendo-grid-sticky-selected-alt-bg, #{$kendo-grid-sticky-selected-alt-bg} ) );
|
|
335
|
+
}
|
|
318
336
|
}
|
|
319
337
|
|
|
320
338
|
|
|
@@ -328,15 +346,23 @@
|
|
|
328
346
|
|
|
329
347
|
|
|
330
348
|
// Selected hover
|
|
331
|
-
&.k-selected:hover .k-grid-content-sticky,
|
|
332
|
-
&.k-selected:hover .k-grid-row-sticky,
|
|
333
|
-
&.k-selected.k-hover .k-grid-content-sticky,
|
|
334
|
-
&.k-selected.k-hover .k-grid-row-sticky,
|
|
349
|
+
&.k-selected:hover td.k-grid-content-sticky,
|
|
350
|
+
&.k-selected:hover .k-table-td.k-grid-row-sticky,
|
|
351
|
+
&.k-selected.k-hover td.k-grid-content-sticky,
|
|
352
|
+
&.k-selected.k-hover .k-table-td.k-grid-row-sticky,
|
|
335
353
|
&:hover td.k-grid-content-sticky.k-selected,
|
|
336
354
|
&.k-hover td.k-grid-content-sticky.k-selected,
|
|
337
355
|
&:hover .k-table-td.k-grid-content-sticky.k-selected,
|
|
338
356
|
&.k-hover .k-table-td.k-grid-content-sticky.k-selected {
|
|
339
|
-
@
|
|
357
|
+
@if($kendo-enable-color-system) {
|
|
358
|
+
background-color: var( --kendo-grid-sticky-hover-bg, #{$kendo-grid-sticky-hover-bg} );
|
|
359
|
+
|
|
360
|
+
&::before {
|
|
361
|
+
@include fill( $bg: var( --kendo-grid-sticky-selected-hover-bg, #{$kendo-grid-sticky-selected-hover-bg} ) );
|
|
362
|
+
}
|
|
363
|
+
} @else {
|
|
364
|
+
@include fill( $bg: var( --kendo-grid-sticky-selected-hover-bg, #{$kendo-grid-sticky-selected-hover-bg} ) );
|
|
365
|
+
}
|
|
340
366
|
}
|
|
341
367
|
}
|
|
342
368
|
|
|
@@ -380,14 +406,30 @@
|
|
|
380
406
|
.k-selected.k-grid-row-sticky .k-table-td,
|
|
381
407
|
.k-grid-row-sticky .k-table-td.k-selected,
|
|
382
408
|
.k-selected.k-grid-content-sticky {
|
|
383
|
-
@
|
|
409
|
+
@if($kendo-enable-color-system) {
|
|
410
|
+
@include fill( $bg: var( --kendo-grid-sticky-bg, #{$kendo-grid-sticky-bg} ) );
|
|
411
|
+
|
|
412
|
+
&::before {
|
|
413
|
+
@include fill( $bg: var( --kendo-grid-sticky-selected-bg, #{$kendo-grid-sticky-selected-bg} ) );
|
|
414
|
+
}
|
|
415
|
+
} @else {
|
|
416
|
+
@include fill( $bg: var( --kendo-grid-sticky-selected-bg, #{$kendo-grid-sticky-selected-bg} ) );
|
|
417
|
+
}
|
|
384
418
|
}
|
|
385
419
|
|
|
386
420
|
.k-table-row.k-selected.k-table-alt-row .k-grid-content-sticky,
|
|
387
421
|
.k-selected.k-table-alt-row.k-grid-row-sticky td,
|
|
388
422
|
.k-selected.k-table-alt-row.k-grid-row-sticky .k-table-td,
|
|
389
423
|
.k-table-alt-row .k-selected.k-grid-content-sticky {
|
|
390
|
-
@
|
|
424
|
+
@if($kendo-enable-color-system) {
|
|
425
|
+
@include fill( $bg: var( --kendo-grid-sticky-alt-bg, #{$kendo-grid-sticky-alt-bg} ) );
|
|
426
|
+
|
|
427
|
+
&::before {
|
|
428
|
+
@include fill( $bg: var( --kendo-grid-sticky-selected-alt-bg, #{$kendo-grid-sticky-selected-alt-bg} ) );
|
|
429
|
+
}
|
|
430
|
+
} @else {
|
|
431
|
+
@include fill( $bg: var( --kendo-grid-sticky-selected-alt-bg, #{$kendo-grid-sticky-selected-alt-bg} ) );
|
|
432
|
+
}
|
|
391
433
|
}
|
|
392
434
|
|
|
393
435
|
// Hover state
|
|
@@ -425,7 +467,15 @@
|
|
|
425
467
|
.k-grid-row-sticky.k-hover .k-table-td.k-selected,
|
|
426
468
|
.k-table-row:hover .k-grid-content-sticky.k-selected,
|
|
427
469
|
.k-table-row.k-hover .k-grid-content-sticky.k-selected {
|
|
428
|
-
@
|
|
470
|
+
@if($kendo-enable-color-system) {
|
|
471
|
+
background-color: var( --kendo-grid-sticky-hover-bg, #{$kendo-grid-sticky-hover-bg} );
|
|
472
|
+
|
|
473
|
+
&::before {
|
|
474
|
+
@include fill( $bg: var( --kendo-grid-sticky-selected-hover-bg, #{$kendo-grid-sticky-selected-hover-bg} ) );
|
|
475
|
+
}
|
|
476
|
+
} @else {
|
|
477
|
+
@include fill( $bg: var( --kendo-grid-sticky-selected-hover-bg, #{$kendo-grid-sticky-selected-hover-bg} ) );
|
|
478
|
+
}
|
|
429
479
|
}
|
|
430
480
|
}
|
|
431
481
|
|
|
@@ -436,7 +486,7 @@
|
|
|
436
486
|
|
|
437
487
|
&:hover .k-grid-content-sticky,
|
|
438
488
|
&.k-hover .k-grid-content-sticky {
|
|
439
|
-
@include fill( $bg:
|
|
489
|
+
@include fill( $bg: var( --kendo-grid-sticky-hover-bg, #{$kendo-grid-sticky-hover-bg} ) );
|
|
440
490
|
}
|
|
441
491
|
}
|
|
442
492
|
|