@progress/kendo-theme-fluent 8.0.2-dev.4 → 8.1.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 -0
- package/dist/fluent-main-dark.scss +156 -0
- package/dist/fluent-main.css +1 -1
- package/dist/meta/sassdoc-data.json +14574 -4081
- package/dist/meta/sassdoc-raw-data.json +11878 -10106
- package/dist/meta/variables.json +4024 -87
- package/lib/swatches/all.json +1 -1
- package/lib/swatches/fluent-main-dark.json +768 -0
- package/lib/swatches/fluent-main.json +1 -1
- package/package.json +4 -4
- package/scss/button/_theme.scss +6 -0
- package/scss/coloreditor/_variables.scss +27 -27
- package/scss/colorgradient/_variables.scss +48 -48
- package/scss/colorpalette/_variables.scss +15 -15
- package/scss/core/_index.scss +3 -5
- package/scss/core/border-radii/_index.scss +5 -1
- package/scss/core/color-system/_palettes.scss +29 -3
- package/scss/core/color-system/_swatch-legacy.scss +10 -2
- package/scss/core/color-system/_swatch.scss +262 -8
- package/scss/core/elevation/_index.scss +10 -10
- package/scss/core/module-system/_components.scss +2 -1
- package/scss/daterangepicker/_theme.scss +1 -1
- package/scss/fab/_theme.scss +1 -1
- package/scss/filemanager/_variables.scss +56 -56
- package/scss/forms/_theme.scss +6 -0
- package/scss/gantt/index.scss +2 -1
- package/scss/grid/_theme.scss +2 -2
- package/scss/index.scss +6 -0
- package/scss/loader/_layout.scss +130 -0
- package/scss/loader/_variables.scss +14 -0
- package/scss/loader/index.scss +1 -0
- package/scss/panel/_layout.scss +29 -0
- package/scss/panel/_theme.scss +22 -0
- package/scss/panel/_variables.scss +36 -0
- package/scss/panel/index.scss +23 -0
- package/scss/popup/_layout.scss +25 -8
- package/scss/rating/_theme.scss +1 -1
- package/scss/scheduler/index.scss +2 -1
- package/scss/tilelayout/_variables.scss +8 -8
- package/scss/time-marker/_layout.scss +19 -0
- package/scss/time-marker/_theme.scss +21 -0
- package/scss/time-marker/_variables.scss +6 -0
- package/scss/time-marker/index.scss +22 -0
- package/scss/typography/_layout.scss +4 -0
- package/scss/core/helpers/_animations.scss +0 -706
- package/scss/core/helpers/_asp-fallback.scss +0 -4
- package/scss/core/helpers/_extra.scss +0 -22
- package/scss/core/helpers/_index.scss +0 -9
- package/scss/core/helpers/_indicators.scss +0 -33
- package/scss/core/helpers/_normalize.scss +0 -11
- package/scss/core/helpers/_reset.scss +0 -19
- package/scss/core/helpers/_resizing.scss +0 -120
- package/scss/core/helpers/_scrollbar.scss +0 -25
- package/scss/core/helpers/_spacer.scss +0 -13
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-theme-fluent",
|
|
3
3
|
"description": "A css variables based theme for Kendo UI that follows the Fluent design system guidelines.",
|
|
4
|
-
"version": "8.0
|
|
4
|
+
"version": "8.1.0-dev.1",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -53,12 +53,12 @@
|
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
55
|
"@progress/kendo-svg-icons": "3.0.0",
|
|
56
|
-
"@progress/kendo-theme-core": "8.0
|
|
57
|
-
"@progress/kendo-theme-utils": "8.0
|
|
56
|
+
"@progress/kendo-theme-core": "8.1.0-dev.1",
|
|
57
|
+
"@progress/kendo-theme-utils": "8.1.0-dev.1"
|
|
58
58
|
},
|
|
59
59
|
"directories": {
|
|
60
60
|
"doc": "docs",
|
|
61
61
|
"lib": "lib"
|
|
62
62
|
},
|
|
63
|
-
"gitHead": "
|
|
63
|
+
"gitHead": "4689911f0f7008e71ed496fa1e63f7d006270dca"
|
|
64
64
|
}
|
package/scss/button/_theme.scss
CHANGED
|
@@ -3,90 +3,90 @@
|
|
|
3
3
|
@use "../core/" as *;
|
|
4
4
|
|
|
5
5
|
/// The spacer of the ColorEditor.
|
|
6
|
-
/// @group
|
|
6
|
+
/// @group color-editor
|
|
7
7
|
$kendo-color-editor-spacer: k-spacing(2) !default;
|
|
8
8
|
|
|
9
9
|
/// The minimum width of the ColorEditor.
|
|
10
|
-
/// @group
|
|
10
|
+
/// @group color-editor
|
|
11
11
|
$kendo-color-editor-min-width: 260px !default;
|
|
12
12
|
/// The width of the border around the ColorEditor.
|
|
13
|
-
/// @group
|
|
13
|
+
/// @group color-editor
|
|
14
14
|
$kendo-color-editor-border-width: 1px !default;
|
|
15
15
|
/// The border radius of the ColorEditor.
|
|
16
|
-
/// @group
|
|
16
|
+
/// @group color-editor
|
|
17
17
|
$kendo-color-editor-border-radius: k-border-radius(md) !default;
|
|
18
18
|
/// The font family of the ColorEditor.
|
|
19
|
-
/// @group
|
|
19
|
+
/// @group color-editor
|
|
20
20
|
$kendo-color-editor-font-family: var( --kendo-font-family, inherit ) !default;
|
|
21
21
|
/// The font size of the ColorEditor.
|
|
22
|
-
/// @group
|
|
22
|
+
/// @group color-editor
|
|
23
23
|
$kendo-color-editor-font-size: var( --kendo-font-size, inherit ) !default;
|
|
24
24
|
/// The line height of the ColorEditor.
|
|
25
|
-
/// @group
|
|
25
|
+
/// @group color-editor
|
|
26
26
|
$kendo-color-editor-line-height: var( --kendo-line-height, normal ) !default;
|
|
27
27
|
/// The text color of the ColorEditor.
|
|
28
|
-
/// @group
|
|
28
|
+
/// @group color-editor
|
|
29
29
|
$kendo-color-editor-text: var( --kendo-component-text, initial ) !default;
|
|
30
30
|
/// The background color of the ColorEditor.
|
|
31
|
-
/// @group
|
|
31
|
+
/// @group color-editor
|
|
32
32
|
$kendo-color-editor-bg: var( --kendo-component-bg, initial ) !default;
|
|
33
33
|
/// The border color of the ColorEditor.
|
|
34
|
-
/// @group
|
|
34
|
+
/// @group color-editor
|
|
35
35
|
$kendo-color-editor-border: var( --kendo-component-border, initial ) !default;
|
|
36
36
|
/// The box shadow of the ColorEditor.
|
|
37
|
-
/// @group
|
|
37
|
+
/// @group color-editor
|
|
38
38
|
$kendo-color-editor-shadow: var( --kendo-box-shadow-depth-2, none ) !default;
|
|
39
39
|
|
|
40
40
|
/// The border color of the focused ColorEditor.
|
|
41
|
-
/// @group
|
|
41
|
+
/// @group color-editor
|
|
42
42
|
$kendo-color-editor-focus-border: if($kendo-enable-color-system, color-mix(in srgb, k-color( border ) 10%, transparent), k-get-theme-color-var( neutral-20 )) !default;
|
|
43
43
|
/// The box shadow of the focused ColorEditor.
|
|
44
|
-
/// @group
|
|
44
|
+
/// @group color-editor
|
|
45
45
|
$kendo-color-editor-focus-shadow: var( --kendo-box-shadow-depth-3, none ) !default;
|
|
46
46
|
|
|
47
47
|
/// The vertical padding of the ColorEditor header.
|
|
48
|
-
/// @group
|
|
48
|
+
/// @group color-editor
|
|
49
49
|
$kendo-color-editor-header-padding-y: $kendo-color-editor-spacer !default;
|
|
50
50
|
/// The horizontal padding of the ColorEditor header.
|
|
51
|
-
/// @group
|
|
51
|
+
/// @group color-editor
|
|
52
52
|
$kendo-color-editor-header-padding-x: $kendo-color-editor-header-padding-y !default;
|
|
53
53
|
/// The spacing between the ColorEditor header actions.
|
|
54
|
-
/// @group
|
|
54
|
+
/// @group color-editor
|
|
55
55
|
$kendo-color-editor-header-actions-spacing: calc( #{$kendo-color-editor-spacer} / 2 ) !default;
|
|
56
56
|
|
|
57
57
|
/// The width of the ColorEditor preview.
|
|
58
|
-
/// @group
|
|
58
|
+
/// @group color-editor
|
|
59
59
|
$kendo-color-editor-color-preview-width: 34px !default;
|
|
60
60
|
/// The height of the ColorEditor preview.
|
|
61
|
-
/// @group
|
|
61
|
+
/// @group color-editor
|
|
62
62
|
$kendo-color-editor-color-preview-height: 14px !default;
|
|
63
63
|
/// The spacing between the colors in the ColorEditor preview.
|
|
64
|
-
/// @group
|
|
64
|
+
/// @group color-editor
|
|
65
65
|
$kendo-color-editor-preview-spacing: k-spacing(1) !default;
|
|
66
66
|
|
|
67
67
|
/// The vertical padding of the ColorEditor views container.
|
|
68
|
-
/// @group
|
|
68
|
+
/// @group color-editor
|
|
69
69
|
$kendo-color-editor-views-padding-y: $kendo-color-editor-spacer !default;
|
|
70
70
|
/// The horizontal padding of the ColorEditor views container.
|
|
71
|
-
/// @group
|
|
71
|
+
/// @group color-editor
|
|
72
72
|
$kendo-color-editor-views-padding-x: $kendo-color-editor-views-padding-y !default;
|
|
73
73
|
/// The spacing of the ColorEditor views container.
|
|
74
|
-
/// @group
|
|
74
|
+
/// @group color-editor
|
|
75
75
|
$kendo-color-editor-views-spacing: $kendo-color-editor-spacer !default;
|
|
76
76
|
|
|
77
77
|
/// The vertical padding of the ColorEditor footer.
|
|
78
|
-
/// @group
|
|
78
|
+
/// @group color-editor
|
|
79
79
|
$kendo-color-editor-footer-padding-y: k-spacing(2) !default;
|
|
80
80
|
/// The horizontal padding of the ColorEditor footer.
|
|
81
|
-
/// @group
|
|
81
|
+
/// @group color-editor
|
|
82
82
|
$kendo-color-editor-footer-padding-x: k-spacing(2) !default;
|
|
83
83
|
|
|
84
84
|
/// The outline color of the focused ColorGradient.
|
|
85
|
-
/// @group
|
|
85
|
+
/// @group color-editor
|
|
86
86
|
$kendo-color-editor-color-gradient-focus-outline-color: rgba(0, 0, 0, 0.3) !default;
|
|
87
87
|
/// The outline width of the focused ColorGradient.
|
|
88
|
-
/// @group
|
|
88
|
+
/// @group color-editor
|
|
89
89
|
$kendo-color-editor-color-gradient-focus-outline: 2px !default;
|
|
90
90
|
/// The outline offset of the focused ColorGradient.
|
|
91
|
-
/// @group
|
|
91
|
+
/// @group color-editor
|
|
92
92
|
$kendo-color-editor-color-gradient-focus-outline-offset: 2px !default;
|
|
@@ -3,156 +3,156 @@
|
|
|
3
3
|
@use "../core/" as *;
|
|
4
4
|
|
|
5
5
|
/// The spacer of the ColorGradient.
|
|
6
|
-
/// @group
|
|
6
|
+
/// @group color-gradient
|
|
7
7
|
$kendo-color-gradient-spacer: k-spacing(4) !default;
|
|
8
8
|
|
|
9
9
|
/// The width of the ColorGradient.
|
|
10
|
-
/// @group
|
|
10
|
+
/// @group color-gradient
|
|
11
11
|
$kendo-color-gradient-width: 260px !default;
|
|
12
12
|
/// The width of the border around the ColorGradient.
|
|
13
|
-
/// @group
|
|
13
|
+
/// @group color-gradient
|
|
14
14
|
$kendo-color-gradient-border-width: 2px !default;
|
|
15
15
|
/// The border radius of the ColorGradient.
|
|
16
|
-
/// @group
|
|
16
|
+
/// @group color-gradient
|
|
17
17
|
$kendo-color-gradient-border-radius: k-border-radius(md) !default;
|
|
18
18
|
/// The vertical padding of the ColorGradient.
|
|
19
|
-
/// @group
|
|
19
|
+
/// @group color-gradient
|
|
20
20
|
$kendo-color-gradient-padding-y: $kendo-color-gradient-spacer !default;
|
|
21
21
|
/// The horizontal padding of the ColorGradient.
|
|
22
|
-
/// @group
|
|
22
|
+
/// @group color-gradient
|
|
23
23
|
$kendo-color-gradient-padding-x: calc( #{$kendo-color-gradient-spacer} / 2 ) !default;
|
|
24
24
|
/// The spacing between the sections of the ColorGradient.
|
|
25
|
-
/// @group
|
|
25
|
+
/// @group color-gradient
|
|
26
26
|
$kendo-color-gradient-spacing: $kendo-color-gradient-spacer !default;
|
|
27
27
|
/// The font family of the ColorGradient.
|
|
28
|
-
/// @group
|
|
28
|
+
/// @group color-gradient
|
|
29
29
|
$kendo-color-gradient-font-family: var( --kendo-font-family, inherit ) !default;
|
|
30
30
|
/// The font size of the ColorGradient.
|
|
31
|
-
/// @group
|
|
31
|
+
/// @group color-gradient
|
|
32
32
|
$kendo-color-gradient-font-size: var( --kendo-font-size, inherit ) !default;
|
|
33
33
|
/// The line height of the ColorGradient.
|
|
34
|
-
/// @group
|
|
34
|
+
/// @group color-gradient
|
|
35
35
|
$kendo-color-gradient-line-height: var( --kendo-line-height, normal ) !default;
|
|
36
36
|
|
|
37
37
|
/// The text color of the ColorGradient.
|
|
38
|
-
/// @group
|
|
38
|
+
/// @group color-gradient
|
|
39
39
|
$kendo-color-gradient-text: var( --kendo-component-text, initial ) !default;
|
|
40
40
|
/// The background color of the ColorGradient.
|
|
41
|
-
/// @group
|
|
41
|
+
/// @group color-gradient
|
|
42
42
|
$kendo-color-gradient-bg: var( --kendo-component-bg, initial ) !default;
|
|
43
43
|
/// The border color of the ColorGradient.
|
|
44
|
-
/// @group
|
|
44
|
+
/// @group color-gradient
|
|
45
45
|
$kendo-color-gradient-border: var( --kendo-component-border, initial ) !default;
|
|
46
46
|
/// The box shadow of the ColorGradient.
|
|
47
|
-
/// @group
|
|
47
|
+
/// @group color-gradient
|
|
48
48
|
$kendo-color-gradient-shadow: var( --kendo-box-shadow-depth-2, none ) !default;
|
|
49
49
|
|
|
50
50
|
/// The border color of the focused ColorGradient.
|
|
51
|
-
/// @group
|
|
51
|
+
/// @group color-gradient
|
|
52
52
|
$kendo-color-gradient-focus-border: if($kendo-enable-color-system, color-mix(in srgb, k-color( border ) 10%, transparent), k-get-theme-color-var( neutral-20 )) !default;
|
|
53
53
|
/// The box shadow of the focused ColorGradient.
|
|
54
|
-
/// @group
|
|
54
|
+
/// @group color-gradient
|
|
55
55
|
$kendo-color-gradient-focus-shadow: var( --kendo-box-shadow-depth-3, none ) !default;
|
|
56
56
|
|
|
57
57
|
/// The width of the border around the ColorGradient canvas.
|
|
58
|
-
/// @group
|
|
58
|
+
/// @group color-gradient
|
|
59
59
|
$kendo-color-gradient-canvas-border-width: 0 !default;
|
|
60
60
|
/// The border radius of the ColorGradient canvas.
|
|
61
|
-
/// @group
|
|
61
|
+
/// @group color-gradient
|
|
62
62
|
$kendo-color-gradient-canvas-border-radius: k-border-radius(md) !default;
|
|
63
63
|
/// The spacing between the items of the ColorGradient canvas.
|
|
64
|
-
/// @group
|
|
64
|
+
/// @group color-gradient
|
|
65
65
|
$kendo-color-gradient-canvas-spacing: calc( #{$kendo-color-gradient-spacer} / 2 ) !default;
|
|
66
66
|
/// The height the ColorGradient canvas hsv rectangle.
|
|
67
|
-
/// @group
|
|
67
|
+
/// @group color-gradient
|
|
68
68
|
$kendo-color-gradient-canvas-rectangle-height: 180px !default;
|
|
69
69
|
/// The border color of the ColorGradient canvas hsv rectangle.
|
|
70
|
-
/// @group
|
|
70
|
+
/// @group color-gradient
|
|
71
71
|
$kendo-color-gradient-canvas-rectangle-border: if($kendo-enable-color-system, color-mix(in srgb, k-color( border ) 16%, transparent), k-get-theme-color-var( neutral-30 )) !default;
|
|
72
72
|
/// The box shadow of the ColorGradient canvas drag handle.
|
|
73
|
-
/// @group
|
|
73
|
+
/// @group color-gradient
|
|
74
74
|
$kendo-color-gradient-canvas-draghandle-shadow: var( --kendo-box-shadow-depth-2, none ) !default;
|
|
75
75
|
|
|
76
76
|
/// The width of the ColorGradient slider.
|
|
77
|
-
/// @group
|
|
77
|
+
/// @group color-gradient
|
|
78
78
|
$kendo-color-gradient-slider-track-size: 20px !default;
|
|
79
79
|
/// The border radius of the ColorGradient slider.
|
|
80
|
-
/// @group
|
|
80
|
+
/// @group color-gradient
|
|
81
81
|
$kendo-color-gradient-slider-border-radius: k-border-radius(md) !default;
|
|
82
82
|
/// The width of the border around the ColorGradient slider.
|
|
83
|
-
/// @group
|
|
83
|
+
/// @group color-gradient
|
|
84
84
|
$kendo-color-gradient-slider-border-width: if($kendo-enable-color-system, 0, 1px) !default;
|
|
85
85
|
/// The color of the border around the ColorGradient slider.
|
|
86
|
-
/// @group
|
|
86
|
+
/// @group color-gradient
|
|
87
87
|
$kendo-color-gradient-slider-border: if($kendo-enable-color-system, color-mix(in srgb, k-color( border ) 16%, transparent), k-get-theme-color-var( neutral-30 )) !default;
|
|
88
88
|
|
|
89
89
|
/// The height of the ColorGradient vertical slider.
|
|
90
|
-
/// @group
|
|
90
|
+
/// @group color-gradient
|
|
91
91
|
$kendo-color-gradient-slider-vertical-size: 180px !default;
|
|
92
92
|
/// The width of the ColorGradient horizontal slider.
|
|
93
|
-
/// @group
|
|
93
|
+
/// @group color-gradient
|
|
94
94
|
$kendo-color-gradient-slider-horizontal-size: 100% !default;
|
|
95
95
|
/// The background image of the ColorGradient alpha slider.
|
|
96
|
-
/// @group
|
|
96
|
+
/// @group color-gradient
|
|
97
97
|
$kendo-color-gradient-slider-alpha-bgr: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAuSURBVHgBxYyxDQAwDMJIL+YT+DjtzFRliUfLcklqBCRT4eCTxbD6kdL2/LgYXqpvCbs3kBv/AAAAAElFTkSuQmCC" !default;
|
|
98
98
|
|
|
99
99
|
/// The width of the ColorGradient canvas drag handle.
|
|
100
|
-
/// @group
|
|
100
|
+
/// @group color-gradient
|
|
101
101
|
$kendo-color-gradient-draghandle-width: 20px !default;
|
|
102
102
|
/// The height of the ColorGradient canvas drag handle.
|
|
103
|
-
/// @group
|
|
103
|
+
/// @group color-gradient
|
|
104
104
|
$kendo-color-gradient-draghandle-height: 20px !default;
|
|
105
105
|
/// The width of the border around the ColorGradient canvas drag handle.
|
|
106
|
-
/// @group
|
|
106
|
+
/// @group color-gradient
|
|
107
107
|
$kendo-color-gradient-draghandle-border-width: 2px !default;
|
|
108
108
|
/// The width of the outline around the ColorGradient canvas drag handle.
|
|
109
|
-
/// @group
|
|
109
|
+
/// @group color-gradient
|
|
110
110
|
$kendo-color-gradient-draghandle-outline-width: 1px !default;
|
|
111
111
|
/// The color of the border around the ColorGradient canvas drag handle.
|
|
112
|
-
/// @group
|
|
112
|
+
/// @group color-gradient
|
|
113
113
|
$kendo-color-gradient-draghandle-border: if($kendo-enable-color-system, k-color( app-surface ), $kendo-color-white) !default;
|
|
114
114
|
/// The color of the outline around the ColorGradient canvas drag handle.
|
|
115
|
-
/// @group
|
|
115
|
+
/// @group color-gradient
|
|
116
116
|
$kendo-color-gradient-draghandle-shadow: if($kendo-enable-color-system, k-color( border ), k-get-theme-color-var( neutral-110 )) !default;
|
|
117
117
|
/// The box shadow of the ColorGradient canvas drag handle.
|
|
118
|
-
/// @group
|
|
118
|
+
/// @group color-gradient
|
|
119
119
|
$kendo-color-gradient-draghandle-shadow: var( --kendo-box-shadow-depth-2, none ) !default;
|
|
120
120
|
/// The color of the border around the focused ColorGradient canvas drag handle.
|
|
121
|
-
/// @group
|
|
121
|
+
/// @group color-gradient
|
|
122
122
|
$kendo-color-gradient-draghandle-focus-border: if($kendo-enable-color-system, k-color( app-surface ), $kendo-color-white) !default;
|
|
123
123
|
/// The focus color of the outline around the ColorGradient canvas drag handle.
|
|
124
|
-
/// @group
|
|
124
|
+
/// @group color-gradient
|
|
125
125
|
$kendo-color-gradient-draghandle-focus-shadow: if($kendo-enable-color-system, k-color( base-emphasis ), k-get-theme-color-var( neutral-130 )) !default;
|
|
126
126
|
/// The hover color of the outline around the ColorGradient canvas drag handle.
|
|
127
|
-
/// @group
|
|
127
|
+
/// @group color-gradient
|
|
128
128
|
$kendo-color-gradient-draghandle-hover-shadow: if($kendo-enable-color-system, k-color( base-emphasis ), k-get-theme-color-var( neutral-130 )) !default;
|
|
129
129
|
|
|
130
130
|
/// The vertical offset of the ColorGradient canvas drag handle.
|
|
131
|
-
/// @group
|
|
131
|
+
/// @group color-gradient
|
|
132
132
|
$kendo-color-gradient-canvas-draghandle-offset-y: ( -1 * math.div( $kendo-color-gradient-draghandle-height, 2 ) ) !default;
|
|
133
133
|
/// The horizontal offset of the ColorGradient canvas drag handle.
|
|
134
|
-
/// @group
|
|
134
|
+
/// @group color-gradient
|
|
135
135
|
$kendo-color-gradient-canvas-draghandle-offset-x: ( -1 * math.div( $kendo-color-gradient-draghandle-width, 2 ) ) !default;
|
|
136
136
|
|
|
137
137
|
/// The width of the ColorGradient input.
|
|
138
|
-
/// @group
|
|
138
|
+
/// @group color-gradient
|
|
139
139
|
$kendo-color-gradient-input-width: 48px !default;
|
|
140
140
|
/// The spacing between the ColorGradient inputs.
|
|
141
|
-
/// @group
|
|
141
|
+
/// @group color-gradient
|
|
142
142
|
$kendo-color-gradient-input-spacing: calc( #{$kendo-color-gradient-spacer} / 4 ) !default;
|
|
143
143
|
/// The font size of the ColorGradient input labels.
|
|
144
|
-
/// @group
|
|
144
|
+
/// @group color-gradient
|
|
145
145
|
$kendo-color-gradient-input-label-font-size: var( --kendo-font-size-sm, inherit ) !default;
|
|
146
146
|
/// The spacing between the ColorGradient inputs and their labels.
|
|
147
|
-
/// @group
|
|
147
|
+
/// @group color-gradient
|
|
148
148
|
$kendo-color-gradient-input-label-spacing: calc( #{$kendo-color-gradient-spacer} / 4 ) !default;
|
|
149
149
|
/// The text color of the ColorGradient input labels.
|
|
150
|
-
/// @group
|
|
150
|
+
/// @group color-gradient
|
|
151
151
|
$kendo-color-gradient-input-label-text: var( --kendo-subtle-text, inherit ) !default;
|
|
152
152
|
|
|
153
153
|
/// The font weight of the ColorGradient contrast ratio text.
|
|
154
|
-
/// @group
|
|
154
|
+
/// @group color-gradient
|
|
155
155
|
$kendo-color-gradient-contrast-ratio-font-weight: var( --kendo-font-weight-bold, normal ) !default;
|
|
156
156
|
/// The spacing between the items in the ColorGradient contrast tool.
|
|
157
|
-
/// @group
|
|
157
|
+
/// @group color-gradient
|
|
158
158
|
$kendo-color-gradient-contrast-spacing: calc( #{$kendo-color-gradient-spacer} / 1.5 ) !default;
|
|
@@ -2,48 +2,48 @@
|
|
|
2
2
|
@use "../core/" as *;
|
|
3
3
|
|
|
4
4
|
/// The font family of the ColorPalette.
|
|
5
|
-
/// @group
|
|
5
|
+
/// @group color-palette
|
|
6
6
|
$kendo-color-palette-font-family: var( --kendo-font-family, inherit ) !default;
|
|
7
7
|
/// The font size of the ColorPalette.
|
|
8
|
-
/// @group
|
|
8
|
+
/// @group color-palette
|
|
9
9
|
$kendo-color-palette-font-size: var( --kendo-font-size, inherit ) !default;
|
|
10
10
|
/// The line height of the ColorPalette.
|
|
11
|
-
/// @group
|
|
11
|
+
/// @group color-palette
|
|
12
12
|
$kendo-color-palette-line-height: 0 !default;
|
|
13
13
|
|
|
14
14
|
/// The outline width of the ColorPalette tile.
|
|
15
|
-
/// @group
|
|
15
|
+
/// @group color-palette
|
|
16
16
|
$kendo-color-palette-tile-outline-width: 1px !default;
|
|
17
17
|
/// The outline style of the ColorPalette tile.
|
|
18
|
-
/// @group
|
|
18
|
+
/// @group color-palette
|
|
19
19
|
$kendo-color-palette-tile-outline-style: solid !default;
|
|
20
20
|
/// The outline color of the ColorPalette tile.
|
|
21
|
-
/// @group
|
|
21
|
+
/// @group color-palette
|
|
22
22
|
$kendo-color-palette-tile-outline: transparent !default;
|
|
23
23
|
/// The width of the ColorPalette tile.
|
|
24
|
-
/// @group
|
|
24
|
+
/// @group color-palette
|
|
25
25
|
$kendo-color-palette-tile-width: k-spacing(6) !default;
|
|
26
26
|
/// The height of the ColorPalette tile.
|
|
27
|
-
/// @group
|
|
27
|
+
/// @group color-palette
|
|
28
28
|
$kendo-color-palette-tile-height: $kendo-color-palette-tile-width !default;
|
|
29
29
|
/// The outline color of the ColorPalette focused tile.
|
|
30
|
-
/// @group
|
|
30
|
+
/// @group color-palette
|
|
31
31
|
$kendo-color-palette-tile-focus-outline: if($kendo-enable-color-system, k-color( base-emphasis ), k-get-theme-color-var( neutral-130 )) !default;
|
|
32
32
|
/// The shadow of the ColorPalette focused tile.
|
|
33
|
-
/// @group
|
|
33
|
+
/// @group color-palette
|
|
34
34
|
$kendo-color-palette-tile-focus-shadow: inset 0 0 0 2px if($kendo-enable-color-system, k-color( app-surface ), $kendo-color-white) !default;
|
|
35
35
|
/// The outline color of the ColorPalette hovered tile.
|
|
36
|
-
/// @group
|
|
36
|
+
/// @group color-palette
|
|
37
37
|
$kendo-color-palette-tile-hover-outline: if($kendo-enable-color-system, color-mix(in srgb, k-color( border ) 10%, transparent), k-get-theme-color-var( neutral-20 )) !default;
|
|
38
38
|
/// The shadow of the ColorPalette hovered tile.
|
|
39
|
-
/// @group
|
|
39
|
+
/// @group color-palette
|
|
40
40
|
$kendo-color-palette-tile-hover-shadow: inset 0 0 0 2px $kendo-color-palette-tile-hover-outline, inset 0 0 0 4px if($kendo-enable-color-system, k-color( app-surface ), $kendo-color-white) !default;
|
|
41
41
|
/// The outline color of the ColorPalette selected tile.
|
|
42
|
-
/// @group
|
|
42
|
+
/// @group color-palette
|
|
43
43
|
$kendo-color-palette-tile-selected-outline: $kendo-color-palette-tile-hover-outline !default;
|
|
44
44
|
/// The shadow of the ColorPalette selected tile.
|
|
45
|
-
/// @group
|
|
45
|
+
/// @group color-palette
|
|
46
46
|
$kendo-color-palette-tile-selected-shadow: $kendo-color-palette-tile-hover-shadow !default;
|
|
47
47
|
/// The outline color of the ColorPalette selected hover tile.
|
|
48
|
-
/// @group
|
|
48
|
+
/// @group color-palette
|
|
49
49
|
$kendo-color-palette-tile-selected-hover-outline: $kendo-color-palette-tile-focus-outline !default;
|
package/scss/core/_index.scss
CHANGED
|
@@ -51,8 +51,9 @@
|
|
|
51
51
|
$kendo-disabled-bg: $kendo-disabled-bg !default,
|
|
52
52
|
$kendo-disabled-text: $kendo-disabled-text !default,
|
|
53
53
|
$kendo-disabled-border: $kendo-disabled-border !default,
|
|
54
|
-
$kendo-
|
|
55
|
-
$kendo-
|
|
54
|
+
$kendo-disabled-opacity: $kendo-disabled-opacity !default,
|
|
55
|
+
$kendo-disabled-filter: $kendo-disabled-filter !default,
|
|
56
|
+
$kendo-disabled-styling: $kendo-disabled-styling !default,
|
|
56
57
|
// Elevation
|
|
57
58
|
$_default-elevation: $kendo-elevation,
|
|
58
59
|
$kendo-elevation: $kendo-elevation !default,
|
|
@@ -68,9 +69,6 @@
|
|
|
68
69
|
|
|
69
70
|
@forward "./color-system/swatch-legacy";
|
|
70
71
|
|
|
71
|
-
// Helpers
|
|
72
|
-
@use "./helpers";
|
|
73
|
-
|
|
74
72
|
// Module System
|
|
75
73
|
@use "./module-system/" as module;
|
|
76
74
|
|
|
@@ -25,6 +25,9 @@ $kendo-border-radius-xxl: map.get($kendo-spacing, 4) !default;
|
|
|
25
25
|
/// The second largest border radius used across the Components.
|
|
26
26
|
/// @group radii
|
|
27
27
|
$kendo-border-radius-xxxl: map.get($kendo-spacing, 5) !default;
|
|
28
|
+
/// The largest border radius used across the Components.
|
|
29
|
+
/// @group radii
|
|
30
|
+
$kendo-border-radius-full: 9999px !default;
|
|
28
31
|
|
|
29
32
|
$_default-border-radii: (
|
|
30
33
|
none: $kendo-border-radius-none,
|
|
@@ -34,7 +37,8 @@ $_default-border-radii: (
|
|
|
34
37
|
lg: $kendo-border-radius-lg,
|
|
35
38
|
xl: $kendo-border-radius-xl,
|
|
36
39
|
xxl: $kendo-border-radius-xxl,
|
|
37
|
-
xxxl: $kendo-border-radius-xxxl
|
|
40
|
+
xxxl: $kendo-border-radius-xxxl,
|
|
41
|
+
full: $kendo-border-radius-full
|
|
38
42
|
) !default;
|
|
39
43
|
|
|
40
44
|
/// The global radii Map.
|
|
@@ -181,7 +181,7 @@ $_default-palette-cyber-yellow: (
|
|
|
181
181
|
15: #1f1600,
|
|
182
182
|
);
|
|
183
183
|
|
|
184
|
-
$_default-palette-
|
|
184
|
+
$_default-palette-denim-blue: (
|
|
185
185
|
1: #ebf4fc,
|
|
186
186
|
2: #e0effa,
|
|
187
187
|
3: #d6e9f9,
|
|
@@ -236,42 +236,68 @@ $_default-palette-lime-green: (
|
|
|
236
236
|
);
|
|
237
237
|
|
|
238
238
|
// stylelint-disable scss/no-global-function-names
|
|
239
|
+
/// The Gray Palette provides colors to the Base, Secondary, Light, Dark, and Inverse variable groups.
|
|
240
|
+
/// @group palette
|
|
239
241
|
$kendo-palette-gray: $_default-palette-gray !default;
|
|
240
242
|
$kendo-palette-gray: map-merge($_default-palette-gray, $kendo-palette-gray);
|
|
241
243
|
|
|
244
|
+
/// The Ocean Blue Palette provides colors to the Primary variable group.
|
|
245
|
+
/// @group palette
|
|
242
246
|
$kendo-palette-ocean-blue: $_default-palette-ocean-blue !default;
|
|
243
247
|
$kendo-palette-ocean-blue: map-merge($_default-palette-ocean-blue, $kendo-palette-ocean-blue);
|
|
244
248
|
|
|
249
|
+
/// The Crimson Red Palette provides colors to the Error variable group.
|
|
250
|
+
/// @group palette
|
|
245
251
|
$kendo-palette-crimson-red: $_default-palette-crimson-red !default;
|
|
246
252
|
$kendo-palette-crimson-red: map-merge($_default-palette-crimson-red, $kendo-palette-crimson-red);
|
|
247
253
|
|
|
254
|
+
/// The Dandelion Yellow Palette provides colors to the Warning variable group.
|
|
255
|
+
/// @group palette
|
|
248
256
|
$kendo-palette-dandelion-yellow: $_default-palette-dandelion-yellow !default;
|
|
249
257
|
$kendo-palette-dandelion-yellow: map-merge($_default-palette-dandelion-yellow, $kendo-palette-dandelion-yellow);
|
|
250
258
|
|
|
259
|
+
/// The Forest Green Palette provides colors to the Success variable group.
|
|
260
|
+
/// @group palette
|
|
251
261
|
$kendo-palette-forest-green: $_default-palette-forest-green !default;
|
|
252
262
|
$kendo-palette-forest-green: map-merge($_default-palette-forest-green, $kendo-palette-forest-green);
|
|
253
263
|
|
|
264
|
+
/// The Cobalt Blue Palette provides colors to the Info variable group.
|
|
265
|
+
/// @group palette
|
|
254
266
|
$kendo-palette-cobalt-blue: $_default-palette-cobalt-blue !default;
|
|
255
267
|
$kendo-palette-cobalt-blue: map-merge($_default-palette-cobalt-blue, $kendo-palette-cobalt-blue);
|
|
256
268
|
|
|
269
|
+
/// The Azure Blue Palette provides colors to the Tertiary variable group.
|
|
270
|
+
/// @group palette
|
|
257
271
|
$kendo-palette-azure-blue: $_default-palette-azure-blue !default;
|
|
258
272
|
$kendo-palette-azure-blue: map-merge($_default-palette-azure-blue, $kendo-palette-azure-blue);
|
|
259
273
|
|
|
274
|
+
/// The Sapphire Blue Palette provides colors to the Series A variable group.
|
|
275
|
+
/// @group palette
|
|
260
276
|
$kendo-palette-sapphire-blue: $_default-palette-sapphire-blue !default;
|
|
261
277
|
$kendo-palette-sapphire-blue: map-merge($_default-palette-sapphire-blue, $kendo-palette-sapphire-blue);
|
|
262
278
|
|
|
279
|
+
/// The Cardinal Red Palette provides colors to the Series B variable group.
|
|
280
|
+
/// @group palette
|
|
263
281
|
$kendo-palette-cardinal-red: $_default-palette-cardinal-red !default;
|
|
264
282
|
$kendo-palette-cardinal-red: map-merge($_default-palette-cardinal-red, $kendo-palette-cardinal-red);
|
|
265
283
|
|
|
284
|
+
/// The Cyber Yellow Palette provides colors to the Series C variable group.
|
|
285
|
+
/// @group palette
|
|
266
286
|
$kendo-palette-cyber-yellow: $_default-palette-cyber-yellow !default;
|
|
267
287
|
$kendo-palette-cyber-yellow: map-merge($_default-palette-cyber-yellow, $kendo-palette-cyber-yellow);
|
|
268
288
|
|
|
269
|
-
|
|
270
|
-
|
|
289
|
+
/// The Denim Blue Palette provides colors to the Series D variable group.
|
|
290
|
+
/// @group palette
|
|
291
|
+
$kendo-palette-denim-blue: $_default-palette-denim-blue !default;
|
|
292
|
+
$kendo-palette-denim-blue: map-merge($_default-palette-denim-blue, $kendo-palette-denim-blue);
|
|
271
293
|
|
|
294
|
+
/// The Iris Purple Palette provides colors to the Series E variable group.
|
|
295
|
+
/// @group palette
|
|
272
296
|
$kendo-palette-iris-purple: $_default-palette-iris-purple !default;
|
|
273
297
|
$kendo-palette-iris-purple: map-merge($_default-palette-iris-purple, $kendo-palette-iris-purple);
|
|
274
298
|
|
|
299
|
+
/// The Lime Green Palette provides colors to the Series F variable group.
|
|
300
|
+
/// @group palette
|
|
275
301
|
$kendo-palette-lime-green: $_default-palette-lime-green !default;
|
|
276
302
|
$kendo-palette-lime-green: map-merge($_default-palette-lime-green, $kendo-palette-lime-green);
|
|
277
303
|
// stylelint-enable scss/no-global-function-names
|
|
@@ -26,8 +26,6 @@
|
|
|
26
26
|
core.$kendo-disabled-bg: core.k-color( base-subtle );
|
|
27
27
|
core.$kendo-disabled-text: color-mix(in srgb, core.k-color( on-app-surface ) 46%, transparent);
|
|
28
28
|
core.$kendo-disabled-border: transparent;
|
|
29
|
-
core.$kendo-loading-bg: core.$kendo-component-bg;
|
|
30
|
-
core.$kendo-loading-text: currentColor;
|
|
31
29
|
|
|
32
30
|
core.$kendo-theme-colors: (
|
|
33
31
|
primary: (
|
|
@@ -56,6 +54,14 @@
|
|
|
56
54
|
border: core.k-color( error-subtle ),
|
|
57
55
|
),
|
|
58
56
|
);
|
|
57
|
+
|
|
58
|
+
core.$kendo-disabled-styling: (
|
|
59
|
+
bg: core.$kendo-disabled-bg,
|
|
60
|
+
color: core.$kendo-disabled-text,
|
|
61
|
+
border: core.$kendo-disabled-border,
|
|
62
|
+
opacity: core.$kendo-disabled-opacity,
|
|
63
|
+
filter: core.$kendo-disabled-filter,
|
|
64
|
+
);
|
|
59
65
|
}
|
|
60
66
|
|
|
61
67
|
:root {
|
|
@@ -72,6 +78,8 @@
|
|
|
72
78
|
--kendo-disabled-bg: #{core.$kendo-disabled-bg};
|
|
73
79
|
--kendo-disabled-text: #{core.$kendo-disabled-text};
|
|
74
80
|
--kendo-disabled-border: #{core.$kendo-disabled-border};
|
|
81
|
+
--kendo-disabled-opacity: #{core.$kendo-disabled-opacity};
|
|
82
|
+
--kendo-disabled-filter: #{core.$kendo-disabled-filter};
|
|
75
83
|
|
|
76
84
|
--kendo-hover-bg: #{core.$kendo-hover-bg};
|
|
77
85
|
--kendo-hover-text: #{core.$kendo-hover-text};
|