@progress/kendo-theme-classic 13.2.0-dev.3 → 14.0.0-dev.0
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 +1 -1
- package/dist/classic-green-dark.css +1 -1
- package/dist/classic-green.css +1 -1
- package/dist/classic-lavender-dark.css +1 -1
- package/dist/classic-lavender.css +1 -1
- package/dist/classic-main-dark.css +1 -1
- package/dist/classic-main.css +1 -1
- package/dist/classic-metro-dark.css +1 -1
- package/dist/classic-metro.css +1 -1
- package/dist/classic-moonlight.css +1 -1
- package/dist/classic-opal-dark.css +1 -1
- package/dist/classic-opal.css +1 -1
- package/dist/classic-silver-dark.css +1 -1
- package/dist/classic-silver.css +1 -1
- package/dist/classic-uniform.css +1 -1
- package/dist/meta/sassdoc-data.json +13100 -10690
- package/dist/meta/sassdoc-raw-data.json +6270 -5114
- package/dist/meta/variables.json +292 -143
- 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 +4 -4
- package/scss/action-sheet/_variables.scss +8 -0
- package/scss/appbar/_variables.scss +5 -19
- package/scss/button/_variables.scss +5 -0
- package/scss/card/_variables.scss +0 -6
- package/scss/chart-wizard/_variables.scss +17 -0
- package/scss/chat/_variables.scss +4 -0
- package/scss/column-menu/_variables.scss +11 -1
- package/scss/core/color-system/_swatch.scss +0 -56
- package/scss/dataviz/_variables.scss +8 -0
- package/scss/dialog/_variables.scss +0 -6
- package/scss/dock-manager/_variables.scss +4 -0
- package/scss/dropzone/_variables.scss +4 -0
- package/scss/editor/_variables.scss +4 -0
- package/scss/expansion-panel/_variables.scss +12 -0
- package/scss/file-box/_variables.scss +9 -0
- package/scss/filemanager/_variables.scss +4 -0
- package/scss/filter/_variables.scss +5 -0
- package/scss/forms/_variables.scss +21 -0
- package/scss/gantt/_variables.scss +4 -0
- package/scss/grid/_variables.scss +17 -0
- package/scss/imageeditor/_variables.scss +4 -0
- package/scss/listbox/_variables.scss +14 -1
- package/scss/listview/_variables.scss +5 -1
- package/scss/mediaplayer/_variables.scss +16 -0
- package/scss/messagebox/_variables.scss +4 -0
- package/scss/notification/_variables.scss +1 -1
- package/scss/overlay/_variables.scss +2 -6
- package/scss/pdf-viewer/_variables.scss +4 -0
- package/scss/pivotgrid/_variables.scss +4 -0
- package/scss/progressbar/_variables.scss +6 -0
- package/scss/prompt/_variables.scss +14 -1
- package/scss/scheduler/_variables.scss +4 -0
- package/scss/scrollview/_variables.scss +8 -1
- package/scss/spreadsheet/_variables.scss +4 -0
- package/scss/stepper/_variables.scss +4 -0
- package/scss/suggestion/_variables.scss +4 -0
- package/scss/table/_variables.scss +27 -0
- package/scss/taskboard/_variables.scss +4 -0
- package/scss/timeline/_variables.scss +5 -0
- package/scss/tooltip/_variables.scss +1 -1
- package/scss/upload/_variables.scss +4 -0
- package/scss/window/_variables.scss +0 -6
|
@@ -6,6 +6,9 @@
|
|
|
6
6
|
/// The width of the border around the Upload.
|
|
7
7
|
/// @group upload
|
|
8
8
|
$kendo-upload-border-width: 1px !default;
|
|
9
|
+
/// The border radius of the Upload.
|
|
10
|
+
/// @group upload
|
|
11
|
+
$kendo-upload-border-radius: null !default;
|
|
9
12
|
/// The font family of the Upload.
|
|
10
13
|
/// @group upload
|
|
11
14
|
$kendo-upload-font-family: var(--kendo-font-family) !default;
|
|
@@ -114,6 +117,7 @@ $kendo-upload-file-info-margin: k-spacing(2) !default;
|
|
|
114
117
|
|
|
115
118
|
@forward "@progress/kendo-theme-core/scss/components/upload/_variables.scss" with (
|
|
116
119
|
$kendo-upload-border-width: $kendo-upload-border-width,
|
|
120
|
+
$kendo-upload-border-radius: $kendo-upload-border-radius,
|
|
117
121
|
$kendo-upload-font-family: $kendo-upload-font-family,
|
|
118
122
|
$kendo-upload-font-size: $kendo-upload-font-size,
|
|
119
123
|
$kendo-upload-line-height: $kendo-upload-line-height,
|
|
@@ -9,11 +9,6 @@
|
|
|
9
9
|
/// @role default
|
|
10
10
|
$kendo-window-default-size: "auto" !default;
|
|
11
11
|
|
|
12
|
-
/// The default theme color of the Window.
|
|
13
|
-
/// @group window
|
|
14
|
-
/// @role default
|
|
15
|
-
$kendo-window-default-theme-color: null !default;
|
|
16
|
-
|
|
17
12
|
/// The width of the border around the Window.
|
|
18
13
|
/// @group window
|
|
19
14
|
$kendo-window-border-width: 1px !default;
|
|
@@ -107,7 +102,6 @@ $kendo-window-titlebar-border: k-color(border) !default;
|
|
|
107
102
|
$kendo-window-titlebar-gradient: null !default;
|
|
108
103
|
|
|
109
104
|
@forward "@progress/kendo-theme-core/scss/components/window/_variables.scss" with (
|
|
110
|
-
$kendo-window-default-theme-color: $kendo-window-default-theme-color,
|
|
111
105
|
$kendo-window-border-width: $kendo-window-border-width,
|
|
112
106
|
$kendo-window-border-radius: $kendo-window-border-radius,
|
|
113
107
|
$kendo-window-font-family: $kendo-window-font-family,
|