@progress/kendo-theme-fluent 6.4.1-dev.1 → 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 +86 -25
- package/dist/meta/sassdoc-data.json +5951 -3707
- package/dist/meta/sassdoc-raw-data.json +8154 -7029
- 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/chip/_layout.scss +4 -0
- 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/dropdowntree/_layout.scss +6 -6
- package/scss/dropdowntree/_variables.scss +5 -0
- package/scss/editor/_variables.scss +35 -29
- package/scss/expansion-panel/_variables.scss +34 -31
- package/scss/filter/_variables.scss +14 -14
- package/scss/icon/_layout.scss +5 -1
- package/scss/list/_layout.scss +1 -0
- 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/scheduler/_layout.scss +1 -0
- package/scss/scrollview/_variables.scss +36 -46
- package/scss/splitter/_layout.scss +1 -0
- package/scss/splitter/_variables.scss +7 -0
- package/scss/tilelayout/_variables.scss +8 -8
- package/scss/treelist/_layout.scss +6 -0
- package/scss/treeview/_layout.scss +6 -2
- package/scss/treeview/_variables.scss +5 -1
- package/scss/upload/_variables.scss +37 -37
- package/scss/window/_variables.scss +38 -38
|
@@ -2,97 +2,142 @@
|
|
|
2
2
|
@use "sass:math";
|
|
3
3
|
@use "../core/" as *;
|
|
4
4
|
|
|
5
|
-
///
|
|
5
|
+
/// The border radius of the Loader segment.
|
|
6
6
|
/// @group loader
|
|
7
7
|
$kendo-loader-segment-border-radius: 50% !default;
|
|
8
8
|
|
|
9
|
-
///
|
|
9
|
+
/// The size of the small Loader segment.
|
|
10
10
|
/// @group loader
|
|
11
11
|
$kendo-loader-sm-segment-size: map.get( $kendo-spacing, 1 ) !default;
|
|
12
|
+
/// The size of the medium Loader segment.
|
|
13
|
+
/// @group loader
|
|
12
14
|
$kendo-loader-md-segment-size: map.get( $kendo-spacing, 2 ) !default;
|
|
15
|
+
/// The size of the large Loader segment.
|
|
16
|
+
/// @group loader
|
|
13
17
|
$kendo-loader-lg-segment-size: map.get( $kendo-spacing, 4 ) !default;
|
|
14
18
|
|
|
15
|
-
///
|
|
19
|
+
/// The horizontal padding of the small Loader.
|
|
16
20
|
/// @group loader
|
|
17
21
|
$kendo-loader-sm-padding-x: math.div( $kendo-loader-sm-segment-size, 2 ) !default;
|
|
22
|
+
/// The horizontal padding of the medium Loader.
|
|
23
|
+
/// @group loader
|
|
18
24
|
$kendo-loader-md-padding-x: math.div( $kendo-loader-md-segment-size, 2 ) !default;
|
|
25
|
+
/// The horizontal padding of the large Loader.
|
|
26
|
+
/// @group loader
|
|
19
27
|
$kendo-loader-lg-padding-x: math.div( $kendo-loader-lg-segment-size, 2 ) !default;
|
|
20
28
|
|
|
21
|
-
///
|
|
29
|
+
/// The vertical padding of the small Loader.
|
|
22
30
|
/// @group loader
|
|
23
31
|
$kendo-loader-sm-padding-y: math.div( $kendo-loader-sm-segment-size, 2 ) !default;
|
|
32
|
+
/// The vertical padding of the medium Loader.
|
|
33
|
+
/// @group loader
|
|
24
34
|
$kendo-loader-md-padding-y: math.div( $kendo-loader-md-segment-size, 2 ) !default;
|
|
35
|
+
/// The vertical padding of the large Loader.
|
|
36
|
+
/// @group loader
|
|
25
37
|
$kendo-loader-lg-padding-y: math.div( $kendo-loader-lg-segment-size, 2 ) !default;
|
|
26
38
|
|
|
27
|
-
///
|
|
39
|
+
/// The equilateral height of the Loader.
|
|
28
40
|
/// @group loader
|
|
29
41
|
$kendo-loader-equilateral-height: .8660 !default;
|
|
30
42
|
|
|
31
|
-
///
|
|
43
|
+
/// The width of the small spinner-3 Loader.
|
|
32
44
|
/// @group loader
|
|
33
45
|
$kendo-loader-sm-spinner-3-width: ( $kendo-loader-sm-segment-size * 4 ) !default;
|
|
46
|
+
/// The width of the medium spinner-3 Loader.
|
|
47
|
+
/// @group loader
|
|
34
48
|
$kendo-loader-md-spinner-3-width: ( $kendo-loader-md-segment-size * 4 ) !default;
|
|
49
|
+
/// The width of the large spinner-3 Loader.
|
|
50
|
+
/// @group loader
|
|
35
51
|
$kendo-loader-lg-spinner-3-width: ( $kendo-loader-lg-segment-size * 4 ) !default;
|
|
36
52
|
|
|
37
|
-
///
|
|
53
|
+
/// The height of the small spinner-3 Loader.
|
|
38
54
|
/// @group loader
|
|
39
55
|
$kendo-loader-sm-spinner-3-height: ( $kendo-loader-sm-spinner-3-width * $kendo-loader-equilateral-height ) !default;
|
|
56
|
+
/// The height of the medium spinner-3 Loader.
|
|
57
|
+
/// @group loader
|
|
40
58
|
$kendo-loader-md-spinner-3-height: ( $kendo-loader-md-spinner-3-width * $kendo-loader-equilateral-height ) !default;
|
|
59
|
+
/// The height of the large spinner-3 Loader.
|
|
60
|
+
/// @group loader
|
|
41
61
|
$kendo-loader-lg-spinner-3-height: ( $kendo-loader-lg-spinner-3-width * $kendo-loader-equilateral-height ) !default;
|
|
42
62
|
|
|
43
|
-
///
|
|
63
|
+
/// The width of the small spinner-4 Loader.
|
|
44
64
|
/// @group loader
|
|
45
65
|
$kendo-loader-sm-spinner-4-width: ( $kendo-loader-sm-segment-size * 4 ) !default;
|
|
66
|
+
/// The width of the medium spinner-4 Loader.
|
|
67
|
+
/// @group loader
|
|
46
68
|
$kendo-loader-md-spinner-4-width: ( $kendo-loader-md-segment-size * 4 ) !default;
|
|
69
|
+
/// The width of the large spinner-4 Loader.
|
|
70
|
+
/// @group loader
|
|
47
71
|
$kendo-loader-lg-spinner-4-width: ( $kendo-loader-lg-segment-size * 4 ) !default;
|
|
48
72
|
|
|
49
|
-
///
|
|
73
|
+
/// The height of the small spinner-4 Loader.
|
|
50
74
|
/// @group loader
|
|
51
75
|
$kendo-loader-sm-spinner-4-height: $kendo-loader-sm-spinner-4-width !default;
|
|
76
|
+
/// The height of the medium spinner-4 Loader.
|
|
77
|
+
/// @group loader
|
|
52
78
|
$kendo-loader-md-spinner-4-height: $kendo-loader-md-spinner-4-width !default;
|
|
79
|
+
/// The height of the large spinner-4 Loader.
|
|
80
|
+
/// @group loader
|
|
53
81
|
$kendo-loader-lg-spinner-4-height: $kendo-loader-lg-spinner-4-width !default;
|
|
54
82
|
|
|
55
|
-
///
|
|
83
|
+
/// The border width of the container panel.
|
|
56
84
|
/// @group loader
|
|
57
85
|
$kendo-loader-container-panel-border-width: 1px !default;
|
|
58
|
-
///
|
|
86
|
+
/// The border style of the container panel.
|
|
59
87
|
/// @group loader
|
|
60
88
|
$kendo-loader-container-panel-border-style: solid !default;
|
|
61
|
-
///
|
|
89
|
+
/// The border color of the container panel.
|
|
62
90
|
/// @group loader
|
|
63
91
|
$kendo-loader-container-panel-border-color: var( --kendo-component-border, initial ) !default;
|
|
64
|
-
///
|
|
92
|
+
/// The border radius of the container panel.
|
|
65
93
|
/// @group loader
|
|
66
94
|
$kendo-loader-container-panel-border-radius: var( --kendo-border-radius-md, 0 ) !default;
|
|
67
|
-
///
|
|
95
|
+
/// The background color of the container panel.
|
|
68
96
|
/// @group loader
|
|
69
97
|
$kendo-loader-container-panel-bg: $kendo-color-white !default;
|
|
70
98
|
|
|
71
|
-
///
|
|
99
|
+
/// The horizontal padding of the small Loader container.
|
|
72
100
|
/// @group loader
|
|
73
101
|
$kendo-loader-sm-container-padding-x: map.get( $kendo-spacing, 4 ) !default;
|
|
102
|
+
/// The horizontal padding of the medium Loader container.
|
|
103
|
+
/// @group loader
|
|
74
104
|
$kendo-loader-md-container-padding-x: map.get( $kendo-spacing, 5 ) !default;
|
|
105
|
+
/// The horizontal padding of the large Loader container.
|
|
106
|
+
/// @group loader
|
|
75
107
|
$kendo-loader-lg-container-padding-x: map.get( $kendo-spacing, 6 ) !default;
|
|
76
108
|
|
|
77
|
-
///
|
|
109
|
+
/// The vertical padding of the small Loader container.
|
|
78
110
|
/// @group loader
|
|
79
111
|
$kendo-loader-sm-container-padding-y: map.get( $kendo-spacing, 4 ) !default;
|
|
112
|
+
/// The vertical padding of the medium Loader container.
|
|
113
|
+
/// @group loader
|
|
80
114
|
$kendo-loader-md-container-padding-y: map.get( $kendo-spacing, 5 ) !default;
|
|
115
|
+
/// The vertical padding of the large Loader container.
|
|
116
|
+
/// @group loader
|
|
81
117
|
$kendo-loader-lg-container-padding-y: map.get( $kendo-spacing, 6 ) !default;
|
|
82
118
|
|
|
83
|
-
///
|
|
119
|
+
/// The gap of the small Loader container.
|
|
84
120
|
/// @group loader
|
|
85
121
|
$kendo-loader-sm-container-gap: map.get( $kendo-spacing, 1 ) !default;
|
|
122
|
+
/// The gap of the medium Loader container.
|
|
123
|
+
/// @group loader
|
|
86
124
|
$kendo-loader-md-container-gap: map.get( $kendo-spacing, 2 ) !default;
|
|
125
|
+
/// The gap of the large Loader container.
|
|
126
|
+
/// @group loader
|
|
87
127
|
$kendo-loader-lg-container-gap: map.get( $kendo-spacing, 3 ) !default;
|
|
88
128
|
|
|
89
|
-
///
|
|
129
|
+
/// The font size of the small Loader container.
|
|
90
130
|
/// @group loader
|
|
91
131
|
$kendo-loader-sm-container-font-size: var( --kendo-font-size-sm, inherit ) !default;
|
|
132
|
+
/// The font size of the medium Loader container.
|
|
133
|
+
/// @group loader
|
|
92
134
|
$kendo-loader-md-container-font-size: var( --kendo-font-size-md, inherit ) !default;
|
|
135
|
+
/// The font size of the large Loader container.
|
|
136
|
+
/// @group loader
|
|
93
137
|
$kendo-loader-lg-container-font-size: var( --kendo-font-size-lg, inherit ) !default;
|
|
94
138
|
|
|
95
|
-
///
|
|
139
|
+
/// The theme variations for the Loader.
|
|
140
|
+
/// @group loader
|
|
96
141
|
$kendo-loader-brand-colors: (
|
|
97
142
|
primary: primary,
|
|
98
143
|
secondary: neutral,
|
|
@@ -116,7 +161,8 @@ $_tc-loader-light-matrix: (
|
|
|
116
161
|
(normal: (50, null, null)),
|
|
117
162
|
) !default;
|
|
118
163
|
|
|
119
|
-
///
|
|
164
|
+
/// The theme colors map for the Loader variations.
|
|
165
|
+
/// @group loader
|
|
120
166
|
$kendo-loader-theme-colors: () !default;
|
|
121
167
|
|
|
122
168
|
@each $ui-states in $_tc-loader-matrix {
|
|
@@ -1,55 +1,56 @@
|
|
|
1
1
|
@use "sass:map";
|
|
2
2
|
@use "../core/" as *;
|
|
3
3
|
|
|
4
|
-
///
|
|
4
|
+
/// The vertical padding of the Notification container.
|
|
5
5
|
/// @group notification
|
|
6
6
|
$kendo-notification-container-padding-y: $kendo-padding-sm-y !default;
|
|
7
7
|
|
|
8
|
-
///
|
|
8
|
+
/// The horizontal padding of the Notification.
|
|
9
9
|
/// @group notification
|
|
10
10
|
$kendo-notification-padding-x: map.get( $kendo-spacing, 3 ) !default;
|
|
11
|
-
///
|
|
11
|
+
/// The vertical padding of the Notification.
|
|
12
12
|
/// @group notification
|
|
13
13
|
$kendo-notification-padding-y: map.get( $kendo-spacing, 2 ) !default;
|
|
14
|
-
//
|
|
14
|
+
// The width of the border around the Notification.
|
|
15
15
|
/// @group notification
|
|
16
16
|
$kendo-notification-border-width: 1px !default;
|
|
17
|
-
///
|
|
17
|
+
/// The border radius of the Notification.
|
|
18
18
|
/// @group notification
|
|
19
19
|
$kendo-notification-border-radius: map.get( $kendo-spacing, 0.5 ) !default;
|
|
20
|
-
///
|
|
20
|
+
/// The font family of the Notification.
|
|
21
21
|
/// @group notification
|
|
22
22
|
$kendo-notification-font-family: var( --kendo-font-family, inherit ) !default;
|
|
23
|
-
///
|
|
23
|
+
/// The font size of the Notification.
|
|
24
24
|
/// @group notification
|
|
25
25
|
$kendo-notification-font-size: var( --kendo-font-size-sm, inherit ) !default;
|
|
26
|
-
///
|
|
26
|
+
/// The line height of the Notification.
|
|
27
27
|
/// @group notification
|
|
28
28
|
$kendo-notification-line-height: var( --kendo-line-height, normal ) !default;
|
|
29
|
-
///
|
|
29
|
+
/// The background color of the Notification.
|
|
30
30
|
/// @group notification
|
|
31
31
|
$kendo-notification-bg: var( --kendo-component-bg, inherit ) !default;
|
|
32
|
-
///
|
|
32
|
+
/// The text color of the Notification.
|
|
33
33
|
/// @group notification
|
|
34
34
|
$kendo-notification-text: var( --kendo-component-text, inherit ) !default;
|
|
35
|
-
///
|
|
35
|
+
/// The border color of the Notification.
|
|
36
36
|
/// @group notification
|
|
37
37
|
$kendo-notification-border: var( --kendo-component-border, inherit ) !default;
|
|
38
|
-
///
|
|
38
|
+
/// The box shadow of the Notification.
|
|
39
39
|
/// @group notification
|
|
40
40
|
$kendo-notification-box-shadow: none !default;
|
|
41
41
|
|
|
42
|
-
///
|
|
42
|
+
/// The horizontal spacing of the Notification icon.
|
|
43
43
|
/// @group notification
|
|
44
44
|
$kendo-notification-icon-spacing: map.get( $kendo-spacing, 2 ) !default;
|
|
45
|
-
///
|
|
45
|
+
/// The horizontal spacing of the Notification close icon.
|
|
46
46
|
/// @group notification
|
|
47
47
|
$kendo-notification-close-icon-spacing: map.get( $kendo-spacing, 4 ) !default;
|
|
48
|
-
///
|
|
48
|
+
/// The color of the Notification icon.
|
|
49
49
|
/// @group notification
|
|
50
50
|
$kendo-notification-icon-text: var( --kendo-component-text, inherit ) !default;
|
|
51
51
|
|
|
52
|
-
///
|
|
52
|
+
/// The theme variations for the Notification.
|
|
53
|
+
/// @group notification
|
|
53
54
|
$kendo-notification-brand-colors: (
|
|
54
55
|
primary: primary,
|
|
55
56
|
error: error,
|
|
@@ -73,7 +74,8 @@ $_tc-notification-light-matrix: (
|
|
|
73
74
|
(normal: (50, 160, 50)),
|
|
74
75
|
) !default;
|
|
75
76
|
|
|
76
|
-
///
|
|
77
|
+
/// The theme colors map for the Notification variations.
|
|
78
|
+
/// @group notification
|
|
77
79
|
$kendo-notification-theme-colors: () !default;
|
|
78
80
|
|
|
79
81
|
@each $ui-states in $_tc-notification-matrix {
|
|
@@ -3,89 +3,89 @@
|
|
|
3
3
|
@use "../window/_variables.scss"as *;
|
|
4
4
|
@use "../dialog/_variables.scss"as *;
|
|
5
5
|
|
|
6
|
-
///
|
|
6
|
+
/// The width of the border around the Popover.
|
|
7
7
|
/// @group popover
|
|
8
8
|
$kendo-popover-border-width: $kendo-dialog-border-width !default;
|
|
9
|
-
///
|
|
9
|
+
/// The style of the border around the Popover.
|
|
10
10
|
/// @group popover
|
|
11
11
|
$kendo-popover-border-style: solid !default;
|
|
12
|
-
///
|
|
12
|
+
/// The radius of the border around the Popover.
|
|
13
13
|
/// @group popover
|
|
14
14
|
$kendo-popover-border-radius: $kendo-window-border-radius !default;
|
|
15
|
-
///
|
|
16
|
-
/// @group popover
|
|
17
|
-
$kendo-popover-font-size: $kendo-window-font-size !default;
|
|
18
|
-
/// Font family of the popover.
|
|
15
|
+
/// The font family of the Popover.
|
|
19
16
|
/// @group popover
|
|
20
17
|
$kendo-popover-font-family: $kendo-window-font-family !default;
|
|
21
|
-
///
|
|
18
|
+
/// The font size of the Popover.
|
|
19
|
+
/// @group popover
|
|
20
|
+
$kendo-popover-font-size: $kendo-window-font-size !default;
|
|
21
|
+
/// The line height of the Popover.
|
|
22
22
|
/// @group popover
|
|
23
23
|
$kendo-popover-line-height: $kendo-window-line-height !default;
|
|
24
24
|
|
|
25
|
-
///
|
|
26
|
-
/// @group popover
|
|
27
|
-
$kendo-popover-bg: var( --kendo-component-bg, initial ) !default;
|
|
28
|
-
/// Text color of the popover.
|
|
25
|
+
/// The text color of the Popover.
|
|
29
26
|
/// @group popover
|
|
30
27
|
$kendo-popover-text: var( --kendo-component-text, initial ) !default;
|
|
31
|
-
///
|
|
28
|
+
/// The background color of the Popover.
|
|
29
|
+
/// @group popover
|
|
30
|
+
$kendo-popover-bg: var( --kendo-component-bg, initial ) !default;
|
|
31
|
+
/// The border color of the Popover.
|
|
32
32
|
/// @group popover
|
|
33
33
|
$kendo-popover-border: var( --kendo-component-border, initial ) !default;
|
|
34
|
-
///
|
|
34
|
+
/// The box shadow of the Popover.
|
|
35
35
|
/// @group popover
|
|
36
36
|
$kendo-popover-shadow: var( --kendo-box-shadow-depth-3, none ) !default;
|
|
37
37
|
|
|
38
|
-
///
|
|
38
|
+
/// The horizontal padding of the Popover header.
|
|
39
39
|
/// @group popover
|
|
40
40
|
$kendo-popover-header-padding-x: $kendo-dialog-titlebar-padding-x !default;
|
|
41
|
-
///
|
|
41
|
+
/// The vertical padding of the Popover header.
|
|
42
42
|
/// @group popover
|
|
43
43
|
$kendo-popover-header-padding-y: $kendo-dialog-titlebar-padding-y !default;
|
|
44
|
-
///
|
|
44
|
+
/// The border width of the Popover header.
|
|
45
45
|
/// @group popover
|
|
46
46
|
$kendo-popover-header-border-width: $kendo-dialog-titlebar-border-width !default;
|
|
47
|
-
///
|
|
47
|
+
/// The border style of the Popover header.
|
|
48
48
|
/// @group popover
|
|
49
49
|
$kendo-popover-header-border-style: $kendo-popover-border-style !default;
|
|
50
|
-
///
|
|
51
|
-
/// @group popover
|
|
52
|
-
$kendo-popover-header-bg: $kendo-dialog-titlebar-bg !default;
|
|
53
|
-
/// Text color of the popover header.
|
|
50
|
+
/// The text color of the Popover header.
|
|
54
51
|
/// @group popover
|
|
55
52
|
$kendo-popover-header-text: $kendo-dialog-titlebar-text !default;
|
|
56
|
-
///
|
|
53
|
+
/// The background color of the Popover header.
|
|
54
|
+
/// @group popover
|
|
55
|
+
$kendo-popover-header-bg: $kendo-dialog-titlebar-bg !default;
|
|
56
|
+
/// The border color of the Popover header.
|
|
57
57
|
/// @group popover
|
|
58
58
|
$kendo-popover-header-border: $kendo-dialog-titlebar-border !default;
|
|
59
59
|
|
|
60
|
-
///
|
|
60
|
+
/// The horizontal padding of the Popover body.
|
|
61
61
|
/// @group popover
|
|
62
62
|
$kendo-popover-body-padding-x: $kendo-window-inner-padding-x !default;
|
|
63
|
-
///
|
|
63
|
+
/// The vertical padding of the Popover body.
|
|
64
64
|
/// @group popover
|
|
65
65
|
$kendo-popover-body-padding-y: $kendo-window-inner-padding-y !default;
|
|
66
66
|
|
|
67
|
-
///
|
|
67
|
+
/// The border width of the Popover actions.
|
|
68
68
|
/// @group popover
|
|
69
69
|
$kendo-popover-actions-border-width: 0 !default;
|
|
70
|
-
///
|
|
70
|
+
/// The horizontal padding of the Popover actions.
|
|
71
71
|
/// @group popover
|
|
72
72
|
$kendo-popover-actions-padding-x: $kendo-popover-body-padding-x !default;
|
|
73
|
-
///
|
|
73
|
+
/// The vertical padding of the Popover actions.
|
|
74
74
|
/// @group popover
|
|
75
75
|
$kendo-popover-actions-padding-y: $kendo-popover-body-padding-y !default;
|
|
76
|
-
///
|
|
76
|
+
/// The spacing between the Popover actions.
|
|
77
77
|
/// @group popover
|
|
78
78
|
$kendo-popover-actions-gap: map.get( $kendo-spacing, 3 ) !default;
|
|
79
79
|
|
|
80
|
-
///
|
|
80
|
+
/// The width of the Popover callout.
|
|
81
81
|
/// @group popover
|
|
82
82
|
$kendo-popover-callout-width: map.get( $kendo-spacing, 5 ) !default;
|
|
83
|
-
///
|
|
83
|
+
/// The height of the Popover callout.
|
|
84
84
|
/// @group popover
|
|
85
85
|
$kendo-popover-callout-height: $kendo-popover-callout-width !default;
|
|
86
|
-
///
|
|
86
|
+
/// The border width of the Popover callout.
|
|
87
87
|
/// @group popover
|
|
88
88
|
$kendo-popover-callout-border-width: $kendo-popover-border-width !default;
|
|
89
|
-
///
|
|
89
|
+
/// The border style of the Popover callout.
|
|
90
90
|
/// @group popover
|
|
91
|
-
$kendo-popover-callout-border-style: $kendo-popover-border-style !default;
|
|
91
|
+
$kendo-popover-callout-border-style: $kendo-popover-border-style !default;
|
|
@@ -1,118 +1,114 @@
|
|
|
1
1
|
@use "sass:map";
|
|
2
2
|
@use "../core/" as *;
|
|
3
3
|
|
|
4
|
-
///
|
|
4
|
+
/// The height of the ProgressBar.
|
|
5
5
|
/// @group progressbar
|
|
6
6
|
$kendo-progressbar-height: 4px !default;
|
|
7
|
-
///
|
|
7
|
+
/// The horizontal width of the ProgressBar.
|
|
8
8
|
/// @group progressbar
|
|
9
9
|
$kendo-progressbar-horizontal-width: 100% !default;
|
|
10
|
-
///
|
|
10
|
+
/// The animation timing of the ProgressBar.
|
|
11
11
|
/// @group progressbar
|
|
12
12
|
$kendo-progressbar-animation-timing: 1s linear infinite !default;
|
|
13
|
-
///
|
|
13
|
+
/// The width of the border around the ProgressBar.
|
|
14
14
|
/// @group progressbar
|
|
15
15
|
$kendo-progressbar-border-width: 0px !default;
|
|
16
|
-
///
|
|
16
|
+
/// The border radius of the ProgressBar.
|
|
17
17
|
/// @group progressbar
|
|
18
18
|
$kendo-progressbar-border-radius: var( --kendo-border-radius-sm, initial ) !default;
|
|
19
|
-
|
|
20
|
-
/// Font family of the progressbar.
|
|
19
|
+
/// The font family of the ProgressBar.
|
|
21
20
|
/// @group progressbar
|
|
22
21
|
$kendo-progressbar-font-family: var( --kendo-font-family, inherit ) !default;
|
|
23
|
-
///
|
|
22
|
+
/// The font size of the ProgressBar.
|
|
24
23
|
/// @group progressbar
|
|
25
24
|
$kendo-progressbar-font-size: var( --kendo-font-size-sm, inherit ) !default;
|
|
26
|
-
///
|
|
25
|
+
/// The line height of the ProgressBar.
|
|
27
26
|
/// @group progressbar
|
|
28
27
|
$kendo-progressbar-line-height: var( --kendo-line-height, inherit ) !default;
|
|
29
|
-
|
|
30
|
-
/// Horizontal padding of the progressbar.
|
|
28
|
+
/// The horizontal padding of the ProgressBar.
|
|
31
29
|
/// @group progressbar
|
|
32
30
|
$kendo-progressbar-padding-x: 0 !default;
|
|
33
|
-
///
|
|
31
|
+
/// The vertical padding of the ProgressBar.
|
|
34
32
|
/// @group progressbar
|
|
35
33
|
$kendo-progressbar-padding-y: 0 !default;
|
|
36
34
|
|
|
37
|
-
///
|
|
35
|
+
/// The background color of the ProgressBar.
|
|
38
36
|
/// @group progressbar
|
|
39
37
|
$kendo-progressbar-bg: get-theme-color-var( neutral-30 ) !default;
|
|
40
|
-
///
|
|
38
|
+
/// The text color of the ProgressBar.
|
|
41
39
|
/// @group progressbar
|
|
42
40
|
$kendo-progressbar-text: var( --kendo-component-text, initial ) !default;
|
|
43
|
-
///
|
|
41
|
+
/// The border color of the ProgressBar.
|
|
44
42
|
/// @group progressbar
|
|
45
43
|
$kendo-progressbar-border: $kendo-progressbar-bg !default;
|
|
46
|
-
///
|
|
44
|
+
/// The background gradient of the ProgressBar.
|
|
47
45
|
/// @group progressbar
|
|
48
46
|
$kendo-progressbar-gradient: null !default;
|
|
49
47
|
|
|
50
|
-
///
|
|
51
|
-
/// @group progressbar
|
|
52
|
-
$kendo-progressbar-disabled-bg: get-theme-color-var( neutral-20 ) !default;
|
|
53
|
-
/// Text color of the disabled progressbar.
|
|
54
|
-
/// @group progressbar
|
|
55
|
-
$kendo-progressbar-disabled-text: get-theme-color-var( neutral-90 ) !default;
|
|
56
|
-
/// Border color of the disabled progressbar.
|
|
57
|
-
/// @group progressbar
|
|
58
|
-
$kendo-progressbar-disabled-border: $kendo-progressbar-disabled-bg !default;
|
|
59
|
-
|
|
60
|
-
/// Progress background color of the progressbar.
|
|
48
|
+
/// The progress background color of the ProgressBar.
|
|
61
49
|
/// @group progressbar
|
|
62
50
|
$kendo-progressbar-value-bg: get-theme-color-var( primary-100 ) !default;
|
|
63
|
-
///
|
|
51
|
+
/// The progress text color of the ProgressBar.
|
|
64
52
|
/// @group progressbar
|
|
65
53
|
$kendo-progressbar-value-text: var( --kendo-component-text, initial ) !default;
|
|
66
|
-
///
|
|
54
|
+
/// The progress border color of the ProgressBar.
|
|
67
55
|
/// @group progressbar
|
|
68
56
|
$kendo-progressbar-value-border: $kendo-progressbar-value-bg !default;
|
|
69
|
-
///
|
|
57
|
+
/// The progress background gradient of the ProgressBar.
|
|
70
58
|
/// @group progressbar
|
|
71
59
|
$kendo-progressbar-value-gradient: null !default;
|
|
72
60
|
|
|
73
|
-
///
|
|
61
|
+
/// The progress status offset of the ProgressBar.
|
|
74
62
|
/// @group progressbar
|
|
75
63
|
$kendo-progressbar-offset-y: map.get( $kendo-spacing, 2 ) !default;
|
|
76
|
-
///
|
|
64
|
+
/// The progress status offset of the vertical ProgressBar.
|
|
77
65
|
/// @group progressbar
|
|
78
66
|
$kendo-progressbar-vertical-status-offset: calc( (#{$kendo-progressbar-font-size} * #{$kendo-progressbar-line-height} + #{$kendo-progressbar-offset-y}) * -1) !default;
|
|
79
67
|
|
|
80
|
-
///
|
|
68
|
+
/// The background color of the disabled ProgressBar.
|
|
81
69
|
/// @group progressbar
|
|
82
|
-
$kendo-progressbar-
|
|
70
|
+
$kendo-progressbar-disabled-bg: get-theme-color-var( neutral-20 ) !default;
|
|
71
|
+
/// The text color of the disabled ProgressBar.
|
|
72
|
+
/// @group progressbar
|
|
73
|
+
$kendo-progressbar-disabled-text: get-theme-color-var( neutral-90 ) !default;
|
|
74
|
+
/// The border color of the disabled ProgressBar.
|
|
75
|
+
/// @group progressbar
|
|
76
|
+
$kendo-progressbar-disabled-border: $kendo-progressbar-disabled-bg !default;
|
|
83
77
|
|
|
84
|
-
///
|
|
78
|
+
/// The progress background color of the disabled ProgressBar.
|
|
85
79
|
/// @group progressbar
|
|
86
|
-
$kendo-progressbar-
|
|
80
|
+
$kendo-progressbar-value-disabled-bg: get-theme-color-var( primary-30 ) !default;
|
|
87
81
|
|
|
88
|
-
///
|
|
82
|
+
/// The background color of the indeterminate ProgressBar.
|
|
89
83
|
/// @group progressbar
|
|
90
84
|
$kendo-progressbar-indeterminate-bg: get-theme-color-var( neutral-30 ) !default;
|
|
91
|
-
///
|
|
85
|
+
/// The text color of the indeterminate ProgressBar.
|
|
92
86
|
/// @group progressbar
|
|
93
87
|
$kendo-progressbar-indeterminate-text: $kendo-progressbar-text !default;
|
|
94
|
-
///
|
|
88
|
+
/// The border color of the indeterminate ProgressBar.
|
|
95
89
|
/// @group progressbar
|
|
96
90
|
$kendo-progressbar-indeterminate-border: get-theme-color-var( neutral-30 ) !default;
|
|
97
|
-
///
|
|
91
|
+
/// The background gradient of the horizontal indeterminate ProgressBar.
|
|
98
92
|
/// @group progressbar
|
|
99
93
|
$kendo-progressbar-indeterminate-gradient-horizontal: linear-gradient(270deg, get-theme-color-var( neutral-30 ) 15%, get-theme-color-var( primary-100 ) 50%, get-theme-color-var( neutral-30 ) 85%) !default;
|
|
100
|
-
///
|
|
94
|
+
/// The background gradient of the vertical indeterminate ProgressBar.
|
|
101
95
|
/// @group progressbar
|
|
102
96
|
$kendo-progressbar-indeterminate-gradient-vertical: linear-gradient(180deg, get-theme-color-var( neutral-30 ) 15%, get-theme-color-var( primary-100 ) 50%, get-theme-color-var( neutral-30 ) 85%) !default;
|
|
103
|
-
///
|
|
97
|
+
/// The gradient size of the horizontal indeterminate ProgressBar.
|
|
104
98
|
/// @group progressbar
|
|
105
99
|
$kendo-progressbar-indeterminate-animation-horizontal: 3s ease 0s infinite running progressbar-indeterminate-animation-horizontal !default;
|
|
106
|
-
///
|
|
100
|
+
/// The gradient size of the vertical indeterminate ProgressBar.
|
|
107
101
|
/// @group progressbar
|
|
108
102
|
$kendo-progressbar-indeterminate-animation-vertical: 3s ease 0s infinite running progressbar-indeterminate-animation-vertical !default;
|
|
109
103
|
|
|
104
|
+
/// The border color of the chunk ProgressBar.
|
|
105
|
+
/// @group progressbar
|
|
106
|
+
$kendo-progressbar-chunk-border: var( --kendo-body-bg, initial ) !default;
|
|
107
|
+
|
|
110
108
|
// Circular Progressbar
|
|
111
|
-
///
|
|
109
|
+
/// The arc stroke color of the circular ProgressBar.
|
|
112
110
|
/// @group progressbar
|
|
113
111
|
$kendo-circular-progressbar-arc-stroke: get-theme-color-var( primary-100 ) !default;
|
|
114
|
-
///
|
|
112
|
+
/// The scale stroke background color of the circular ProgressBar.
|
|
115
113
|
/// @group progressbar
|
|
116
|
-
$kendo-circular-progressbar-scale-stroke: $kendo-progressbar-bg !default;
|
|
117
|
-
|
|
118
|
-
$kendo-progressbar-item-border-width: map.get( $kendo-spacing, 0.5 ) !default;
|
|
114
|
+
$kendo-circular-progressbar-scale-stroke: $kendo-progressbar-bg !default;
|