@progress/kendo-theme-classic 5.5.1-dev.1 → 5.5.1-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 +322 -72
- package/dist/all.scss +366 -93
- 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 +3 -3
- package/scss/calendar/_variables.scss +44 -1
- package/scss/list/_variables.scss +2 -2
- package/scss/progressbar/_variables.scss +4 -0
- package/scss/timeselector/_variables.scss +38 -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.5.1-dev.
|
|
4
|
+
"version": "5.5.1-dev.2",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -43,10 +43,10 @@
|
|
|
43
43
|
"postpublish": "echo 'no postpublish for classic theme'"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@progress/kendo-theme-default": "^5.5.1-dev.
|
|
46
|
+
"@progress/kendo-theme-default": "^5.5.1-dev.2"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"sass-build": "^0.0.1"
|
|
50
50
|
},
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "e5846f8654884b442bfb81cac2682716edf60433"
|
|
52
52
|
}
|
|
@@ -13,7 +13,6 @@ $calendar-border: $component-border !default;
|
|
|
13
13
|
$calendar-header-padding-x: map-get( $spacing, 1 ) !default;
|
|
14
14
|
$calendar-header-padding-y: map-get( $spacing, 1 ) !default;
|
|
15
15
|
$calendar-header-border-width: 1px !default;
|
|
16
|
-
$calendar-header-min-width: ($calendar-cell-size * 8) !default;
|
|
17
16
|
|
|
18
17
|
$calendar-header-bg: $header-bg !default;
|
|
19
18
|
$calendar-header-text: $header-text !default;
|
|
@@ -110,3 +109,47 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
110
109
|
|
|
111
110
|
|
|
112
111
|
// Multiview calendar
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
// Calendar sizes
|
|
115
|
+
$kendo-calendar-sm-font-size: $font-size-md !default;
|
|
116
|
+
$kendo-calendar-sm-line-height: $line-height-md !default;
|
|
117
|
+
$kendo-calendar-sm-cell-size: 28px !default;
|
|
118
|
+
$kendo-calendar-sm-cell-padding-x: map-get( $spacing, 1) - map-get( $spacing, thin ) !default;
|
|
119
|
+
$kendo-calendar-sm-cell-padding-y: map-get( $spacing, 1) - map-get( $spacing, thin ) !default;
|
|
120
|
+
|
|
121
|
+
$kendo-calendar-md-font-size: $font-size-md !default;
|
|
122
|
+
$kendo-calendar-md-line-height: $line-height-md !default;
|
|
123
|
+
$kendo-calendar-md-cell-size: 32px !default;
|
|
124
|
+
$kendo-calendar-md-cell-padding-x: map-get( $spacing, 1 ) !default;
|
|
125
|
+
$kendo-calendar-md-cell-padding-y: map-get( $spacing, 1 ) !default;
|
|
126
|
+
|
|
127
|
+
$kendo-calendar-lg-font-size: $font-size-lg !default;
|
|
128
|
+
$kendo-calendar-lg-line-height: $line-height-lg !default;
|
|
129
|
+
$kendo-calendar-lg-cell-size: 40px !default;
|
|
130
|
+
$kendo-calendar-lg-cell-padding-x: map-get( $spacing, 2 ) !default;
|
|
131
|
+
$kendo-calendar-lg-cell-padding-y: map-get( $spacing, 2 ) !default;
|
|
132
|
+
|
|
133
|
+
$kendo-calendar-sizes: (
|
|
134
|
+
sm: (
|
|
135
|
+
font-size: $kendo-calendar-sm-font-size,
|
|
136
|
+
line-height: $kendo-calendar-sm-line-height,
|
|
137
|
+
cell-size: $kendo-calendar-sm-cell-size,
|
|
138
|
+
cell-padding-x: $kendo-calendar-sm-cell-padding-y,
|
|
139
|
+
cell-padding-y: $kendo-calendar-sm-cell-padding-x
|
|
140
|
+
),
|
|
141
|
+
md: (
|
|
142
|
+
font-size: $kendo-calendar-md-font-size,
|
|
143
|
+
line-height: $kendo-calendar-md-line-height,
|
|
144
|
+
cell-size: $kendo-calendar-md-cell-size,
|
|
145
|
+
cell-padding-x: $kendo-calendar-md-cell-padding-y,
|
|
146
|
+
cell-padding-y: $kendo-calendar-md-cell-padding-x
|
|
147
|
+
),
|
|
148
|
+
lg: (
|
|
149
|
+
font-size: $kendo-calendar-lg-font-size,
|
|
150
|
+
line-height: $kendo-calendar-lg-line-height,
|
|
151
|
+
cell-size: $kendo-calendar-lg-cell-size,
|
|
152
|
+
cell-padding-x: $kendo-calendar-lg-cell-padding-y,
|
|
153
|
+
cell-padding-y: $kendo-calendar-lg-cell-padding-x
|
|
154
|
+
)
|
|
155
|
+
) !default;
|
|
@@ -10,8 +10,8 @@ $kendo-list-font-size-lg: $font-size-lg !default;
|
|
|
10
10
|
/// Line height of the list component, if no size is set.
|
|
11
11
|
/// @group list
|
|
12
12
|
$kendo-list-line-height: null !default;
|
|
13
|
-
$kendo-list-line-height-sm:
|
|
14
|
-
$kendo-list-line-height-md:
|
|
13
|
+
$kendo-list-line-height-sm: $line-height-md !default;
|
|
14
|
+
$kendo-list-line-height-md: $line-height-md !default;
|
|
15
15
|
$kendo-list-line-height-lg: $line-height-lg !default;
|
|
16
16
|
|
|
17
17
|
/// Horizontal padding of list header, if no size is set.
|
|
@@ -23,3 +23,7 @@ $progressbar-indeterminate-border: $progressbar-border !default;
|
|
|
23
23
|
$progressbar-indeterminate-gradient: null !default;
|
|
24
24
|
|
|
25
25
|
$progressbar-chunk-border: $body-bg !default;
|
|
26
|
+
|
|
27
|
+
// Circular Progressbar
|
|
28
|
+
$kendo-circular-progressbar-arc-stroke: $primary !default;
|
|
29
|
+
$kendo-circular-progressbar-scale-stroke: $progressbar-bg !default;
|
|
@@ -30,3 +30,41 @@ $time-list-highlight-bg: $component-bg !default;
|
|
|
30
30
|
$time-list-highlight-border: $component-border !default;
|
|
31
31
|
|
|
32
32
|
$time-list-focused-bg: rgba(0, 0, 0, .04) !default;
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
// Time selector sizes
|
|
36
|
+
$kendo-time-selector-sm-font-size: $kendo-list-font-size-sm !default;
|
|
37
|
+
$kendo-time-selector-sm-line-height: $kendo-list-line-height-sm !default;
|
|
38
|
+
$kendo-time-selector-sm-list-item-padding-x: $kendo-list-item-padding-x-sm !default;
|
|
39
|
+
$kendo-time-selector-sm-list-item-padding-y: $kendo-list-item-padding-y-sm !default;
|
|
40
|
+
|
|
41
|
+
$kendo-time-selector-md-font-size: $kendo-list-font-size-md !default;
|
|
42
|
+
$kendo-time-selector-md-line-height: $kendo-list-line-height-md !default;
|
|
43
|
+
$kendo-time-selector-md-list-item-padding-x: $kendo-list-item-padding-x-md !default;
|
|
44
|
+
$kendo-time-selector-md-list-item-padding-y: $kendo-list-item-padding-y-md !default;
|
|
45
|
+
|
|
46
|
+
$kendo-time-selector-lg-font-size: $kendo-list-font-size-lg !default;
|
|
47
|
+
$kendo-time-selector-lg-line-height: $kendo-list-line-height-lg !default;
|
|
48
|
+
$kendo-time-selector-lg-list-item-padding-x: $kendo-list-item-padding-x-lg !default;
|
|
49
|
+
$kendo-time-selector-lg-list-item-padding-y: $kendo-list-item-padding-y-lg !default;
|
|
50
|
+
|
|
51
|
+
$kendo-time-selector-sizes: (
|
|
52
|
+
sm: (
|
|
53
|
+
font-size: $kendo-time-selector-sm-font-size,
|
|
54
|
+
line-height: $kendo-time-selector-sm-line-height,
|
|
55
|
+
list-item-padding-x: $kendo-time-selector-sm-list-item-padding-x,
|
|
56
|
+
list-item-padding-y: $kendo-time-selector-sm-list-item-padding-y
|
|
57
|
+
),
|
|
58
|
+
md: (
|
|
59
|
+
font-size: $kendo-time-selector-md-font-size,
|
|
60
|
+
line-height: $kendo-time-selector-md-line-height,
|
|
61
|
+
list-item-padding-x: $kendo-time-selector-md-list-item-padding-x,
|
|
62
|
+
list-item-padding-y: $kendo-time-selector-md-list-item-padding-y
|
|
63
|
+
),
|
|
64
|
+
lg: (
|
|
65
|
+
font-size: $kendo-time-selector-lg-font-size,
|
|
66
|
+
line-height: $kendo-time-selector-lg-line-height,
|
|
67
|
+
list-item-padding-x: $kendo-time-selector-lg-list-item-padding-x,
|
|
68
|
+
list-item-padding-y: $kendo-time-selector-lg-list-item-padding-y
|
|
69
|
+
)
|
|
70
|
+
) !default;
|