@progress/kendo-theme-classic 6.5.0-dev.0 → 6.5.0-dev.2
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 +338 -40
- package/dist/all.scss +2216 -680
- package/dist/meta/sassdoc-data.json +40975 -19275
- package/dist/meta/sassdoc-raw-data.json +18172 -8170
- package/dist/meta/variables.json +330 -266
- 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/_variables.scss +15 -0
- package/scss/action-sheet/_variables.scss +1 -0
- 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/common/_index.scss +0 -1
- package/scss/core/_index.scss +2 -15
- 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/listbox/_variables.scss +21 -20
- package/scss/listview/_variables.scss +42 -7
- package/scss/loader/_variables.scss +88 -12
- package/scss/menu/_variables.scss +1 -1
- 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/tilelayout/_variables.scss +21 -4
- package/scss/upload/_variables.scss +62 -9
- package/scss/window/_variables.scss +61 -6
- package/scss/common/_selection.scss +0 -1
|
@@ -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"),
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
@import "@progress/kendo-theme-default/scss/common/_selection.scss";
|