@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
|
@@ -1,106 +1,96 @@
|
|
|
1
1
|
@use "../core/" as *;
|
|
2
2
|
@use "../button/_variables.scss"as *;
|
|
3
3
|
|
|
4
|
-
///
|
|
4
|
+
/// The width of the border around the ScrollView.
|
|
5
5
|
/// @group scrollview
|
|
6
6
|
$kendo-scrollview-border-width: 0px !default;
|
|
7
|
-
///
|
|
7
|
+
/// The font family of the ScrollView.
|
|
8
8
|
/// @group scrollview
|
|
9
9
|
$kendo-scrollview-font-family: var( --kendo-font-family, inherit ) !default;
|
|
10
|
-
///
|
|
10
|
+
/// The font size of the ScrollView.
|
|
11
11
|
/// @group scrollview
|
|
12
12
|
$kendo-scrollview-font-size: var( --kendo-font-size, inherit ) !default;
|
|
13
|
-
///
|
|
13
|
+
/// The line height of the ScrollView.
|
|
14
14
|
/// @group scrollview
|
|
15
15
|
$kendo-scrollview-line-height: var( --kendo-line-height, normal ) !default;
|
|
16
16
|
|
|
17
|
-
///
|
|
18
|
-
/// @group scrollview
|
|
19
|
-
$kendo-scrollview-bg: var( --kendo-component-bg, inherit ) !default;
|
|
20
|
-
/// Text color of the scrollview.
|
|
17
|
+
/// The text color of the ScrollView.
|
|
21
18
|
/// @group scrollview
|
|
22
19
|
$kendo-scrollview-text: var( --kendo-component-text, inherit ) !default;
|
|
23
|
-
///
|
|
20
|
+
/// The background color of the ScrollView.
|
|
21
|
+
/// @group scrollview
|
|
22
|
+
$kendo-scrollview-bg: var( --kendo-component-bg, inherit ) !default;
|
|
23
|
+
/// The border color of the ScrollView.
|
|
24
24
|
/// @group scrollview
|
|
25
25
|
$kendo-scrollview-border: var( --kendo-component-border, inherit ) !default;
|
|
26
26
|
|
|
27
|
-
///
|
|
27
|
+
/// The size of the ScrollView page button.
|
|
28
28
|
/// @group scrollview
|
|
29
29
|
$kendo-scrollview-pagebutton-size: 10px !default;
|
|
30
|
-
///
|
|
30
|
+
/// The background color of the ScrollView page button.
|
|
31
31
|
/// @group scrollview
|
|
32
32
|
$kendo-scrollview-pagebutton-bg: $kendo-color-white !default;
|
|
33
|
-
///
|
|
33
|
+
/// The border color of the ScrollView page button.
|
|
34
34
|
/// @group scrollview
|
|
35
35
|
$kendo-scrollview-pagebutton-border: $kendo-scrollview-pagebutton-bg !default;
|
|
36
|
-
///
|
|
36
|
+
/// The primary background color of the ScrollView page button.
|
|
37
37
|
/// @group scrollview
|
|
38
38
|
$kendo-scrollview-pagebutton-primary-bg: get-theme-color-var( primary-100 ) !default;
|
|
39
|
-
///
|
|
39
|
+
/// The primary border color of the ScrollView page button.
|
|
40
40
|
/// @group scrollview
|
|
41
41
|
$kendo-scrollview-pagebutton-primary-border: $kendo-scrollview-pagebutton-primary-bg !default;
|
|
42
|
-
///
|
|
42
|
+
/// The hover box shadow of the ScrollView page button.
|
|
43
43
|
/// @group scrollview
|
|
44
44
|
$kendo-scrollview-pagebutton-hover-shadow: 0 0 0 1px get-theme-color-var( neutral-30 ) !default;
|
|
45
|
-
///
|
|
45
|
+
/// The focus box shadow of the ScrollView page button.
|
|
46
46
|
/// @group scrollview
|
|
47
47
|
$kendo-scrollview-pagebutton-focus-shadow: 0 0 0 1px get-theme-color-var( neutral-130 ) !default;
|
|
48
|
-
///
|
|
48
|
+
/// The primary hover box shadow of the ScrollView page button.
|
|
49
49
|
/// @group scrollview
|
|
50
50
|
$kendo-scrollview-pagebutton-primary-hover-shadow: 0 0 0 2px get-theme-color-var( neutral-30 ) !default;
|
|
51
|
-
///
|
|
51
|
+
/// The primary focus box shadow of the ScrollView page button.
|
|
52
52
|
/// @group scrollview
|
|
53
53
|
$kendo-scrollview-pagebutton-primary-focus-shadow: 0 0 0 2px get-theme-color-var( neutral-130 ) !default;
|
|
54
54
|
|
|
55
|
-
///
|
|
55
|
+
/// The offset of the ScrollView pager.
|
|
56
56
|
/// @group scrollview
|
|
57
57
|
$kendo-scrollview-pager-offset: 0px !default;
|
|
58
|
-
///
|
|
58
|
+
/// The spacing between the ScrollView pager items.
|
|
59
59
|
/// @group scrollview
|
|
60
60
|
$kendo-scrollview-pager-item-spacing: 20px !default;
|
|
61
|
-
///
|
|
61
|
+
/// The border width of the ScrollView pager items.
|
|
62
62
|
/// @group scrollview
|
|
63
63
|
$kendo-scrollview-pager-item-border-width: 0px !default;
|
|
64
|
-
///
|
|
64
|
+
/// The height of the ScrollView pager.
|
|
65
65
|
/// @group scrollview
|
|
66
66
|
$kendo-scrollview-pager-height: calc( #{$kendo-scrollview-pagebutton-size} + #{$kendo-scrollview-pager-item-border-width * 2} + #{$kendo-scrollview-pager-item-spacing * 2} ) !default;
|
|
67
67
|
|
|
68
|
-
///
|
|
69
|
-
/// @group scrollview
|
|
70
|
-
$kendo-scrollview-pager-multidot-threshold: 10 !default;
|
|
71
|
-
/// Scrollview pager multidot intermediate.
|
|
72
|
-
/// @group scrollview
|
|
73
|
-
$kendo-scrollview-pager-multidot-intermediate: 3 !default;
|
|
74
|
-
/// Scrollview pager multidot step.
|
|
75
|
-
/// @group scrollview
|
|
76
|
-
$kendo-scrollview-pager-multidot-step: 1px !default;
|
|
77
|
-
|
|
78
|
-
/// Scrollview pager light background color.
|
|
79
|
-
/// @group scrollview
|
|
80
|
-
$kendo-scrollview-pager-light-bg: rgba( $kendo-color-white, .4 ) !default;
|
|
81
|
-
/// Scrollview pager dark background color.
|
|
82
|
-
/// @group scrollview
|
|
83
|
-
$kendo-scrollview-pager-dark-bg: rgba( $kendo-color-black, .4 ) !default;
|
|
84
|
-
|
|
85
|
-
/// Scrollview navigation text color.
|
|
68
|
+
/// The color of the ScrollView navigation arrows.
|
|
86
69
|
/// @group scrollview
|
|
87
70
|
$kendo-scrollview-navigation-color: $kendo-color-white !default;
|
|
88
|
-
///
|
|
71
|
+
/// The box shadow of the ScrollView navigation arrows.
|
|
89
72
|
/// @group scrollview
|
|
90
73
|
$kendo-scrollview-navigation-arrow-shadow: var( --kendo-box-shadow-depth-3, none ) !default;
|
|
91
|
-
///
|
|
74
|
+
/// The background color of the ScrollView navigation.
|
|
92
75
|
/// @group scrollview
|
|
93
76
|
$kendo-scrollview-navigation-bg: transparent !default;
|
|
94
|
-
///
|
|
77
|
+
/// The focus box shadow of the ScrollView navigation arrows.
|
|
95
78
|
/// @group scrollview
|
|
96
79
|
$kendo-scrollview-navigation-focus-shadow: 0 0 0 1px get-theme-color-var( neutral-130 ) !default;
|
|
97
|
-
///
|
|
80
|
+
/// The hover box shadow of the ScrollView navigation arrows.
|
|
98
81
|
/// @group scrollview
|
|
99
82
|
$kendo-scrollview-navigation-arrow-hover-shadow: var( --kendo-box-shadow-depth-4, none ) !default;
|
|
100
83
|
|
|
101
|
-
///
|
|
84
|
+
/// The background color of the ScrollView pager in light mode.
|
|
85
|
+
/// @group scrollview
|
|
86
|
+
$kendo-scrollview-pager-light-bg: rgba( $kendo-color-white, .4 ) !default;
|
|
87
|
+
/// The background color of the ScrollView pager in dark mode.
|
|
88
|
+
/// @group scrollview
|
|
89
|
+
$kendo-scrollview-pager-dark-bg: rgba( $kendo-color-black, .4 ) !default;
|
|
90
|
+
|
|
91
|
+
/// The duration of the ScrollView transition.
|
|
102
92
|
/// @group scrollview
|
|
103
93
|
$kendo-scrollview-transition-duration: .3s !default;
|
|
104
|
-
///
|
|
94
|
+
/// The timing function of the ScrollView transition.
|
|
105
95
|
/// @group scrollview
|
|
106
96
|
$kendo-scrollview-transition-timing-function: ease-in-out !default;
|
|
@@ -59,6 +59,7 @@
|
|
|
59
59
|
.k-collapse-prev,
|
|
60
60
|
.k-collapse-next {
|
|
61
61
|
cursor: pointer;
|
|
62
|
+
padding: var( --kendo-splitter-collapse-icon-padding-y, #{$kendo-splitter-collapse-icon-padding-y} ) var( --kendo-splitter-collapse-icon-padding-x, #{$kendo-splitter-collapse-icon-padding-x} );
|
|
62
63
|
}
|
|
63
64
|
|
|
64
65
|
}
|
|
@@ -37,6 +37,13 @@ $kendo-splitter-drag-handle-thickness: map.get( $kendo-spacing, 0.5 ) !default;
|
|
|
37
37
|
/// @group splitter
|
|
38
38
|
$kendo-splitter-drag-icon-margin: map.get( $kendo-spacing, 2 ) !default;
|
|
39
39
|
|
|
40
|
+
/// Horizontal padding of the collapse icon in the splitter.
|
|
41
|
+
/// @group splitter
|
|
42
|
+
$kendo-splitter-collapse-icon-padding-x: null !default;
|
|
43
|
+
/// Vertical padding of the collapse icon in the splitter.
|
|
44
|
+
/// @group splitter
|
|
45
|
+
$kendo-splitter-collapse-icon-padding-y: map.get( $kendo-spacing, .5 ) !default;
|
|
46
|
+
|
|
40
47
|
/// Background color of the splitter splitbar.
|
|
41
48
|
/// @group splitter
|
|
42
49
|
$kendo-splitbar-bg: get-theme-color-var( neutral-10 ) !default;
|
|
@@ -2,22 +2,22 @@
|
|
|
2
2
|
@use "../core/" as *;
|
|
3
3
|
@use "../card/_variables.scss" as *;
|
|
4
4
|
|
|
5
|
-
///
|
|
5
|
+
/// The width of the border around the TileLayout.
|
|
6
6
|
/// @group tilelayout
|
|
7
7
|
$kendo-tile-layout-border-width: 0px !default;
|
|
8
|
-
///
|
|
8
|
+
/// The background color of the TileLayout.
|
|
9
9
|
/// @group tilelayout
|
|
10
10
|
$kendo-tile-layout-bg: get-theme-color-var( neutral-10 ) !default;
|
|
11
11
|
|
|
12
|
-
///
|
|
12
|
+
/// The width of the border around the TileLayout hint.
|
|
13
13
|
/// @group tilelayout
|
|
14
14
|
$kendo-tile-layout-hint-border-width: 1px !default;
|
|
15
|
-
///
|
|
16
|
-
/// @group tilelayout
|
|
17
|
-
$kendo-tile-layout-hint-border: var( --kendo-component-border, initial ) !default;
|
|
18
|
-
/// Radius of the border around the tilelayout hint.
|
|
15
|
+
/// The radius of the border around the TileLayout hint.
|
|
19
16
|
/// @group tilelayout
|
|
20
17
|
$kendo-tile-layout-hint-border-radius: var( --kendo-border-radius-lg, initial ) !default;
|
|
21
|
-
///
|
|
18
|
+
/// The color of the border around the TileLayout hint.
|
|
19
|
+
/// @group tilelayout
|
|
20
|
+
$kendo-tile-layout-hint-border: var( --kendo-component-border, initial ) !default;
|
|
21
|
+
/// The background color of the TileLayout hint.
|
|
22
22
|
/// @group tilelayout
|
|
23
23
|
$kendo-tile-layout-hint-bg: rgba(255, 255, 255, .2) !default;
|
|
@@ -84,6 +84,11 @@
|
|
|
84
84
|
align-items: center;
|
|
85
85
|
cursor: pointer;
|
|
86
86
|
}
|
|
87
|
+
.k-treeview-toggle .k-icon,
|
|
88
|
+
.k-treeview-toggle .k-svg-icon {
|
|
89
|
+
padding: var( --kendo-icon-padding, .25rem );
|
|
90
|
+
box-sizing: content-box;
|
|
91
|
+
}
|
|
87
92
|
|
|
88
93
|
|
|
89
94
|
// Loading icon
|
|
@@ -95,8 +100,7 @@
|
|
|
95
100
|
// Checkbox
|
|
96
101
|
.k-treeview .k-checkbox-wrap,
|
|
97
102
|
.k-treeview .k-checkbox-wrapper {
|
|
98
|
-
|
|
99
|
-
margin-inline-end: var( --kendo-icon-spacing, .5rem );
|
|
103
|
+
padding: var( --kendo-treeview-checkbox-wrap-padding, #{$kendo-treeview-checkbox-wrap-padding} );
|
|
100
104
|
align-self: center;
|
|
101
105
|
}
|
|
102
106
|
|
|
@@ -24,7 +24,7 @@ $kendo-treeview-md-line-height: var( --kendo-line-height, normal ) !default;
|
|
|
24
24
|
$kendo-treeview-lg-line-height: var( --kendo-line-height, normal ) !default;
|
|
25
25
|
/// The indentation of child groups in the TreeView.
|
|
26
26
|
/// @group treeview
|
|
27
|
-
$kendo-treeview-indent: map.get( $kendo-spacing,
|
|
27
|
+
$kendo-treeview-indent: map.get( $kendo-spacing, 6 ) !default;
|
|
28
28
|
|
|
29
29
|
/// The horizontal padding of the small TreeView items.
|
|
30
30
|
/// @group treeview
|
|
@@ -178,3 +178,7 @@ $kendo-treeview-loadmore-focus-border: inherit !default;
|
|
|
178
178
|
/// The box shadow of the focused Load More button in the TreeView.
|
|
179
179
|
/// @group treeview
|
|
180
180
|
$kendo-treeview-loadmore-focus-shadow: $kendo-treeview-item-focus-shadow !default;
|
|
181
|
+
|
|
182
|
+
/// The padding of the checkbox wrapper in the TreeView.
|
|
183
|
+
/// @group treeview
|
|
184
|
+
$kendo-treeview-checkbox-wrap-padding: map.get( $kendo-spacing, .5 ) !default;
|
|
@@ -1,100 +1,100 @@
|
|
|
1
1
|
@use "sass:map";
|
|
2
2
|
@use "../core/" as *;
|
|
3
3
|
|
|
4
|
-
///
|
|
4
|
+
/// The width of the border around the Upload.
|
|
5
5
|
/// @group upload
|
|
6
6
|
$kendo-upload-border-width: 1px !default;
|
|
7
|
-
///
|
|
7
|
+
/// The font family of the Upload.
|
|
8
8
|
/// @group upload
|
|
9
9
|
$kendo-upload-font-family: var( --kendo-font-family, inherit ) !default;
|
|
10
|
-
///
|
|
10
|
+
/// The font size of the Upload.
|
|
11
11
|
/// @group upload
|
|
12
12
|
$kendo-upload-font-size: var( --kendo-font-size, inherit ) !default;
|
|
13
|
-
///
|
|
13
|
+
/// The line height of the Upload.
|
|
14
14
|
/// @group upload
|
|
15
15
|
$kendo-upload-line-height: var( --kendo-line-height, normal ) !default;
|
|
16
|
-
///
|
|
16
|
+
/// The maximum height of the list with uploaded items.
|
|
17
17
|
/// @group upload
|
|
18
18
|
$kendo-upload-max-height: 300px !default;
|
|
19
19
|
|
|
20
|
-
///
|
|
21
|
-
/// @group upload
|
|
22
|
-
$kendo-upload-bg: var( --kendo-component-bg, initial ) !default;
|
|
23
|
-
/// Text color of the upload.
|
|
20
|
+
/// The text color of the Upload.
|
|
24
21
|
/// @group upload
|
|
25
22
|
$kendo-upload-text: var( --kendo-component-text, initial ) !default;
|
|
26
|
-
///
|
|
23
|
+
/// The background color of the Upload.
|
|
24
|
+
/// @group upload
|
|
25
|
+
$kendo-upload-bg: var( --kendo-component-bg, initial ) !default;
|
|
26
|
+
/// The border color of the Upload.
|
|
27
27
|
/// @group upload
|
|
28
28
|
$kendo-upload-border: var( --kendo-component-border, initial ) !default;
|
|
29
29
|
|
|
30
|
-
///
|
|
30
|
+
/// The horizontal padding of the Upload dropzone.
|
|
31
31
|
/// @group upload
|
|
32
32
|
$kendo-upload-dropzone-padding-x: map.get( $kendo-spacing, 2 ) !default;
|
|
33
|
-
///
|
|
33
|
+
/// The vertical padding of the Upload dropzone.
|
|
34
34
|
/// @group upload
|
|
35
35
|
$kendo-upload-dropzone-padding-y: map.get( $kendo-spacing, 2 ) !default;
|
|
36
|
-
///
|
|
37
|
-
/// @group upload
|
|
38
|
-
$kendo-upload-dropzone-bg: get-theme-color-var( neutral-10 ) !default;
|
|
39
|
-
/// Text color of the upload dropzone.
|
|
36
|
+
/// The text color of the Upload dropzone.
|
|
40
37
|
/// @group upload
|
|
41
38
|
$kendo-upload-dropzone-text: get-theme-color-var( neutral-130 ) !default;
|
|
42
|
-
///
|
|
39
|
+
/// The background color of the Upload dropzone.
|
|
40
|
+
/// @group upload
|
|
41
|
+
$kendo-upload-dropzone-bg: get-theme-color-var( neutral-10 ) !default;
|
|
42
|
+
/// The border color of the Upload dropzone.
|
|
43
43
|
/// @group upload
|
|
44
44
|
$kendo-upload-dropzone-border: get-theme-color-var( neutral-30 ) !default;
|
|
45
|
-
///
|
|
45
|
+
/// The background color of the hovered Upload dropzone.
|
|
46
46
|
/// @group upload
|
|
47
47
|
$kendo-upload-dropzone-hover-bg: var( --kendo-hover-bg, inherit ) !default;
|
|
48
48
|
|
|
49
|
-
///
|
|
49
|
+
/// The text color of the Upload status message.
|
|
50
50
|
/// @group upload
|
|
51
51
|
$kendo-upload-status-text: var( --kendo-subtle-text, inherit ) !default;
|
|
52
|
-
///
|
|
52
|
+
/// The opacity of the Upload status message.
|
|
53
53
|
/// @group upload
|
|
54
54
|
$kendo-upload-status-text-opacity: null !default;
|
|
55
55
|
|
|
56
|
-
///
|
|
56
|
+
/// The horizontal padding of an uploaded item.
|
|
57
57
|
/// @group upload
|
|
58
58
|
$kendo-upload-item-padding-x: map.get( $kendo-spacing, 2 ) !default;
|
|
59
|
-
///
|
|
59
|
+
/// The vertical padding of an uploaded item.
|
|
60
60
|
/// @group upload
|
|
61
61
|
$kendo-upload-item-padding-y: map.get( $kendo-spacing, 2 ) !default;
|
|
62
62
|
|
|
63
|
-
///
|
|
63
|
+
/// The vertical spacing between uploaded batch items.
|
|
64
64
|
/// @group upload
|
|
65
65
|
$kendo-upload-multiple-items-spacing: map.get( $kendo-spacing, 4 ) !default;
|
|
66
66
|
|
|
67
|
-
///
|
|
67
|
+
/// The font size of the Upload validation message.
|
|
68
68
|
/// @group upload
|
|
69
69
|
$kendo-upload-validation-font-size: var( --kendo-font-size-xs, inherit ) !default;
|
|
70
|
-
///
|
|
70
|
+
/// The horizontal spacing of the Upload status icon.
|
|
71
71
|
/// @group upload
|
|
72
72
|
$kendo-upload-icon-spacing: var( --kendo-icon-spacing, .5rem ) !default;
|
|
73
|
-
///
|
|
73
|
+
/// The color of the uploaded items icon.
|
|
74
74
|
/// @group upload
|
|
75
75
|
$kendo-upload-icon-color: var( --kendo-subtle-text, inherit ) !default;
|
|
76
76
|
|
|
77
|
-
///
|
|
77
|
+
/// The thickness of the Upload progress bar.
|
|
78
78
|
/// @group upload
|
|
79
79
|
$kendo-upload-progress-thickness: 2px !default;
|
|
80
|
-
///
|
|
80
|
+
/// The background color of the Upload progress bar.
|
|
81
81
|
/// @group upload
|
|
82
82
|
$kendo-upload-progress-bg: get-theme-color-var( primary-100 ) !default;
|
|
83
83
|
|
|
84
|
-
///
|
|
85
|
-
/// @group upload
|
|
86
|
-
$kendo-upload-success-bg: get-theme-color-var( success-190 ) !default;
|
|
87
|
-
/// Success text color of the upload.
|
|
84
|
+
/// The success text color of the Upload.
|
|
88
85
|
/// @group upload
|
|
89
86
|
$kendo-upload-success-text: get-theme-color-var( success-190 ) !default;
|
|
90
|
-
|
|
91
|
-
/// Error background color of the upload.
|
|
87
|
+
/// The success background color of the Upload progress bar.
|
|
92
88
|
/// @group upload
|
|
93
|
-
$kendo-upload-
|
|
94
|
-
|
|
89
|
+
$kendo-upload-success-bg: get-theme-color-var( success-190 ) !default;
|
|
90
|
+
|
|
91
|
+
/// The error text color of the Upload.
|
|
95
92
|
/// @group upload
|
|
96
93
|
$kendo-upload-error-text: get-theme-color-var( error-190 ) !default;
|
|
94
|
+
/// The error background color of the Upload progress bar.
|
|
95
|
+
/// @group upload
|
|
96
|
+
$kendo-upload-error-bg: get-theme-color-var( error-190 ) !default;
|
|
97
97
|
|
|
98
|
-
///
|
|
98
|
+
/// The shadow of the focused Upload button, actions and uploaded items.
|
|
99
99
|
/// @group upload
|
|
100
100
|
$kendo-upload-focus-shadow: inset 0 0 0 2px rgba(0, 0, 0, .13) !default;
|
|
@@ -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 {
|