@progress/kendo-theme-fluent 6.5.0-dev.0 → 6.5.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 +48 -10
- package/dist/meta/sassdoc-data.json +5691 -3647
- package/dist/meta/sassdoc-raw-data.json +8024 -6999
- package/lib/swatches/all.json +1 -1
- package/lib/swatches/fluent-main.json +1 -1
- package/package.json +4 -4
- package/scss/appbar/_variables.scss +30 -29
- package/scss/bottom-navigation/_variables.scss +30 -34
- package/scss/breadcrumb/_layout.scss +37 -10
- package/scss/breadcrumb/_variables.scss +121 -30
- package/scss/coloreditor/_variables.scss +29 -30
- package/scss/colorgradient/_variables.scss +68 -68
- package/scss/colorpalette/_variables.scss +15 -15
- package/scss/dialog/_variables.scss +17 -17
- package/scss/editor/_variables.scss +35 -29
- package/scss/expansion-panel/_variables.scss +34 -31
- package/scss/filter/_variables.scss +14 -14
- package/scss/listbox/_variables.scss +15 -16
- package/scss/listview/_variables.scss +37 -37
- package/scss/loader/_variables.scss +66 -20
- package/scss/notification/_variables.scss +19 -17
- package/scss/popover/_variables.scss +34 -34
- package/scss/progressbar/_variables.scss +44 -48
- package/scss/scrollview/_variables.scss +36 -46
- package/scss/tilelayout/_variables.scss +8 -8
- package/scss/upload/_variables.scss +37 -37
- package/scss/window/_variables.scss +38 -38
|
@@ -1,104 +1,102 @@
|
|
|
1
1
|
@use "sass:map";
|
|
2
2
|
@use "../core/" as *;
|
|
3
3
|
|
|
4
|
-
///
|
|
4
|
+
/// The width of the border around the Window.
|
|
5
5
|
/// @group window
|
|
6
6
|
$kendo-window-border-width: map.get( $kendo-spacing, 1 ) 0 0 !default;
|
|
7
|
-
///
|
|
7
|
+
/// The border radius of the Window.
|
|
8
8
|
/// @group window
|
|
9
9
|
$kendo-window-border-radius: var( --kendo-border-radius-md, 0 ) !default;
|
|
10
|
-
///
|
|
10
|
+
/// The font family of the Window.
|
|
11
11
|
/// @group window
|
|
12
12
|
$kendo-window-font-family: var( --kendo-font-family, inherit ) !default;
|
|
13
|
-
///
|
|
13
|
+
/// The font size of the Window.
|
|
14
14
|
/// @group window
|
|
15
15
|
$kendo-window-font-size: var( --kendo-font-size, inherit ) !default;
|
|
16
|
-
///
|
|
16
|
+
/// The line height of the Window.
|
|
17
17
|
/// @group window
|
|
18
18
|
$kendo-window-line-height: var( --kendo-line-height, normal ) !default;
|
|
19
19
|
|
|
20
|
-
///
|
|
20
|
+
/// The horizontal padding of the Window titlebar.
|
|
21
21
|
/// @group window
|
|
22
22
|
$kendo-window-titlebar-padding-x: map.get( $kendo-spacing, 6 ) !default;
|
|
23
|
-
///
|
|
23
|
+
/// The vertical padding of the Window titlebar.
|
|
24
24
|
/// @group window
|
|
25
25
|
$kendo-window-titlebar-padding-y: map.get( $kendo-spacing, 5 ) !default;
|
|
26
|
-
///
|
|
26
|
+
/// The width of the border of the Window titlebar.
|
|
27
27
|
/// @group window
|
|
28
28
|
$kendo-window-titlebar-border-width: 0 !default;
|
|
29
|
-
///
|
|
29
|
+
/// The style of the border of the Window titlebar.
|
|
30
30
|
/// @group window
|
|
31
31
|
$kendo-window-titlebar-border-style: solid !default;
|
|
32
32
|
|
|
33
|
-
///
|
|
33
|
+
/// The font size of the title of the Window.
|
|
34
34
|
/// @group window
|
|
35
35
|
$kendo-window-title-font-size: var( --kendo-font-size-xl, inherit ) !default;
|
|
36
|
-
///
|
|
36
|
+
/// The line height of the title of the Window.
|
|
37
37
|
/// @group window
|
|
38
38
|
$kendo-window-title-line-height: var( --kendo-line-height, normal ) !default;
|
|
39
|
-
///
|
|
39
|
+
/// The font weight of the title of the Window.
|
|
40
40
|
/// @group window
|
|
41
41
|
$kendo-window-title-font-weight: var( --kendo-font-weight-bold, bold ) !default;
|
|
42
42
|
|
|
43
|
-
///
|
|
43
|
+
/// The spacing between the buttons in the Window titlebar.
|
|
44
44
|
/// @group window
|
|
45
45
|
$kendo-window-actions-gap: 0px !default;
|
|
46
|
-
|
|
47
|
-
/// Opacity of the buttons in the header of the window.
|
|
46
|
+
/// OThe opacity of the buttons in the Window titlebar.
|
|
48
47
|
/// @group window
|
|
49
48
|
$kendo-window-action-opacity: 1 !default;
|
|
50
|
-
///
|
|
49
|
+
/// The opacity of the hovered buttons in the Window titlebar.
|
|
51
50
|
/// @group window
|
|
52
51
|
$kendo-window-action-hover-opacity: 1 !default;
|
|
53
52
|
|
|
54
|
-
///
|
|
53
|
+
/// The horizontal padding of the content of the Window.
|
|
55
54
|
/// @group window
|
|
56
55
|
$kendo-window-inner-padding-x: map.get( $kendo-spacing, 6 ) !default;
|
|
57
|
-
///
|
|
56
|
+
/// The vertical padding of the content of the Window.
|
|
58
57
|
/// @group window
|
|
59
58
|
$kendo-window-inner-padding-y: map.get( $kendo-spacing, 3 ) !default;
|
|
60
59
|
|
|
61
|
-
///
|
|
60
|
+
/// The horizontal padding of the Window action buttons.
|
|
62
61
|
/// @group window
|
|
63
62
|
$kendo-window-buttongroup-padding-x: map.get( $kendo-spacing, 6 ) !default; // $kendo-actions-padding-x
|
|
64
|
-
///
|
|
63
|
+
/// The vertical padding of the Window action buttons.
|
|
65
64
|
/// @group window
|
|
66
65
|
$kendo-window-buttongroup-padding-y: map.get( $kendo-spacing, 6 ) !default; // $kendo-actions-padding-y
|
|
67
|
-
///
|
|
66
|
+
/// The width of the top border of the Window action buttons.
|
|
68
67
|
/// @group window
|
|
69
68
|
$kendo-window-buttongroup-border-width: 0 !default;
|
|
70
|
-
///
|
|
69
|
+
/// The spacing between the Window action buttons.
|
|
71
70
|
/// @group window
|
|
72
71
|
$kendo-window-buttongroup-spacing: map.get( $kendo-spacing, 3 ) !default;
|
|
73
72
|
|
|
74
|
-
///
|
|
73
|
+
/// The background color of the Window.
|
|
75
74
|
/// @group window
|
|
76
75
|
$kendo-window-bg: var( --kendo-component-bg, initial ) !default;
|
|
77
|
-
///
|
|
76
|
+
/// The text color of the Window.
|
|
78
77
|
/// @group window
|
|
79
78
|
$kendo-window-text: var( --kendo-component-text, initial ) !default;
|
|
80
|
-
///
|
|
79
|
+
/// The border color of the Window.
|
|
81
80
|
/// @group window
|
|
82
81
|
$kendo-window-border: get-theme-color-var( primary-100 ) !default;
|
|
82
|
+
/// The box shadow of the Window.
|
|
83
|
+
/// @group window
|
|
84
|
+
$kendo-window-shadow: var( --kendo-box-shadow-depth-4, none ) !default;
|
|
85
|
+
/// The box shadow of the focused Window.
|
|
86
|
+
/// @group window
|
|
87
|
+
$kendo-window-focus-shadow: var( --kendo-box-shadow-depth-4, none ) !default;
|
|
83
88
|
|
|
84
|
-
///
|
|
89
|
+
/// The background color of the Window titlebar.
|
|
85
90
|
/// @group window
|
|
86
91
|
$kendo-window-titlebar-bg: var( --kendo-component-bg, initial ) !default; // $kendo-component-header-bg
|
|
87
|
-
///
|
|
92
|
+
/// The text color of the Window titlebar.
|
|
88
93
|
/// @group window
|
|
89
94
|
$kendo-window-titlebar-text: get-theme-color-var( primary-100 ) !default; // $kendo-component-header-text
|
|
90
|
-
///
|
|
95
|
+
/// The border color of the Window titlebar.
|
|
91
96
|
/// @group window
|
|
92
97
|
$kendo-window-titlebar-border: get-theme-color-var( primary-100 ) !default;
|
|
93
98
|
|
|
94
|
-
///
|
|
95
|
-
/// @group window
|
|
96
|
-
$kendo-window-shadow: var( --kendo-box-shadow-depth-4, none ) !default;
|
|
97
|
-
/// Box shadow around the window when hovered.
|
|
98
|
-
/// @group window
|
|
99
|
-
$kendo-window-focus-shadow: var( --kendo-box-shadow-depth-4, none ) !default;
|
|
100
|
-
|
|
101
|
-
/// Map of the width of the different window sizes.
|
|
99
|
+
/// The map of the width of the different Window sizes.
|
|
102
100
|
/// @group window
|
|
103
101
|
$kendo-window-sizes: (
|
|
104
102
|
sm: 300px,
|
|
@@ -106,7 +104,8 @@ $kendo-window-sizes: (
|
|
|
106
104
|
lg: 1200px
|
|
107
105
|
) !default;
|
|
108
106
|
|
|
109
|
-
///
|
|
107
|
+
/// The theme variations for the Window.
|
|
108
|
+
/// @group window
|
|
110
109
|
$kendo-window-brand-colors: (
|
|
111
110
|
primary: primary
|
|
112
111
|
) !default;
|
|
@@ -124,7 +123,8 @@ $_tc-window-light-matrix: (
|
|
|
124
123
|
(normal: (50, 160, 50)),
|
|
125
124
|
) !default;
|
|
126
125
|
|
|
127
|
-
///
|
|
126
|
+
/// The theme colors map for the Window.
|
|
127
|
+
/// @group window
|
|
128
128
|
$kendo-window-theme-colors: () !default;
|
|
129
129
|
|
|
130
130
|
@each $ui-states in $_tc-window-matrix {
|