@progress/kendo-theme-fluent 11.0.0-dev.0 → 11.0.0-dev.1
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 +1 -1
- package/dist/fluent-main-dark.css +1 -1
- package/dist/fluent-main.css +1 -1
- package/dist/meta/sassdoc-data.json +3258 -2502
- package/dist/meta/sassdoc-raw-data.json +1569 -1219
- package/dist/meta/variables.json +117 -37
- package/lib/swatches/all.json +1 -1
- package/lib/swatches/fluent-main-dark.json +1 -1
- package/lib/swatches/fluent-main.json +1 -1
- package/package.json +4 -4
- package/scss/action-sheet/_variables.scss +4 -0
- package/scss/calendar/_layout.scss +2 -1
- package/scss/calendar/_theme.scss +4 -0
- package/scss/calendar/_variables.scss +12 -0
- package/scss/chip/_layout.scss +1 -0
- package/scss/chip/_variables.scss +4 -0
- package/scss/color-preview/_theme.scss +1 -1
- package/scss/colorgradient/_layout.scss +1 -10
- package/scss/colorgradient/_variables.scss +2 -26
- package/scss/column-menu/_variables.scss +1 -1
- package/scss/dataviz/_theme.scss +2 -2
- package/scss/daterangepicker/_theme.scss +1 -1
- package/scss/dialog/_theme.scss +1 -0
- package/scss/dialog/_variables.scss +4 -0
- package/scss/drawer/_layout.scss +5 -2
- package/scss/drawer/_theme.scss +7 -0
- package/scss/drawer/_variables.scss +18 -0
- package/scss/editor/_theme.scss +1 -1
- package/scss/fab/_theme.scss +2 -2
- package/scss/forms/_theme.scss +2 -2
- package/scss/gantt/_theme.scss +3 -3
- package/scss/grid/_theme.scss +6 -6
- package/scss/list/_layout.scss +8 -0
- package/scss/list/_variables.scss +23 -3
- package/scss/notification/_layout.scss +2 -0
- package/scss/notification/_variables.scss +7 -0
- package/scss/panel/_layout.scss +3 -3
- package/scss/pivotgrid/_theme.scss +2 -2
- package/scss/rating/_theme.scss +1 -1
- package/scss/scheduler/_theme.scss +3 -3
- package/scss/stepper/_theme.scss +8 -8
- package/scss/tabstrip/_variables.scss +1 -0
- package/scss/taskboard/_theme.scss +3 -3
- package/scss/timeselector/_theme.scss +11 -8
- package/scss/timeselector/_variables.scss +9 -0
- package/scss/typography/_layout.scss +2 -2
- package/scss/typography/_theme.scss +2 -2
package/scss/drawer/_layout.scss
CHANGED
|
@@ -125,7 +125,9 @@
|
|
|
125
125
|
}
|
|
126
126
|
.k-drawer-items {
|
|
127
127
|
margin: 0;
|
|
128
|
-
padding:
|
|
128
|
+
padding-inline: var( --kendo-drawer-items-padding-x, #{$kendo-drawer-items-padding-x} );
|
|
129
|
+
padding-block: var( --kendo-drawer-items-padding-y, #{$kendo-drawer-items-padding-y} );
|
|
130
|
+
border-radius: var( --kendo-drawer-item-border-radius, #{$kendo-drawer-item-border-radius} );
|
|
129
131
|
list-style: none;
|
|
130
132
|
display: flex;
|
|
131
133
|
flex-direction: column;
|
|
@@ -139,11 +141,12 @@
|
|
|
139
141
|
color: inherit;
|
|
140
142
|
font-size: var( --kendo-drawer-item-font-size, #{$kendo-drawer-item-font-size} );
|
|
141
143
|
line-height: var( --kendo-drawer-item-line-height, #{$kendo-drawer-item-line-height} );
|
|
144
|
+
font-weight: var( --kendo-drawer-item-font-weight, #{$kendo-drawer-item-font-weight} );
|
|
142
145
|
position: relative;
|
|
143
146
|
display: flex;
|
|
144
147
|
align-items: center;
|
|
145
148
|
flex-flow: row nowrap;
|
|
146
|
-
gap: var( --kendo-drawer-item-
|
|
149
|
+
gap: var( --kendo-drawer-item-spacing, #{$kendo-drawer-item-spacing} );
|
|
147
150
|
cursor: pointer;
|
|
148
151
|
|
|
149
152
|
&::before {
|
package/scss/drawer/_theme.scss
CHANGED
|
@@ -85,6 +85,13 @@
|
|
|
85
85
|
var( --kendo-drawer-item-selected-hover-bg, #{$kendo-drawer-item-selected-hover-bg} )
|
|
86
86
|
);
|
|
87
87
|
}
|
|
88
|
+
|
|
89
|
+
&:focus,
|
|
90
|
+
&.k-focus {
|
|
91
|
+
@include fill(
|
|
92
|
+
var( --kendo-drawer-item-selected-focus-bg, #{$kendo-drawer-item-selected-focus-bg} )
|
|
93
|
+
);
|
|
94
|
+
}
|
|
88
95
|
}
|
|
89
96
|
}
|
|
90
97
|
.k-drawer-separator {
|
|
@@ -47,18 +47,30 @@ $kendo-drawer-scrollbar-radius: 20px !default;
|
|
|
47
47
|
/// @group drawer
|
|
48
48
|
$kendo-drawer-scrollbar-hover-color: color-mix(in srgb, k-color(on-app-surface) 60%, transparent) !default;
|
|
49
49
|
|
|
50
|
+
/// The horizontal padding of the Drawer items.
|
|
51
|
+
/// @group drawer
|
|
52
|
+
$kendo-drawer-items-padding-x: 0 !default;
|
|
53
|
+
/// The vertical padding of the Drawer items.
|
|
54
|
+
/// @group drawer
|
|
55
|
+
$kendo-drawer-items-padding-y: 0 !default;
|
|
50
56
|
/// The horizontal padding of the Drawer item.
|
|
51
57
|
/// @group drawer
|
|
52
58
|
$kendo-drawer-item-padding-x: k-spacing(4) !default;
|
|
53
59
|
/// The vertical padding of the Drawer item.
|
|
54
60
|
/// @group drawer
|
|
55
61
|
$kendo-drawer-item-padding-y: k-spacing(2) !default;
|
|
62
|
+
/// The spacing between the items in the Drawer item.
|
|
63
|
+
/// @group drawer
|
|
64
|
+
$kendo-drawer-item-spacing: $kendo-drawer-item-padding-x !default;
|
|
56
65
|
/// The font size of the Drawer item.
|
|
57
66
|
/// @group drawer
|
|
58
67
|
$kendo-drawer-item-font-size: $kendo-drawer-font-size !default;
|
|
59
68
|
/// The line height of the Drawer item.
|
|
60
69
|
/// @group drawer
|
|
61
70
|
$kendo-drawer-item-line-height: var( --kendo-line-height-lg, normal ) !default;
|
|
71
|
+
/// The font weight of the Drawer item.
|
|
72
|
+
/// @group drawer
|
|
73
|
+
$kendo-drawer-item-font-weight: var( --kendo-font-weight, normal ) !default;
|
|
62
74
|
|
|
63
75
|
/// The horizontal padding of the Drawer item in each level.
|
|
64
76
|
/// @group drawer
|
|
@@ -66,6 +78,9 @@ $kendo-drawer-item-level-padding-x: $kendo-drawer-item-padding-x !default;
|
|
|
66
78
|
/// The count of the Drawer item levels.
|
|
67
79
|
/// @group drawer
|
|
68
80
|
$kendo-drawer-item-level-count: 5 !default;
|
|
81
|
+
/// The border radius of the Drawer item.
|
|
82
|
+
/// @group drawer
|
|
83
|
+
$kendo-drawer-item-border-radius: null !default;
|
|
69
84
|
|
|
70
85
|
/// The horizontal padding of the Drawer icon.
|
|
71
86
|
/// @group drawer
|
|
@@ -136,3 +151,6 @@ $kendo-drawer-item-selected-hover-bg: k-color(base-subtle-active) !default;
|
|
|
136
151
|
/// The text color of the selected and hovered Drawer item.
|
|
137
152
|
/// @group drawer
|
|
138
153
|
$kendo-drawer-item-selected-hover-text: k-color(on-base) !default;
|
|
154
|
+
/// The background color of the selected and focused Drawer item.
|
|
155
|
+
/// @group drawer
|
|
156
|
+
$kendo-drawer-item-selected-focus-bg: null !default;
|
package/scss/editor/_theme.scss
CHANGED
package/scss/fab/_theme.scss
CHANGED
|
@@ -186,8 +186,8 @@
|
|
|
186
186
|
&:disabled .k-fab-item-text,
|
|
187
187
|
&.k-disabled .k-fab-item-text {
|
|
188
188
|
@include disabled(
|
|
189
|
-
color-mix(in srgb, k-color(
|
|
190
|
-
k-color(
|
|
189
|
+
color-mix(in srgb, k-color(on-app-surface) 46%, transparent),
|
|
190
|
+
k-color(base-subtle),
|
|
191
191
|
transparent
|
|
192
192
|
);
|
|
193
193
|
}
|
package/scss/forms/_theme.scss
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
.k-form,
|
|
7
7
|
.k-form-inline {
|
|
8
|
-
@include fill( $color: var( --kendo-form-text, #{k-color(
|
|
8
|
+
@include fill( $color: var( --kendo-form-text, #{k-color(on-app-surface)} ) );
|
|
9
9
|
|
|
10
10
|
fieldset {
|
|
11
11
|
legend {
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
.k-field-info {
|
|
21
|
-
@include fill( $color: var( --kendo-field-info-text, #{k-color(
|
|
21
|
+
@include fill( $color: var( --kendo-field-info-text, #{k-color(subtle)} ) );
|
|
22
22
|
}
|
|
23
23
|
|
|
24
24
|
.k-alert-error {
|
package/scss/gantt/_theme.scss
CHANGED
|
@@ -83,7 +83,7 @@
|
|
|
83
83
|
);
|
|
84
84
|
|
|
85
85
|
&.k-task-delayed {
|
|
86
|
-
@include repeating-striped-gradient( $kendo-gantt-delayed-bg, k-color(
|
|
86
|
+
@include repeating-striped-gradient( $kendo-gantt-delayed-bg, k-color(app-surface), 90deg, 4px, 2px );
|
|
87
87
|
}
|
|
88
88
|
|
|
89
89
|
&.k-task-advanced {
|
|
@@ -240,7 +240,7 @@
|
|
|
240
240
|
|
|
241
241
|
// Delay offset
|
|
242
242
|
.k-task-offset {
|
|
243
|
-
@include repeating-striped-gradient( $kendo-gantt-delayed-bg, k-color(
|
|
243
|
+
@include repeating-striped-gradient( $kendo-gantt-delayed-bg, k-color(app-surface), 135deg, 4px, 2px );
|
|
244
244
|
|
|
245
245
|
.k-resize-e::before {
|
|
246
246
|
@include fill(
|
|
@@ -256,7 +256,7 @@
|
|
|
256
256
|
}
|
|
257
257
|
|
|
258
258
|
.k-task-offset:hover {
|
|
259
|
-
@include repeating-striped-gradient( $kendo-gantt-delayed-bg-lighter, k-color(
|
|
259
|
+
@include repeating-striped-gradient( $kendo-gantt-delayed-bg-lighter, k-color(app-surface), 135deg, 4px, 2px );
|
|
260
260
|
}
|
|
261
261
|
|
|
262
262
|
.k-pdf-export .k-task-offset {
|
package/scss/grid/_theme.scss
CHANGED
|
@@ -218,8 +218,8 @@
|
|
|
218
218
|
.k-hierarchy-cell .k-icon {
|
|
219
219
|
&:hover {
|
|
220
220
|
@include fill(
|
|
221
|
-
$color: k-color(
|
|
222
|
-
$bg: k-color(
|
|
221
|
+
$color: k-color(on-base),
|
|
222
|
+
$bg: k-color(base-hover)
|
|
223
223
|
);
|
|
224
224
|
}
|
|
225
225
|
&:focus,
|
|
@@ -228,8 +228,8 @@
|
|
|
228
228
|
}
|
|
229
229
|
&.k-active {
|
|
230
230
|
@include fill(
|
|
231
|
-
$color: k-color(
|
|
232
|
-
$bg: k-color(
|
|
231
|
+
$color: k-color(on-base),
|
|
232
|
+
$bg: k-color(base-active)
|
|
233
233
|
);
|
|
234
234
|
}
|
|
235
235
|
}
|
|
@@ -410,7 +410,7 @@
|
|
|
410
410
|
&.k-disabled .k-link,
|
|
411
411
|
&.k-disabled .k-icon {
|
|
412
412
|
@include disabled(
|
|
413
|
-
color-mix(in srgb, k-color(
|
|
413
|
+
color-mix(in srgb, k-color(on-app-surface) 46%, transparent)
|
|
414
414
|
);
|
|
415
415
|
}
|
|
416
416
|
}
|
|
@@ -422,7 +422,7 @@
|
|
|
422
422
|
.k-listgroup-item {
|
|
423
423
|
&.k-disabled {
|
|
424
424
|
@include disabled(
|
|
425
|
-
$bg: k-color(
|
|
425
|
+
$bg: k-color(base-subtle)
|
|
426
426
|
);
|
|
427
427
|
}
|
|
428
428
|
}
|
package/scss/list/_layout.scss
CHANGED
|
@@ -220,6 +220,9 @@
|
|
|
220
220
|
$_group-item-padding-y: map.get( $size-props, group-item-padding-y );
|
|
221
221
|
$_group-item-font-size: map.get( $size-props, group-item-font-size );
|
|
222
222
|
$_group-item-line-height: map.get( $size-props, group-item-line-height );
|
|
223
|
+
$_filter-padding-x: map.get( $size-props, filter-padding-x );
|
|
224
|
+
$_filter-padding-y: map.get( $size-props, filter-padding-y );
|
|
225
|
+
|
|
223
226
|
|
|
224
227
|
.k-list-#{$size} {
|
|
225
228
|
--INTERNAL--kendo-list-font-size: var( --kendo-list-#{$size}-font-size, #{$_font-size} );
|
|
@@ -232,6 +235,11 @@
|
|
|
232
235
|
--INTERNAL--kendo-list-header-line-height: var( --kendo-list-#{$size}-header-line-height, #{$_header-line-height} );
|
|
233
236
|
}
|
|
234
237
|
|
|
238
|
+
.k-list-filter {
|
|
239
|
+
padding-inline: $_filter-padding-x;
|
|
240
|
+
padding-block: $_filter-padding-y;
|
|
241
|
+
}
|
|
242
|
+
|
|
235
243
|
.k-list-item {
|
|
236
244
|
--INTERNAL--kendo-list-item-padding-x: var( --kendo-list-#{$size}-item-padding-x, #{$_item-padding-x} );
|
|
237
245
|
--INTERNAL--kendo-list-item-padding-y: var( --kendo-list-#{$size}-item-padding-y, #{$_item-padding-y} );
|
|
@@ -49,6 +49,20 @@ $kendo-list-lg-header-line-height: var( --kendo-line-height, normal ) !default;
|
|
|
49
49
|
/// @group list
|
|
50
50
|
$kendo-list-header-font-weight: var( --kendo-font-weight-bold, normal ) !default;
|
|
51
51
|
|
|
52
|
+
/// The horizontal padding of the List filter, when no size is set.
|
|
53
|
+
/// @group list
|
|
54
|
+
$kendo-list-filter-padding-x: k-spacing(2) !default;
|
|
55
|
+
$kendo-list-sm-filter-padding-x: $kendo-list-filter-padding-x !default;
|
|
56
|
+
$kendo-list-md-filter-padding-x: $kendo-list-filter-padding-x !default;
|
|
57
|
+
$kendo-list-lg-filter-padding-x: $kendo-list-filter-padding-x !default;
|
|
58
|
+
|
|
59
|
+
/// The vertical padding of the List filter, when no size is set.
|
|
60
|
+
/// @group list
|
|
61
|
+
$kendo-list-filter-padding-y: $kendo-list-filter-padding-x !default;
|
|
62
|
+
$kendo-list-sm-filter-padding-y: $kendo-list-filter-padding-x !default;
|
|
63
|
+
$kendo-list-md-filter-padding-y: $kendo-list-filter-padding-x !default;
|
|
64
|
+
$kendo-list-lg-filter-padding-y: $kendo-list-filter-padding-x !default;
|
|
65
|
+
|
|
52
66
|
/// The horizontal padding of the List items.
|
|
53
67
|
/// @group list
|
|
54
68
|
$kendo-list-sm-item-padding-x: k-spacing(2) !default;
|
|
@@ -147,7 +161,9 @@ $kendo-list-sizes: (
|
|
|
147
161
|
group-item-padding-x: $kendo-list-sm-group-item-padding-x,
|
|
148
162
|
group-item-padding-y: $kendo-list-sm-group-item-padding-y,
|
|
149
163
|
group-item-font-size: $kendo-list-sm-group-item-font-size,
|
|
150
|
-
group-item-line-height: $kendo-list-sm-group-item-line-height
|
|
164
|
+
group-item-line-height: $kendo-list-sm-group-item-line-height,
|
|
165
|
+
filter-padding-x: $kendo-list-sm-filter-padding-x,
|
|
166
|
+
filter-padding-y: $kendo-list-sm-filter-padding-y
|
|
151
167
|
),
|
|
152
168
|
md: (
|
|
153
169
|
font-size: $kendo-list-md-font-size,
|
|
@@ -166,7 +182,9 @@ $kendo-list-sizes: (
|
|
|
166
182
|
group-item-padding-x: $kendo-list-md-group-item-padding-x,
|
|
167
183
|
group-item-padding-y: $kendo-list-md-group-item-padding-y,
|
|
168
184
|
group-item-font-size: $kendo-list-md-group-item-font-size,
|
|
169
|
-
group-item-line-height: $kendo-list-md-group-item-line-height
|
|
185
|
+
group-item-line-height: $kendo-list-md-group-item-line-height,
|
|
186
|
+
filter-padding-x: $kendo-list-md-filter-padding-x,
|
|
187
|
+
filter-padding-y: $kendo-list-md-filter-padding-y
|
|
170
188
|
),
|
|
171
189
|
lg: (
|
|
172
190
|
font-size: $kendo-list-lg-font-size,
|
|
@@ -185,7 +203,9 @@ $kendo-list-sizes: (
|
|
|
185
203
|
group-item-padding-x: $kendo-list-lg-group-item-padding-x,
|
|
186
204
|
group-item-padding-y: $kendo-list-lg-group-item-padding-y,
|
|
187
205
|
group-item-font-size: $kendo-list-lg-group-item-font-size,
|
|
188
|
-
group-item-line-height: $kendo-list-lg-group-item-line-height
|
|
206
|
+
group-item-line-height: $kendo-list-lg-group-item-line-height,
|
|
207
|
+
filter-padding-x: $kendo-list-lg-filter-padding-x,
|
|
208
|
+
filter-padding-y: $kendo-list-lg-filter-padding-y
|
|
189
209
|
)
|
|
190
210
|
) !default;
|
|
191
211
|
|
|
@@ -54,6 +54,8 @@
|
|
|
54
54
|
}
|
|
55
55
|
|
|
56
56
|
.k-notification-actions {
|
|
57
|
+
padding-inline: var( --kendo-notification-actions-padding-x, #{$kendo-notification-actions-padding-x} );
|
|
58
|
+
padding-block: var( --kendo-notification-actions-padding-y, #{$kendo-notification-actions-padding-y} );
|
|
57
59
|
flex: none;
|
|
58
60
|
display: flex;
|
|
59
61
|
gap: var( --kendo-notification-icon-spacing, #{$kendo-notification-icon-spacing} );
|
|
@@ -26,6 +26,13 @@ $kendo-notification-font-size: var( --kendo-font-size-sm, inherit ) !default;
|
|
|
26
26
|
/// The line height of the Notification.
|
|
27
27
|
/// @group notification
|
|
28
28
|
$kendo-notification-line-height: var( --kendo-line-height, normal ) !default;
|
|
29
|
+
/// The horizontal padding of the Notification actions.
|
|
30
|
+
/// @group notification
|
|
31
|
+
$kendo-notification-actions-padding-x: null !default;
|
|
32
|
+
/// The vertical padding of the Notification actions.
|
|
33
|
+
/// @group notification
|
|
34
|
+
$kendo-notification-actions-padding-y: $kendo-notification-actions-padding-x !default;
|
|
35
|
+
|
|
29
36
|
/// The background color of the Notification.
|
|
30
37
|
/// @group notification
|
|
31
38
|
$kendo-notification-bg: k-color(surface-alt) !default;
|
package/scss/panel/_layout.scss
CHANGED
|
@@ -14,9 +14,9 @@
|
|
|
14
14
|
> .k-header {
|
|
15
15
|
@include border-top-radius( $kendo-panel-border-radius );
|
|
16
16
|
@include fill(
|
|
17
|
-
k-color(
|
|
18
|
-
k-color(
|
|
19
|
-
color-mix(in srgb, k-color(
|
|
17
|
+
k-color(on-app-surface),
|
|
18
|
+
k-color(surface-alt),
|
|
19
|
+
color-mix(in srgb, k-color(border) 16%, transparent)
|
|
20
20
|
);
|
|
21
21
|
padding-inline: $kendo-panel-header-padding-inline;
|
|
22
22
|
padding-block: $kendo-panel-header-padding-block;
|
|
@@ -131,11 +131,11 @@
|
|
|
131
131
|
}
|
|
132
132
|
|
|
133
133
|
.k-filter-menu .k-calculated-item {
|
|
134
|
-
@include fill( $border: color-mix(in srgb, k-color(
|
|
134
|
+
@include fill( $border: color-mix(in srgb, k-color(border) 16%, transparent) );
|
|
135
135
|
}
|
|
136
136
|
|
|
137
137
|
.k-pivotgrid-configurator-content .k-form-field-wrapper {
|
|
138
|
-
@include fill( $border: color-mix(in srgb, k-color(
|
|
138
|
+
@include fill( $border: color-mix(in srgb, k-color(border) 16%, transparent) );
|
|
139
139
|
}
|
|
140
140
|
|
|
141
141
|
}
|
package/scss/rating/_theme.scss
CHANGED
|
@@ -165,9 +165,9 @@
|
|
|
165
165
|
.k-scheduler-content .k-scheduler-row:hover,
|
|
166
166
|
.k-scheduler-content .k-scheduler-row.k-hover {
|
|
167
167
|
@include fill(
|
|
168
|
-
k-color(
|
|
169
|
-
k-color(
|
|
170
|
-
color-mix(in srgb, k-color(
|
|
168
|
+
k-color(on-base),
|
|
169
|
+
k-color(base-hover),
|
|
170
|
+
color-mix(in srgb, k-color(border) 10%, transparent)
|
|
171
171
|
);
|
|
172
172
|
}
|
|
173
173
|
|
package/scss/stepper/_theme.scss
CHANGED
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
.k-step-link:focus {
|
|
35
35
|
// Labels only
|
|
36
36
|
.k-step-label:only-child {
|
|
37
|
-
@include box-shadow( inset 0 0 0 var( --kendo-stepper-indicator-focus-size, #{$kendo-stepper-indicator-focus-size} ) color-mix(in srgb, k-color(
|
|
37
|
+
@include box-shadow( inset 0 0 0 var( --kendo-stepper-indicator-focus-size, #{$kendo-stepper-indicator-focus-size} ) color-mix(in srgb, k-color(border) 16%, transparent) );
|
|
38
38
|
}
|
|
39
39
|
}
|
|
40
40
|
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
.k-step-indicator {
|
|
45
45
|
@include fill(
|
|
46
46
|
var( --kendo-stepper-indicator-disabled-text, #{$kendo-stepper-indicator-disabled-text} ),
|
|
47
|
-
k-color(
|
|
47
|
+
k-color(app-surface),
|
|
48
48
|
var( --kendo-stepper-indicator-disabled-border, #{$kendo-stepper-indicator-disabled-border} )
|
|
49
49
|
);
|
|
50
50
|
|
|
@@ -66,13 +66,13 @@
|
|
|
66
66
|
);
|
|
67
67
|
}
|
|
68
68
|
.k-step-indicator::after {
|
|
69
|
-
@include box-shadow( inset 0 0 0 var( --kendo-stepper-indicator-focus-size, #{$kendo-stepper-indicator-focus-size} ) k-color(
|
|
69
|
+
@include box-shadow( inset 0 0 0 var( --kendo-stepper-indicator-focus-size, #{$kendo-stepper-indicator-focus-size} ) k-color(surface-alt) );
|
|
70
70
|
}
|
|
71
71
|
.k-step-label:only-child {
|
|
72
72
|
@include fill(
|
|
73
|
-
k-color(
|
|
74
|
-
k-color(
|
|
75
|
-
color-mix(in srgb, k-color(
|
|
73
|
+
k-color(on-app-surface),
|
|
74
|
+
k-color(surface-alt),
|
|
75
|
+
color-mix(in srgb, k-color(border) 16%, transparent)
|
|
76
76
|
);
|
|
77
77
|
}
|
|
78
78
|
|
|
@@ -110,7 +110,7 @@
|
|
|
110
110
|
.k-step-indicator {
|
|
111
111
|
@include fill(
|
|
112
112
|
var( --kendo-stepper-indicator-done-disabled-text, #{$kendo-stepper-indicator-done-disabled-text} ),
|
|
113
|
-
k-color(
|
|
113
|
+
k-color(app-surface ),
|
|
114
114
|
var( --kendo-stepper-indicator-done-disabled-border, #{$kendo-stepper-indicator-done-disabled-border} )
|
|
115
115
|
);
|
|
116
116
|
|
|
@@ -159,7 +159,7 @@
|
|
|
159
159
|
.k-step-indicator {
|
|
160
160
|
@include fill(
|
|
161
161
|
var( --kendo-stepper-indicator-current-disabled-text, #{$kendo-stepper-indicator-current-disabled-text} ),
|
|
162
|
-
k-color(
|
|
162
|
+
k-color(app-surface),
|
|
163
163
|
var( --kendo-stepper-indicator-current-disabled-border, #{$kendo-stepper-indicator-current-disabled-border} )
|
|
164
164
|
);
|
|
165
165
|
|
|
@@ -145,6 +145,7 @@ $kendo-tabstrip-item-selected-border: k-color(primary) !default;
|
|
|
145
145
|
/// The font weight of the selected TabStrip items.
|
|
146
146
|
/// @group tabstrip
|
|
147
147
|
$kendo-tabstrip-item-selected-font-weight: var( --kendo-font-weight-bold, normal ) !default;
|
|
148
|
+
|
|
148
149
|
/// The shadow of the focused TabStrip items.
|
|
149
150
|
/// @group tabstrip
|
|
150
151
|
$kendo-tabstrip-item-focus-shadow: $kendo-list-item-focus-shadow !default;
|
|
@@ -60,14 +60,14 @@
|
|
|
60
60
|
|
|
61
61
|
&.k-disabled {
|
|
62
62
|
@include fill(
|
|
63
|
-
color-mix(in srgb, k-color(
|
|
64
|
-
k-color(
|
|
63
|
+
color-mix(in srgb, k-color(on-app-surface) 46%, transparent),
|
|
64
|
+
k-color(base-subtle),
|
|
65
65
|
transparent
|
|
66
66
|
|
|
67
67
|
);
|
|
68
68
|
|
|
69
69
|
.k-card-header {
|
|
70
|
-
@include fill( $color: color-mix(in srgb, k-color(
|
|
70
|
+
@include fill( $color: color-mix(in srgb, k-color(on-app-surface) 46%, transparent) );
|
|
71
71
|
}
|
|
72
72
|
}
|
|
73
73
|
}
|
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
// Time selector
|
|
6
6
|
.k-timeselector {
|
|
7
7
|
@include fill(
|
|
8
|
-
var( --kendo-time-selector-text, $kendo-time-selector-text ),
|
|
9
|
-
var( --kendo-time-selector-bg, $kendo-time-selector-bg ),
|
|
10
|
-
var( --kendo-time-selector-border, $kendo-time-selector-border )
|
|
8
|
+
var( --kendo-time-selector-text, #{$kendo-time-selector-text} ),
|
|
9
|
+
var( --kendo-time-selector-bg, #{$kendo-time-selector-bg} ),
|
|
10
|
+
var( --kendo-time-selector-border, #{$kendo-time-selector-border} )
|
|
11
11
|
);
|
|
12
12
|
}
|
|
13
13
|
|
|
@@ -15,6 +15,9 @@
|
|
|
15
15
|
// Time selector header
|
|
16
16
|
.k-time-header,
|
|
17
17
|
.k-time-selector-header {
|
|
18
|
+
.k-title {
|
|
19
|
+
color: var( --kendo-time-selector-header-title-text, #{$kendo-time-selector-header-title-text} );
|
|
20
|
+
}
|
|
18
21
|
|
|
19
22
|
.k-time-now {
|
|
20
23
|
color: k-color(primary);
|
|
@@ -29,17 +32,17 @@
|
|
|
29
32
|
.k-time-list-wrapper {
|
|
30
33
|
|
|
31
34
|
.k-title {
|
|
32
|
-
color: var( --kendo-time-list-title-text, $kendo-time-list-title-text );
|
|
35
|
+
color: var( --kendo-time-list-title-text, #{$kendo-time-list-title-text} );
|
|
33
36
|
}
|
|
34
37
|
|
|
35
38
|
&.k-focus {
|
|
36
39
|
.k-title {
|
|
37
|
-
color: var( --kendo-time-list-title-focus-text, $kendo-time-list-title-focus-text );
|
|
40
|
+
color: var( --kendo-time-list-title-focus-text, #{$kendo-time-list-title-focus-text} );
|
|
38
41
|
}
|
|
39
42
|
|
|
40
43
|
&::before,
|
|
41
44
|
&::after {
|
|
42
|
-
background-color: var( --kendo-time-list-focus-bg, $kendo-time-list-focus-bg );
|
|
45
|
+
background-color: var( --kendo-time-list-focus-bg, #{$kendo-time-list-focus-bg} );
|
|
43
46
|
}
|
|
44
47
|
}
|
|
45
48
|
}
|
|
@@ -58,8 +61,8 @@
|
|
|
58
61
|
|
|
59
62
|
.k-time-highlight {
|
|
60
63
|
@include fill(
|
|
61
|
-
$bg: var( --kendo-time-list-highlight-bg, $kendo-time-list-highlight-bg ),
|
|
62
|
-
$border: var( --kendo-time-list-highlight-border, $kendo-time-list-highlight-border )
|
|
64
|
+
$bg: var( --kendo-time-list-highlight-bg, #{$kendo-time-list-highlight-bg} ),
|
|
65
|
+
$border: var( --kendo-time-list-highlight-border, #{$kendo-time-list-highlight-border} )
|
|
63
66
|
);
|
|
64
67
|
}
|
|
65
68
|
}
|
|
@@ -34,6 +34,15 @@ $kendo-time-selector-header-padding-y: k-spacing(3) !default;
|
|
|
34
34
|
/// Width of the border around the time-selector header.
|
|
35
35
|
/// @group time-selector
|
|
36
36
|
$kendo-time-selector-header-border-width: 0px !default;
|
|
37
|
+
/// The text color of the title in the time-selector header.
|
|
38
|
+
/// @group time-selector
|
|
39
|
+
$kendo-time-selector-header-title-text: unset !default;
|
|
40
|
+
/// The text color of the time now in the time-selector header.
|
|
41
|
+
/// @group time-selector
|
|
42
|
+
$kendo-time-selector-header-time-now-text: k-color(primary) !default;
|
|
43
|
+
/// The hover text color of the time now in the time-selector header.
|
|
44
|
+
/// @group time-selector
|
|
45
|
+
$kendo-time-selector-header-time-now-hover-text: k-color(primary-hover) !default;
|
|
37
46
|
|
|
38
47
|
/// Visibility of the time-selector separator.
|
|
39
48
|
/// @group time-selector
|