@progress/kendo-theme-default 4.43.1-dev.8 → 4.44.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 +41 -5
- package/dist/all.scss +36 -5
- package/package.json +2 -2
- package/scss/common/_loading.scss +14 -0
- package/scss/grid/_layout.scss +3 -2
- package/scss/grid/_theme.scss +2 -2
- package/scss/tabstrip/_layout.scss +10 -0
- package/scss/timeline/_layout.scss +3 -1
- package/scss/wizard/_layout.scss +4 -0
package/dist/all.css
CHANGED
|
@@ -963,11 +963,28 @@ kendo-sortable {
|
|
|
963
963
|
.k-loading-color {
|
|
964
964
|
width: 100%;
|
|
965
965
|
height: 100%;
|
|
966
|
+
box-sizing: border-box;
|
|
966
967
|
position: absolute;
|
|
967
968
|
top: 0;
|
|
968
969
|
left: 0;
|
|
969
970
|
}
|
|
970
971
|
|
|
972
|
+
.k-loading-mask *,
|
|
973
|
+
.k-loading-mask *::before,
|
|
974
|
+
.k-loading-mask *::after, .k-loading-mask::before, .k-loading-mask::after,
|
|
975
|
+
.k-loading-image *,
|
|
976
|
+
.k-loading-image *::before,
|
|
977
|
+
.k-loading-image *::after,
|
|
978
|
+
.k-loading-image::before,
|
|
979
|
+
.k-loading-image::after,
|
|
980
|
+
.k-loading-color *,
|
|
981
|
+
.k-loading-color *::before,
|
|
982
|
+
.k-loading-color *::after,
|
|
983
|
+
.k-loading-color::before,
|
|
984
|
+
.k-loading-color::after {
|
|
985
|
+
box-sizing: border-box;
|
|
986
|
+
}
|
|
987
|
+
|
|
971
988
|
.k-loading-mask {
|
|
972
989
|
z-index: 100;
|
|
973
990
|
}
|
|
@@ -998,6 +1015,10 @@ kendo-sortable {
|
|
|
998
1015
|
color: currentColor;
|
|
999
1016
|
}
|
|
1000
1017
|
|
|
1018
|
+
.k-i-loading::before, .k-i-loading::after {
|
|
1019
|
+
box-sizing: border-box;
|
|
1020
|
+
}
|
|
1021
|
+
|
|
1001
1022
|
.k-i-loading::before,
|
|
1002
1023
|
.k-i-loading::after,
|
|
1003
1024
|
.k-loading-image::before,
|
|
@@ -24597,6 +24618,7 @@ kendo-card-footer {
|
|
|
24597
24618
|
|
|
24598
24619
|
.k-tabstrip-wrapper {
|
|
24599
24620
|
padding: 0px 0px;
|
|
24621
|
+
box-sizing: border-box;
|
|
24600
24622
|
border-width: 0px;
|
|
24601
24623
|
border-style: solid;
|
|
24602
24624
|
display: flex;
|
|
@@ -24624,6 +24646,7 @@ kendo-card-footer {
|
|
|
24624
24646
|
}
|
|
24625
24647
|
|
|
24626
24648
|
.k-tabstrip-items-wrapper {
|
|
24649
|
+
box-sizing: border-box;
|
|
24627
24650
|
border-width: 0;
|
|
24628
24651
|
border-style: solid;
|
|
24629
24652
|
border-color: inherit;
|
|
@@ -24632,12 +24655,19 @@ kendo-card-footer {
|
|
|
24632
24655
|
}
|
|
24633
24656
|
|
|
24634
24657
|
.k-tabstrip-items {
|
|
24658
|
+
box-sizing: border-box;
|
|
24635
24659
|
outline: 0;
|
|
24636
24660
|
display: flex;
|
|
24637
24661
|
flex-flow: row wrap;
|
|
24638
24662
|
flex: 0 0 auto;
|
|
24639
24663
|
}
|
|
24640
24664
|
|
|
24665
|
+
.k-tabstrip-items *,
|
|
24666
|
+
.k-tabstrip-items *::before,
|
|
24667
|
+
.k-tabstrip-items *::after {
|
|
24668
|
+
box-sizing: border-box;
|
|
24669
|
+
}
|
|
24670
|
+
|
|
24641
24671
|
.k-tabstrip-items .k-item {
|
|
24642
24672
|
margin: 0;
|
|
24643
24673
|
padding: 0;
|
|
@@ -24674,6 +24704,7 @@ kendo-card-footer {
|
|
|
24674
24704
|
.k-tabstrip-content,
|
|
24675
24705
|
.k-tabstrip > .k-content {
|
|
24676
24706
|
padding: 16px 16px;
|
|
24707
|
+
box-sizing: border-box;
|
|
24677
24708
|
border-width: 1px;
|
|
24678
24709
|
border-style: solid;
|
|
24679
24710
|
border-color: inherit;
|
|
@@ -24961,11 +24992,13 @@ kendo-card-footer {
|
|
|
24961
24992
|
}
|
|
24962
24993
|
|
|
24963
24994
|
.k-wizard .k-wizard-steps {
|
|
24995
|
+
box-sizing: border-box;
|
|
24964
24996
|
display: flex;
|
|
24965
24997
|
overflow: hidden;
|
|
24966
24998
|
}
|
|
24967
24999
|
|
|
24968
25000
|
.k-wizard .k-wizard-step {
|
|
25001
|
+
box-sizing: border-box;
|
|
24969
25002
|
padding: 10px;
|
|
24970
25003
|
width: 100%;
|
|
24971
25004
|
display: flex;
|
|
@@ -24981,11 +25014,13 @@ kendo-card-footer {
|
|
|
24981
25014
|
}
|
|
24982
25015
|
|
|
24983
25016
|
.k-wizard .k-wizard-content {
|
|
25017
|
+
box-sizing: border-box;
|
|
24984
25018
|
overflow-y: auto;
|
|
24985
25019
|
}
|
|
24986
25020
|
|
|
24987
25021
|
.k-wizard .k-wizard-buttons {
|
|
24988
25022
|
margin-top: 32px;
|
|
25023
|
+
box-sizing: border-box;
|
|
24989
25024
|
display: flex;
|
|
24990
25025
|
flex-wrap: nowrap;
|
|
24991
25026
|
align-items: center;
|
|
@@ -27320,11 +27355,12 @@ div.k-grid-norecords {
|
|
|
27320
27355
|
}
|
|
27321
27356
|
|
|
27322
27357
|
.k-grid-norecords-template {
|
|
27358
|
+
box-sizing: border-box;
|
|
27359
|
+
margin: 0 auto;
|
|
27323
27360
|
width: 20em;
|
|
27324
27361
|
height: 4em;
|
|
27325
|
-
line-height: 4em;
|
|
27326
|
-
margin: 0 auto;
|
|
27327
27362
|
border: 1px solid;
|
|
27363
|
+
line-height: 4em;
|
|
27328
27364
|
}
|
|
27329
27365
|
|
|
27330
27366
|
.k-header > .k-cell-inner {
|
|
@@ -27787,8 +27823,8 @@ tbody .k-group-cell {
|
|
|
27787
27823
|
background-color: rgba(0, 0, 0, 0.04);
|
|
27788
27824
|
}
|
|
27789
27825
|
|
|
27790
|
-
.k-grid tbody tr:hover,
|
|
27791
|
-
.k-grid tbody tr.k-state-hover {
|
|
27826
|
+
.k-grid tbody tr:not(.k-detail-row):hover,
|
|
27827
|
+
.k-grid tbody tr:not(.k-detail-row).k-state-hover {
|
|
27792
27828
|
background-color: #ededed;
|
|
27793
27829
|
}
|
|
27794
27830
|
|
|
@@ -34972,7 +35008,7 @@ ul.k-scheduler-views li:focus, ul.k-scheduler-views li.k-state-focus, ul.k-sched
|
|
|
34972
35008
|
|
|
34973
35009
|
.k-timeline *,
|
|
34974
35010
|
.k-timeline *::before,
|
|
34975
|
-
.k-timeline *::after {
|
|
35011
|
+
.k-timeline *::after, .k-timeline::before, .k-timeline::after {
|
|
34976
35012
|
box-sizing: border-box;
|
|
34977
35013
|
}
|
|
34978
35014
|
|
package/dist/all.scss
CHANGED
|
@@ -2733,9 +2733,18 @@ $display4-letter-spacing: null !default;
|
|
|
2733
2733
|
.k-loading-color {
|
|
2734
2734
|
width: 100%;
|
|
2735
2735
|
height: 100%;
|
|
2736
|
+
box-sizing: border-box;
|
|
2736
2737
|
position: absolute;
|
|
2737
2738
|
top: 0;
|
|
2738
2739
|
left: 0;
|
|
2740
|
+
|
|
2741
|
+
*,
|
|
2742
|
+
*::before,
|
|
2743
|
+
*::after,
|
|
2744
|
+
&::before,
|
|
2745
|
+
&::after {
|
|
2746
|
+
box-sizing: border-box;
|
|
2747
|
+
}
|
|
2739
2748
|
}
|
|
2740
2749
|
|
|
2741
2750
|
.k-loading-mask {
|
|
@@ -2766,6 +2775,11 @@ $display4-letter-spacing: null !default;
|
|
|
2766
2775
|
background-color: transparent;
|
|
2767
2776
|
box-sizing: border-box;
|
|
2768
2777
|
color: currentColor;
|
|
2778
|
+
|
|
2779
|
+
&::before,
|
|
2780
|
+
&::after {
|
|
2781
|
+
box-sizing: border-box;
|
|
2782
|
+
}
|
|
2769
2783
|
}
|
|
2770
2784
|
|
|
2771
2785
|
.k-i-loading::before,
|
|
@@ -26915,6 +26929,7 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
26915
26929
|
|
|
26916
26930
|
.k-tabstrip-wrapper {
|
|
26917
26931
|
padding: $tabstrip-wrapper-padding-y $tabstrip-wrapper-padding-x;
|
|
26932
|
+
box-sizing: border-box;
|
|
26918
26933
|
border-width: $tabstrip-wrapper-border-width;
|
|
26919
26934
|
border-style: solid;
|
|
26920
26935
|
display: flex;
|
|
@@ -26942,6 +26957,7 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
26942
26957
|
}
|
|
26943
26958
|
|
|
26944
26959
|
.k-tabstrip-items-wrapper {
|
|
26960
|
+
box-sizing: border-box;
|
|
26945
26961
|
border-width: 0;
|
|
26946
26962
|
border-style: solid;
|
|
26947
26963
|
border-color: inherit;
|
|
@@ -26950,11 +26966,18 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
26950
26966
|
}
|
|
26951
26967
|
|
|
26952
26968
|
.k-tabstrip-items {
|
|
26969
|
+
box-sizing: border-box;
|
|
26953
26970
|
outline: 0;
|
|
26954
26971
|
display: flex;
|
|
26955
26972
|
flex-flow: row wrap;
|
|
26956
26973
|
flex: 0 0 auto;
|
|
26957
26974
|
|
|
26975
|
+
*,
|
|
26976
|
+
*::before,
|
|
26977
|
+
*::after {
|
|
26978
|
+
box-sizing: border-box;
|
|
26979
|
+
}
|
|
26980
|
+
|
|
26958
26981
|
.k-item {
|
|
26959
26982
|
margin: 0;
|
|
26960
26983
|
padding: 0;
|
|
@@ -26991,6 +27014,7 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
26991
27014
|
.k-tabstrip-content,
|
|
26992
27015
|
.k-tabstrip > .k-content {
|
|
26993
27016
|
padding: $tabstrip-content-padding-y $tabstrip-content-padding-x;
|
|
27017
|
+
box-sizing: border-box;
|
|
26994
27018
|
border-width: $tabstrip-content-border-width;
|
|
26995
27019
|
border-style: solid;
|
|
26996
27020
|
border-color: inherit;
|
|
@@ -27431,11 +27455,13 @@ $wizard-focused-shadow: inset 0 0 0 2px rgba(0, 0, 0, .13) !default;
|
|
|
27431
27455
|
overflow: hidden;
|
|
27432
27456
|
|
|
27433
27457
|
.k-wizard-steps {
|
|
27458
|
+
box-sizing: border-box;
|
|
27434
27459
|
display: flex;
|
|
27435
27460
|
overflow: hidden;
|
|
27436
27461
|
}
|
|
27437
27462
|
|
|
27438
27463
|
.k-wizard-step {
|
|
27464
|
+
box-sizing: border-box;
|
|
27439
27465
|
padding: calc(#{$wizard-content-padding-x / 4} + 2px);
|
|
27440
27466
|
width: 100%;
|
|
27441
27467
|
display: flex;
|
|
@@ -27452,11 +27478,13 @@ $wizard-focused-shadow: inset 0 0 0 2px rgba(0, 0, 0, .13) !default;
|
|
|
27452
27478
|
}
|
|
27453
27479
|
|
|
27454
27480
|
.k-wizard-content {
|
|
27481
|
+
box-sizing: border-box;
|
|
27455
27482
|
overflow-y: auto;
|
|
27456
27483
|
}
|
|
27457
27484
|
|
|
27458
27485
|
.k-wizard-buttons {
|
|
27459
27486
|
margin-top: $wizard-content-padding-y;
|
|
27487
|
+
box-sizing: border-box;
|
|
27460
27488
|
display: flex;
|
|
27461
27489
|
flex-wrap: nowrap;
|
|
27462
27490
|
align-items: center;
|
|
@@ -30469,11 +30497,12 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
30469
30497
|
}
|
|
30470
30498
|
|
|
30471
30499
|
.k-grid-norecords-template {
|
|
30500
|
+
box-sizing: border-box;
|
|
30501
|
+
margin: 0 auto;
|
|
30472
30502
|
width: 20em;
|
|
30473
30503
|
height: 4em;
|
|
30474
|
-
line-height: 4em;
|
|
30475
|
-
margin: 0 auto;
|
|
30476
30504
|
border: 1px solid;
|
|
30505
|
+
line-height: 4em;
|
|
30477
30506
|
}
|
|
30478
30507
|
|
|
30479
30508
|
.k-header > .k-cell-inner {
|
|
@@ -30970,8 +30999,8 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
30970
30999
|
}
|
|
30971
31000
|
|
|
30972
31001
|
// Hover state
|
|
30973
|
-
tbody tr:hover,
|
|
30974
|
-
tbody tr.k-state-hover {
|
|
31002
|
+
tbody tr:not(.k-detail-row):hover,
|
|
31003
|
+
tbody tr:not(.k-detail-row).k-state-hover {
|
|
30975
31004
|
color: $grid-hovered-text;
|
|
30976
31005
|
background-color: $grid-hovered-bg;
|
|
30977
31006
|
}
|
|
@@ -40570,7 +40599,9 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
|
|
|
40570
40599
|
|
|
40571
40600
|
*,
|
|
40572
40601
|
*::before,
|
|
40573
|
-
*::after
|
|
40602
|
+
*::after,
|
|
40603
|
+
&::before,
|
|
40604
|
+
&::after {
|
|
40574
40605
|
box-sizing: border-box;
|
|
40575
40606
|
}
|
|
40576
40607
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-theme-default",
|
|
3
3
|
"description": "SASS resources for the default Kendo UI theme",
|
|
4
|
-
"version": "4.
|
|
4
|
+
"version": "4.44.0",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -47,5 +47,5 @@
|
|
|
47
47
|
"dart:flat": "gulp dart:flat",
|
|
48
48
|
"prepublishOnly": "echo 'no prebublish for default theme'"
|
|
49
49
|
},
|
|
50
|
-
"gitHead": "
|
|
50
|
+
"gitHead": "3632cd4d3b93f2ec215392497839837d54477e63"
|
|
51
51
|
}
|
|
@@ -6,9 +6,18 @@
|
|
|
6
6
|
.k-loading-color {
|
|
7
7
|
width: 100%;
|
|
8
8
|
height: 100%;
|
|
9
|
+
box-sizing: border-box;
|
|
9
10
|
position: absolute;
|
|
10
11
|
top: 0;
|
|
11
12
|
left: 0;
|
|
13
|
+
|
|
14
|
+
*,
|
|
15
|
+
*::before,
|
|
16
|
+
*::after,
|
|
17
|
+
&::before,
|
|
18
|
+
&::after {
|
|
19
|
+
box-sizing: border-box;
|
|
20
|
+
}
|
|
12
21
|
}
|
|
13
22
|
|
|
14
23
|
.k-loading-mask {
|
|
@@ -39,6 +48,11 @@
|
|
|
39
48
|
background-color: transparent;
|
|
40
49
|
box-sizing: border-box;
|
|
41
50
|
color: currentColor;
|
|
51
|
+
|
|
52
|
+
&::before,
|
|
53
|
+
&::after {
|
|
54
|
+
box-sizing: border-box;
|
|
55
|
+
}
|
|
42
56
|
}
|
|
43
57
|
|
|
44
58
|
.k-i-loading::before,
|
package/scss/grid/_layout.scss
CHANGED
|
@@ -1061,11 +1061,12 @@
|
|
|
1061
1061
|
}
|
|
1062
1062
|
|
|
1063
1063
|
.k-grid-norecords-template {
|
|
1064
|
+
box-sizing: border-box;
|
|
1065
|
+
margin: 0 auto;
|
|
1064
1066
|
width: 20em;
|
|
1065
1067
|
height: 4em;
|
|
1066
|
-
line-height: 4em;
|
|
1067
|
-
margin: 0 auto;
|
|
1068
1068
|
border: 1px solid;
|
|
1069
|
+
line-height: 4em;
|
|
1069
1070
|
}
|
|
1070
1071
|
|
|
1071
1072
|
.k-header > .k-cell-inner {
|
package/scss/grid/_theme.scss
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
.k-tabstrip-wrapper {
|
|
4
4
|
padding: $tabstrip-wrapper-padding-y $tabstrip-wrapper-padding-x;
|
|
5
|
+
box-sizing: border-box;
|
|
5
6
|
border-width: $tabstrip-wrapper-border-width;
|
|
6
7
|
border-style: solid;
|
|
7
8
|
display: flex;
|
|
@@ -29,6 +30,7 @@
|
|
|
29
30
|
}
|
|
30
31
|
|
|
31
32
|
.k-tabstrip-items-wrapper {
|
|
33
|
+
box-sizing: border-box;
|
|
32
34
|
border-width: 0;
|
|
33
35
|
border-style: solid;
|
|
34
36
|
border-color: inherit;
|
|
@@ -37,11 +39,18 @@
|
|
|
37
39
|
}
|
|
38
40
|
|
|
39
41
|
.k-tabstrip-items {
|
|
42
|
+
box-sizing: border-box;
|
|
40
43
|
outline: 0;
|
|
41
44
|
display: flex;
|
|
42
45
|
flex-flow: row wrap;
|
|
43
46
|
flex: 0 0 auto;
|
|
44
47
|
|
|
48
|
+
*,
|
|
49
|
+
*::before,
|
|
50
|
+
*::after {
|
|
51
|
+
box-sizing: border-box;
|
|
52
|
+
}
|
|
53
|
+
|
|
45
54
|
.k-item {
|
|
46
55
|
margin: 0;
|
|
47
56
|
padding: 0;
|
|
@@ -78,6 +87,7 @@
|
|
|
78
87
|
.k-tabstrip-content,
|
|
79
88
|
.k-tabstrip > .k-content {
|
|
80
89
|
padding: $tabstrip-content-padding-y $tabstrip-content-padding-x;
|
|
90
|
+
box-sizing: border-box;
|
|
81
91
|
border-width: $tabstrip-content-border-width;
|
|
82
92
|
border-style: solid;
|
|
83
93
|
border-color: inherit;
|
package/scss/wizard/_layout.scss
CHANGED
|
@@ -16,11 +16,13 @@
|
|
|
16
16
|
overflow: hidden;
|
|
17
17
|
|
|
18
18
|
.k-wizard-steps {
|
|
19
|
+
box-sizing: border-box;
|
|
19
20
|
display: flex;
|
|
20
21
|
overflow: hidden;
|
|
21
22
|
}
|
|
22
23
|
|
|
23
24
|
.k-wizard-step {
|
|
25
|
+
box-sizing: border-box;
|
|
24
26
|
padding: calc(#{$wizard-content-padding-x / 4} + 2px);
|
|
25
27
|
width: 100%;
|
|
26
28
|
display: flex;
|
|
@@ -37,11 +39,13 @@
|
|
|
37
39
|
}
|
|
38
40
|
|
|
39
41
|
.k-wizard-content {
|
|
42
|
+
box-sizing: border-box;
|
|
40
43
|
overflow-y: auto;
|
|
41
44
|
}
|
|
42
45
|
|
|
43
46
|
.k-wizard-buttons {
|
|
44
47
|
margin-top: $wizard-content-padding-y;
|
|
48
|
+
box-sizing: border-box;
|
|
45
49
|
display: flex;
|
|
46
50
|
flex-wrap: nowrap;
|
|
47
51
|
align-items: center;
|