@progress/kendo-theme-material 7.2.1-dev.7 → 7.2.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 +8 -1
- package/dist/all.scss +79 -80
- package/dist/meta/sassdoc-data.json +48 -48
- package/dist/meta/sassdoc-raw-data.json +24 -24
- package/lib/swatches/material-aqua-dark.json +1 -1
- package/lib/swatches/material-arctic.json +1 -1
- package/lib/swatches/material-burnt-teal.json +1 -1
- package/lib/swatches/material-dataviz-v4.json +1 -1
- package/lib/swatches/material-eggplant.json +1 -1
- package/lib/swatches/material-lime-dark.json +1 -1
- package/lib/swatches/material-lime.json +1 -1
- package/lib/swatches/material-main-dark.json +1 -1
- package/lib/swatches/material-main.json +1 -1
- package/lib/swatches/material-nova.json +1 -1
- package/lib/swatches/material-pacific-dark.json +1 -1
- package/lib/swatches/material-pacific.json +1 -1
- package/lib/swatches/material-sky-dark.json +1 -1
- package/lib/swatches/material-sky.json +1 -1
- package/lib/swatches/material-smoke.json +1 -1
- package/package.json +5 -5
- package/scss/checkbox/_variables.scss +1 -1
- package/scss/dataviz/_variables.scss +11 -11
- package/scss/dock-manager/_variables.scss +1 -1
- package/scss/fab/_theme.scss +2 -2
- package/scss/gantt/_variables.scss +1 -1
- package/scss/grid/_variables.scss +5 -5
- package/scss/input/_variables.scss +4 -4
- package/scss/map/_variables.scss +1 -1
- package/scss/mediaplayer/_variables.scss +1 -1
- package/scss/orgchart/_variables.scss +1 -1
- package/scss/pivotgrid/_variables.scss +2 -2
- package/scss/scheduler/_theme.scss +2 -2
- package/scss/signature/_variables.scss +1 -1
- package/scss/skeleton/_variables.scss +1 -1
- package/scss/slider/_variables.scss +1 -1
- package/scss/spreadsheet/_variables.scss +4 -4
- package/scss/stepper/_variables.scss +3 -3
- package/scss/switch/_variables.scss +2 -2
- package/scss/table/_variables.scss +2 -2
- package/scss/treeview/_variables.scss +1 -1
|
@@ -7,13 +7,13 @@
|
|
|
7
7
|
|
|
8
8
|
.k-scheduler-layout td.k-selected,
|
|
9
9
|
.k-scheduler-layout .k-scheduler-cell.k-selected {
|
|
10
|
-
background-color: if($kendo-enable-color-system,
|
|
10
|
+
background-color: if($kendo-enable-color-system, color-mix(in srgb, k-color( secondary ) 25%, transparent), rgba($kendo-selected-bg, .25));
|
|
11
11
|
}
|
|
12
12
|
|
|
13
13
|
// Agenda view
|
|
14
14
|
.k-scheduler-agendaview {
|
|
15
15
|
.k-scheduler-content tr.k-selected {
|
|
16
|
-
background-color: if($kendo-enable-color-system,
|
|
16
|
+
background-color: if($kendo-enable-color-system, color-mix(in srgb, k-color( secondary ) 25%, transparent), rgba($kendo-selected-bg, .25));
|
|
17
17
|
}
|
|
18
18
|
}
|
|
19
19
|
|
|
@@ -18,7 +18,7 @@ $kendo-signature-lg-padding-y: $kendo-signature-lg-padding-x !default;
|
|
|
18
18
|
|
|
19
19
|
$kendo-signature-line-width: 1px !default;
|
|
20
20
|
$kendo-signature-line-style: dashed !default;
|
|
21
|
-
$kendo-signature-line-color: if($kendo-enable-color-system,
|
|
21
|
+
$kendo-signature-line-color: if($kendo-enable-color-system, color-mix(in srgb, k-color( info ) 24%, transparent), 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: if($kendo-enable-color-system,
|
|
20
|
+
$kendo-skeleton-item-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 20%, transparent), 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;
|
|
@@ -93,7 +93,7 @@ $kendo-slider-draghandle-pressed-gradient: null !default;
|
|
|
93
93
|
|
|
94
94
|
/// The shadow of the focused Slider drag handle.
|
|
95
95
|
/// @group slider
|
|
96
|
-
$kendo-slider-draghandle-focus-shadow: 0 0 0 11px if($kendo-enable-color-system,
|
|
96
|
+
$kendo-slider-draghandle-focus-shadow: 0 0 0 11px if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba( $kendo-color-primary, .25 )) !default;
|
|
97
97
|
|
|
98
98
|
/// The transition speed of the Slider.
|
|
99
99
|
/// @group slider
|
|
@@ -94,7 +94,7 @@ $kendo-spreadsheet-view-font-size: $kendo-spreadsheet-font-size !default;
|
|
|
94
94
|
|
|
95
95
|
/// The background color of the Spreadsheet selection.
|
|
96
96
|
/// @group spreadsheet
|
|
97
|
-
$kendo-spreadsheet-selection-bg: if($kendo-enable-color-system,
|
|
97
|
+
$kendo-spreadsheet-selection-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba( $kendo-color-primary, .25 )) !default;
|
|
98
98
|
/// The text color of the Spreadsheet selection.
|
|
99
99
|
/// @group spreadsheet
|
|
100
100
|
$kendo-spreadsheet-selection-text: null !default;
|
|
@@ -128,7 +128,7 @@ $kendo-spreadsheet-active-cell-shadow: inset 0 0 0 1px $kendo-color-primary !def
|
|
|
128
128
|
|
|
129
129
|
/// The background color of the Spreadsheet auto fill.
|
|
130
130
|
/// @group spreadsheet
|
|
131
|
-
$kendo-spreadsheet-auto-fill-bg: if($kendo-enable-color-system,
|
|
131
|
+
$kendo-spreadsheet-auto-fill-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba( $kendo-color-primary, .25 )) !default;
|
|
132
132
|
/// The text color of the Spreadsheet auto fill.
|
|
133
133
|
/// @group spreadsheet
|
|
134
134
|
$kendo-spreadsheet-auto-fill-text: null !default;
|
|
@@ -140,7 +140,7 @@ $kendo-spreadsheet-auto-fill-border: $kendo-color-primary !default;
|
|
|
140
140
|
$kendo-spreadsheet-auto-fill-shadow: inset 0 0 0 1px $kendo-color-primary !default;
|
|
141
141
|
/// The background color of the Spreadsheet auto fill punch.
|
|
142
142
|
/// @group spreadsheet
|
|
143
|
-
$kendo-spreadsheet-auto-fill-punch-bg: if($kendo-enable-color-system,
|
|
143
|
+
$kendo-spreadsheet-auto-fill-punch-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( app-surface ) 50%, transparent), rgba( $kendo-component-bg, .5 )) !default;
|
|
144
144
|
|
|
145
145
|
/// The vertical padding of the Spreadsheet cell.
|
|
146
146
|
/// @group spreadsheet
|
|
@@ -258,7 +258,7 @@ $kendo-spreadsheet-drawing-outline-width: 2px !default;
|
|
|
258
258
|
|
|
259
259
|
/// The background color of the Spreadsheet drawing anchor.
|
|
260
260
|
/// @group spreadsheet
|
|
261
|
-
$kendo-spreadsheet-drawing-anchor-bg: if($kendo-enable-color-system,
|
|
261
|
+
$kendo-spreadsheet-drawing-anchor-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( secondary ) 25%, transparent), rgba( $kendo-selected-bg, .25 )) !default;
|
|
262
262
|
|
|
263
263
|
/// The vertical spacing of the Spreadsheet DropZone.
|
|
264
264
|
/// @group spreadsheet
|
|
@@ -103,7 +103,7 @@ $kendo-stepper-indicator-hover-border: null !default;
|
|
|
103
103
|
$kendo-stepper-indicator-disabled-bg: null !default;
|
|
104
104
|
/// The text color of the disabled Stepper indicator.
|
|
105
105
|
/// @group stepper
|
|
106
|
-
$kendo-stepper-indicator-disabled-text: if($kendo-enable-color-system,
|
|
106
|
+
$kendo-stepper-indicator-disabled-text: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 32%, transparent), $kendo-disabled-text) !default;
|
|
107
107
|
/// The border color of the disabled Stepper indicator.
|
|
108
108
|
/// @group stepper
|
|
109
109
|
$kendo-stepper-indicator-disabled-border: null !default;
|
|
@@ -130,7 +130,7 @@ $kendo-stepper-indicator-done-hover-border: null !default;
|
|
|
130
130
|
|
|
131
131
|
/// The background color of the Stepper's disabled done indicator.
|
|
132
132
|
/// @group stepper
|
|
133
|
-
$kendo-stepper-indicator-done-disabled-bg: if($kendo-enable-color-system,
|
|
133
|
+
$kendo-stepper-indicator-done-disabled-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 60%, transparent), k-color-mix( $kendo-stepper-indicator-done-bg, $kendo-component-bg, 60%)) !default;
|
|
134
134
|
/// The text color of the Stepper's disabled done indicator.
|
|
135
135
|
/// @group stepper
|
|
136
136
|
$kendo-stepper-indicator-done-disabled-text: if($kendo-enable-color-system, k-color( on-primary ), k-contrast-color( $kendo-stepper-indicator-done-bg )) !default;
|
|
@@ -182,7 +182,7 @@ $kendo-stepper-label-error-text: $kendo-color-error !default;
|
|
|
182
182
|
$kendo-stepper-label-hover-text: null !default;
|
|
183
183
|
/// The text color of the disabled Stepper label.
|
|
184
184
|
/// @group stepper
|
|
185
|
-
$kendo-stepper-label-disabled-text: if($kendo-enable-color-system,
|
|
185
|
+
$kendo-stepper-label-disabled-text: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 32%, transparent), k-map-get( $theme, disabled-text )) !default;
|
|
186
186
|
|
|
187
187
|
/// The text color of the optional Stepper label.
|
|
188
188
|
/// @group stepper
|
|
@@ -30,7 +30,7 @@ $kendo-switch-sizes: (
|
|
|
30
30
|
|
|
31
31
|
/// The background of the track when the Switch is not checked.
|
|
32
32
|
/// @group switch
|
|
33
|
-
$kendo-switch-off-track-bg:
|
|
33
|
+
$kendo-switch-off-track-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 38%, transparent), rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .38 )) !default;
|
|
34
34
|
/// The text color of the track when the Switch is not checked.
|
|
35
35
|
/// @group switch
|
|
36
36
|
$kendo-switch-off-track-text: null !default;
|
|
@@ -112,7 +112,7 @@ $kendo-switch-off-thumb-hover-gradient: null !default;
|
|
|
112
112
|
|
|
113
113
|
/// The background of the track when the Switch is checked.
|
|
114
114
|
/// @group switch
|
|
115
|
-
$kendo-switch-on-track-bg: if($kendo-enable-color-system,
|
|
115
|
+
$kendo-switch-on-track-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 54%, transparent), rgba( $kendo-color-primary, .54 )) !default;
|
|
116
116
|
/// The text color of the track when the Switch is checked.
|
|
117
117
|
/// @group switch
|
|
118
118
|
$kendo-switch-on-track-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: if($kendo-enable-color-system,
|
|
125
|
+
$kendo-table-hover-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 8%, transparent), rgba( k-contrast-color( $kendo-table-bg ), .07 )) !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: $kendo-list-item-focus-shadow !default;
|
|
|
147
147
|
|
|
148
148
|
/// Background color of selected rows in table.
|
|
149
149
|
/// @group table
|
|
150
|
-
$kendo-table-selected-bg: if($kendo-enable-color-system,
|
|
150
|
+
$kendo-table-selected-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 12%, transparent), rgba( k-contrast-color( $kendo-table-bg ), .04 )) !default;
|
|
151
151
|
/// Text color of selected rows in table.
|
|
152
152
|
/// @group table
|
|
153
153
|
$kendo-table-selected-text: null !default;
|
|
@@ -124,7 +124,7 @@ $kendo-treeview-border: null !default;
|
|
|
124
124
|
|
|
125
125
|
/// The background color of hovered TreeView.
|
|
126
126
|
/// @group treeview
|
|
127
|
-
$kendo-treeview-item-hover-bg: if($kendo-enable-color-system,
|
|
127
|
+
$kendo-treeview-item-hover-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 7%, transparent), rgba( $kendo-treeview-text, .07 )) !default;
|
|
128
128
|
/// The text color of hovered TreeView items.
|
|
129
129
|
/// @group treeview
|
|
130
130
|
$kendo-treeview-item-hover-text: null !default;
|