@progress/kendo-theme-bootstrap 7.1.0-dev.7 → 7.1.0-dev.9
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 +78 -45
- package/dist/all.scss +1534 -704
- package/dist/meta/sassdoc-data.json +632 -636
- package/dist/meta/sassdoc-raw-data.json +308 -310
- package/dist/meta/variables.json +411 -371
- package/lib/swatches/bootstrap-3-dark.json +1 -1
- package/lib/swatches/bootstrap-3.json +1 -1
- package/lib/swatches/bootstrap-4-dark.json +1 -1
- package/lib/swatches/bootstrap-4.json +1 -1
- package/lib/swatches/bootstrap-dataviz-v4.json +1 -1
- package/lib/swatches/bootstrap-main-dark.json +1 -1
- package/lib/swatches/bootstrap-main.json +1 -1
- package/lib/swatches/bootstrap-nordic.json +1 -1
- package/lib/swatches/bootstrap-turquoise-dark.json +1 -1
- package/lib/swatches/bootstrap-turquoise.json +1 -1
- package/lib/swatches/bootstrap-urban.json +1 -1
- package/lib/swatches/bootstrap-vintage.json +1 -1
- package/package.json +5 -5
- package/scss/_bootstrap-overrides.scss +0 -22
- package/scss/_variables.scss +0 -203
- package/scss/adaptive/_variables.scss +1 -1
- package/scss/all.scss +0 -1
- package/scss/appbar/_variables.scss +2 -2
- package/scss/breadcrumb/_variables.scss +1 -1
- package/scss/button/_variables.scss +13 -13
- package/scss/calendar/_variables.scss +1 -1
- package/scss/chat/_variables.scss +1 -1
- package/scss/checkbox/_variables.scss +4 -4
- package/scss/chip/_theme.scss +5 -4
- package/scss/chip/_variables.scss +1 -1
- package/scss/core/_index.scss +6 -0
- package/scss/core/color-system/_palettes.scss +171 -0
- package/scss/core/color-system/_swatch-legacy.scss +66 -0
- package/scss/core/color-system/_swatch.scss +391 -0
- package/scss/dataviz/_variables.scss +42 -42
- package/scss/dock-manager/_variables.scss +1 -1
- package/scss/drawer/_variables.scss +1 -1
- package/scss/dropzone/_variables.scss +2 -2
- package/scss/editor/_variables.scss +1 -1
- package/scss/fab/_theme.scss +21 -21
- package/scss/filemanager/_variables.scss +2 -2
- package/scss/filter/_variables.scss +1 -1
- package/scss/gantt/_variables.scss +13 -13
- package/scss/grid/_theme.scss +54 -6
- package/scss/grid/_variables.scss +12 -9
- package/scss/input/_variables.scss +4 -4
- package/scss/list/_variables.scss +1 -1
- package/scss/listview/_variables.scss +2 -2
- package/scss/map/_variables.scss +1 -1
- package/scss/mediaplayer/_variables.scss +1 -1
- package/scss/menu/_variables.scss +6 -6
- package/scss/notification/_variables.scss +3 -3
- package/scss/pager/_variables.scss +1 -1
- package/scss/panelbar/_variables.scss +4 -4
- package/scss/pivotgrid/_variables.scss +5 -5
- package/scss/scheduler/_variables.scss +3 -3
- package/scss/signature/_variables.scss +1 -1
- package/scss/skeleton/_variables.scss +1 -1
- package/scss/slider/_variables.scss +8 -8
- package/scss/splitter/_variables.scss +1 -1
- package/scss/spreadsheet/_variables.scss +4 -4
- package/scss/stepper/_variables.scss +7 -7
- package/scss/switch/_variables.scss +6 -6
- package/scss/table/_variables.scss +3 -3
- package/scss/taskboard/_variables.scss +8 -8
- package/scss/timeline/_variables.scss +4 -4
- package/scss/toolbar/_variables.scss +1 -1
- package/scss/tooltip/_variables.scss +4 -4
- package/scss/treeview/_variables.scss +1 -1
- package/scss/upload/_variables.scss +1 -1
|
@@ -15,31 +15,31 @@ $kendo-menu-item-spacing: 0 !default;
|
|
|
15
15
|
$kendo-menu-item-icon-spacing: $kendo-icon-spacing !default;
|
|
16
16
|
|
|
17
17
|
$kendo-menu-item-bg: null !default;
|
|
18
|
-
$kendo-menu-item-text: rgba( $kendo-menu-text, .5 ) !default;
|
|
18
|
+
$kendo-menu-item-text: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .5 ), rgba( $kendo-menu-text, .5 )) !default;
|
|
19
19
|
$kendo-menu-item-border: null !default;
|
|
20
20
|
$kendo-menu-item-gradient: null !default;
|
|
21
21
|
|
|
22
22
|
$kendo-menu-item-hover-bg: null !default;
|
|
23
|
-
$kendo-menu-item-hover-text: rgba( $kendo-menu-text, .7 ) !default;
|
|
23
|
+
$kendo-menu-item-hover-text: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .7 ), rgba( $kendo-menu-text, .7 )) !default;
|
|
24
24
|
$kendo-menu-item-hover-border: null !default;
|
|
25
25
|
$kendo-menu-item-hover-gradient: null !default;
|
|
26
26
|
|
|
27
27
|
$kendo-menu-item-expanded-bg: null !default;
|
|
28
|
-
$kendo-menu-item-expanded-text: rgba( $kendo-menu-text, .9 ) !default;
|
|
28
|
+
$kendo-menu-item-expanded-text: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .9 ), rgba( $kendo-menu-text, .9 )) !default;
|
|
29
29
|
$kendo-menu-item-expanded-border: null !default;
|
|
30
30
|
$kendo-menu-item-expanded-gradient: null !default;
|
|
31
31
|
|
|
32
|
-
$kendo-menu-item-focus-shadow: inset 0 0 0 3px rgba( $kendo-menu-text, .15 ) !default;
|
|
32
|
+
$kendo-menu-item-focus-shadow: inset 0 0 0 3px if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .15 ), rgba( $kendo-menu-text, .15 )) !default;
|
|
33
33
|
|
|
34
34
|
$kendo-menu-separator-spacing: k-map-get( $kendo-spacing, 1 ) !default;
|
|
35
35
|
|
|
36
36
|
$kendo-menu-scroll-button-bg: $kendo-menu-bg !default;
|
|
37
|
-
$kendo-menu-scroll-button-text: rgba( $kendo-menu-text, .5 ) !default;
|
|
37
|
+
$kendo-menu-scroll-button-text: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .5 ), rgba( $kendo-menu-text, .5 )) !default;
|
|
38
38
|
$kendo-menu-scroll-button-border: $kendo-menu-border !default;
|
|
39
39
|
$kendo-menu-scroll-button-gradient: null !default;
|
|
40
40
|
|
|
41
41
|
$kendo-menu-scroll-button-hover-bg: null !default;
|
|
42
|
-
$kendo-menu-scroll-button-hover-text: rgba( $kendo-menu-text, .7 ) !default;
|
|
42
|
+
$kendo-menu-scroll-button-hover-text: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .7 ), rgba( $kendo-menu-text, .7 )) !default;
|
|
43
43
|
$kendo-menu-scroll-button-hover-border: null !default;
|
|
44
44
|
$kendo-menu-scroll-button-hover-gradient: null !default;
|
|
45
45
|
|
|
@@ -47,9 +47,9 @@ $kendo-notification-icon-spacing: $kendo-icon-spacing !default;
|
|
|
47
47
|
|
|
48
48
|
@each $name, $color in $colors {
|
|
49
49
|
$_theme: k-map-merge(( $name: (
|
|
50
|
-
color: k-color-shade( $color, 6 ),
|
|
51
|
-
background-color: k-color-tint( $color, 9 ),
|
|
52
|
-
border: k-color-tint( $color, 10 ),
|
|
50
|
+
color: if($kendo-enable-color-system, k-color( #{$name}-on-subtle ), k-color-shade( $color, 6 )),
|
|
51
|
+
background-color: if($kendo-enable-color-system, k-color( #{$name}-subtle ), k-color-tint( $color, 9 )),
|
|
52
|
+
border: if($kendo-enable-color-system, k-color( #{$name}-emphasis ), k-color-tint( $color, 10 )),
|
|
53
53
|
)), $_theme );
|
|
54
54
|
}
|
|
55
55
|
|
|
@@ -123,7 +123,7 @@ $kendo-pager-item-focus-opacity: null !default;
|
|
|
123
123
|
$kendo-pager-item-focus-bg: $kendo-pager-item-bg !default;
|
|
124
124
|
/// The box shadow of the focused Pager items.
|
|
125
125
|
/// @group pager
|
|
126
|
-
$kendo-pager-item-focus-shadow: 0 0 0 3px rgba($kendo-color-primary, .25) !default;
|
|
126
|
+
$kendo-pager-item-focus-shadow: 0 0 0 3px if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba($kendo-color-primary, .25)) !default;
|
|
127
127
|
|
|
128
128
|
/// The border radius of the Pager numbers.
|
|
129
129
|
/// @group pager
|
|
@@ -27,7 +27,7 @@ $kendo-panelbar-header-text: $kendo-link-text !default;
|
|
|
27
27
|
$kendo-panelbar-header-border: null !default;
|
|
28
28
|
$kendo-panelbar-header-gradient: null !default;
|
|
29
29
|
|
|
30
|
-
$kendo-panelbar-header-hover-bg: k-try-shade( $kendo-panelbar-header-bg, .5 ) !default;
|
|
30
|
+
$kendo-panelbar-header-hover-bg: if($kendo-enable-color-system, k-color( base-subtle-hover ), k-try-shade( $kendo-panelbar-header-bg, .5 )) !default;
|
|
31
31
|
$kendo-panelbar-header-hover-text: null !default;
|
|
32
32
|
$kendo-panelbar-header-hover-border: null !default;
|
|
33
33
|
$kendo-panelbar-header-hover-gradient: null !default;
|
|
@@ -48,7 +48,7 @@ $kendo-panelbar-header-selected-text: $kendo-selected-text !default;
|
|
|
48
48
|
$kendo-panelbar-header-selected-border: null !default;
|
|
49
49
|
$kendo-panelbar-header-selected-gradient: null !default;
|
|
50
50
|
|
|
51
|
-
$kendo-panelbar-header-selected-hover-bg: k-try-shade( $kendo-panelbar-header-selected-bg ) !default;
|
|
51
|
+
$kendo-panelbar-header-selected-hover-bg: if($kendo-enable-color-system, k-color( primary-hover ), k-try-shade( $kendo-panelbar-header-selected-bg )) !default;
|
|
52
52
|
$kendo-panelbar-header-selected-hover-text: null !default;
|
|
53
53
|
$kendo-panelbar-header-selected-hover-border: null !default;
|
|
54
54
|
$kendo-panelbar-header-selected-hover-gradient: null !default;
|
|
@@ -63,7 +63,7 @@ $kendo-panelbar-header-selected-hover-focus-text: null !default;
|
|
|
63
63
|
$kendo-panelbar-header-selected-hover-focus-border: null !default;
|
|
64
64
|
$kendo-panelbar-header-selected-hover-focus-gradient: null !default;
|
|
65
65
|
|
|
66
|
-
$kendo-panelbar-item-hover-bg: k-try-shade( $kendo-panelbar-bg, 1 ) !default;
|
|
66
|
+
$kendo-panelbar-item-hover-bg: if($kendo-enable-color-system, k-color( base-hover ), k-try-shade( $kendo-panelbar-bg, 1 )) !default;
|
|
67
67
|
$kendo-panelbar-item-hover-text: null !default;
|
|
68
68
|
$kendo-panelbar-item-hover-border: null !default;
|
|
69
69
|
$kendo-panelbar-item-hover-gradient: null !default;
|
|
@@ -84,7 +84,7 @@ $kendo-panelbar-item-selected-text: $kendo-selected-text !default;
|
|
|
84
84
|
$kendo-panelbar-item-selected-border: null !default;
|
|
85
85
|
$kendo-panelbar-item-selected-gradient: null !default;
|
|
86
86
|
|
|
87
|
-
$kendo-panelbar-item-selected-hover-bg: k-try-shade( $kendo-panelbar-item-selected-bg ) !default;
|
|
87
|
+
$kendo-panelbar-item-selected-hover-bg: if($kendo-enable-color-system, k-color( primary-hover ), k-try-shade( $kendo-panelbar-item-selected-bg )) !default;
|
|
88
88
|
$kendo-panelbar-item-selected-hover-text: null !default;
|
|
89
89
|
$kendo-panelbar-item-selected-hover-border: null !default;
|
|
90
90
|
$kendo-panelbar-item-selected-hover-gradient: null !default;
|
|
@@ -22,21 +22,21 @@ $kendo-pivotgrid-bg: $kendo-component-bg !default;
|
|
|
22
22
|
$kendo-pivotgrid-text: $kendo-component-text !default;
|
|
23
23
|
$kendo-pivotgrid-border: $kendo-component-border !default;
|
|
24
24
|
|
|
25
|
-
$kendo-pivotgrid-alt-border: k-try-shade( $kendo-pivotgrid-border, 2 ) !default;
|
|
25
|
+
$kendo-pivotgrid-alt-border: if($kendo-enable-color-system, k-color( border-alt ), k-try-shade( $kendo-pivotgrid-border, 2 )) !default;
|
|
26
26
|
|
|
27
27
|
$kendo-pivotgrid-headers-bg: $kendo-component-header-bg !default;
|
|
28
28
|
$kendo-pivotgrid-headers-text: $kendo-component-header-text !default;
|
|
29
29
|
$kendo-pivotgrid-headers-border: $kendo-component-header-border !default;
|
|
30
30
|
|
|
31
|
-
$kendo-pivotgrid-total-bg: k-try-shade( $kendo-pivotgrid-bg, 1 ) !default;
|
|
31
|
+
$kendo-pivotgrid-total-bg: if($kendo-enable-color-system, k-color( base-subtle ), k-try-shade( $kendo-pivotgrid-bg, 1 )) !default;
|
|
32
32
|
$kendo-pivotgrid-total-text: $kendo-component-header-text !default;
|
|
33
33
|
$kendo-pivotgrid-total-border: $kendo-component-header-border !default;
|
|
34
34
|
|
|
35
|
-
$kendo-pivotgrid-hover-bg: k-color-darken( $kendo-pivotgrid-bg, 7% ) !default;
|
|
35
|
+
$kendo-pivotgrid-hover-bg: if($kendo-enable-color-system, k-color( base-subtle-hover ), k-color-darken( $kendo-pivotgrid-bg, 7% )) !default;
|
|
36
36
|
$kendo-pivotgrid-hover-text: null !default;
|
|
37
37
|
$kendo-pivotgrid-hover-border: null !default;
|
|
38
38
|
|
|
39
|
-
$kendo-pivotgrid-selected-bg: rgba( $kendo-selected-bg, .25 ) !default;
|
|
39
|
+
$kendo-pivotgrid-selected-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba( $kendo-selected-bg, .25 )) !default;
|
|
40
40
|
$kendo-pivotgrid-selected-text: null !default;
|
|
41
41
|
$kendo-pivotgrid-selected-border: null !default;
|
|
42
42
|
|
|
@@ -105,7 +105,7 @@ $kendo-pivotgrid-alt-text: $kendo-grid-header-text !default;
|
|
|
105
105
|
$kendo-pivotgrid-chrome-border: $kendo-grid-border !default;
|
|
106
106
|
|
|
107
107
|
$kendo-pivotgrid-container-bg: $kendo-component-header-bg !default;
|
|
108
|
-
$kendo-pivotgrid-row-headers-bg: k-try-shade( $kendo-component-header-bg, .5 ) !default;
|
|
108
|
+
$kendo-pivotgrid-row-headers-bg: if($kendo-enable-color-system, k-color( base-subtle ), k-try-shade( $kendo-component-header-bg, .5 )) !default;
|
|
109
109
|
|
|
110
110
|
$kendo-pivotgrid-button-bg: null !default;
|
|
111
111
|
$kendo-pivotgrid-button-text: null !default;
|
|
@@ -22,7 +22,7 @@ $kendo-scheduler-event-min-height: 25px !default;
|
|
|
22
22
|
$kendo-scheduler-event-border-radius: $kendo-border-radius-md !default;
|
|
23
23
|
$kendo-scheduler-event-line-height: calc( #{$kendo-scheduler-event-min-height} - (2 * #{$kendo-padding-sm-y}) ) !default;
|
|
24
24
|
|
|
25
|
-
$kendo-scheduler-event-bg: k-color-tint( $kendo-selected-bg, 2 ) !default;
|
|
25
|
+
$kendo-scheduler-event-bg: if($kendo-enable-color-system, k-color( primary ), k-color-tint( $kendo-selected-bg, 2 )) !default;
|
|
26
26
|
$kendo-scheduler-event-text: $kendo-selected-text !default;
|
|
27
27
|
$kendo-scheduler-event-border: null !default;
|
|
28
28
|
$kendo-scheduler-event-gradient: null !default;
|
|
@@ -48,13 +48,13 @@ $kendo-scheduler-cell-height: $kendo-line-height-em !default;
|
|
|
48
48
|
$kendo-scheduler-datecolumn-width: 12em !default;
|
|
49
49
|
$kendo-scheduler-timecolumn-width: 11em !default;
|
|
50
50
|
|
|
51
|
-
$kendo-scheduler-nonwork-bg: k-try-shade( $kendo-scheduler-bg, .5 ) !default;
|
|
51
|
+
$kendo-scheduler-nonwork-bg: if($kendo-enable-color-system, k-color( base-subtle ), k-try-shade( $kendo-scheduler-bg, .5 )) !default;
|
|
52
52
|
$kendo-scheduler-nonwork-text: null !default;
|
|
53
53
|
|
|
54
54
|
$kendo-scheduler-weekend-bg: null !default;
|
|
55
55
|
$kendo-scheduler-weekend-text: null !default;
|
|
56
56
|
|
|
57
|
-
$kendo-scheduler-othermonth-bg: k-try-shade( $kendo-scheduler-bg, .5 ) !default;
|
|
57
|
+
$kendo-scheduler-othermonth-bg: if($kendo-enable-color-system, k-color( base-subtle ), k-try-shade( $kendo-scheduler-bg, .5 )) !default;
|
|
58
58
|
$kendo-scheduler-othermonth-text: null !default;
|
|
59
59
|
|
|
60
60
|
$kendo-scheduler-yearview-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
|
|
@@ -18,7 +18,7 @@ $kendo-signature-lg-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
|
|
|
18
18
|
|
|
19
19
|
$kendo-signature-line-width: 1px !default;
|
|
20
20
|
$kendo-signature-line-style: dashed !default;
|
|
21
|
-
$kendo-signature-line-color: rgba( $kendo-color-info, .24 ) !default;
|
|
21
|
+
$kendo-signature-line-color: if($kendo-enable-color-system, rgba( k-color( info, true ), .24 ), rgba( $kendo-color-info, .24 )) !default;
|
|
22
22
|
|
|
23
23
|
$kendo-signature-line-size: calc( 100% - 2 * #{$kendo-signature-padding-x} ) !default;
|
|
24
24
|
$kendo-signature-sm-line-size: calc( 100% - 2 * #{$kendo-signature-sm-padding-x} ) !default;
|
|
@@ -17,7 +17,7 @@ $kendo-skeleton-circle-border-radius: 9999px !default;
|
|
|
17
17
|
|
|
18
18
|
/// The background color of the Skeleton item.
|
|
19
19
|
/// @group skeleton
|
|
20
|
-
$kendo-skeleton-item-bg: rgba( $kendo-color-inverse, .2 ) !default;
|
|
20
|
+
$kendo-skeleton-item-bg: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .2 ), rgba( $kendo-color-inverse, .2 )) !default;
|
|
21
21
|
/// The background color of the Skeleton wave animation.
|
|
22
22
|
/// @group skeleton
|
|
23
23
|
$kendo-skeleton-wave-bg: rgba( black, .04 ) !default;
|
|
@@ -23,21 +23,21 @@ $kendo-slider-draghandle-active-scale: 1 !default;
|
|
|
23
23
|
$kendo-slider-draghandle-active-size: null !default;
|
|
24
24
|
|
|
25
25
|
$kendo-slider-draghandle-bg: $kendo-color-primary !default;
|
|
26
|
-
$kendo-slider-draghandle-text: k-contrast-color( $kendo-color-primary ) !default;
|
|
26
|
+
$kendo-slider-draghandle-text: if($kendo-enable-color-system, k-color( on-primary ), k-contrast-color( $kendo-color-primary )) !default;
|
|
27
27
|
$kendo-slider-draghandle-border: $kendo-color-primary !default;
|
|
28
28
|
$kendo-slider-draghandle-gradient: null !default;
|
|
29
29
|
|
|
30
|
-
$kendo-slider-draghandle-hover-bg: k-try-darken( $kendo-color-primary, 7.5% ) !default;
|
|
31
|
-
$kendo-slider-draghandle-hover-text: k-contrast-color( $kendo-color-primary ) !default;
|
|
32
|
-
$kendo-slider-draghandle-hover-border: k-try-darken( $kendo-color-primary, 10% ) !default;
|
|
30
|
+
$kendo-slider-draghandle-hover-bg: if($kendo-enable-color-system, k-color( primary-hover ), k-try-darken( $kendo-color-primary, 7.5% )) !default;
|
|
31
|
+
$kendo-slider-draghandle-hover-text: if($kendo-enable-color-system, k-color( on-primary ), k-contrast-color( $kendo-color-primary )) !default;
|
|
32
|
+
$kendo-slider-draghandle-hover-border: if($kendo-enable-color-system, k-color( primary-hover ), k-try-darken( $kendo-color-primary, 10% )) !default;
|
|
33
33
|
$kendo-slider-draghandle-hover-gradient: null !default;
|
|
34
34
|
|
|
35
|
-
$kendo-slider-draghandle-pressed-bg: k-try-darken( $kendo-color-primary, 10% ) !default;
|
|
36
|
-
$kendo-slider-draghandle-pressed-text: k-contrast-color( $kendo-color-primary ) !default;
|
|
37
|
-
$kendo-slider-draghandle-pressed-border: k-try-darken( $kendo-color-primary, 12.5% ) !default;
|
|
35
|
+
$kendo-slider-draghandle-pressed-bg: if($kendo-enable-color-system, k-color( primary-active ), k-try-darken( $kendo-color-primary, 10% )) !default;
|
|
36
|
+
$kendo-slider-draghandle-pressed-text: if($kendo-enable-color-system, k-color( on-primary ), k-contrast-color( $kendo-color-primary )) !default;
|
|
37
|
+
$kendo-slider-draghandle-pressed-border: if($kendo-enable-color-system, k-color( primary-active ), k-try-darken( $kendo-color-primary, 12.5% )) !default;
|
|
38
38
|
$kendo-slider-draghandle-pressed-gradient: null !default;
|
|
39
39
|
|
|
40
|
-
$kendo-slider-draghandle-focus-shadow: 0 0 0 3px rgba( $kendo-color-primary, .5 ) !default;
|
|
40
|
+
$kendo-slider-draghandle-focus-shadow: 0 0 0 3px if($kendo-enable-color-system, rgba( k-color( primary, true ), .5 ), rgba( $kendo-color-primary, .5 )) !default;
|
|
41
41
|
|
|
42
42
|
$kendo-slider-transition-speed: .3s !default;
|
|
43
43
|
$kendo-slider-transition-function: ease-out !default;
|
|
@@ -18,7 +18,7 @@ $kendo-splitter-collapse-icon-padding-y: k-map-get( $kendo-spacing, .5 ) !defaul
|
|
|
18
18
|
$kendo-splitbar-bg: $kendo-base-bg !default;
|
|
19
19
|
$kendo-splitbar-text: $kendo-base-text !default;
|
|
20
20
|
|
|
21
|
-
$kendo-splitbar-hover-bg: k-try-shade( $kendo-splitbar-bg, .5 ) !default;
|
|
21
|
+
$kendo-splitbar-hover-bg: if($kendo-enable-color-system, k-color( base-subtle-hover ), k-try-shade( $kendo-splitbar-bg, .5 )) !default;
|
|
22
22
|
$kendo-splitbar-hover-text: $kendo-splitbar-text !default;
|
|
23
23
|
|
|
24
24
|
$kendo-splitbar-selected-bg: $kendo-selected-bg !default;
|
|
@@ -37,7 +37,7 @@ $kendo-spreadsheet-formula-input-line-height: $kendo-input-line-height !default;
|
|
|
37
37
|
$kendo-spreadsheet-view-font-family: Arial, Verdana, sans-serif !default;
|
|
38
38
|
$kendo-spreadsheet-view-font-size: $kendo-spreadsheet-font-size !default;
|
|
39
39
|
|
|
40
|
-
$kendo-spreadsheet-selection-bg: rgba( $kendo-selected-bg, .25 ) !default;
|
|
40
|
+
$kendo-spreadsheet-selection-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba( $kendo-selected-bg, .25 )) !default;
|
|
41
41
|
$kendo-spreadsheet-selection-text: null !default;
|
|
42
42
|
$kendo-spreadsheet-selection-border: $kendo-selected-bg !default;
|
|
43
43
|
$kendo-spreadsheet-selection-shadow: inset 0 0 0 1px $kendo-selected-bg !default;
|
|
@@ -46,12 +46,12 @@ $kendo-spreadsheet-single-selection-bg: $kendo-selected-bg !default;
|
|
|
46
46
|
$kendo-spreadsheet-single-selection-text: null !default;
|
|
47
47
|
$kendo-spreadsheet-single-selection-border: $kendo-spreadsheet-bg !default;
|
|
48
48
|
|
|
49
|
-
$kendo-spreadsheet-partial-selection-bg: rgba( $kendo-selected-bg, .25 ) !default;
|
|
49
|
+
$kendo-spreadsheet-partial-selection-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba( $kendo-selected-bg, .25 )) !default;
|
|
50
50
|
|
|
51
51
|
$kendo-spreadsheet-active-cell-bg: $kendo-spreadsheet-bg !default;
|
|
52
52
|
$kendo-spreadsheet-active-cell-shadow: inset 0 0 0 1px $kendo-selected-bg !default;
|
|
53
53
|
|
|
54
|
-
$kendo-spreadsheet-auto-fill-bg: rgba( $kendo-selected-bg, .25 ) !default;
|
|
54
|
+
$kendo-spreadsheet-auto-fill-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba( $kendo-selected-bg, .25 )) !default;
|
|
55
55
|
$kendo-spreadsheet-auto-fill-text: null !default;
|
|
56
56
|
$kendo-spreadsheet-auto-fill-border: $kendo-selected-bg !default;
|
|
57
57
|
$kendo-spreadsheet-auto-fill-shadow: inset 0 0 0 1px $kendo-selected-bg !default;
|
|
@@ -101,6 +101,6 @@ $kendo-spreadsheet-drawing-handle-border-radius: $kendo-border-radius-lg !defaul
|
|
|
101
101
|
$kendo-spreadsheet-drawing-outline-style: solid !default;
|
|
102
102
|
$kendo-spreadsheet-drawing-outline-width: 2px !default;
|
|
103
103
|
|
|
104
|
-
$kendo-spreadsheet-drawing-anchor-bg: rgba( $kendo-selected-bg, .25 ) !default;
|
|
104
|
+
$kendo-spreadsheet-drawing-anchor-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba( $kendo-selected-bg, .25 )) !default;
|
|
105
105
|
|
|
106
106
|
$kendo-spreadsheet-dropzone-spacing-y: k-map-get( $kendo-spacing, 4 ) !default;
|
|
@@ -33,24 +33,24 @@ $kendo-stepper-indicator-bg: $kendo-component-bg !default;
|
|
|
33
33
|
$kendo-stepper-indicator-text: $kendo-component-text !default;
|
|
34
34
|
$kendo-stepper-indicator-border: $kendo-component-border !default;
|
|
35
35
|
|
|
36
|
-
$kendo-stepper-indicator-hover-bg: k-try-shade( $kendo-stepper-indicator-bg ) !default;
|
|
36
|
+
$kendo-stepper-indicator-hover-bg: if($kendo-enable-color-system, k-color( base-hover ), k-try-shade( $kendo-stepper-indicator-bg )) !default;
|
|
37
37
|
$kendo-stepper-indicator-hover-text: null !default;
|
|
38
38
|
$kendo-stepper-indicator-hover-border: null !default;
|
|
39
39
|
|
|
40
40
|
$kendo-stepper-indicator-disabled-bg: null !default;
|
|
41
|
-
$kendo-stepper-indicator-disabled-text: $kendo-disabled-text !default;
|
|
41
|
+
$kendo-stepper-indicator-disabled-text: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .65 ), $kendo-disabled-text) !default;
|
|
42
42
|
$kendo-stepper-indicator-disabled-border: null !default;
|
|
43
43
|
|
|
44
44
|
$kendo-stepper-indicator-done-bg: $kendo-color-primary !default;
|
|
45
|
-
$kendo-stepper-indicator-done-text: k-contrast-color( $kendo-stepper-indicator-done-bg ) !default;
|
|
45
|
+
$kendo-stepper-indicator-done-text: if($kendo-enable-color-system, k-color( on-primary ), k-contrast-color( $kendo-stepper-indicator-done-bg )) !default;
|
|
46
46
|
$kendo-stepper-indicator-done-border: $kendo-stepper-indicator-done-bg !default;
|
|
47
47
|
|
|
48
|
-
$kendo-stepper-indicator-done-hover-bg: k-try-shade( $kendo-stepper-indicator-done-bg ) !default;
|
|
48
|
+
$kendo-stepper-indicator-done-hover-bg: if($kendo-enable-color-system, k-color( primary-hover ), k-try-shade( $kendo-stepper-indicator-done-bg )) !default;
|
|
49
49
|
$kendo-stepper-indicator-done-hover-text: null !default;
|
|
50
50
|
$kendo-stepper-indicator-done-hover-border: null !default;
|
|
51
51
|
|
|
52
|
-
$kendo-stepper-indicator-done-disabled-bg: k-color-mix( $kendo-stepper-indicator-done-bg, $kendo-component-bg, 60%) !default;
|
|
53
|
-
$kendo-stepper-indicator-done-disabled-text: k-contrast-color( $kendo-stepper-indicator-done-bg ) !default;
|
|
52
|
+
$kendo-stepper-indicator-done-disabled-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .6 ), k-color-mix( $kendo-stepper-indicator-done-bg, $kendo-component-bg, 60%)) !default;
|
|
53
|
+
$kendo-stepper-indicator-done-disabled-text: if($kendo-enable-color-system, k-color( on-primary ), k-contrast-color( $kendo-stepper-indicator-done-bg )) !default;
|
|
54
54
|
$kendo-stepper-indicator-done-disabled-border: $kendo-stepper-indicator-done-disabled-bg !default;
|
|
55
55
|
|
|
56
56
|
$kendo-stepper-indicator-current-bg: $kendo-stepper-indicator-done-bg !default;
|
|
@@ -69,7 +69,7 @@ $kendo-stepper-label-text: null !default;
|
|
|
69
69
|
$kendo-stepper-label-success-text: $kendo-color-success !default;
|
|
70
70
|
$kendo-stepper-label-error-text: $kendo-color-error !default;
|
|
71
71
|
$kendo-stepper-label-hover-text: null !default;
|
|
72
|
-
$kendo-stepper-label-disabled-text: $kendo-disabled-text !default;
|
|
72
|
+
$kendo-stepper-label-disabled-text: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .65 ), $kendo-disabled-text) !default;
|
|
73
73
|
|
|
74
74
|
$kendo-stepper-optional-label-text: $kendo-subtle-text !default;
|
|
75
75
|
$kendo-stepper-optional-label-opacity: null !default;
|
|
@@ -62,17 +62,17 @@ $kendo-switch-off-track-focus-bg: null !default;
|
|
|
62
62
|
$kendo-switch-off-track-focus-text: null !default;
|
|
63
63
|
/// The border color of the track when the focused Switch is not checked.
|
|
64
64
|
/// @group switch
|
|
65
|
-
$kendo-switch-off-track-focus-border: k-color-mix( $kendo-switch-off-track-bg, $kendo-color-primary ) !default;
|
|
65
|
+
$kendo-switch-off-track-focus-border: if($kendo-enable-color-system, k-color( primary-emphasis ), k-color-mix( $kendo-switch-off-track-bg, $kendo-color-primary )) !default;
|
|
66
66
|
/// The background gradient of the track when the focused Switch is not checked.
|
|
67
67
|
/// @group switch
|
|
68
68
|
$kendo-switch-off-track-focus-gradient: null !default;
|
|
69
69
|
/// The ring around the track when the focused Switch is not checked.
|
|
70
70
|
/// @group switch
|
|
71
|
-
$kendo-switch-off-track-focus-ring: .25rem solid rgba( $kendo-color-primary, .25 ) !default;
|
|
71
|
+
$kendo-switch-off-track-focus-ring: .25rem solid if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba( $kendo-color-primary, .25 )) !default;
|
|
72
72
|
|
|
73
73
|
/// The background of the track when the disabled Switch is not checked.
|
|
74
74
|
/// @group switch
|
|
75
|
-
$kendo-switch-off-track-disabled-bg: if( $kendo-is-dark-theme, $gray-800, $gray-200 ) !default;
|
|
75
|
+
$kendo-switch-off-track-disabled-bg: if($kendo-enable-color-system, k-color( base-subtle ), if( $kendo-is-dark-theme, $gray-800, $gray-200 )) !default;
|
|
76
76
|
/// The text color of the track when the disabled Switch is not checked.
|
|
77
77
|
/// @group switch
|
|
78
78
|
$kendo-switch-off-track-disabled-text: null !default;
|
|
@@ -150,11 +150,11 @@ $kendo-switch-on-track-focus-border: null !default;
|
|
|
150
150
|
$kendo-switch-on-track-focus-gradient: null !default;
|
|
151
151
|
/// The ring around the track when the focused Switch is checked.
|
|
152
152
|
/// @group switch
|
|
153
|
-
$kendo-switch-on-track-focus-ring: .25rem solid rgba( $kendo-switch-on-track-border, .25 ) !default;
|
|
153
|
+
$kendo-switch-on-track-focus-ring: .25rem solid if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba( $kendo-switch-on-track-border, .25 )) !default;
|
|
154
154
|
|
|
155
155
|
/// The background of the track when the disabled Switch is checked.
|
|
156
156
|
/// @group switch
|
|
157
|
-
$kendo-switch-on-track-disabled-bg: k-try-tint( $kendo-switch-on-track-bg, 50% ) !default;
|
|
157
|
+
$kendo-switch-on-track-disabled-bg: if($kendo-enable-color-system, rgba( k-color( primary ), .5 ), k-try-tint( $kendo-switch-on-track-bg, 50% )) !default;
|
|
158
158
|
/// The text color of the track when the disabled Switch is checked.
|
|
159
159
|
/// @group switch
|
|
160
160
|
$kendo-switch-on-track-disabled-text: null !default;
|
|
@@ -167,7 +167,7 @@ $kendo-switch-on-track-disabled-gradient: null !default;
|
|
|
167
167
|
|
|
168
168
|
/// The background of the thumb when the Switch is checked.
|
|
169
169
|
/// @group switch
|
|
170
|
-
$kendo-switch-on-thumb-bg: k-contrast-color( $kendo-switch-on-track-bg ) !default;
|
|
170
|
+
$kendo-switch-on-thumb-bg: if($kendo-enable-color-system, k-color( on-primary ), k-contrast-color( $kendo-switch-on-track-bg )) !default;
|
|
171
171
|
/// The text color of the thumb when the Switch is checked.
|
|
172
172
|
/// @group switch
|
|
173
173
|
$kendo-switch-on-thumb-text: null !default;
|
|
@@ -111,7 +111,7 @@ $kendo-table-group-row-border: $kendo-table-header-border !default;
|
|
|
111
111
|
|
|
112
112
|
/// Background color of alternating rows in table.
|
|
113
113
|
/// @group table
|
|
114
|
-
$kendo-table-alt-row-bg: rgba( k-contrast-color( $kendo-table-bg ), .04 ) !default;
|
|
114
|
+
$kendo-table-alt-row-bg: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .05 ), rgba( k-contrast-color( $kendo-table-bg ), .04 )) !default;
|
|
115
115
|
/// Text color of alternating rows in table.
|
|
116
116
|
/// @group table
|
|
117
117
|
$kendo-table-alt-row-text: null !default;
|
|
@@ -122,7 +122,7 @@ $kendo-table-alt-row-border: null !default;
|
|
|
122
122
|
|
|
123
123
|
/// Background color of hovered rows in table.
|
|
124
124
|
/// @group table
|
|
125
|
-
$kendo-table-hover-bg: rgba( k-contrast-color( $kendo-table-bg ), .08 ) !default;
|
|
125
|
+
$kendo-table-hover-bg: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .09 ), rgba( k-contrast-color( $kendo-table-bg ), .08 )) !default;
|
|
126
126
|
/// Text color of hovered rows in table.
|
|
127
127
|
/// @group table
|
|
128
128
|
$kendo-table-hover-text: null !default;
|
|
@@ -147,7 +147,7 @@ $kendo-table-focus-shadow: inset 0 0 0 2px rgba( $kendo-color-black, .08) !defau
|
|
|
147
147
|
|
|
148
148
|
/// Background color of selected rows in table.
|
|
149
149
|
/// @group table
|
|
150
|
-
$kendo-table-selected-bg: rgba( $kendo-selected-bg, .25 ) !default;
|
|
150
|
+
$kendo-table-selected-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba( $kendo-selected-bg, .25 )) !default;
|
|
151
151
|
/// Text color of selected rows in table.
|
|
152
152
|
/// @group table
|
|
153
153
|
$kendo-table-selected-text: $kendo-table-text !default;
|
|
@@ -27,13 +27,13 @@ $kendo-taskboard-columns-container-gap: $kendo-taskboard-spacer !default;
|
|
|
27
27
|
$kendo-taskboard-column-width: 320px !default;
|
|
28
28
|
$kendo-taskboard-column-border-width: 1px !default;
|
|
29
29
|
$kendo-taskboard-column-border-radius: $kendo-border-radius-sm !default;
|
|
30
|
-
$kendo-taskboard-column-bg: if( $kendo-is-dark-theme, $gray-900, $gray-100 ) !default;
|
|
30
|
+
$kendo-taskboard-column-bg: if($kendo-enable-color-system, k-color( surface ), if( $kendo-is-dark-theme, $gray-900, $gray-100 )) !default;
|
|
31
31
|
$kendo-taskboard-column-text: null !default;
|
|
32
32
|
$kendo-taskboard-column-border: transparent !default;
|
|
33
33
|
|
|
34
34
|
$kendo-taskboard-column-focus-bg: null !default;
|
|
35
35
|
$kendo-taskboard-column-focus-text: null !default;
|
|
36
|
-
$kendo-taskboard-column-focus-border: k-try-shade( $kendo-base-border, 2.5 ) !default;
|
|
36
|
+
$kendo-taskboard-column-focus-border: if($kendo-enable-color-system, k-color( border-alt ), k-try-shade( $kendo-base-border, 2.5 )) !default;
|
|
37
37
|
|
|
38
38
|
$kendo-taskboard-column-header-padding-y: $kendo-taskboard-spacer * .75 !default;
|
|
39
39
|
$kendo-taskboard-column-header-padding-x: $kendo-taskboard-column-header-padding-y !default;
|
|
@@ -76,12 +76,12 @@ $kendo-taskboard-card-shadow: $kendo-card-shadow !default;
|
|
|
76
76
|
|
|
77
77
|
$kendo-taskboard-card-category-border-width: 4px !default;
|
|
78
78
|
|
|
79
|
-
$kendo-taskboard-card-
|
|
80
|
-
$kendo-taskboard-card-focus-shadow: $kendo-card-focus-shadow !default;
|
|
79
|
+
$kendo-taskboard-card-hover-border: if($kendo-enable-color-system, k-color( border-alt ), k-try-shade( $kendo-taskboard-card-border, 10% )) !default;
|
|
81
80
|
|
|
82
|
-
$kendo-taskboard-card-
|
|
81
|
+
$kendo-taskboard-card-focus-border: if($kendo-enable-color-system, k-color( border-alt ), k-try-shade( $kendo-taskboard-card-border, 18% )) !default;
|
|
82
|
+
$kendo-taskboard-card-focus-shadow: $kendo-card-focus-shadow !default;
|
|
83
83
|
|
|
84
|
-
$kendo-taskboard-card-selected-border: k-color-tint( $kendo-color-primary-lighter, 8 ) !default;
|
|
84
|
+
$kendo-taskboard-card-selected-border: if($kendo-enable-color-system, k-color( primary-emphasis ), k-color-tint( $kendo-color-primary-lighter, 8 )) !default;
|
|
85
85
|
$kendo-taskboard-card-selected-shadow: none !default;
|
|
86
86
|
|
|
87
87
|
$kendo-taskboard-card-header-text: $kendo-color-primary !default;
|
|
@@ -90,5 +90,5 @@ $kendo-taskboard-card-header-hover-text: $kendo-color-primary-darker !default;
|
|
|
90
90
|
|
|
91
91
|
$kendo-taskboard-drag-placeholder-border-width: 1px !default;
|
|
92
92
|
$kendo-taskboard-drag-placeholder-border-radius: $kendo-taskboard-card-border-radius !default;
|
|
93
|
-
$kendo-taskboard-drag-placeholder-bg: rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .1 ) !default;
|
|
94
|
-
$kendo-taskboard-drag-placeholder-border: $kendo-component-border !default;
|
|
93
|
+
$kendo-taskboard-drag-placeholder-bg: rgba( if($kendo-enable-color-system, k-color( on-app-surface, true ), if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black )), .1 ) !default;
|
|
94
|
+
$kendo-taskboard-drag-placeholder-border: $kendo-component-border !default;
|
|
@@ -13,9 +13,9 @@ $kendo-timeline-mobile-spacing-y: $kendo-padding-md-x !default;
|
|
|
13
13
|
$kendo-timeline-track-arrow-width: 38px !default;
|
|
14
14
|
$kendo-timeline-track-arrow-height: 38px !default;
|
|
15
15
|
|
|
16
|
-
$kendo-timeline-track-arrow-disabled-
|
|
17
|
-
$kendo-timeline-track-arrow-disabled-
|
|
18
|
-
$kendo-timeline-track-arrow-disabled-border: k-true-mix( $kendo-button-border, $kendo-body-bg, 65% ) !default;
|
|
16
|
+
$kendo-timeline-track-arrow-disabled-bg: if($kendo-enable-color-system, rgba( k-color( base-subtle, true ), .65 ), k-true-mix( $kendo-button-bg, $kendo-body-bg, 65% )) !default;
|
|
17
|
+
$kendo-timeline-track-arrow-disabled-text: if($kendo-enable-color-system, rgba( k-color( on-base, true ), .65 ), k-true-mix( $kendo-button-text, $kendo-body-bg, 65% )) !default;
|
|
18
|
+
$kendo-timeline-track-arrow-disabled-border: if($kendo-enable-color-system, rgba( k-color( border, true ), .15 ), k-true-mix( $kendo-button-border, $kendo-body-bg, 65% )) !default;
|
|
19
19
|
|
|
20
20
|
$kendo-timeline-track-size: 6px !default;
|
|
21
21
|
$kendo-timeline-track-wrap-padding-bottom: k-math-div( $kendo-timeline-track-size, 2 ) !default;
|
|
@@ -39,7 +39,7 @@ $kendo-timeline-flag-max-width: calc(#{$kendo-timeline-flag-min-width} + 2 * #{$
|
|
|
39
39
|
$kendo-timeline-mobile-flag-max-width: calc(#{$kendo-timeline-flag-min-width} + 2 * #{$kendo-timeline-mobile-spacing-x}) !default;
|
|
40
40
|
$kendo-timeline-horizontal-flag-min-width: 80px !default;
|
|
41
41
|
$kendo-timeline-flag-bg: $kendo-color-primary !default;
|
|
42
|
-
$kendo-timeline-flag-text: k-contrast-color( $kendo-timeline-flag-bg ) !default;
|
|
42
|
+
$kendo-timeline-flag-text: if($kendo-enable-color-system, k-color( on-primary ), k-contrast-color( $kendo-timeline-flag-bg )) !default;
|
|
43
43
|
|
|
44
44
|
$kendo-timeline-flag-callout-width: 10px !default;
|
|
45
45
|
$kendo-timeline-flag-callout-height: 10px !default;
|
|
@@ -82,7 +82,7 @@ $kendo-toolbar-input-width: 10em !default;
|
|
|
82
82
|
|
|
83
83
|
/// The box shadow of the focused Toolbar item.
|
|
84
84
|
/// @group toolbar
|
|
85
|
-
$kendo-toolbar-item-shadow: 0 0 0 .25rem rgba( $kendo-color-primary, .25 ) !default;
|
|
85
|
+
$kendo-toolbar-item-shadow: 0 0 0 .25rem if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba( $kendo-color-primary, .25 )) !default;
|
|
86
86
|
|
|
87
87
|
/// Border width of the flat Toolbar.
|
|
88
88
|
/// @group toolbar
|
|
@@ -36,10 +36,10 @@ $kendo-tooltip-callout-size: $tooltip-arrow-height !default;
|
|
|
36
36
|
|
|
37
37
|
/// The default background of the Tooltip.
|
|
38
38
|
/// @group tooltip
|
|
39
|
-
$kendo-tooltip-bg: if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ) !default;
|
|
39
|
+
$kendo-tooltip-bg: if($kendo-enable-color-system, k-color( on-app-surface ), if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black )) !default;
|
|
40
40
|
/// The default text color of the Tooltip.
|
|
41
41
|
/// @group tooltip
|
|
42
|
-
$kendo-tooltip-text: k-contrast-color( $kendo-tooltip-bg ) !default;
|
|
42
|
+
$kendo-tooltip-text: if($kendo-enable-color-system, k-color( app-surface ), k-contrast-color( $kendo-tooltip-bg )) !default;
|
|
43
43
|
/// The default border color of the Tooltip.
|
|
44
44
|
/// @group tooltip
|
|
45
45
|
$kendo-tooltip-border: $kendo-tooltip-bg !default;
|
|
@@ -53,7 +53,7 @@ $kendo-tooltip-shadow: k-elevation(2) !default;
|
|
|
53
53
|
|
|
54
54
|
@each $name, $color in $colors {
|
|
55
55
|
$_theme: k-map-merge(( $name: (
|
|
56
|
-
color: k-contrast-legacy( $color ),
|
|
56
|
+
color: if($kendo-enable-color-system, k-color( on-#{$name} ), k-contrast-legacy( $color )),
|
|
57
57
|
background-color: $color,
|
|
58
58
|
border: $color,
|
|
59
59
|
)), $_theme );
|
|
@@ -67,4 +67,4 @@ $kendo-tooltip-shadow: k-elevation(2) !default;
|
|
|
67
67
|
$kendo-tooltip-theme-colors: $kendo-theme-colors !default;
|
|
68
68
|
/// The generated theme colors map for the Tooltip.
|
|
69
69
|
/// @group tooltip
|
|
70
|
-
$kendo-tooltip-theme: tooltip-theme( $kendo-tooltip-theme-colors ) !default;
|
|
70
|
+
$kendo-tooltip-theme: tooltip-theme( $kendo-tooltip-theme-colors ) !default;
|
|
@@ -151,7 +151,7 @@ $kendo-treeview-item-selected-gradient: null !default;
|
|
|
151
151
|
|
|
152
152
|
/// The box shadow of focused TreeView items.
|
|
153
153
|
/// @group treeview
|
|
154
|
-
$kendo-treeview-item-focus-shadow: inset 0 0 0 2px rgba( $kendo-treeview-text, .15 ) !default;
|
|
154
|
+
$kendo-treeview-item-focus-shadow: inset 0 0 0 2px if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .15 ), rgba( $kendo-treeview-text, .15 )) !default;
|
|
155
155
|
|
|
156
156
|
/// The background color of the Load More button in the TreeView.
|
|
157
157
|
/// @group treeview
|
|
@@ -43,7 +43,7 @@ $kendo-upload-dropzone-bg: $kendo-component-header-bg !default;
|
|
|
43
43
|
$kendo-upload-dropzone-border: $kendo-upload-border !default;
|
|
44
44
|
/// The background color of the hovered Upload dropzone.
|
|
45
45
|
/// @group upload
|
|
46
|
-
$kendo-upload-dropzone-hover-bg: k-try-shade( $kendo-upload-dropzone-bg, .2 ) !default;
|
|
46
|
+
$kendo-upload-dropzone-hover-bg: if($kendo-enable-color-system, k-color( base-subtle ), k-try-shade( $kendo-upload-dropzone-bg, .2 )) !default;
|
|
47
47
|
|
|
48
48
|
/// The text color of the Upload status message.
|
|
49
49
|
/// @group upload
|