@progress/kendo-theme-classic 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 +103 -36
- package/dist/all.scss +1091 -194
- package/dist/meta/sassdoc-data.json +41297 -19385
- package/dist/meta/sassdoc-raw-data.json +18200 -8100
- package/dist/meta/variables.json +273 -213
- package/lib/swatches/classic-green-dark.json +1 -1
- package/lib/swatches/classic-green.json +1 -1
- package/lib/swatches/classic-lavender-dark.json +1 -1
- package/lib/swatches/classic-lavender.json +1 -1
- package/lib/swatches/classic-main-dark.json +1 -1
- package/lib/swatches/classic-main.json +1 -1
- package/lib/swatches/classic-metro-dark.json +1 -1
- package/lib/swatches/classic-metro.json +1 -1
- package/lib/swatches/classic-moonlight.json +1 -1
- package/lib/swatches/classic-opal-dark.json +1 -1
- package/lib/swatches/classic-opal.json +1 -1
- package/lib/swatches/classic-silver-dark.json +1 -1
- package/lib/swatches/classic-silver.json +1 -1
- package/lib/swatches/classic-uniform.json +1 -1
- package/package.json +5 -5
- package/scss/appbar/_variables.scss +39 -7
- package/scss/bottom-navigation/_variables.scss +42 -8
- package/scss/breadcrumb/_variables.scss +177 -6
- package/scss/coloreditor/_variables.scss +53 -4
- package/scss/colorgradient/_variables.scss +86 -5
- package/scss/colorpalette/_variables.scss +18 -1
- package/scss/dialog/_variables.scss +16 -2
- package/scss/editor/_variables.scss +33 -0
- package/scss/expansion-panel/_variables.scss +56 -12
- package/scss/filter/_variables.scss +18 -1
- package/scss/list/_variables.scss +2 -2
- package/scss/listbox/_variables.scss +21 -20
- package/scss/listview/_variables.scss +42 -7
- package/scss/loader/_variables.scss +88 -12
- package/scss/notification/_variables.scss +20 -19
- package/scss/popover/_variables.scss +60 -6
- package/scss/progressbar/_variables.scss +24 -23
- package/scss/scrollview/_variables.scss +59 -6
- package/scss/splitter/_variables.scss +2 -0
- package/scss/tilelayout/_variables.scss +21 -4
- package/scss/treeview/_variables.scss +30 -4
- package/scss/upload/_variables.scss +62 -9
- package/scss/window/_variables.scss +61 -6
|
@@ -1,46 +1,99 @@
|
|
|
1
1
|
// Upload
|
|
2
2
|
|
|
3
|
+
/// The width of the border around the Upload.
|
|
4
|
+
/// @group upload
|
|
3
5
|
$kendo-upload-border-width: 1px !default;
|
|
6
|
+
/// The font family of the Upload.
|
|
7
|
+
/// @group upload
|
|
4
8
|
$kendo-upload-font-family: $kendo-font-family !default;
|
|
9
|
+
/// The font size of the Upload.
|
|
10
|
+
/// @group upload
|
|
5
11
|
$kendo-upload-font-size: $kendo-font-size-md !default;
|
|
12
|
+
/// The line height of the Upload.
|
|
13
|
+
/// @group upload
|
|
6
14
|
$kendo-upload-line-height: $kendo-line-height-md !default;
|
|
15
|
+
/// The maximum height of the list with uploaded items.
|
|
16
|
+
/// @group upload
|
|
7
17
|
$kendo-upload-max-height: 300px !default;
|
|
8
18
|
|
|
9
|
-
|
|
19
|
+
/// The text color of the Upload.
|
|
20
|
+
/// @group upload
|
|
10
21
|
$kendo-upload-text: $kendo-component-text !default;
|
|
22
|
+
/// The background color of the Upload.
|
|
23
|
+
/// @group upload
|
|
24
|
+
$kendo-upload-bg: $kendo-component-bg !default;
|
|
25
|
+
/// The border color of the Upload.
|
|
26
|
+
/// @group upload
|
|
11
27
|
$kendo-upload-border: $kendo-component-border !default;
|
|
12
28
|
|
|
29
|
+
/// The horizontal padding of the Upload dropzone.
|
|
30
|
+
/// @group upload
|
|
13
31
|
$kendo-upload-dropzone-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
|
|
32
|
+
/// The vertical padding of the Upload dropzone.
|
|
33
|
+
/// @group upload
|
|
14
34
|
$kendo-upload-dropzone-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
|
|
15
|
-
|
|
35
|
+
/// The text color of the Upload dropzone.
|
|
36
|
+
/// @group upload
|
|
16
37
|
$kendo-upload-dropzone-text: $kendo-component-header-text !default;
|
|
38
|
+
/// The background color of the Upload dropzone.
|
|
39
|
+
/// @group upload
|
|
40
|
+
$kendo-upload-dropzone-bg: $kendo-component-header-bg !default;
|
|
41
|
+
/// The border color of the Upload dropzone.
|
|
42
|
+
/// @group upload
|
|
17
43
|
$kendo-upload-dropzone-border: $kendo-upload-border !default;
|
|
44
|
+
/// The background color of the hovered Upload dropzone.
|
|
45
|
+
/// @group upload
|
|
18
46
|
$kendo-upload-dropzone-hover-bg: $kendo-hover-bg !default;
|
|
19
47
|
|
|
48
|
+
/// The text color of the Upload status message.
|
|
49
|
+
/// @group upload
|
|
20
50
|
$kendo-upload-status-text: $kendo-subtle-text !default;
|
|
51
|
+
/// The opacity of the Upload status message.
|
|
52
|
+
/// @group upload
|
|
21
53
|
$kendo-upload-status-text-opacity: null !default;
|
|
22
54
|
|
|
55
|
+
/// The horizontal padding of an uploaded item.
|
|
56
|
+
/// @group upload
|
|
23
57
|
$kendo-upload-item-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
|
|
58
|
+
/// The vertical padding of an uploaded item.
|
|
59
|
+
/// @group upload
|
|
24
60
|
$kendo-upload-item-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
|
|
25
61
|
|
|
62
|
+
/// The vertical spacing between uploaded batch items.
|
|
63
|
+
/// @group upload
|
|
26
64
|
$kendo-upload-multiple-items-spacing: 12px !default;
|
|
27
65
|
|
|
66
|
+
/// The font size of the Upload validation message.
|
|
67
|
+
/// @group upload
|
|
28
68
|
$kendo-upload-validation-font-size: 11px !default;
|
|
69
|
+
/// The horizontal spacing of the Upload status icon.
|
|
70
|
+
/// @group upload
|
|
29
71
|
$kendo-upload-icon-spacing: $kendo-icon-spacing !default;
|
|
72
|
+
/// The color of the uploaded items icon.
|
|
73
|
+
/// @group upload
|
|
30
74
|
$kendo-upload-icon-color: $kendo-subtle-text !default;
|
|
31
75
|
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
$kendo-upload-item-image-border: 0px !default; // TODO: remove
|
|
35
|
-
|
|
76
|
+
/// The thickness of the Upload progress bar.
|
|
77
|
+
/// @group upload
|
|
36
78
|
$kendo-upload-progress-thickness: 2px !default;
|
|
79
|
+
/// The background color of the Upload progress bar.
|
|
80
|
+
/// @group upload
|
|
37
81
|
$kendo-upload-progress-bg: $kendo-color-info !default;
|
|
38
82
|
|
|
39
|
-
|
|
83
|
+
/// The success text color of the Upload.
|
|
84
|
+
/// @group upload
|
|
40
85
|
$kendo-upload-success-text: $kendo-color-success !default;
|
|
86
|
+
/// The success background color of the Upload progress bar.
|
|
87
|
+
/// @group upload
|
|
88
|
+
$kendo-upload-success-bg: $kendo-color-success !default;
|
|
41
89
|
|
|
42
|
-
|
|
90
|
+
/// The error text color of the Upload.
|
|
91
|
+
/// @group upload
|
|
43
92
|
$kendo-upload-error-text: $kendo-color-error !default;
|
|
44
|
-
|
|
93
|
+
/// The error background color of the Upload progress bar.
|
|
94
|
+
/// @group upload
|
|
95
|
+
$kendo-upload-error-bg: $kendo-color-error !default;
|
|
45
96
|
|
|
97
|
+
/// The shadow of the focused Upload button, actions and uploaded items.
|
|
98
|
+
/// @group upload
|
|
46
99
|
$kendo-upload-focus-shadow: 0 0 0 2px rgba( black, .13 ) !default;
|
|
@@ -1,53 +1,108 @@
|
|
|
1
1
|
@import "../action-buttons/_variables.scss";
|
|
2
2
|
|
|
3
|
-
|
|
4
3
|
// Window
|
|
5
4
|
|
|
5
|
+
/// The width of the border around the Window.
|
|
6
|
+
/// @group window
|
|
6
7
|
$kendo-window-border-width: 1px !default;
|
|
8
|
+
/// The border radius of the Window.
|
|
9
|
+
/// @group window
|
|
7
10
|
$kendo-window-border-radius: k-map-get( $kendo-spacing, 1 ) !default;
|
|
11
|
+
/// The font family of the Window.
|
|
12
|
+
/// @group window
|
|
8
13
|
$kendo-window-font-family: $kendo-font-family !default;
|
|
14
|
+
/// The font size of the Window.
|
|
15
|
+
/// @group window
|
|
9
16
|
$kendo-window-font-size: $kendo-font-size-md !default;
|
|
17
|
+
/// The line height of the Window.
|
|
18
|
+
/// @group window
|
|
10
19
|
$kendo-window-line-height: $kendo-line-height-md !default;
|
|
11
20
|
|
|
21
|
+
/// The horizontal padding of the Window titlebar.
|
|
22
|
+
/// @group window
|
|
12
23
|
$kendo-window-titlebar-padding-x: k-map-get( $kendo-spacing, 3 ) !default;
|
|
24
|
+
/// The vertical padding of the Window titlebar.
|
|
25
|
+
/// @group window
|
|
13
26
|
$kendo-window-titlebar-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
|
|
27
|
+
/// The width of the border of the Window titlebar.
|
|
28
|
+
/// @group window
|
|
14
29
|
$kendo-window-titlebar-border-width: 0 0 1px !default;
|
|
30
|
+
/// The style of the border of the Window titlebar.
|
|
31
|
+
/// @group window
|
|
15
32
|
$kendo-window-titlebar-border-style: solid !default;
|
|
16
33
|
|
|
34
|
+
/// The font size of the title of the Window.
|
|
35
|
+
/// @group window
|
|
17
36
|
$kendo-window-title-font-size: $kendo-font-size-lg !default;
|
|
37
|
+
/// The line height of the title of the Window.
|
|
38
|
+
/// @group window
|
|
18
39
|
$kendo-window-title-line-height: 1.25 !default;
|
|
19
40
|
|
|
41
|
+
/// The spacing between the buttons in the Window titlebar.
|
|
42
|
+
/// @group window
|
|
20
43
|
$kendo-window-actions-gap: null !default;
|
|
21
|
-
|
|
44
|
+
/// The opacity of the buttons in the Window titlebar.
|
|
45
|
+
/// @group window
|
|
22
46
|
$kendo-window-action-opacity: null !default;
|
|
47
|
+
/// The opacity of the hovered buttons in the Window titlebar.
|
|
48
|
+
/// @group window
|
|
23
49
|
$kendo-window-action-hover-opacity: null !default;
|
|
24
50
|
|
|
51
|
+
/// The horizontal padding of the content of the Window.
|
|
52
|
+
/// @group window
|
|
25
53
|
$kendo-window-inner-padding-x: k-map-get( $kendo-spacing, 3 ) !default;
|
|
54
|
+
/// The vertical padding of the content of the Window.
|
|
55
|
+
/// @group window
|
|
26
56
|
$kendo-window-inner-padding-y: k-map-get( $kendo-spacing, 3 ) !default;
|
|
27
57
|
|
|
58
|
+
/// The horizontal padding of the Window action buttons.
|
|
59
|
+
/// @group window
|
|
28
60
|
$kendo-window-buttongroup-padding-x: $kendo-actions-padding-x !default;
|
|
61
|
+
/// The vertical padding of the Window action buttons.
|
|
62
|
+
/// @group window
|
|
29
63
|
$kendo-window-buttongroup-padding-y: $kendo-actions-padding-y !default;
|
|
64
|
+
/// The width of the top border of the Window action buttons.
|
|
65
|
+
/// @group window
|
|
30
66
|
$kendo-window-buttongroup-border-width: 1px !default;
|
|
31
67
|
|
|
68
|
+
/// The background color of the Window.
|
|
69
|
+
/// @group window
|
|
32
70
|
$kendo-window-bg: $kendo-component-bg !default;
|
|
71
|
+
/// The text color of the Window.
|
|
72
|
+
/// @group window
|
|
33
73
|
$kendo-window-text: $kendo-component-text !default;
|
|
74
|
+
/// The border color of the Window.
|
|
75
|
+
/// @group window
|
|
34
76
|
$kendo-window-border: $kendo-component-border !default;
|
|
77
|
+
/// The box shadow of the Window.
|
|
78
|
+
/// @group window
|
|
79
|
+
$kendo-window-shadow: 1px 1px 7px 1px rgba( black, .12 ) !default;
|
|
80
|
+
/// The box shadow of the focused Window.
|
|
81
|
+
/// @group window
|
|
82
|
+
$kendo-window-focus-shadow: 1px 1px 7px 1px rgba( black, .25 ) !default;
|
|
35
83
|
|
|
84
|
+
/// The background color of the Window titlebar.
|
|
85
|
+
/// @group window
|
|
36
86
|
$kendo-window-titlebar-bg: $kendo-component-header-bg !default;
|
|
87
|
+
/// The text color of the Window titlebar.
|
|
88
|
+
/// @group window
|
|
37
89
|
$kendo-window-titlebar-text: $kendo-component-header-text !default;
|
|
90
|
+
/// The border color of the Window titlebar.
|
|
91
|
+
/// @group window
|
|
38
92
|
$kendo-window-titlebar-border: $kendo-component-header-border !default;
|
|
93
|
+
/// The background gradient of the Window titlebar.
|
|
94
|
+
/// @group window
|
|
39
95
|
$kendo-window-titlebar-gradient: $kendo-component-header-gradient !default;
|
|
40
96
|
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
97
|
+
/// The map of the width for the different Window sizes.
|
|
98
|
+
/// @group window
|
|
44
99
|
$kendo-window-sizes: (
|
|
45
100
|
sm: 300px,
|
|
46
101
|
md: 800px,
|
|
47
102
|
lg: 1200px
|
|
48
103
|
) !default;
|
|
49
104
|
|
|
50
|
-
///
|
|
105
|
+
/// The theme colors map for the Window.
|
|
51
106
|
/// @group window
|
|
52
107
|
$kendo-window-theme-colors: (
|
|
53
108
|
"primary": k-map-get($kendo-theme-colors, "primary"),
|