@progress/kendo-theme-classic 5.4.2-dev.5 → 5.5.1-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 +315 -330
- package/dist/all.scss +341 -208
- package/lib/swatches/classic-green-dark.json +1 -1
- package/lib/swatches/classic-green.json +1 -1
- package/lib/swatches/classic-main-dark.json +1 -1
- package/lib/swatches/classic-main.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/package.json +8 -11
- package/scss/chip/_variables.scss +1 -1
- package/scss/index.scss +1 -0
- package/scss/progressbar/_variables.scss +1 -0
- package/scss/signature/_index.scss +9 -0
- package/scss/signature/_layout.scss +1 -0
- package/scss/signature/_theme.scss +1 -0
- package/scss/signature/_variables.scss +45 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-theme-classic",
|
|
3
3
|
"description": "Sass port of less based themes for Kendo UI theme",
|
|
4
|
-
"version": "5.
|
|
4
|
+
"version": "5.5.1-dev.0",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -37,19 +37,16 @@
|
|
|
37
37
|
}
|
|
38
38
|
},
|
|
39
39
|
"scripts": {
|
|
40
|
-
"
|
|
41
|
-
"sass
|
|
42
|
-
"sass:swatches": "gulp sass:swatches",
|
|
43
|
-
"sass:flat": "gulp sass:flat",
|
|
44
|
-
"dart": "gulp dart",
|
|
45
|
-
"dart:watch": "gulp dart:watch",
|
|
46
|
-
"dart:swatches": "gulp dart:swatches",
|
|
47
|
-
"dart:flat": "gulp dart:flat",
|
|
40
|
+
"build": "sass-build",
|
|
41
|
+
"sass": "sass-build",
|
|
48
42
|
"prepublishOnly": "node ../../scripts/themes-prepublish.js",
|
|
49
43
|
"postpublish": "echo 'no postpublish for classic theme'"
|
|
50
44
|
},
|
|
51
45
|
"dependencies": {
|
|
52
|
-
"@progress/kendo-theme-default": "^5.
|
|
46
|
+
"@progress/kendo-theme-default": "^5.5.1-dev.0"
|
|
53
47
|
},
|
|
54
|
-
"
|
|
48
|
+
"devDependencies": {
|
|
49
|
+
"sass-build": "^0.0.1"
|
|
50
|
+
},
|
|
51
|
+
"gitHead": "f9e886d7414c48c7a576210e6b46d938d27b3125"
|
|
55
52
|
}
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
$kendo-chip-border-width: 1px !default;
|
|
6
6
|
/// The spacing between the text and the icons of the chip.
|
|
7
7
|
/// @group chip
|
|
8
|
-
$kendo-chip-spacing: map-get( $spacing, 1 );
|
|
8
|
+
$kendo-chip-spacing: map-get( $spacing, 1 ) !default;
|
|
9
9
|
|
|
10
10
|
/// Horizontal padding of the chip.
|
|
11
11
|
/// @group chip
|
package/scss/index.scss
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import "~@progress/kendo-theme-default/scss/signature/_layout.scss";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import "~@progress/kendo-theme-default/scss/signature/_theme.scss";
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
$kendo-signature-width: 250px !default;
|
|
2
|
+
$kendo-signature-height: 84px !default;
|
|
3
|
+
|
|
4
|
+
$kendo-signature-maximized-width: 750px !default;
|
|
5
|
+
$kendo-signature-maximized-height: 252px !default;
|
|
6
|
+
|
|
7
|
+
$kendo-signature-padding: map-get( $spacing, 1 ) !default;
|
|
8
|
+
$kendo-signature-padding-sm: map-get( $spacing, 1 ) - map-get( $spacing, thin ) !default;
|
|
9
|
+
$kendo-signature-padding-md: $kendo-signature-padding !default;
|
|
10
|
+
$kendo-signature-padding-lg: map-get( $spacing, 1 ) + map-get( $spacing, thin ) !default;
|
|
11
|
+
|
|
12
|
+
$kendo-signature-line-width: 1px !default;
|
|
13
|
+
$kendo-signature-line-style: dashed !default;
|
|
14
|
+
$kendo-signature-line-color: rgba( $info, .24 ) !default;
|
|
15
|
+
|
|
16
|
+
$kendo-signature-line-size: calc( 100% - 2 * #{$kendo-signature-padding} ) !default;
|
|
17
|
+
$kendo-signature-line-size-sm: calc( 100% - 2 * #{$kendo-signature-padding-sm} ) !default;
|
|
18
|
+
$kendo-signature-line-size-md: calc( 100% - 2 * #{$kendo-signature-padding-md} ) !default;
|
|
19
|
+
$kendo-signature-line-size-lg: calc( 100% - 2 * #{$kendo-signature-padding-lg} ) !default;
|
|
20
|
+
|
|
21
|
+
$kendo-signature-line-bottom-offset: calc( #{$kendo-button-calc-size} + #{$kendo-signature-padding} ) !default;
|
|
22
|
+
$kendo-signature-line-bottom-offset-sm: calc( #{$kendo-button-calc-size} + #{$kendo-signature-padding-sm} ) !default;
|
|
23
|
+
$kendo-signature-line-bottom-offset-md: calc( #{$kendo-button-calc-size} + #{$kendo-signature-padding-md} ) !default;
|
|
24
|
+
$kendo-signature-line-bottom-offset-lg: calc( #{$kendo-button-calc-size} + #{$kendo-signature-padding-lg} ) !default;
|
|
25
|
+
|
|
26
|
+
$kendo-signature-sizes: (
|
|
27
|
+
sm: (
|
|
28
|
+
padding: $kendo-signature-padding-sm,
|
|
29
|
+
line-size: $kendo-signature-line-size-sm,
|
|
30
|
+
line-offset: $kendo-signature-line-bottom-offset-sm
|
|
31
|
+
),
|
|
32
|
+
md: (
|
|
33
|
+
padding: $kendo-signature-padding-md,
|
|
34
|
+
line-size: $kendo-signature-line-size-md,
|
|
35
|
+
line-offset: $kendo-signature-line-bottom-offset-md
|
|
36
|
+
),
|
|
37
|
+
lg: (
|
|
38
|
+
padding: $kendo-signature-padding-lg,
|
|
39
|
+
line-size: $kendo-signature-line-size-lg,
|
|
40
|
+
line-offset: $kendo-signature-line-bottom-offset-lg
|
|
41
|
+
)
|
|
42
|
+
) !default;
|
|
43
|
+
|
|
44
|
+
$kendo-signature-actions-gap: map-get( $spacing, 1 ) !default;
|
|
45
|
+
$kendo-signature-maximized-line-width: map-get( $spacing, 1 ) - map-get( $spacing, hair ) !default;
|