@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,99 +1,102 @@
|
|
|
1
1
|
@use "sass:map";
|
|
2
2
|
@use "../core/" as *;
|
|
3
3
|
|
|
4
|
-
///
|
|
4
|
+
/// The vertical spacing of the ExpansionPanel.
|
|
5
5
|
/// @group expander
|
|
6
6
|
$kendo-expander-margin-y: map.get( $kendo-spacing, 2 ) !default;
|
|
7
|
-
///
|
|
7
|
+
/// The width of the border around the ExpansionPanel.
|
|
8
8
|
/// @group expander
|
|
9
9
|
$kendo-expander-border-width: 1px !default;
|
|
10
|
-
///
|
|
10
|
+
/// The font family of the ExpansionPanel.
|
|
11
11
|
/// @group expander
|
|
12
12
|
$kendo-expander-font-family: var( --kendo-font-family, inherit ) !default;
|
|
13
|
-
///
|
|
13
|
+
/// The font size of the ExpansionPanel.
|
|
14
14
|
/// @group expander
|
|
15
15
|
$kendo-expander-font-size: var( --kendo-font-size, inherit ) !default;
|
|
16
|
-
///
|
|
16
|
+
/// The hine height of the ExpansionPanel.
|
|
17
17
|
/// @group expander
|
|
18
18
|
$kendo-expander-line-height: var( --kendo-line-height, normal ) !default;
|
|
19
19
|
|
|
20
|
-
///
|
|
20
|
+
/// The text color of the ExpansionPanel.
|
|
21
21
|
/// @group expander
|
|
22
22
|
$kendo-expander-text: var( --kendo-component-text, initial ) !default;
|
|
23
|
-
///
|
|
23
|
+
/// The background color of the ExpansionPanel.
|
|
24
24
|
/// @group expander
|
|
25
25
|
$kendo-expander-bg: get-theme-color-var( neutral-10 ) !default;
|
|
26
|
-
///
|
|
26
|
+
/// The border color of the ExpansionPanel.
|
|
27
27
|
/// @group expander
|
|
28
28
|
$kendo-expander-border: var( --kendo-component-border, initial ) !default;
|
|
29
|
-
///
|
|
29
|
+
/// The box shadow of the ExpansionPanel.
|
|
30
30
|
/// @group expander
|
|
31
31
|
$kendo-expander-shadow: inset 0 0 0 2px get-theme-color-var( neutral-30 ) !default;
|
|
32
32
|
|
|
33
|
-
///
|
|
33
|
+
/// The background color of the expanded ExpansionPanel.
|
|
34
34
|
/// @group expander
|
|
35
35
|
$kendo-expander-expanded-bg: var( --kendo-component-bg, initial ) !default;
|
|
36
36
|
|
|
37
|
-
///
|
|
38
|
-
/// @group expander
|
|
39
|
-
$kendo-expander-disabled-bg: var( --kendo-disabled-bg, initial ) !default;
|
|
40
|
-
/// Text color of the disabled expander.
|
|
37
|
+
/// The text color of the disabled ExpansionPanel.
|
|
41
38
|
/// @group expander
|
|
42
39
|
$kendo-expander-disabled-text: var( --kendo-disabled-text, initial ) !default;
|
|
43
|
-
///
|
|
40
|
+
/// The background color of the disabled ExpansionPanel.
|
|
41
|
+
/// @group expander
|
|
42
|
+
$kendo-expander-disabled-bg: var( --kendo-disabled-bg, initial ) !default;
|
|
43
|
+
|
|
44
|
+
/// The offset of the focused ExpansionPanel.
|
|
44
45
|
/// @group expander
|
|
45
46
|
$kendo-expander-focus-offset: 1px !default;
|
|
46
|
-
///
|
|
47
|
+
/// The outline width of the focused ExpansionPanel.
|
|
47
48
|
/// @group expander
|
|
48
49
|
$kendo-expander-focus-outline-width: 1px !default;
|
|
49
|
-
///
|
|
50
|
+
/// The outline style of the focused ExpansionPanel.
|
|
50
51
|
/// @group expander
|
|
51
52
|
$kendo-expander-focus-outline-style: solid !default;
|
|
52
|
-
/// The
|
|
53
|
+
/// The outline color of the focused ExpansionPanel.
|
|
53
54
|
/// @group expander
|
|
54
55
|
$kendo-expander-focus-outline: get-theme-color-var( neutral-130 ) !default;
|
|
55
56
|
|
|
56
|
-
///
|
|
57
|
+
/// The background color of the focused ExpansionPanel.
|
|
57
58
|
/// @group expander
|
|
58
59
|
$kendo-expander-focus-bg: var( --kendo-component-bg, initial ) !default;
|
|
59
|
-
///
|
|
60
|
+
/// The box shadow of the focused ExpansionPanel.
|
|
60
61
|
/// @group expander
|
|
61
62
|
$kendo-expander-focus-shadow: inset 0px 0px 0px 2px get-theme-color-var( neutral-130 ) !default;
|
|
62
63
|
|
|
63
|
-
///
|
|
64
|
+
/// The horizontal padding of the ExpansionPanel header.
|
|
64
65
|
/// @group expander
|
|
65
66
|
$kendo-expander-header-padding-x: map.get( $kendo-spacing, 4 ) !default;
|
|
66
|
-
///
|
|
67
|
+
/// The vertical padding of the ExpansionPanel header.
|
|
67
68
|
/// @group expander
|
|
68
69
|
$kendo-expander-header-padding-y: map.get( $kendo-spacing, 3 ) !default;
|
|
69
|
-
|
|
70
|
+
|
|
71
|
+
/// The text color of the ExpansionPanel header.
|
|
70
72
|
/// @group expander
|
|
71
73
|
$kendo-expander-header-text: get-theme-color-var( primary-100 ) !default;
|
|
72
|
-
///
|
|
74
|
+
/// The background color of the ExpansionPanel header.
|
|
73
75
|
/// @group expander
|
|
74
76
|
$kendo-expander-header-bg: inherit !default;
|
|
75
|
-
|
|
77
|
+
|
|
78
|
+
/// The background color of the hovered ExpansionPanel header.
|
|
76
79
|
/// @group expander
|
|
77
80
|
$kendo-expander-header-hover-bg: get-theme-color-var( neutral-20 ) !default;
|
|
78
81
|
|
|
79
|
-
///
|
|
82
|
+
/// The text color of the ExpansionPanel title.
|
|
80
83
|
/// @group expander
|
|
81
84
|
$kendo-expander-title-text: get-theme-color-var( primary-100 ) !default;
|
|
82
85
|
|
|
83
|
-
///
|
|
86
|
+
/// The text color of the ExpansionPanel sub-title.
|
|
84
87
|
/// @group expander
|
|
85
88
|
$kendo-expander-header-sub-title-text: var( --kendo-subtle-text, initial ) !default;
|
|
86
89
|
|
|
87
|
-
///
|
|
90
|
+
/// The horizontal margin of the ExpansionPanel indicator.
|
|
88
91
|
/// @group expander
|
|
89
92
|
$kendo-expander-indicator-margin-x: map.get( $kendo-spacing, 2.5 ) !default;
|
|
90
|
-
///
|
|
93
|
+
/// The text color of the ExpansionPanel indicator.
|
|
91
94
|
/// @group expander
|
|
92
95
|
$kendo-expander-indicator-text: var( --kendo-expander-text, #{$kendo-expander-text} ) !default;
|
|
93
96
|
|
|
94
|
-
///
|
|
97
|
+
/// The horizontal padding of the ExpansionPanel content.
|
|
95
98
|
/// @group expander
|
|
96
99
|
$kendo-expander-content-padding-x: map.get( $kendo-spacing, 4 ) !default;
|
|
97
|
-
///
|
|
100
|
+
/// The vertical padding of the ExpansionPanel content.
|
|
98
101
|
/// @group expander
|
|
99
102
|
$kendo-expander-content-padding-y: map.get( $kendo-spacing, 4 ) !default;
|
|
@@ -1,38 +1,38 @@
|
|
|
1
1
|
@use "../core/" as *;
|
|
2
2
|
|
|
3
|
-
///
|
|
3
|
+
/// The horizontal padding of the Filter.
|
|
4
4
|
/// @group filter
|
|
5
5
|
$kendo-filter-padding-x: $kendo-padding-md-x !default;
|
|
6
|
-
///
|
|
6
|
+
/// The vertical padding of the Filter.
|
|
7
7
|
/// @group filter
|
|
8
8
|
$kendo-filter-padding-y: $kendo-padding-md-y !default;
|
|
9
9
|
|
|
10
|
-
///
|
|
10
|
+
/// The bottom margin of the Filter.
|
|
11
11
|
/// @group filter
|
|
12
12
|
$kendo-filter-bottom-margin: 30px !default;
|
|
13
|
-
///
|
|
13
|
+
/// The width of the line that connects the Filter items.
|
|
14
14
|
/// @group filter
|
|
15
15
|
$kendo-filter-line-size: 1px !default;
|
|
16
16
|
|
|
17
|
-
///
|
|
17
|
+
/// The width of the dropdown elements in the Filter items.
|
|
18
18
|
/// @group filter
|
|
19
19
|
$kendo-filter-operator-dropdown-width: 15em !default;
|
|
20
20
|
|
|
21
|
-
///
|
|
21
|
+
/// The text color of the Filter.
|
|
22
|
+
/// @group filter
|
|
23
|
+
$kendo-filter-text: var( --kendo-component-text, initial ) !default;
|
|
24
|
+
|
|
25
|
+
/// The text color of the Filter preview field.
|
|
22
26
|
/// @group filter
|
|
23
27
|
$kendo-filter-preview-field-text: get-theme-color-var( primary-100 ) !default;
|
|
24
|
-
///
|
|
28
|
+
/// The text color of the Filter preview operator.
|
|
25
29
|
/// @group filter
|
|
26
30
|
$kendo-filter-preview-operator-text: get-theme-color-var( neutral-130 ) !default;
|
|
27
31
|
|
|
28
|
-
///
|
|
29
|
-
/// @group filter
|
|
30
|
-
$kendo-filter-text: var( --kendo-component-text, initial ) !default;
|
|
31
|
-
|
|
32
|
-
/// Background color of the line that connects the filter items.
|
|
32
|
+
/// The background color of the line that connects the Filter items.
|
|
33
33
|
/// @group filter
|
|
34
34
|
$kendo-filter-line-bg: var( --kendo-component-border, initial ) !default;
|
|
35
35
|
|
|
36
|
-
///
|
|
36
|
+
/// The border color of the focused Filter.
|
|
37
37
|
/// @group filter
|
|
38
|
-
$kendo-filter-toolbar-focus-border: get-theme-color-var( neutral-130 ) !default;
|
|
38
|
+
$kendo-filter-toolbar-focus-border: get-theme-color-var( neutral-130 ) !default;
|
|
@@ -1,45 +1,44 @@
|
|
|
1
1
|
@use "sass:map";
|
|
2
2
|
@use "../core/" as *;
|
|
3
3
|
|
|
4
|
-
///
|
|
4
|
+
/// The spacing between the ListBox elements.
|
|
5
5
|
/// @group listbox
|
|
6
6
|
$kendo-listbox-spacing: map.get( $kendo-spacing, 2 ) !default;
|
|
7
|
-
///
|
|
7
|
+
/// The spacing between the ListBox buttons.
|
|
8
8
|
/// @group listbox
|
|
9
9
|
$kendo-listbox-button-spacing: map.get( $kendo-spacing, 2 ) !default;
|
|
10
|
-
///
|
|
10
|
+
/// WThe width of the ListBox.
|
|
11
11
|
/// @group listbox
|
|
12
12
|
$kendo-listbox-width: 10em !default;
|
|
13
|
-
///
|
|
13
|
+
/// The height of the ListBox.
|
|
14
14
|
/// @group listbox
|
|
15
15
|
$kendo-listbox-height: 200px !default;
|
|
16
|
-
|
|
17
|
-
/// Border width of the listbox.
|
|
16
|
+
/// The width of the border around the ListBox.
|
|
18
17
|
/// @group listbox
|
|
19
18
|
$kendo-listbox-border-width: 1px !default;
|
|
20
|
-
///
|
|
19
|
+
/// The font family of the ListBox.
|
|
21
20
|
/// @group listbox
|
|
22
21
|
$kendo-listbox-font-family: var( --kendo-font-family, normal ) !default;
|
|
23
|
-
///
|
|
22
|
+
/// The font size of the ListBox.
|
|
24
23
|
/// @group listbox
|
|
25
24
|
$kendo-listbox-font-size: var( --kendo-font-size, inherit ) !default;
|
|
26
|
-
///
|
|
25
|
+
/// The line height of the ListBox.
|
|
27
26
|
/// @group listbox
|
|
28
27
|
$kendo-listbox-line-height: var( --kendo-line-height, normal ) !default;
|
|
29
28
|
|
|
30
|
-
///
|
|
31
|
-
/// @group listbox
|
|
32
|
-
$kendo-listbox-bg: var( --kendo-component-bg, transparent ) !default;
|
|
33
|
-
/// Text color of the listbox component.
|
|
29
|
+
/// The text color of the ListBox.
|
|
34
30
|
/// @group listbox
|
|
35
31
|
$kendo-listbox-text: var( --kendo-component-text, inherit ) !default;
|
|
36
|
-
///
|
|
32
|
+
/// The background color of the ListBox.
|
|
33
|
+
/// @group listbox
|
|
34
|
+
$kendo-listbox-bg: var( --kendo-component-bg, transparent ) !default;
|
|
35
|
+
/// The border color of the ListBox.
|
|
37
36
|
/// @group listbox
|
|
38
37
|
$kendo-listbox-border: var( --kendo-component-border, inherit ) !default;
|
|
39
38
|
|
|
40
|
-
///
|
|
39
|
+
/// The width of the ListBox drop hint.
|
|
41
40
|
/// @group listbox
|
|
42
41
|
$kendo-listbox-drop-hint-width: 1px !default;
|
|
43
|
-
///
|
|
42
|
+
/// The border color of the ListBox drop hint.
|
|
44
43
|
/// @group listbox
|
|
45
44
|
$kendo-listbox-drop-hint-border-color: get-theme-color-var( primary-100 ) !default;
|
|
@@ -2,91 +2,91 @@
|
|
|
2
2
|
@use "../core/" as *;
|
|
3
3
|
@use "../list/_variables.scss"as *;
|
|
4
4
|
|
|
5
|
-
///
|
|
5
|
+
/// The horizontal padding of the ListView.
|
|
6
6
|
/// @group listview
|
|
7
7
|
$kendo-listview-padding-x: map.get( $kendo-spacing, 1 ) !default;
|
|
8
|
-
///
|
|
8
|
+
/// The vertical padding of the ListView.
|
|
9
9
|
/// @group listview
|
|
10
10
|
$kendo-listview-padding-y: map.get( $kendo-spacing, 1 ) !default;
|
|
11
|
-
///
|
|
11
|
+
/// The width of the border around bordered ListView.
|
|
12
12
|
/// @group listview
|
|
13
13
|
$kendo-listview-border-width: 1px !default;
|
|
14
14
|
|
|
15
|
-
///
|
|
15
|
+
/// The horizontal padding of the ListView header.
|
|
16
16
|
/// @group listview
|
|
17
17
|
$kendo-listview-header-padding-x: map.get( $kendo-spacing, 4 ) !default;
|
|
18
|
-
///
|
|
18
|
+
/// The vertical padding of the ListView header.
|
|
19
19
|
/// @group listview
|
|
20
20
|
$kendo-listview-header-padding-y: map.get( $kendo-spacing, 2 ) !default;
|
|
21
21
|
|
|
22
|
-
///
|
|
22
|
+
/// The horizontal padding of the ListView footer.
|
|
23
23
|
/// @group listview
|
|
24
24
|
$kendo-listview-footer-padding-x: $kendo-listview-header-padding-x !default;
|
|
25
|
-
///
|
|
25
|
+
/// The vertical padding of the ListView footer.
|
|
26
26
|
/// @group listview
|
|
27
27
|
$kendo-listview-footer-padding-y: $kendo-listview-header-padding-y !default;
|
|
28
28
|
|
|
29
|
-
///
|
|
29
|
+
/// The horizontal padding of the ListView items.
|
|
30
30
|
/// @group listview
|
|
31
31
|
$kendo-listview-item-padding-x: map.get( $kendo-spacing, 1 ) !default;
|
|
32
|
-
///
|
|
32
|
+
/// The vertical padding of the ListView items.
|
|
33
33
|
/// @group listview
|
|
34
34
|
$kendo-listview-item-padding-y: map.get( $kendo-spacing, 1 ) !default;
|
|
35
35
|
|
|
36
|
-
///
|
|
36
|
+
/// The font family of the ListView.
|
|
37
37
|
/// @group listview
|
|
38
38
|
$kendo-listview-font-family: var( --kendo-font-family, initial ) !default;
|
|
39
|
-
///
|
|
39
|
+
/// The font size of the ListView.
|
|
40
40
|
/// @group listview
|
|
41
41
|
$kendo-listview-font-size: var( --kendo-font-size, initial ) !default;
|
|
42
|
-
///
|
|
42
|
+
/// The line height of the ListView.
|
|
43
43
|
/// @group listview
|
|
44
44
|
$kendo-listview-line-height: var( --kendo-line-height, initial ) !default;
|
|
45
45
|
|
|
46
|
-
///
|
|
46
|
+
/// The gap between items of ListView with grid layout.
|
|
47
47
|
/// @group listview
|
|
48
48
|
$kendo-listview-grid-gap: map.get( $kendo-spacing, 0 ) !default;
|
|
49
49
|
|
|
50
|
-
///
|
|
50
|
+
/// The text color of the ListView.
|
|
51
51
|
/// @group listview
|
|
52
52
|
$kendo-listview-text: var( --kendo-component-text, initial ) !default;
|
|
53
|
-
///
|
|
53
|
+
/// The background color of the ListView.
|
|
54
54
|
/// @group listview
|
|
55
55
|
$kendo-listview-bg: var( --kendo-component-bg, initial ) !default;
|
|
56
|
-
///
|
|
56
|
+
/// The border color of the ListView.
|
|
57
57
|
/// @group listview
|
|
58
58
|
$kendo-listview-border: var( --kendo-component-border, initial ) !default;
|
|
59
59
|
|
|
60
|
-
///
|
|
60
|
+
/// The text color of the ListView header.
|
|
61
61
|
/// @group listview
|
|
62
|
-
$kendo-listview-
|
|
63
|
-
///
|
|
62
|
+
$kendo-listview-header-text: initial !default;
|
|
63
|
+
/// The background color of the ListView header.
|
|
64
64
|
/// @group listview
|
|
65
|
-
$kendo-listview-
|
|
66
|
-
///
|
|
65
|
+
$kendo-listview-header-bg: initial !default;
|
|
66
|
+
/// The border color of the ListView header.
|
|
67
67
|
/// @group listview
|
|
68
|
-
$kendo-listview-
|
|
68
|
+
$kendo-listview-header-border: $kendo-listview-border !default;
|
|
69
69
|
|
|
70
|
-
///
|
|
70
|
+
/// The text color of the ListView footer.
|
|
71
71
|
/// @group listview
|
|
72
|
-
$kendo-listview-
|
|
73
|
-
///
|
|
72
|
+
$kendo-listview-footer-text: initial !default;
|
|
73
|
+
/// The background color of the ListView footer.
|
|
74
74
|
/// @group listview
|
|
75
|
-
$kendo-listview-
|
|
75
|
+
$kendo-listview-footer-bg: initial !default;
|
|
76
76
|
|
|
77
|
-
///
|
|
78
|
-
/// @group listview
|
|
79
|
-
$kendo-listview-header-text: initial !default;
|
|
80
|
-
/// Background color of listview.
|
|
77
|
+
/// The text color of the selected ListView items.
|
|
81
78
|
/// @group listview
|
|
82
|
-
$kendo-listview-
|
|
83
|
-
///
|
|
79
|
+
$kendo-listview-item-selected-text: initial !default;
|
|
80
|
+
/// The background color of the selected ListView items.
|
|
84
81
|
/// @group listview
|
|
85
|
-
$kendo-listview-
|
|
82
|
+
$kendo-listview-item-selected-bg: get-theme-color-var( neutral-20 ) !default;
|
|
86
83
|
|
|
87
|
-
///
|
|
84
|
+
/// The text color of the focused ListView items.
|
|
88
85
|
/// @group listview
|
|
89
|
-
$kendo-listview-
|
|
90
|
-
///
|
|
86
|
+
$kendo-listview-item-focus-text: initial !default;
|
|
87
|
+
/// The background color of the focused ListView items.
|
|
91
88
|
/// @group listview
|
|
92
|
-
$kendo-listview-
|
|
89
|
+
$kendo-listview-item-focus-bg: initial !default;
|
|
90
|
+
/// The box shadow of the focused ListView items.
|
|
91
|
+
/// @group listview
|
|
92
|
+
$kendo-listview-item-focus-shadow: var( --kendo-list-item-focus-shadow, $kendo-list-item-focus-shadow ) !default;
|
|
@@ -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 {
|