@progress/kendo-theme-classic 5.6.0 → 5.6.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 +16 -4
- package/dist/all.scss +11 -7
- 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/colorpicker/_index.scss +1 -2
- package/scss/dropdowngrid/_index.scss +1 -0
package/dist/all.css
CHANGED
|
@@ -18381,7 +18381,8 @@ kendo-label > .k-label {
|
|
|
18381
18381
|
}
|
|
18382
18382
|
|
|
18383
18383
|
.k-calendar-header .k-today,
|
|
18384
|
-
.k-calendar-header .k-nav-today
|
|
18384
|
+
.k-calendar-header .k-nav-today,
|
|
18385
|
+
.k-calendar-header .k-calendar-nav-today {
|
|
18385
18386
|
text-decoration: none;
|
|
18386
18387
|
cursor: pointer;
|
|
18387
18388
|
outline: none;
|
|
@@ -18730,10 +18731,14 @@ kendo-label > .k-label {
|
|
|
18730
18731
|
.k-rtl .k-calendar .k-nav-next,
|
|
18731
18732
|
.k-rtl .k-calendar .k-prev-view,
|
|
18732
18733
|
.k-rtl .k-calendar .k-next-view,
|
|
18734
|
+
.k-rtl .k-calendar .k-calendar-nav-prev,
|
|
18735
|
+
.k-rtl .k-calendar .k-calendar-nav-next,
|
|
18733
18736
|
.k-calendar[dir="rtl"] .k-nav-prev,
|
|
18734
18737
|
.k-calendar[dir="rtl"] .k-nav-next,
|
|
18735
18738
|
.k-calendar[dir="rtl"] .k-prev-view,
|
|
18736
|
-
.k-calendar[dir="rtl"] .k-next-view
|
|
18739
|
+
.k-calendar[dir="rtl"] .k-next-view,
|
|
18740
|
+
.k-calendar[dir="rtl"] .k-calendar-nav-prev,
|
|
18741
|
+
.k-calendar[dir="rtl"] .k-calendar-nav-next {
|
|
18737
18742
|
transform: scaleX(-1);
|
|
18738
18743
|
}
|
|
18739
18744
|
|
|
@@ -18779,11 +18784,18 @@ kendo-label > .k-label {
|
|
|
18779
18784
|
background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
|
|
18780
18785
|
}
|
|
18781
18786
|
|
|
18782
|
-
.k-calendar .k-nav-today
|
|
18787
|
+
.k-calendar .k-nav-today,
|
|
18788
|
+
.k-calendar .k-calendar-nav-today {
|
|
18783
18789
|
color: #f35800;
|
|
18784
18790
|
}
|
|
18785
18791
|
|
|
18786
|
-
.k-calendar .k-nav-today:hover, .k-calendar .k-nav-today.k-hover, .k-calendar .k-nav-today.k-state-hover, .k-calendar .k-nav-today:focus, .k-calendar .k-nav-today.k-focus, .k-calendar .k-nav-today.k-state-focus
|
|
18792
|
+
.k-calendar .k-nav-today:hover, .k-calendar .k-nav-today.k-hover, .k-calendar .k-nav-today.k-state-hover, .k-calendar .k-nav-today:focus, .k-calendar .k-nav-today.k-focus, .k-calendar .k-nav-today.k-state-focus,
|
|
18793
|
+
.k-calendar .k-calendar-nav-today:hover,
|
|
18794
|
+
.k-calendar .k-calendar-nav-today.k-hover,
|
|
18795
|
+
.k-calendar .k-calendar-nav-today.k-state-hover,
|
|
18796
|
+
.k-calendar .k-calendar-nav-today:focus,
|
|
18797
|
+
.k-calendar .k-calendar-nav-today.k-focus,
|
|
18798
|
+
.k-calendar .k-calendar-nav-today.k-state-focus {
|
|
18787
18799
|
color: #cc4a00;
|
|
18788
18800
|
}
|
|
18789
18801
|
|
package/dist/all.scss
CHANGED
|
@@ -16991,7 +16991,8 @@ $kendo-calendar-sizes: (
|
|
|
16991
16991
|
font-weight: bold;
|
|
16992
16992
|
}
|
|
16993
16993
|
.k-today,
|
|
16994
|
-
.k-nav-today
|
|
16994
|
+
.k-nav-today,
|
|
16995
|
+
.k-calendar-nav-today {
|
|
16995
16996
|
text-decoration: none;
|
|
16996
16997
|
cursor: pointer;
|
|
16997
16998
|
outline: none;
|
|
@@ -17361,7 +17362,9 @@ $kendo-calendar-sizes: (
|
|
|
17361
17362
|
.k-nav-prev,
|
|
17362
17363
|
.k-nav-next,
|
|
17363
17364
|
.k-prev-view,
|
|
17364
|
-
.k-next-view
|
|
17365
|
+
.k-next-view,
|
|
17366
|
+
.k-calendar-nav-prev,
|
|
17367
|
+
.k-calendar-nav-next {
|
|
17365
17368
|
transform: scaleX(-1);
|
|
17366
17369
|
}
|
|
17367
17370
|
|
|
@@ -17421,7 +17424,8 @@ $kendo-calendar-sizes: (
|
|
|
17421
17424
|
|
|
17422
17425
|
|
|
17423
17426
|
// Today navigation
|
|
17424
|
-
.k-nav-today
|
|
17427
|
+
.k-nav-today,
|
|
17428
|
+
.k-calendar-nav-today {
|
|
17425
17429
|
color: $calendar-today-nav-text;
|
|
17426
17430
|
|
|
17427
17431
|
&:hover,
|
|
@@ -19015,10 +19019,7 @@ $coloreditor-views-gap: $coloreditor-spacer !default;
|
|
|
19015
19019
|
// #region @import "../button/_index.scss"; -> packages/classic/scss/button/_index.scss
|
|
19016
19020
|
// File already imported_once. Skipping output.
|
|
19017
19021
|
// #endregion
|
|
19018
|
-
// #region @import "../
|
|
19019
|
-
// File already imported_once. Skipping output.
|
|
19020
|
-
// #endregion
|
|
19021
|
-
// #region @import "../colorgradient/_index.scss"; -> packages/classic/scss/colorgradient/_index.scss
|
|
19022
|
+
// #region @import "../coloreditor/_index.scss"; -> packages/classic/scss/coloreditor/_index.scss
|
|
19022
19023
|
// File already imported_once. Skipping output.
|
|
19023
19024
|
// #endregion
|
|
19024
19025
|
// #region @import "../popup/_index.scss"; -> packages/classic/scss/popup/_index.scss
|
|
@@ -19429,6 +19430,9 @@ $kendo-daterange-picker-input-width: 10em;
|
|
|
19429
19430
|
// #region @import "../common/_index.scss"; -> packages/classic/scss/common/_index.scss
|
|
19430
19431
|
// File already imported_once. Skipping output.
|
|
19431
19432
|
// #endregion
|
|
19433
|
+
// #region @import "../table/_index.scss"; -> packages/classic/scss/table/_index.scss
|
|
19434
|
+
// File already imported_once. Skipping output.
|
|
19435
|
+
// #endregion
|
|
19432
19436
|
// #region @import "../input/_index.scss"; -> packages/classic/scss/input/_index.scss
|
|
19433
19437
|
// File already imported_once. Skipping output.
|
|
19434
19438
|
// #endregion
|
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.6.0",
|
|
4
|
+
"version": "5.6.1-dev.0",
|
|
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.6.0"
|
|
46
|
+
"@progress/kendo-theme-default": "^5.6.1-dev.0"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"sass-build": "^0.0.1"
|
|
50
50
|
},
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "57dbcf8b8d0e6f11fc74d102cd8784a17438b2d2"
|
|
52
52
|
}
|
|
@@ -4,8 +4,7 @@
|
|
|
4
4
|
// Dependencies
|
|
5
5
|
@import "../input/_index.scss";
|
|
6
6
|
@import "../button/_index.scss";
|
|
7
|
-
@import "../
|
|
8
|
-
@import "../colorgradient/_index.scss";
|
|
7
|
+
@import "../coloreditor/_index.scss";
|
|
9
8
|
@import "../popup/_index.scss";
|
|
10
9
|
@import "../icons/_index.scss";
|
|
11
10
|
|