@progress/kendo-theme-classic 5.0.0 → 5.0.1
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 +79 -8
- package/dist/all.scss +27 -13
- package/package.json +3 -3
- package/scss/button/_variables.scss +3 -0
- package/scss/daterangepicker/_variables.scss +1 -0
package/dist/all.css
CHANGED
|
@@ -11649,6 +11649,8 @@ kendo-badge-container {
|
|
|
11649
11649
|
box-sizing: border-box;
|
|
11650
11650
|
border-width: 1px;
|
|
11651
11651
|
border-style: solid;
|
|
11652
|
+
color: inherit;
|
|
11653
|
+
background: none;
|
|
11652
11654
|
font-family: inherit;
|
|
11653
11655
|
text-align: center;
|
|
11654
11656
|
text-decoration: none;
|
|
@@ -11890,12 +11892,11 @@ kendo-badge-container {
|
|
|
11890
11892
|
text-decoration: underline;
|
|
11891
11893
|
}
|
|
11892
11894
|
|
|
11893
|
-
.k-button-clear
|
|
11894
|
-
|
|
11895
|
-
|
|
11896
|
-
|
|
11897
|
-
|
|
11898
|
-
display: block;
|
|
11895
|
+
.k-button-clear {
|
|
11896
|
+
border-color: transparent !important;
|
|
11897
|
+
color: inherit;
|
|
11898
|
+
background: none !important;
|
|
11899
|
+
box-shadow: none !important;
|
|
11899
11900
|
}
|
|
11900
11901
|
|
|
11901
11902
|
.k-ie .k-button-group .k-button,
|
|
@@ -12828,46 +12829,112 @@ kendo-badge-container {
|
|
|
12828
12829
|
color: #f35800;
|
|
12829
12830
|
}
|
|
12830
12831
|
|
|
12832
|
+
.k-button-clear-primary:focus::after, .k-button-clear-primary.k-focus::after, .k-button-clear-primary:active::after {
|
|
12833
|
+
background-color: currentColor;
|
|
12834
|
+
opacity: 0.1;
|
|
12835
|
+
display: block;
|
|
12836
|
+
}
|
|
12837
|
+
|
|
12831
12838
|
.k-button-clear-secondary {
|
|
12832
12839
|
color: #e9e9e9;
|
|
12833
12840
|
}
|
|
12834
12841
|
|
|
12842
|
+
.k-button-clear-secondary:focus::after, .k-button-clear-secondary.k-focus::after, .k-button-clear-secondary:active::after {
|
|
12843
|
+
background-color: currentColor;
|
|
12844
|
+
opacity: 0.1;
|
|
12845
|
+
display: block;
|
|
12846
|
+
}
|
|
12847
|
+
|
|
12835
12848
|
.k-button-clear-tertiary {
|
|
12836
12849
|
color: #03a9f4;
|
|
12837
12850
|
}
|
|
12838
12851
|
|
|
12852
|
+
.k-button-clear-tertiary:focus::after, .k-button-clear-tertiary.k-focus::after, .k-button-clear-tertiary:active::after {
|
|
12853
|
+
background-color: currentColor;
|
|
12854
|
+
opacity: 0.1;
|
|
12855
|
+
display: block;
|
|
12856
|
+
}
|
|
12857
|
+
|
|
12839
12858
|
.k-button-clear-info {
|
|
12840
12859
|
color: #2498bc;
|
|
12841
12860
|
}
|
|
12842
12861
|
|
|
12862
|
+
.k-button-clear-info:focus::after, .k-button-clear-info.k-focus::after, .k-button-clear-info:active::after {
|
|
12863
|
+
background-color: currentColor;
|
|
12864
|
+
opacity: 0.1;
|
|
12865
|
+
display: block;
|
|
12866
|
+
}
|
|
12867
|
+
|
|
12843
12868
|
.k-button-clear-success {
|
|
12844
12869
|
color: #3ea44e;
|
|
12845
12870
|
}
|
|
12846
12871
|
|
|
12872
|
+
.k-button-clear-success:focus::after, .k-button-clear-success.k-focus::after, .k-button-clear-success:active::after {
|
|
12873
|
+
background-color: currentColor;
|
|
12874
|
+
opacity: 0.1;
|
|
12875
|
+
display: block;
|
|
12876
|
+
}
|
|
12877
|
+
|
|
12847
12878
|
.k-button-clear-warning {
|
|
12848
12879
|
color: #ff9800;
|
|
12849
12880
|
}
|
|
12850
12881
|
|
|
12882
|
+
.k-button-clear-warning:focus::after, .k-button-clear-warning.k-focus::after, .k-button-clear-warning:active::after {
|
|
12883
|
+
background-color: currentColor;
|
|
12884
|
+
opacity: 0.1;
|
|
12885
|
+
display: block;
|
|
12886
|
+
}
|
|
12887
|
+
|
|
12851
12888
|
.k-button-clear-error {
|
|
12852
12889
|
color: #d92800;
|
|
12853
12890
|
}
|
|
12854
12891
|
|
|
12892
|
+
.k-button-clear-error:focus::after, .k-button-clear-error.k-focus::after, .k-button-clear-error:active::after {
|
|
12893
|
+
background-color: currentColor;
|
|
12894
|
+
opacity: 0.1;
|
|
12895
|
+
display: block;
|
|
12896
|
+
}
|
|
12897
|
+
|
|
12855
12898
|
.k-button-clear-dark {
|
|
12856
12899
|
color: #404040;
|
|
12857
12900
|
}
|
|
12858
12901
|
|
|
12902
|
+
.k-button-clear-dark:focus::after, .k-button-clear-dark.k-focus::after, .k-button-clear-dark:active::after {
|
|
12903
|
+
background-color: currentColor;
|
|
12904
|
+
opacity: 0.1;
|
|
12905
|
+
display: block;
|
|
12906
|
+
}
|
|
12907
|
+
|
|
12859
12908
|
.k-button-clear-light {
|
|
12860
12909
|
color: #ebebeb;
|
|
12861
12910
|
}
|
|
12862
12911
|
|
|
12912
|
+
.k-button-clear-light:focus::after, .k-button-clear-light.k-focus::after, .k-button-clear-light:active::after {
|
|
12913
|
+
background-color: currentColor;
|
|
12914
|
+
opacity: 0.1;
|
|
12915
|
+
display: block;
|
|
12916
|
+
}
|
|
12917
|
+
|
|
12863
12918
|
.k-button-clear-inverse {
|
|
12864
12919
|
color: #404040;
|
|
12865
12920
|
}
|
|
12866
12921
|
|
|
12922
|
+
.k-button-clear-inverse:focus::after, .k-button-clear-inverse.k-focus::after, .k-button-clear-inverse:active::after {
|
|
12923
|
+
background-color: currentColor;
|
|
12924
|
+
opacity: 0.1;
|
|
12925
|
+
display: block;
|
|
12926
|
+
}
|
|
12927
|
+
|
|
12867
12928
|
.k-button-clear-base {
|
|
12868
12929
|
color: #272727;
|
|
12869
12930
|
}
|
|
12870
12931
|
|
|
12932
|
+
.k-button-clear-base:focus::after, .k-button-clear-base.k-focus::after, .k-button-clear-base:active::after {
|
|
12933
|
+
background-color: currentColor;
|
|
12934
|
+
opacity: 0.1;
|
|
12935
|
+
display: block;
|
|
12936
|
+
}
|
|
12937
|
+
|
|
12871
12938
|
.k-split-button:focus,
|
|
12872
12939
|
.k-split-button.k-focus {
|
|
12873
12940
|
box-shadow: 0 0 4px 0 rgba(202, 202, 202, 0.75);
|
|
@@ -15853,7 +15920,8 @@ kendo-label > .k-label {
|
|
|
15853
15920
|
}
|
|
15854
15921
|
|
|
15855
15922
|
.k-form .k-multiselect,
|
|
15856
|
-
.k-form .k-floating-label-container
|
|
15923
|
+
.k-form .k-floating-label-container,
|
|
15924
|
+
.k-form .k-daterangepicker .k-dateinput {
|
|
15857
15925
|
display: inline-flex;
|
|
15858
15926
|
width: 100%;
|
|
15859
15927
|
}
|
|
@@ -18763,6 +18831,10 @@ kendo-label > .k-label {
|
|
|
18763
18831
|
box-sizing: border-box;
|
|
18764
18832
|
}
|
|
18765
18833
|
|
|
18834
|
+
.k-daterange-picker .k-dateinput, .k-daterangepicker .k-dateinput {
|
|
18835
|
+
width: 10em;
|
|
18836
|
+
}
|
|
18837
|
+
|
|
18766
18838
|
.k-daterangepicker-wrap {
|
|
18767
18839
|
display: inherit;
|
|
18768
18840
|
flex-flow: inherit;
|
|
@@ -24183,7 +24255,6 @@ kendo-card-footer {
|
|
|
24183
24255
|
padding-left: 32px;
|
|
24184
24256
|
}
|
|
24185
24257
|
|
|
24186
|
-
.k-panelbar .k-content,
|
|
24187
24258
|
.k-panelbar .k-panelbar-content {
|
|
24188
24259
|
display: flow-root;
|
|
24189
24260
|
}
|
package/dist/all.scss
CHANGED
|
@@ -8152,6 +8152,9 @@ $kendo-link-button-shadow-blur: 4px !default;
|
|
|
8152
8152
|
$kendo-link-button-shadow-spread: 0px !default;
|
|
8153
8153
|
$kendo-link-button-shadow-opacity: .75 !default;
|
|
8154
8154
|
|
|
8155
|
+
// Clear button
|
|
8156
|
+
$kendo-clear-button-focus-opacity: .1 !default;
|
|
8157
|
+
|
|
8155
8158
|
/// The overlay opacity of hovered flat button. Used to create background for the flat button.
|
|
8156
8159
|
/// @group button
|
|
8157
8160
|
$kendo-flat-button-hover-opacity: .08 !default;
|
|
@@ -8179,6 +8182,8 @@ $kendo-button-transition: color .2s ease-in-out !default;
|
|
|
8179
8182
|
box-sizing: border-box;
|
|
8180
8183
|
border-width: $kendo-button-border-width;
|
|
8181
8184
|
border-style: solid;
|
|
8185
|
+
color: inherit;
|
|
8186
|
+
background: none;
|
|
8182
8187
|
font-family: $kendo-button-font-family;
|
|
8183
8188
|
text-align: center;
|
|
8184
8189
|
text-decoration: none;
|
|
@@ -8443,20 +8448,14 @@ $kendo-button-transition: color .2s ease-in-out !default;
|
|
|
8443
8448
|
|
|
8444
8449
|
// Clear button
|
|
8445
8450
|
.k-button-clear {
|
|
8446
|
-
|
|
8447
|
-
|
|
8448
|
-
|
|
8449
|
-
|
|
8450
|
-
|
|
8451
|
-
&:focus,
|
|
8452
|
-
&.k-focus {
|
|
8453
|
-
&::before {
|
|
8454
|
-
display: block;
|
|
8455
|
-
}
|
|
8456
|
-
}
|
|
8451
|
+
border-color: transparent !important; // sass-lint:disable-line no-important
|
|
8452
|
+
color: inherit;
|
|
8453
|
+
background: none !important; // sass-lint:disable-line no-important
|
|
8454
|
+
box-shadow: none !important; // sass-lint:disable-line no-important
|
|
8457
8455
|
}
|
|
8458
8456
|
|
|
8459
8457
|
|
|
8458
|
+
|
|
8460
8459
|
// IE
|
|
8461
8460
|
.k-ie .k-button-group,
|
|
8462
8461
|
.k-ie .k-split-button {
|
|
@@ -8821,6 +8820,16 @@ $kendo-button-transition: color .2s ease-in-out !default;
|
|
|
8821
8820
|
.k-button-clear-#{$name} {
|
|
8822
8821
|
color: $color;
|
|
8823
8822
|
|
|
8823
|
+
&:focus,
|
|
8824
|
+
&.k-focus,
|
|
8825
|
+
&:active {
|
|
8826
|
+
&::after {
|
|
8827
|
+
background-color: currentColor;
|
|
8828
|
+
opacity: $kendo-clear-button-focus-opacity;
|
|
8829
|
+
display: block;
|
|
8830
|
+
}
|
|
8831
|
+
}
|
|
8832
|
+
|
|
8824
8833
|
// Disabled state
|
|
8825
8834
|
&:disabled,
|
|
8826
8835
|
&.k-disabled {
|
|
@@ -13552,7 +13561,8 @@ $fieldset-legend-border: null !default;
|
|
|
13552
13561
|
|
|
13553
13562
|
|
|
13554
13563
|
.k-multiselect,
|
|
13555
|
-
.k-floating-label-container
|
|
13564
|
+
.k-floating-label-container,
|
|
13565
|
+
.k-daterangepicker .k-dateinput {
|
|
13556
13566
|
display: inline-flex;
|
|
13557
13567
|
width: 100%;
|
|
13558
13568
|
}
|
|
@@ -18370,6 +18380,7 @@ $datetime-width: calc( #{$calendar-cell-size * 8} + #{$infinite-calendar-view-pa
|
|
|
18370
18380
|
// Component
|
|
18371
18381
|
// #region @import "_variables.scss"; -> packages/classic/scss/daterangepicker/_variables.scss
|
|
18372
18382
|
// Daterangepicker
|
|
18383
|
+
$kendo-daterange-picker-input-width: 10em;
|
|
18373
18384
|
|
|
18374
18385
|
// #endregion
|
|
18375
18386
|
// #region @import "_layout.scss"; -> packages/classic/scss/daterangepicker/_layout.scss
|
|
@@ -18389,6 +18400,10 @@ $datetime-width: calc( #{$calendar-cell-size * 8} + #{$infinite-calendar-view-pa
|
|
|
18389
18400
|
*::after {
|
|
18390
18401
|
box-sizing: border-box;
|
|
18391
18402
|
}
|
|
18403
|
+
|
|
18404
|
+
.k-dateinput {
|
|
18405
|
+
width: $kendo-daterange-picker-input-width;
|
|
18406
|
+
}
|
|
18392
18407
|
}
|
|
18393
18408
|
|
|
18394
18409
|
|
|
@@ -26741,7 +26756,6 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
26741
26756
|
|
|
26742
26757
|
|
|
26743
26758
|
// Panelbar content
|
|
26744
|
-
.k-content,
|
|
26745
26759
|
.k-panelbar-content {
|
|
26746
26760
|
display: flow-root;
|
|
26747
26761
|
}
|
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.0.
|
|
4
|
+
"version": "5.0.1",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"postpublish": "echo 'no postpublish for classic theme'"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@progress/kendo-theme-default": "^5.0.
|
|
52
|
+
"@progress/kendo-theme-default": "^5.0.1"
|
|
53
53
|
},
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "7d2371ce2d1bf6cb93c6514e6578965140837353"
|
|
55
55
|
}
|
|
@@ -183,6 +183,9 @@ $kendo-link-button-shadow-blur: 4px !default;
|
|
|
183
183
|
$kendo-link-button-shadow-spread: 0px !default;
|
|
184
184
|
$kendo-link-button-shadow-opacity: .75 !default;
|
|
185
185
|
|
|
186
|
+
// Clear button
|
|
187
|
+
$kendo-clear-button-focus-opacity: .1 !default;
|
|
188
|
+
|
|
186
189
|
/// The overlay opacity of hovered flat button. Used to create background for the flat button.
|
|
187
190
|
/// @group button
|
|
188
191
|
$kendo-flat-button-hover-opacity: .08 !default;
|