@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.
Files changed (46) hide show
  1. package/dist/all.css +338 -40
  2. package/dist/all.scss +2216 -680
  3. package/dist/meta/sassdoc-data.json +40975 -19275
  4. package/dist/meta/sassdoc-raw-data.json +18172 -8170
  5. package/dist/meta/variables.json +330 -266
  6. package/lib/swatches/classic-green-dark.json +1 -1
  7. package/lib/swatches/classic-green.json +1 -1
  8. package/lib/swatches/classic-lavender-dark.json +1 -1
  9. package/lib/swatches/classic-lavender.json +1 -1
  10. package/lib/swatches/classic-main-dark.json +1 -1
  11. package/lib/swatches/classic-main.json +1 -1
  12. package/lib/swatches/classic-metro-dark.json +1 -1
  13. package/lib/swatches/classic-metro.json +1 -1
  14. package/lib/swatches/classic-moonlight.json +1 -1
  15. package/lib/swatches/classic-opal-dark.json +1 -1
  16. package/lib/swatches/classic-opal.json +1 -1
  17. package/lib/swatches/classic-silver-dark.json +1 -1
  18. package/lib/swatches/classic-silver.json +1 -1
  19. package/lib/swatches/classic-uniform.json +1 -1
  20. package/package.json +5 -5
  21. package/scss/_variables.scss +15 -0
  22. package/scss/action-sheet/_variables.scss +1 -0
  23. package/scss/appbar/_variables.scss +39 -7
  24. package/scss/bottom-navigation/_variables.scss +42 -8
  25. package/scss/breadcrumb/_variables.scss +177 -6
  26. package/scss/coloreditor/_variables.scss +53 -4
  27. package/scss/colorgradient/_variables.scss +86 -5
  28. package/scss/colorpalette/_variables.scss +18 -1
  29. package/scss/common/_index.scss +0 -1
  30. package/scss/core/_index.scss +2 -15
  31. package/scss/dialog/_variables.scss +16 -2
  32. package/scss/editor/_variables.scss +33 -0
  33. package/scss/expansion-panel/_variables.scss +56 -12
  34. package/scss/filter/_variables.scss +18 -1
  35. package/scss/listbox/_variables.scss +21 -20
  36. package/scss/listview/_variables.scss +42 -7
  37. package/scss/loader/_variables.scss +88 -12
  38. package/scss/menu/_variables.scss +1 -1
  39. package/scss/notification/_variables.scss +20 -19
  40. package/scss/popover/_variables.scss +60 -6
  41. package/scss/progressbar/_variables.scss +24 -23
  42. package/scss/scrollview/_variables.scss +59 -6
  43. package/scss/tilelayout/_variables.scss +21 -4
  44. package/scss/upload/_variables.scss +62 -9
  45. package/scss/window/_variables.scss +61 -6
  46. 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
- $kendo-window-shadow: 1px 1px 7px 1px rgba( black, .12 ) !default;
42
- $kendo-window-focus-shadow: 1px 1px 7px 1px rgba( black, .25 ) !default;
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
- /// Theme colors map for the window.
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";