@progress/kendo-theme-classic 10.1.0-dev.1 → 10.1.0-dev.3
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/classic-green-dark.css +1 -1
- package/dist/classic-green.css +1 -1
- package/dist/classic-lavender-dark.css +1 -1
- package/dist/classic-lavender.css +1 -1
- package/dist/classic-main-dark.css +1 -1
- package/dist/classic-main.css +1 -1
- package/dist/classic-metro-dark.css +1 -1
- package/dist/classic-metro.css +1 -1
- package/dist/classic-moonlight.css +1 -1
- package/dist/classic-opal-dark.css +1 -1
- package/dist/classic-opal.css +1 -1
- package/dist/classic-silver-dark.css +1 -1
- package/dist/classic-silver.css +1 -1
- package/dist/classic-uniform.css +1 -1
- package/dist/meta/sassdoc-data.json +1140 -1140
- package/dist/meta/sassdoc-raw-data.json +574 -574
- package/lib/swatches/classic-green-dark.json +1 -1
- package/lib/swatches/classic-green.json +1 -1
- package/lib/swatches/classic-lavender-dark.json +1 -1
- package/lib/swatches/classic-lavender.json +1 -1
- package/lib/swatches/classic-main-dark.json +1 -1
- package/lib/swatches/classic-main.json +1 -1
- package/lib/swatches/classic-metro-dark.json +1 -1
- package/lib/swatches/classic-metro.json +1 -1
- package/lib/swatches/classic-moonlight.json +1 -1
- package/lib/swatches/classic-opal-dark.json +1 -1
- package/lib/swatches/classic-opal.json +1 -1
- package/lib/swatches/classic-silver-dark.json +1 -1
- package/lib/swatches/classic-silver.json +1 -1
- package/lib/swatches/classic-uniform.json +1 -1
- package/package.json +5 -5
- package/scss/dataviz/_variables.scss +25 -24
- package/scss/editor/_variables.scss +2 -1
- package/scss/grid/_variables.scss +2 -1
- package/scss/gridlayout/_index.scss +19 -0
- package/scss/gridlayout/_layout.scss +5 -0
- package/scss/gridlayout/_theme.scss +5 -0
- package/scss/gridlayout/_variables.scss +1 -0
- package/scss/index.scss +10 -52
- package/scss/stacklayout/_index.scss +19 -0
- package/scss/stacklayout/_layout.scss +6 -0
- package/scss/stacklayout/_theme.scss +6 -0
- package/scss/stacklayout/_variables.scss +1 -0
- package/scss/stepper/_variables.scss +2 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-theme-classic",
|
|
3
3
|
"description": "Sass port of less based themes for Kendo UI theme",
|
|
4
|
-
"version": "10.1.0-dev.
|
|
4
|
+
"version": "10.1.0-dev.3",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -52,13 +52,13 @@
|
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
54
|
"@progress/kendo-svg-icons": "^4.0.0",
|
|
55
|
-
"@progress/kendo-theme-core": "10.1.0-dev.
|
|
56
|
-
"@progress/kendo-theme-default": "10.1.0-dev.
|
|
57
|
-
"@progress/kendo-theme-utils": "10.1.0-dev.
|
|
55
|
+
"@progress/kendo-theme-core": "10.1.0-dev.3",
|
|
56
|
+
"@progress/kendo-theme-default": "10.1.0-dev.3",
|
|
57
|
+
"@progress/kendo-theme-utils": "10.1.0-dev.3"
|
|
58
58
|
},
|
|
59
59
|
"directories": {
|
|
60
60
|
"doc": "docs",
|
|
61
61
|
"lib": "lib"
|
|
62
62
|
},
|
|
63
|
-
"gitHead": "
|
|
63
|
+
"gitHead": "a33add5dbf946b4fbaa83b9b2016ed1836a9fa0e"
|
|
64
64
|
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
@use "sass:color";
|
|
1
2
|
@use "../core/_index.scss" as *;
|
|
2
3
|
@use "../core/functions/index.import.scss" as *;
|
|
3
4
|
|
|
@@ -6,50 +7,50 @@
|
|
|
6
7
|
/// The first base series color and its light and dark shades.
|
|
7
8
|
/// @group charts
|
|
8
9
|
$kendo-series-a: if($kendo-enable-color-system, k-color( series-a ), #ff6358) !default;
|
|
9
|
-
$kendo-series-a-dark: if($kendo-enable-color-system, k-color( series-a-bold ),
|
|
10
|
-
$kendo-series-a-darker: if($kendo-enable-color-system, k-color( series-a-bolder ),
|
|
11
|
-
$kendo-series-a-light: if($kendo-enable-color-system, k-color( series-a-subtle ),
|
|
12
|
-
$kendo-series-a-lighter: if($kendo-enable-color-system, k-color( series-a-subtler ),
|
|
10
|
+
$kendo-series-a-dark: if($kendo-enable-color-system, k-color( series-a-bold ), color.mix(black, $kendo-series-a, 25%)) !default;
|
|
11
|
+
$kendo-series-a-darker: if($kendo-enable-color-system, k-color( series-a-bolder ), color.mix(black, $kendo-series-a, 50%)) !default;
|
|
12
|
+
$kendo-series-a-light: if($kendo-enable-color-system, k-color( series-a-subtle ), color.mix(white, $kendo-series-a, 25%)) !default;
|
|
13
|
+
$kendo-series-a-lighter: if($kendo-enable-color-system, k-color( series-a-subtler ), color.mix(white, $kendo-series-a, 50%)) !default;
|
|
13
14
|
|
|
14
15
|
/// The second base series color and its light and dark shades.
|
|
15
16
|
/// @group charts
|
|
16
17
|
$kendo-series-b: if($kendo-enable-color-system, k-color( series-b ), #ffd246) !default;
|
|
17
|
-
$kendo-series-b-dark: if($kendo-enable-color-system, k-color( series-b-bold ),
|
|
18
|
-
$kendo-series-b-darker: if($kendo-enable-color-system, k-color( series-b-bolder ),
|
|
19
|
-
$kendo-series-b-light: if($kendo-enable-color-system, k-color( series-b-subtle ),
|
|
20
|
-
$kendo-series-b-lighter: if($kendo-enable-color-system, k-color( series-b-subtler ),
|
|
18
|
+
$kendo-series-b-dark: if($kendo-enable-color-system, k-color( series-b-bold ), color.mix(black, $kendo-series-b, 25%)) !default;
|
|
19
|
+
$kendo-series-b-darker: if($kendo-enable-color-system, k-color( series-b-bolder ), color.mix(black, $kendo-series-b, 50%)) !default;
|
|
20
|
+
$kendo-series-b-light: if($kendo-enable-color-system, k-color( series-b-subtle ), color.mix(white, $kendo-series-b, 25%)) !default;
|
|
21
|
+
$kendo-series-b-lighter: if($kendo-enable-color-system, k-color( series-b-subtler ), color.mix(white, $kendo-series-b, 50%)) !default;
|
|
21
22
|
|
|
22
23
|
/// The third base series color and its light and dark shades.
|
|
23
24
|
/// @group charts
|
|
24
25
|
$kendo-series-c: if($kendo-enable-color-system, k-color( series-c ), #78d237) !default;
|
|
25
|
-
$kendo-series-c-dark: if($kendo-enable-color-system, k-color( series-c-bold ),
|
|
26
|
-
$kendo-series-c-darker: if($kendo-enable-color-system, k-color( series-c-bolder ),
|
|
27
|
-
$kendo-series-c-light: if($kendo-enable-color-system, k-color( series-c-subtle ),
|
|
28
|
-
$kendo-series-c-lighter: if($kendo-enable-color-system, k-color( series-c-subtler ),
|
|
26
|
+
$kendo-series-c-dark: if($kendo-enable-color-system, k-color( series-c-bold ), color.mix(black, $kendo-series-c, 25%)) !default;
|
|
27
|
+
$kendo-series-c-darker: if($kendo-enable-color-system, k-color( series-c-bolder ), color.mix(black, $kendo-series-c, 50%)) !default;
|
|
28
|
+
$kendo-series-c-light: if($kendo-enable-color-system, k-color( series-c-subtle ), color.mix(white, $kendo-series-c, 25%)) !default;
|
|
29
|
+
$kendo-series-c-lighter: if($kendo-enable-color-system, k-color( series-c-subtler ), color.mix(white, $kendo-series-c, 50%)) !default;
|
|
29
30
|
|
|
30
31
|
/// The fourth base series color and its light and dark shades.
|
|
31
32
|
/// @group charts
|
|
32
33
|
$kendo-series-d: if($kendo-enable-color-system, k-color( series-d ), #28b4c8) !default;
|
|
33
|
-
$kendo-series-d-dark: if($kendo-enable-color-system, k-color( series-d-bold ),
|
|
34
|
-
$kendo-series-d-darker: if($kendo-enable-color-system, k-color( series-d-bolder ),
|
|
35
|
-
$kendo-series-d-light: if($kendo-enable-color-system, k-color( series-d-subtle ),
|
|
36
|
-
$kendo-series-d-lighter: if($kendo-enable-color-system, k-color( series-d-subtler ),
|
|
34
|
+
$kendo-series-d-dark: if($kendo-enable-color-system, k-color( series-d-bold ), color.mix(black, $kendo-series-d, 25%)) !default;
|
|
35
|
+
$kendo-series-d-darker: if($kendo-enable-color-system, k-color( series-d-bolder ), color.mix(black, $kendo-series-d, 50%)) !default;
|
|
36
|
+
$kendo-series-d-light: if($kendo-enable-color-system, k-color( series-d-subtle ), color.mix(white, $kendo-series-d, 25%)) !default;
|
|
37
|
+
$kendo-series-d-lighter: if($kendo-enable-color-system, k-color( series-d-subtler ), color.mix(white, $kendo-series-d, 50%)) !default;
|
|
37
38
|
|
|
38
39
|
/// The fifth base series color and its light and dark shades.
|
|
39
40
|
/// @group charts
|
|
40
41
|
$kendo-series-e: if($kendo-enable-color-system, k-color( series-e ), #2d73f5) !default;
|
|
41
|
-
$kendo-series-e-dark: if($kendo-enable-color-system, k-color( series-e-bold ),
|
|
42
|
-
$kendo-series-e-darker: if($kendo-enable-color-system, k-color( series-e-bolder ),
|
|
43
|
-
$kendo-series-e-light: if($kendo-enable-color-system, k-color( series-e-subtle ),
|
|
44
|
-
$kendo-series-e-lighter: if($kendo-enable-color-system, k-color( series-e-subtler ),
|
|
42
|
+
$kendo-series-e-dark: if($kendo-enable-color-system, k-color( series-e-bold ), color.mix(black, $kendo-series-e, 25%)) !default;
|
|
43
|
+
$kendo-series-e-darker: if($kendo-enable-color-system, k-color( series-e-bolder ), color.mix(black, $kendo-series-e, 50%)) !default;
|
|
44
|
+
$kendo-series-e-light: if($kendo-enable-color-system, k-color( series-e-subtle ), color.mix(white, $kendo-series-e, 25%)) !default;
|
|
45
|
+
$kendo-series-e-lighter: if($kendo-enable-color-system, k-color( series-e-subtler ), color.mix(white, $kendo-series-e, 50%)) !default;
|
|
45
46
|
|
|
46
47
|
/// The sixth base series color and its light and dark shades.
|
|
47
48
|
/// @group charts
|
|
48
49
|
$kendo-series-f: if($kendo-enable-color-system, k-color( series-f ), #aa46be) !default;
|
|
49
|
-
$kendo-series-f-dark: if($kendo-enable-color-system, k-color( series-f-bold ),
|
|
50
|
-
$kendo-series-f-darker: if($kendo-enable-color-system, k-color( series-f-bolder ),
|
|
51
|
-
$kendo-series-f-light: if($kendo-enable-color-system, k-color( series-f-subtle ),
|
|
52
|
-
$kendo-series-f-lighter: if($kendo-enable-color-system, k-color( series-f-subtler ),
|
|
50
|
+
$kendo-series-f-dark: if($kendo-enable-color-system, k-color( series-f-bold ), color.mix(black, $kendo-series-f, 25%)) !default;
|
|
51
|
+
$kendo-series-f-darker: if($kendo-enable-color-system, k-color( series-f-bolder ), color.mix(black, $kendo-series-f, 50%)) !default;
|
|
52
|
+
$kendo-series-f-light: if($kendo-enable-color-system, k-color( series-f-subtle ), color.mix(white, $kendo-series-f, 25%)) !default;
|
|
53
|
+
$kendo-series-f-lighter: if($kendo-enable-color-system, k-color( series-f-subtler ), color.mix(white, $kendo-series-f, 50%)) !default;
|
|
53
54
|
|
|
54
55
|
/// The series colors in order:
|
|
55
56
|
/// base, light, dark, lighter, darker
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
@use "sass:color";
|
|
1
2
|
@use "../core/_index.scss" as *;
|
|
2
3
|
@use "../core/functions/index.import.scss" as *;
|
|
3
4
|
@use "../input/_variables.scss" as *;
|
|
@@ -33,7 +34,7 @@ $kendo-editor-selected-bg: $kendo-color-primary !default;
|
|
|
33
34
|
|
|
34
35
|
/// The highlighted background color of the Editor.
|
|
35
36
|
/// @group editor
|
|
36
|
-
$kendo-editor-highlighted-bg: if($kendo-enable-color-system, k-color( primary-subtle ),
|
|
37
|
+
$kendo-editor-highlighted-bg: if($kendo-enable-color-system, k-color( primary-subtle ), color.mix( $kendo-color-primary, #ffffff, 20% )) !default;
|
|
37
38
|
|
|
38
39
|
/// The horizontal margin of the Editor's export tool icon.
|
|
39
40
|
/// @group editor
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
@use "sass:color";
|
|
1
2
|
@use "sass:math";
|
|
2
3
|
@use "../core/_index.scss" as *;
|
|
3
4
|
@use "../core/functions/index.import.scss" as *;
|
|
@@ -262,7 +263,7 @@ $kendo-grid-sticky-header-border: $kendo-grid-sticky-border !default;
|
|
|
262
263
|
$kendo-grid-sticky-footer-bg: $kendo-grid-header-bg !default;
|
|
263
264
|
$kendo-grid-sticky-footer-hover-bg: $kendo-grid-hover-bg !default;
|
|
264
265
|
|
|
265
|
-
$kendo-grid-sticky-selected-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent),
|
|
266
|
+
$kendo-grid-sticky-selected-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), color.mix($kendo-selected-bg, #ffffff, 25%)) !default;
|
|
266
267
|
$kendo-grid-sticky-selected-alt-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), k-try-shade( $kendo-grid-sticky-selected-bg, .5 )) !default;
|
|
267
268
|
|
|
268
269
|
// Must be a solid color
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
// Dependencies
|
|
2
|
+
@use "../core/_index.scss" as *;
|
|
3
|
+
@use "../utils/_index.scss" as *;
|
|
4
|
+
|
|
5
|
+
// Component
|
|
6
|
+
@forward "./_variables.scss";
|
|
7
|
+
@use "./_layout.scss" as *;
|
|
8
|
+
@use "./_theme.scss" as *;
|
|
9
|
+
|
|
10
|
+
// Expose
|
|
11
|
+
@mixin kendo-grid-layout--styles() {
|
|
12
|
+
@include import-once( "grid-layout" ) {
|
|
13
|
+
@include core-styles();
|
|
14
|
+
@include kendo-grid-layout--layout();
|
|
15
|
+
@include kendo-grid-layout--theme();
|
|
16
|
+
@include kendo-utils--flex-grid--align-items();
|
|
17
|
+
@include kendo-utils--flex-grid--justify-items();
|
|
18
|
+
}
|
|
19
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
// GridLayout
|
package/scss/index.scss
CHANGED
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
// Forward component modules by dependency order
|
|
3
2
|
|
|
4
|
-
|
|
3
|
+
@forward "./core/_index.scss";
|
|
5
4
|
@forward "./typography/_index.scss";
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
// Generic content
|
|
9
5
|
@forward "./icons/_index.scss";
|
|
10
6
|
@forward "./messagebox/_index.scss";
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
// Primitive components
|
|
14
7
|
@forward "./draggable/_index.scss";
|
|
15
8
|
@forward "./list/_index.scss";
|
|
16
9
|
@forward "./listgroup/_index.scss";
|
|
@@ -18,20 +11,17 @@
|
|
|
18
11
|
@forward "./popup/_index.scss";
|
|
19
12
|
@forward "./ripple/_index.scss";
|
|
20
13
|
@forward "./table/_index.scss";
|
|
14
|
+
@forward "./gridlayout/_index.scss";
|
|
15
|
+
@forward "./stacklayout/_index.scss";
|
|
21
16
|
@forward "./virtual-scroller/_index.scss";
|
|
22
17
|
@forward "./no-data/_index.scss";
|
|
23
|
-
|
|
24
|
-
// Indicators
|
|
25
18
|
@forward "./avatar/_index.scss";
|
|
26
19
|
@forward "./badge/_index.scss";
|
|
27
20
|
@forward "./color-preview/_index.scss";
|
|
28
21
|
@forward "./loader/_index.scss";
|
|
29
22
|
@forward "./skeleton/_index.scss";
|
|
30
23
|
@forward "./time-marker/_index.scss";
|
|
31
|
-
|
|
32
24
|
@forward "./tooltip/_index.scss";
|
|
33
|
-
|
|
34
|
-
// Native forms
|
|
35
25
|
@forward "./button/_index.scss";
|
|
36
26
|
@forward "./input/_index.scss";
|
|
37
27
|
@forward "./floating-label/_index.scss";
|
|
@@ -43,23 +33,15 @@
|
|
|
43
33
|
@forward "./radio/_index.scss";
|
|
44
34
|
@forward "./slider/_index.scss";
|
|
45
35
|
@forward "./chip/_index.scss";
|
|
46
|
-
|
|
47
36
|
@forward "./action-buttons/_index.scss";
|
|
48
37
|
@forward "./menu/_index.scss";
|
|
49
38
|
@forward "./menu-button/_index.scss";
|
|
50
39
|
@forward "./split-button/_index.scss";
|
|
51
40
|
@forward "./toolbar/_index.scss";
|
|
52
|
-
|
|
53
|
-
// Form helpers
|
|
54
41
|
@forward "./forms/_index.scss";
|
|
55
42
|
@forward "./validator/_index.scss";
|
|
56
|
-
|
|
57
|
-
// Form requirements
|
|
58
43
|
@forward "./calendar/_index.scss";
|
|
59
44
|
@forward "./timeselector/_index.scss";
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
// Augmented forms
|
|
63
45
|
@forward "./autocomplete/_index.scss";
|
|
64
46
|
@forward "./captcha/_index.scss";
|
|
65
47
|
@forward "./colorpalette/_index.scss";
|
|
@@ -85,15 +67,9 @@
|
|
|
85
67
|
@forward "./switch/_index.scss";
|
|
86
68
|
@forward "./dropzone/_index.scss";
|
|
87
69
|
@forward "./upload/_index.scss";
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
// Command interfaces
|
|
91
70
|
@forward "./appbar/_index.scss";
|
|
92
71
|
@forward "./fab/_index.scss";
|
|
93
|
-
|
|
94
72
|
@forward "./card/_index.scss";
|
|
95
|
-
|
|
96
|
-
// Popups and modals
|
|
97
73
|
@forward "./action-sheet/_index.scss";
|
|
98
74
|
@forward "./window/_index.scss";
|
|
99
75
|
@forward "./dialog/_index.scss";
|
|
@@ -101,18 +77,12 @@
|
|
|
101
77
|
@forward "./notification/_index.scss";
|
|
102
78
|
@forward "./popover/_index.scss";
|
|
103
79
|
@forward "./responsivepanel/_index.scss";
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
// Navigation
|
|
107
80
|
@forward "./bottom-navigation/_index.scss";
|
|
108
81
|
@forward "./breadcrumb/_index.scss";
|
|
109
82
|
@forward "./pager/_index.scss";
|
|
110
83
|
@forward "./stepper/_index.scss";
|
|
111
84
|
@forward "./tabstrip/_index.scss";
|
|
112
85
|
@forward "./wizard/_index.scss";
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
// Layout & containers
|
|
116
86
|
@forward "./expansion-panel/_index.scss";
|
|
117
87
|
@forward "./panel/_index.scss";
|
|
118
88
|
@forward "./panelbar/_index.scss";
|
|
@@ -122,31 +92,16 @@
|
|
|
122
92
|
@forward "./adaptive/_index.scss";
|
|
123
93
|
@forward "./grid/_index.scss";
|
|
124
94
|
@forward "./listview/_index.scss";
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
// Data management
|
|
128
|
-
|
|
129
|
-
|
|
130
95
|
@forward "./spreadsheet/_index.scss";
|
|
131
96
|
@forward "./pivotgrid/_index.scss";
|
|
132
97
|
@forward "./treelist/_index.scss";
|
|
133
98
|
@forward "./filter/_index.scss";
|
|
134
99
|
@forward "./filemanager/_index.scss";
|
|
135
100
|
@forward "./taskboard/_index.scss";
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
// Editors
|
|
139
101
|
@forward "./editor/_index.scss";
|
|
140
102
|
@forward "./imageeditor/_index.scss";
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
// Scheduling
|
|
144
103
|
@forward "./gantt/_index.scss";
|
|
145
104
|
@forward "./scheduler/_index.scss";
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
// Misc
|
|
149
|
-
|
|
150
105
|
@forward "./chat/_index.scss";
|
|
151
106
|
@forward "./mediaplayer/_index.scss";
|
|
152
107
|
@forward "./timeline/_index.scss";
|
|
@@ -154,15 +109,14 @@
|
|
|
154
109
|
@forward "./scroller/_index.scss";
|
|
155
110
|
@forward "./scrollview/_index.scss";
|
|
156
111
|
@forward "./prompt/_index.scss";
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
// Dataviz
|
|
160
112
|
@forward "./dataviz/_index.scss";
|
|
161
113
|
@forward "./chart-wizard/_index.scss";
|
|
162
114
|
@forward "./map/_index.scss";
|
|
163
115
|
@forward "./orgchart/_index.scss";
|
|
164
116
|
@forward "./signature/_index.scss";
|
|
165
117
|
|
|
118
|
+
|
|
119
|
+
// Use component modules
|
|
166
120
|
@use "./core/_index.scss" as *;
|
|
167
121
|
|
|
168
122
|
|
|
@@ -284,6 +238,8 @@
|
|
|
284
238
|
@use "./panelbar/_index.scss" as *;
|
|
285
239
|
@use "./splitter/_index.scss" as *;
|
|
286
240
|
@use "./tilelayout/_index.scss" as *;
|
|
241
|
+
@use "./gridlayout/_index.scss" as *;
|
|
242
|
+
@use "./stacklayout/_index.scss" as *;
|
|
287
243
|
@use "./dock-manager/_index.scss" as *;
|
|
288
244
|
@use "./chart-wizard/_index.scss" as *;
|
|
289
245
|
|
|
@@ -452,6 +408,8 @@
|
|
|
452
408
|
@include kendo-panelbar--styles();
|
|
453
409
|
@include kendo-splitter--styles();
|
|
454
410
|
@include kendo-tile-layout--styles();
|
|
411
|
+
@include kendo-grid-layout--styles();
|
|
412
|
+
@include kendo-stack-layout--styles();
|
|
455
413
|
@include kendo-dock-manager--styles();
|
|
456
414
|
@include kendo-chart-wizard--styles();
|
|
457
415
|
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
// Dependencies
|
|
2
|
+
@use "../core/_index.scss" as *;
|
|
3
|
+
@use "../utils/_index.scss" as *;
|
|
4
|
+
|
|
5
|
+
// Component
|
|
6
|
+
@forward "./_variables.scss";
|
|
7
|
+
@use "./_layout.scss" as *;
|
|
8
|
+
@use "./_theme.scss" as *;
|
|
9
|
+
|
|
10
|
+
// Expose
|
|
11
|
+
@mixin kendo-stack-layout--styles() {
|
|
12
|
+
@include import-once( "stack-layout" ) {
|
|
13
|
+
@include core-styles();
|
|
14
|
+
@include kendo-stack-layout--layout();
|
|
15
|
+
@include kendo-stack-layout--theme();
|
|
16
|
+
@include kendo-utils--flex-grid--align-items();
|
|
17
|
+
@include kendo-utils--flex-grid--justify-content();
|
|
18
|
+
}
|
|
19
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
// StackLayout
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
@use "sass:color";
|
|
1
2
|
@use "../core/_index.scss" as *;
|
|
2
3
|
@use "../core/functions/index.import.scss" as *;
|
|
3
4
|
|
|
@@ -136,7 +137,7 @@ $kendo-stepper-indicator-done-hover-border: null !default;
|
|
|
136
137
|
|
|
137
138
|
/// The background color of the Stepper's disabled done indicator.
|
|
138
139
|
/// @group stepper
|
|
139
|
-
$kendo-stepper-indicator-done-disabled-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 60%, transparent),
|
|
140
|
+
$kendo-stepper-indicator-done-disabled-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 60%, transparent), color.mix( $kendo-stepper-indicator-done-bg, $kendo-component-bg, 60% )) !default;
|
|
140
141
|
/// The text color of the Stepper's disabled done indicator.
|
|
141
142
|
/// @group stepper
|
|
142
143
|
$kendo-stepper-indicator-done-disabled-text: if($kendo-enable-color-system, k-color( on-primary ), k-contrast-legacy( $kendo-stepper-indicator-done-bg )) !default;
|