@progress/kendo-theme-classic 5.6.1-dev.6 → 5.6.1-dev.7
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 +445 -260
- package/dist/all.scss +161 -38
- 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 +4 -4
- package/scss/button/_variables.scss +1 -1
- package/scss/pdf-viewer/_index.scss +3 -0
- package/scss/pdf-viewer/_variables.scss +14 -1
package/dist/all.css
CHANGED
|
@@ -6584,23 +6584,32 @@ kendo-sortable {
|
|
|
6584
6584
|
}
|
|
6585
6585
|
|
|
6586
6586
|
.k-user-select-none {
|
|
6587
|
-
user-select: none !important;
|
|
6587
|
+
-webkit-user-select: none !important;
|
|
6588
|
+
-ms-user-select: none !important;
|
|
6589
|
+
user-select: none !important;
|
|
6588
6590
|
}
|
|
6589
6591
|
|
|
6590
6592
|
.k-user-select-auto {
|
|
6591
|
-
user-select: auto !important;
|
|
6593
|
+
-webkit-user-select: auto !important;
|
|
6594
|
+
-ms-user-select: auto !important;
|
|
6595
|
+
user-select: auto !important;
|
|
6592
6596
|
}
|
|
6593
6597
|
|
|
6594
6598
|
.k-user-select-text {
|
|
6595
|
-
user-select: text !important;
|
|
6599
|
+
-webkit-user-select: text !important;
|
|
6600
|
+
-ms-user-select: text !important;
|
|
6601
|
+
user-select: text !important;
|
|
6596
6602
|
}
|
|
6597
6603
|
|
|
6598
6604
|
.k-user-select-all {
|
|
6599
|
-
user-select: all !important;
|
|
6605
|
+
-webkit-user-select: all !important;
|
|
6606
|
+
user-select: all !important;
|
|
6600
6607
|
}
|
|
6601
6608
|
|
|
6602
6609
|
.k-user-select-contain {
|
|
6603
|
-
user-select: contain !important;
|
|
6610
|
+
-webkit-user-select: contain !important;
|
|
6611
|
+
-ms-user-select: element !important;
|
|
6612
|
+
user-select: contain !important;
|
|
6604
6613
|
}
|
|
6605
6614
|
|
|
6606
6615
|
.k-cursor-auto {
|
|
@@ -11839,7 +11848,7 @@ a.k-badge:hover,
|
|
|
11839
11848
|
padding: 2px 2px;
|
|
11840
11849
|
font-size: 10px;
|
|
11841
11850
|
line-height: 1;
|
|
11842
|
-
min-width: calc(
|
|
11851
|
+
min-width: calc(1em + 6px);
|
|
11843
11852
|
}
|
|
11844
11853
|
|
|
11845
11854
|
.k-badge-sm:empty {
|
|
@@ -11851,7 +11860,7 @@ a.k-badge:hover,
|
|
|
11851
11860
|
padding: 4px 4px;
|
|
11852
11861
|
font-size: 10px;
|
|
11853
11862
|
line-height: 1;
|
|
11854
|
-
min-width: calc(
|
|
11863
|
+
min-width: calc(1em + 10px);
|
|
11855
11864
|
}
|
|
11856
11865
|
|
|
11857
11866
|
.k-badge-md:empty {
|
|
@@ -11863,7 +11872,7 @@ a.k-badge:hover,
|
|
|
11863
11872
|
padding: 6px 6px;
|
|
11864
11873
|
font-size: 10px;
|
|
11865
11874
|
line-height: 1;
|
|
11866
|
-
min-width: calc(
|
|
11875
|
+
min-width: calc(1em + 14px);
|
|
11867
11876
|
}
|
|
11868
11877
|
|
|
11869
11878
|
.k-badge-lg:empty {
|
|
@@ -12099,7 +12108,9 @@ kendo-badge-container {
|
|
|
12099
12108
|
justify-content: center;
|
|
12100
12109
|
gap: 4px;
|
|
12101
12110
|
vertical-align: middle;
|
|
12102
|
-
user-select: none;
|
|
12111
|
+
-webkit-user-select: none;
|
|
12112
|
+
-ms-user-select: none;
|
|
12113
|
+
user-select: none;
|
|
12103
12114
|
cursor: pointer;
|
|
12104
12115
|
outline: none;
|
|
12105
12116
|
-webkit-appearance: none;
|
|
@@ -12158,8 +12169,8 @@ kendo-badge-container {
|
|
|
12158
12169
|
}
|
|
12159
12170
|
|
|
12160
12171
|
.k-button-sm.k-icon-button > .k-button-icon {
|
|
12161
|
-
min-width:
|
|
12162
|
-
min-height:
|
|
12172
|
+
min-width: 20.0000000004px;
|
|
12173
|
+
min-height: 20.0000000004px;
|
|
12163
12174
|
}
|
|
12164
12175
|
|
|
12165
12176
|
.k-button-md {
|
|
@@ -12173,8 +12184,8 @@ kendo-badge-container {
|
|
|
12173
12184
|
}
|
|
12174
12185
|
|
|
12175
12186
|
.k-button-md.k-icon-button > .k-button-icon {
|
|
12176
|
-
min-width:
|
|
12177
|
-
min-height:
|
|
12187
|
+
min-width: 20.0000000004px;
|
|
12188
|
+
min-height: 20.0000000004px;
|
|
12178
12189
|
}
|
|
12179
12190
|
|
|
12180
12191
|
.k-button-lg {
|
|
@@ -12188,8 +12199,8 @@ kendo-badge-container {
|
|
|
12188
12199
|
}
|
|
12189
12200
|
|
|
12190
12201
|
.k-button-lg.k-icon-button > .k-button-icon {
|
|
12191
|
-
min-width:
|
|
12192
|
-
min-height:
|
|
12202
|
+
min-width: 24px;
|
|
12203
|
+
min-height: 24px;
|
|
12193
12204
|
}
|
|
12194
12205
|
|
|
12195
12206
|
.k-button-square {
|
|
@@ -13387,11 +13398,20 @@ kendo-badge-container {
|
|
|
13387
13398
|
margin: 0;
|
|
13388
13399
|
}
|
|
13389
13400
|
|
|
13401
|
+
.k-input:-ms-input-placeholder, .k-picker:-ms-input-placeholder {
|
|
13402
|
+
color: #646464;
|
|
13403
|
+
opacity: 1;
|
|
13404
|
+
-ms-user-select: none;
|
|
13405
|
+
user-select: none;
|
|
13406
|
+
}
|
|
13407
|
+
|
|
13390
13408
|
.k-input::placeholder,
|
|
13391
13409
|
.k-picker::placeholder {
|
|
13392
13410
|
color: #646464;
|
|
13393
13411
|
opacity: 1;
|
|
13394
|
-
user-select: none;
|
|
13412
|
+
-webkit-user-select: none;
|
|
13413
|
+
-ms-user-select: none;
|
|
13414
|
+
user-select: none;
|
|
13395
13415
|
}
|
|
13396
13416
|
|
|
13397
13417
|
.k-input:-ms-input-placeholder,
|
|
@@ -13481,10 +13501,19 @@ select.k-picker:disabled, select.k-picker[disabled] {
|
|
|
13481
13501
|
display: none;
|
|
13482
13502
|
}
|
|
13483
13503
|
|
|
13504
|
+
.k-input-inner:-ms-input-placeholder {
|
|
13505
|
+
color: #646464;
|
|
13506
|
+
opacity: 1;
|
|
13507
|
+
-ms-user-select: none;
|
|
13508
|
+
user-select: none;
|
|
13509
|
+
}
|
|
13510
|
+
|
|
13484
13511
|
.k-input-inner::placeholder {
|
|
13485
13512
|
color: #646464;
|
|
13486
13513
|
opacity: 1;
|
|
13487
|
-
user-select: none;
|
|
13514
|
+
-webkit-user-select: none;
|
|
13515
|
+
-ms-user-select: none;
|
|
13516
|
+
user-select: none;
|
|
13488
13517
|
}
|
|
13489
13518
|
|
|
13490
13519
|
.k-input-inner:-ms-input-placeholder {
|
|
@@ -13736,14 +13765,14 @@ textarea.k-input-inner {
|
|
|
13736
13765
|
.k-picker-sm .k-clear-value,
|
|
13737
13766
|
.k-picker-sm .k-input-prefix > .k-icon,
|
|
13738
13767
|
.k-picker-sm .k-input-suffix > .k-icon {
|
|
13739
|
-
width:
|
|
13740
|
-
height:
|
|
13768
|
+
width: 20px;
|
|
13769
|
+
height: 20px;
|
|
13741
13770
|
}
|
|
13742
13771
|
|
|
13743
13772
|
.k-input-sm.k-icon-picker .k-input-inner,
|
|
13744
13773
|
.k-picker-sm.k-icon-picker .k-input-inner {
|
|
13745
|
-
width:
|
|
13746
|
-
height:
|
|
13774
|
+
width: 1.4285714286em;
|
|
13775
|
+
height: 1.4285714286em;
|
|
13747
13776
|
padding: 2px;
|
|
13748
13777
|
box-sizing: content-box;
|
|
13749
13778
|
}
|
|
@@ -13799,14 +13828,14 @@ textarea.k-input-inner {
|
|
|
13799
13828
|
.k-picker-md .k-clear-value,
|
|
13800
13829
|
.k-picker-md .k-input-prefix > .k-icon,
|
|
13801
13830
|
.k-picker-md .k-input-suffix > .k-icon {
|
|
13802
|
-
width:
|
|
13803
|
-
height:
|
|
13831
|
+
width: 24px;
|
|
13832
|
+
height: 24px;
|
|
13804
13833
|
}
|
|
13805
13834
|
|
|
13806
13835
|
.k-input-md.k-icon-picker .k-input-inner,
|
|
13807
13836
|
.k-picker-md.k-icon-picker .k-input-inner {
|
|
13808
|
-
width:
|
|
13809
|
-
height:
|
|
13837
|
+
width: 1.4285714286em;
|
|
13838
|
+
height: 1.4285714286em;
|
|
13810
13839
|
padding: 4px;
|
|
13811
13840
|
box-sizing: content-box;
|
|
13812
13841
|
}
|
|
@@ -13862,14 +13891,14 @@ textarea.k-input-inner {
|
|
|
13862
13891
|
.k-picker-lg .k-clear-value,
|
|
13863
13892
|
.k-picker-lg .k-input-prefix > .k-icon,
|
|
13864
13893
|
.k-picker-lg .k-input-suffix > .k-icon {
|
|
13865
|
-
width:
|
|
13866
|
-
height:
|
|
13894
|
+
width: 32px;
|
|
13895
|
+
height: 32px;
|
|
13867
13896
|
}
|
|
13868
13897
|
|
|
13869
13898
|
.k-input-lg.k-icon-picker .k-input-inner,
|
|
13870
13899
|
.k-picker-lg.k-icon-picker .k-input-inner {
|
|
13871
|
-
width:
|
|
13872
|
-
height:
|
|
13900
|
+
width: 1.5em;
|
|
13901
|
+
height: 1.5em;
|
|
13873
13902
|
padding: 8px;
|
|
13874
13903
|
box-sizing: content-box;
|
|
13875
13904
|
}
|
|
@@ -14085,7 +14114,7 @@ textarea.k-input-inner {
|
|
|
14085
14114
|
}
|
|
14086
14115
|
|
|
14087
14116
|
.k-floating-label-container {
|
|
14088
|
-
padding-top:
|
|
14117
|
+
padding-top: 20.0000000004px;
|
|
14089
14118
|
box-sizing: border-box;
|
|
14090
14119
|
display: inline-flex;
|
|
14091
14120
|
vertical-align: middle;
|
|
@@ -14107,8 +14136,8 @@ textarea.k-input-inner {
|
|
|
14107
14136
|
white-space: nowrap;
|
|
14108
14137
|
text-overflow: ellipsis;
|
|
14109
14138
|
position: absolute;
|
|
14110
|
-
top:
|
|
14111
|
-
left:
|
|
14139
|
+
top: 25.0000000004px;
|
|
14140
|
+
left: 9px;
|
|
14112
14141
|
overflow: hidden;
|
|
14113
14142
|
cursor: text;
|
|
14114
14143
|
transform-origin: left center;
|
|
@@ -14121,8 +14150,8 @@ textarea.k-input-inner {
|
|
|
14121
14150
|
}
|
|
14122
14151
|
|
|
14123
14152
|
.k-floating-label-container.k-state-empty > .k-label, .k-floating-label-container.k-empty > .k-label {
|
|
14124
|
-
top:
|
|
14125
|
-
left:
|
|
14153
|
+
top: 25.0000000004px;
|
|
14154
|
+
left: 9px;
|
|
14126
14155
|
transform: scale(1);
|
|
14127
14156
|
pointer-events: none;
|
|
14128
14157
|
}
|
|
@@ -14141,6 +14170,10 @@ textarea.k-input-inner {
|
|
|
14141
14170
|
transform: scale(1);
|
|
14142
14171
|
}
|
|
14143
14172
|
|
|
14173
|
+
.k-floating-label-container.k-state-empty:not(.k-state-focused) :-ms-input-placeholder, .k-floating-label-container.k-empty:not(.k-focus):not(:focus-within) :-ms-input-placeholder {
|
|
14174
|
+
color: transparent;
|
|
14175
|
+
}
|
|
14176
|
+
|
|
14144
14177
|
.k-floating-label-container.k-state-empty:not(.k-state-focused) ::placeholder,
|
|
14145
14178
|
.k-floating-label-container.k-empty:not(.k-focus):not(:focus-within) ::placeholder {
|
|
14146
14179
|
color: transparent;
|
|
@@ -14156,7 +14189,7 @@ textarea.k-input-inner {
|
|
|
14156
14189
|
.k-rtl .k-floating-label-container.k-state-empty > .k-label,
|
|
14157
14190
|
.k-rtl .k-floating-label-container.k-empty > .k-label, .k-floating-label-container[dir="rtl"].k-state-empty > .k-label, .k-floating-label-container[dir="rtl"].k-empty > .k-label {
|
|
14158
14191
|
left: auto;
|
|
14159
|
-
right:
|
|
14192
|
+
right: 9px;
|
|
14160
14193
|
}
|
|
14161
14194
|
|
|
14162
14195
|
[dir="rtl"] .k-floating-label-container > .k-label,
|
|
@@ -14747,7 +14780,9 @@ textarea.k-input-inner {
|
|
|
14747
14780
|
position: relative;
|
|
14748
14781
|
overflow: hidden;
|
|
14749
14782
|
cursor: pointer;
|
|
14750
|
-
user-select: none;
|
|
14783
|
+
-webkit-user-select: none;
|
|
14784
|
+
-ms-user-select: none;
|
|
14785
|
+
user-select: none;
|
|
14751
14786
|
}
|
|
14752
14787
|
|
|
14753
14788
|
.k-chip *,
|
|
@@ -15136,7 +15171,7 @@ textarea.k-input-inner {
|
|
|
15136
15171
|
}
|
|
15137
15172
|
|
|
15138
15173
|
.k-icon-color-preview .k-color-preview-mask {
|
|
15139
|
-
width:
|
|
15174
|
+
width: 14px;
|
|
15140
15175
|
height: 2px;
|
|
15141
15176
|
}
|
|
15142
15177
|
|
|
@@ -15299,32 +15334,32 @@ textarea.k-input-inner {
|
|
|
15299
15334
|
top: 100%;
|
|
15300
15335
|
left: 0;
|
|
15301
15336
|
animation: spinner-3-segment 2s ease infinite;
|
|
15302
|
-
animation-delay:
|
|
15337
|
+
animation-delay: -0.6666666667s;
|
|
15303
15338
|
}
|
|
15304
15339
|
|
|
15305
15340
|
.k-loader-spinner-3 .k-loader-segment:nth-child(3) {
|
|
15306
15341
|
top: 100%;
|
|
15307
15342
|
left: 100%;
|
|
15308
15343
|
animation: spinner-3-segment 2s ease infinite;
|
|
15309
|
-
animation-delay:
|
|
15344
|
+
animation-delay: -1.3333333333s;
|
|
15310
15345
|
}
|
|
15311
15346
|
|
|
15312
15347
|
.k-loader-spinner-3.k-loader-sm .k-loader-canvas {
|
|
15313
15348
|
margin: 2px;
|
|
15314
|
-
width:
|
|
15315
|
-
height:
|
|
15349
|
+
width: 12px;
|
|
15350
|
+
height: 9.8564064608px;
|
|
15316
15351
|
}
|
|
15317
15352
|
|
|
15318
15353
|
.k-loader-spinner-3.k-loader-md .k-loader-canvas {
|
|
15319
15354
|
margin: 4px;
|
|
15320
|
-
width:
|
|
15321
|
-
height:
|
|
15355
|
+
width: 24px;
|
|
15356
|
+
height: 19.7128129216px;
|
|
15322
15357
|
}
|
|
15323
15358
|
|
|
15324
15359
|
.k-loader-spinner-3.k-loader-lg .k-loader-canvas {
|
|
15325
15360
|
margin: 8px;
|
|
15326
|
-
width:
|
|
15327
|
-
height:
|
|
15361
|
+
width: 48px;
|
|
15362
|
+
height: 39.4256258432px;
|
|
15328
15363
|
}
|
|
15329
15364
|
|
|
15330
15365
|
@keyframes spinner-4-segment-1 {
|
|
@@ -15704,7 +15739,9 @@ textarea.k-input-inner {
|
|
|
15704
15739
|
flex-flow: column nowrap;
|
|
15705
15740
|
flex: none;
|
|
15706
15741
|
position: relative;
|
|
15707
|
-
user-select: none;
|
|
15742
|
+
-webkit-user-select: none;
|
|
15743
|
+
-ms-user-select: none;
|
|
15744
|
+
user-select: none;
|
|
15708
15745
|
}
|
|
15709
15746
|
|
|
15710
15747
|
.k-menu-item-content {
|
|
@@ -15768,12 +15805,12 @@ textarea.k-input-inner {
|
|
|
15768
15805
|
|
|
15769
15806
|
.k-menu-vertical > .k-menu-item > .k-menu-link {
|
|
15770
15807
|
padding: 4px 8px;
|
|
15771
|
-
padding-right:
|
|
15808
|
+
padding-right: 32px;
|
|
15772
15809
|
}
|
|
15773
15810
|
|
|
15774
15811
|
.k-menu-vertical > .k-menu-item > .k-menu-link > .k-menu-expand-arrow {
|
|
15775
15812
|
margin-inline-start: 8px;
|
|
15776
|
-
margin-inline-end:
|
|
15813
|
+
margin-inline-end: -28px;
|
|
15777
15814
|
}
|
|
15778
15815
|
|
|
15779
15816
|
.k-menu-vertical > .k-separator {
|
|
@@ -15837,12 +15874,12 @@ textarea.k-input-inner {
|
|
|
15837
15874
|
|
|
15838
15875
|
.k-menu-group-sm .k-menu-link {
|
|
15839
15876
|
padding: 2px 8px;
|
|
15840
|
-
padding-inline-end:
|
|
15877
|
+
padding-inline-end: 32px;
|
|
15841
15878
|
}
|
|
15842
15879
|
|
|
15843
15880
|
.k-menu-group-sm .k-menu-expand-arrow {
|
|
15844
15881
|
margin-inline-start: 8px;
|
|
15845
|
-
margin-inline-end:
|
|
15882
|
+
margin-inline-end: -28px;
|
|
15846
15883
|
}
|
|
15847
15884
|
|
|
15848
15885
|
.k-menu-group-md {
|
|
@@ -15857,12 +15894,12 @@ textarea.k-input-inner {
|
|
|
15857
15894
|
|
|
15858
15895
|
.k-menu-group-md .k-menu-link {
|
|
15859
15896
|
padding: 4px 8px;
|
|
15860
|
-
padding-inline-end:
|
|
15897
|
+
padding-inline-end: 32px;
|
|
15861
15898
|
}
|
|
15862
15899
|
|
|
15863
15900
|
.k-menu-group-md .k-menu-expand-arrow {
|
|
15864
15901
|
margin-inline-start: 8px;
|
|
15865
|
-
margin-inline-end:
|
|
15902
|
+
margin-inline-end: -28px;
|
|
15866
15903
|
}
|
|
15867
15904
|
|
|
15868
15905
|
.k-menu-group-lg {
|
|
@@ -15877,12 +15914,12 @@ textarea.k-input-inner {
|
|
|
15877
15914
|
|
|
15878
15915
|
.k-menu-group-lg .k-menu-link {
|
|
15879
15916
|
padding: 6px 8px;
|
|
15880
|
-
padding-inline-end:
|
|
15917
|
+
padding-inline-end: 32px;
|
|
15881
15918
|
}
|
|
15882
15919
|
|
|
15883
15920
|
.k-menu-group-lg .k-menu-expand-arrow {
|
|
15884
15921
|
margin-inline-start: 8px;
|
|
15885
|
-
margin-inline-end:
|
|
15922
|
+
margin-inline-end: -28px;
|
|
15886
15923
|
}
|
|
15887
15924
|
|
|
15888
15925
|
.k-popups-wrapper {
|
|
@@ -15981,13 +16018,13 @@ textarea.k-input-inner {
|
|
|
15981
16018
|
.k-rtl .k-menu-vertical > .k-menu-item > .k-menu-link,
|
|
15982
16019
|
[dir="rtl"] .k-menu-vertical > .k-menu-item > .k-menu-link {
|
|
15983
16020
|
padding-right: 8px;
|
|
15984
|
-
padding-left:
|
|
16021
|
+
padding-left: 32px;
|
|
15985
16022
|
}
|
|
15986
16023
|
|
|
15987
16024
|
.k-rtl .k-menu-group .k-menu-link,
|
|
15988
16025
|
[dir="rtl"] .k-menu-group .k-menu-link {
|
|
15989
16026
|
padding-right: 8px;
|
|
15990
|
-
padding-left:
|
|
16027
|
+
padding-left: 32px;
|
|
15991
16028
|
}
|
|
15992
16029
|
|
|
15993
16030
|
.k-menu:not(.k-context-menu) {
|
|
@@ -16083,7 +16120,7 @@ textarea.k-input-inner {
|
|
|
16083
16120
|
|
|
16084
16121
|
.k-toolbar::before {
|
|
16085
16122
|
content: "";
|
|
16086
|
-
height: calc(
|
|
16123
|
+
height: calc(1.4285714286em + 10px);
|
|
16087
16124
|
margin-inline-start: -8px;
|
|
16088
16125
|
}
|
|
16089
16126
|
|
|
@@ -16151,6 +16188,11 @@ textarea.k-input-inner {
|
|
|
16151
16188
|
align-items: center;
|
|
16152
16189
|
}
|
|
16153
16190
|
|
|
16191
|
+
.k-toolbar .k-toolbar-item:focus {
|
|
16192
|
+
text-decoration: none;
|
|
16193
|
+
outline: 0;
|
|
16194
|
+
}
|
|
16195
|
+
|
|
16154
16196
|
.k-toolbar-group {
|
|
16155
16197
|
display: flex;
|
|
16156
16198
|
flex-direction: inherit;
|
|
@@ -16266,6 +16308,11 @@ kendo-toolbar-renderer {
|
|
|
16266
16308
|
border-color: inherit;
|
|
16267
16309
|
}
|
|
16268
16310
|
|
|
16311
|
+
.k-toolbar .k-toolbar-item:focus,
|
|
16312
|
+
.k-toolbar .k-toolbar-item.k-focus {
|
|
16313
|
+
box-shadow: 0 0 4px 0 rgba(202, 202, 202, 0.75);
|
|
16314
|
+
}
|
|
16315
|
+
|
|
16269
16316
|
.k-overflow-container .k-button:hover, .k-overflow-container .k-button.k-hover {
|
|
16270
16317
|
color: #272727;
|
|
16271
16318
|
background: #dddddd;
|
|
@@ -16559,7 +16606,7 @@ kendo-label > .k-label {
|
|
|
16559
16606
|
}
|
|
16560
16607
|
|
|
16561
16608
|
.k-form-horizontal .k-form-field-wrap {
|
|
16562
|
-
max-width: calc(
|
|
16609
|
+
max-width: calc(75% - 10px);
|
|
16563
16610
|
flex: 1 1 auto;
|
|
16564
16611
|
}
|
|
16565
16612
|
|
|
@@ -16626,7 +16673,7 @@ kendo-label > .k-label {
|
|
|
16626
16673
|
width: 25%;
|
|
16627
16674
|
text-align: right;
|
|
16628
16675
|
line-height: 1.4285714286;
|
|
16629
|
-
padding:
|
|
16676
|
+
padding: 5px 0;
|
|
16630
16677
|
padding-right: 12px;
|
|
16631
16678
|
align-self: center;
|
|
16632
16679
|
}
|
|
@@ -16675,7 +16722,7 @@ kendo-label > .k-label {
|
|
|
16675
16722
|
|
|
16676
16723
|
.k-edit-label {
|
|
16677
16724
|
margin: 0 0 1em 0;
|
|
16678
|
-
padding:
|
|
16725
|
+
padding: 5px 0;
|
|
16679
16726
|
width: 30%;
|
|
16680
16727
|
line-height: 1.4285714286;
|
|
16681
16728
|
text-align: right;
|
|
@@ -16692,7 +16739,7 @@ kendo-label > .k-label {
|
|
|
16692
16739
|
}
|
|
16693
16740
|
|
|
16694
16741
|
.k-edit-field.k-no-editor {
|
|
16695
|
-
padding:
|
|
16742
|
+
padding: 5px 0;
|
|
16696
16743
|
}
|
|
16697
16744
|
|
|
16698
16745
|
.k-edit-field > .k-widget {
|
|
@@ -16915,7 +16962,7 @@ kendo-label > .k-label {
|
|
|
16915
16962
|
}
|
|
16916
16963
|
|
|
16917
16964
|
.k-validator-tooltip {
|
|
16918
|
-
margin-top:
|
|
16965
|
+
margin-top: 6px;
|
|
16919
16966
|
width: auto;
|
|
16920
16967
|
white-space: normal;
|
|
16921
16968
|
display: flex;
|
|
@@ -17207,13 +17254,13 @@ kendo-label > .k-label {
|
|
|
17207
17254
|
.k-progressbar-horizontal > .k-state-selected,
|
|
17208
17255
|
.k-progressbar-horizontal > .k-selected {
|
|
17209
17256
|
width: 0;
|
|
17210
|
-
width: calc(
|
|
17257
|
+
width: calc(var( --kendo-progressbar-progress, 0 )*1%);
|
|
17211
17258
|
flex-direction: row;
|
|
17212
17259
|
}
|
|
17213
17260
|
|
|
17214
17261
|
.k-progressbar-horizontal > .k-state-selected > .k-progress-status-wrap,
|
|
17215
17262
|
.k-progressbar-horizontal > .k-selected > .k-progress-status-wrap {
|
|
17216
|
-
width: calc(
|
|
17263
|
+
width: calc(100%*(100/var( --kendo-progressbar-progress, 1 )));
|
|
17217
17264
|
}
|
|
17218
17265
|
|
|
17219
17266
|
.k-progressbar-horizontal > ul {
|
|
@@ -17244,13 +17291,14 @@ kendo-label > .k-label {
|
|
|
17244
17291
|
}
|
|
17245
17292
|
|
|
17246
17293
|
.k-progressbar-vertical .k-progress-status {
|
|
17247
|
-
writing-mode:
|
|
17294
|
+
-ms-writing-mode: tb-lr;
|
|
17295
|
+
writing-mode: vertical-lr;
|
|
17248
17296
|
}
|
|
17249
17297
|
|
|
17250
17298
|
.k-progressbar-vertical > .k-state-selected,
|
|
17251
17299
|
.k-progressbar-vertical > .k-selected {
|
|
17252
17300
|
height: 0;
|
|
17253
|
-
height: calc(
|
|
17301
|
+
height: calc(var( --kendo-progressbar-progress, 0 )*1%);
|
|
17254
17302
|
flex-direction: column-reverse;
|
|
17255
17303
|
align-self: flex-end;
|
|
17256
17304
|
align-items: flex-end;
|
|
@@ -17258,7 +17306,7 @@ kendo-label > .k-label {
|
|
|
17258
17306
|
|
|
17259
17307
|
.k-progressbar-vertical > .k-state-selected > .k-progress-status-wrap,
|
|
17260
17308
|
.k-progressbar-vertical > .k-selected > .k-progress-status-wrap {
|
|
17261
|
-
height: calc(
|
|
17309
|
+
height: calc(100%*(100/var( --kendo-progressbar-progress, 1 )));
|
|
17262
17310
|
}
|
|
17263
17311
|
|
|
17264
17312
|
.k-progressbar-vertical > ul {
|
|
@@ -17726,7 +17774,7 @@ kendo-label > .k-label {
|
|
|
17726
17774
|
.k-slider {
|
|
17727
17775
|
width: min-content;
|
|
17728
17776
|
height: min-content;
|
|
17729
|
-
gap:
|
|
17777
|
+
gap: 7px;
|
|
17730
17778
|
}
|
|
17731
17779
|
|
|
17732
17780
|
.k-slider .k-button {
|
|
@@ -17749,7 +17797,9 @@ kendo-label > .k-label {
|
|
|
17749
17797
|
display: flex;
|
|
17750
17798
|
flex-flow: inherit;
|
|
17751
17799
|
justify-content: space-between;
|
|
17752
|
-
user-select: none;
|
|
17800
|
+
-webkit-user-select: none;
|
|
17801
|
+
-ms-user-select: none;
|
|
17802
|
+
user-select: none;
|
|
17753
17803
|
}
|
|
17754
17804
|
|
|
17755
17805
|
.k-slider .k-slider-track-wrap .k-tick {
|
|
@@ -17789,31 +17839,31 @@ kendo-label > .k-label {
|
|
|
17789
17839
|
}
|
|
17790
17840
|
|
|
17791
17841
|
.k-slider-horizontal .k-slider-track-wrap .k-slider-selection {
|
|
17792
|
-
width: calc(
|
|
17793
|
-
left: calc(
|
|
17842
|
+
width: calc((var(--kendo-slider-end, 0) - var(--kendo-slider-start, 0))*1%);
|
|
17843
|
+
left: calc(var(--kendo-slider-start, 0)*1%);
|
|
17794
17844
|
}
|
|
17795
17845
|
|
|
17796
17846
|
.k-slider-horizontal .k-slider-track-wrap .k-draghandle-start {
|
|
17797
|
-
left: calc(
|
|
17847
|
+
left: calc(var(--kendo-slider-start, 0)*1%);
|
|
17798
17848
|
}
|
|
17799
17849
|
|
|
17800
17850
|
.k-slider-horizontal .k-slider-track-wrap .k-draghandle-end {
|
|
17801
|
-
left: calc(
|
|
17851
|
+
left: calc(var(--kendo-slider-end, 0)*1%);
|
|
17802
17852
|
}
|
|
17803
17853
|
|
|
17804
17854
|
[dir="rtl"] .k-slider-horizontal .k-slider-track-wrap .k-slider-selection {
|
|
17805
17855
|
left: unset;
|
|
17806
|
-
right: calc(
|
|
17856
|
+
right: calc(var(--kendo-slider-start, 0)*1%);
|
|
17807
17857
|
}
|
|
17808
17858
|
|
|
17809
17859
|
[dir="rtl"] .k-slider-horizontal .k-slider-track-wrap .k-draghandle-start {
|
|
17810
17860
|
left: unset;
|
|
17811
|
-
right: calc(
|
|
17861
|
+
right: calc(var(--kendo-slider-start, 0)*1%);
|
|
17812
17862
|
}
|
|
17813
17863
|
|
|
17814
17864
|
[dir="rtl"] .k-slider-horizontal .k-slider-track-wrap .k-draghandle-end {
|
|
17815
17865
|
left: unset;
|
|
17816
|
-
right: calc(
|
|
17866
|
+
right: calc(var(--kendo-slider-end, 0)*1%);
|
|
17817
17867
|
}
|
|
17818
17868
|
|
|
17819
17869
|
[dir="rtl"] .k-slider-horizontal .k-slider-track-wrap .k-draghandle {
|
|
@@ -17844,16 +17894,16 @@ kendo-label > .k-label {
|
|
|
17844
17894
|
}
|
|
17845
17895
|
|
|
17846
17896
|
.k-slider-vertical .k-slider-track-wrap .k-slider-selection {
|
|
17847
|
-
bottom: calc(
|
|
17848
|
-
height: calc(
|
|
17897
|
+
bottom: calc(var(--kendo-slider-start, 0)*1%);
|
|
17898
|
+
height: calc((var(--kendo-slider-end, 0) - var(--kendo-slider-start, 0))*1%);
|
|
17849
17899
|
}
|
|
17850
17900
|
|
|
17851
17901
|
.k-slider-vertical .k-slider-track-wrap .k-draghandle-start {
|
|
17852
|
-
bottom: calc(
|
|
17902
|
+
bottom: calc(var(--kendo-slider-start, 0)*1%);
|
|
17853
17903
|
}
|
|
17854
17904
|
|
|
17855
17905
|
.k-slider-vertical .k-slider-track-wrap .k-draghandle-end {
|
|
17856
|
-
bottom: calc(
|
|
17906
|
+
bottom: calc(var(--kendo-slider-end, 0)*1%);
|
|
17857
17907
|
}
|
|
17858
17908
|
|
|
17859
17909
|
.k-slider-vertical {
|
|
@@ -18081,12 +18131,12 @@ kendo-label > .k-label {
|
|
|
18081
18131
|
left: auto;
|
|
18082
18132
|
}
|
|
18083
18133
|
|
|
18084
|
-
.k-rtl .k-slider-horizontal .k-button .k-
|
|
18085
|
-
.k-rtl .k-slider-horizontal .k-button .k-
|
|
18086
|
-
.k-slider-horizontal.k-rtl .k-button .k-
|
|
18087
|
-
[dir="rtl"] .k-slider-horizontal .k-button .k-
|
|
18088
|
-
[dir="rtl"] .k-slider-horizontal .k-button .k-
|
|
18089
|
-
.k-slider-horizontal[dir="rtl"] .k-button .k-
|
|
18134
|
+
.k-rtl .k-slider-horizontal .k-button-increase .k-icon,
|
|
18135
|
+
.k-rtl .k-slider-horizontal .k-button-decrease .k-icon, .k-slider-horizontal.k-rtl .k-button-increase .k-icon,
|
|
18136
|
+
.k-slider-horizontal.k-rtl .k-button-decrease .k-icon,
|
|
18137
|
+
[dir="rtl"] .k-slider-horizontal .k-button-increase .k-icon,
|
|
18138
|
+
[dir="rtl"] .k-slider-horizontal .k-button-decrease .k-icon, .k-slider-horizontal[dir="rtl"] .k-button-increase .k-icon,
|
|
18139
|
+
.k-slider-horizontal[dir="rtl"] .k-button-decrease .k-icon {
|
|
18090
18140
|
transform: scaleX(-1);
|
|
18091
18141
|
}
|
|
18092
18142
|
|
|
@@ -18172,13 +18222,13 @@ kendo-label > .k-label {
|
|
|
18172
18222
|
}
|
|
18173
18223
|
|
|
18174
18224
|
.k-slider-horizontal .k-slider-wrap:not(.k-slider-buttons) {
|
|
18175
|
-
padding-left:
|
|
18176
|
-
padding-right:
|
|
18225
|
+
padding-left: 7px;
|
|
18226
|
+
padding-right: 7px;
|
|
18177
18227
|
}
|
|
18178
18228
|
|
|
18179
18229
|
.k-slider-vertical .k-slider-wrap:not(.k-slider-buttons) {
|
|
18180
|
-
padding-top:
|
|
18181
|
-
padding-bottom:
|
|
18230
|
+
padding-top: 7px;
|
|
18231
|
+
padding-bottom: 7px;
|
|
18182
18232
|
}
|
|
18183
18233
|
|
|
18184
18234
|
.k-slider {
|
|
@@ -18245,7 +18295,9 @@ kendo-label > .k-label {
|
|
|
18245
18295
|
overflow: hidden;
|
|
18246
18296
|
display: inline-flex;
|
|
18247
18297
|
flex-flow: column nowrap;
|
|
18248
|
-
user-select: none;
|
|
18298
|
+
-webkit-user-select: none;
|
|
18299
|
+
-ms-user-select: none;
|
|
18300
|
+
user-select: none;
|
|
18249
18301
|
-webkit-touch-callout: none;
|
|
18250
18302
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
18251
18303
|
}
|
|
@@ -18934,7 +18986,9 @@ kendo-label > .k-label {
|
|
|
18934
18986
|
overflow: hidden;
|
|
18935
18987
|
display: flex;
|
|
18936
18988
|
flex-flow: column nowrap;
|
|
18937
|
-
user-select: none;
|
|
18989
|
+
-webkit-user-select: none;
|
|
18990
|
+
-ms-user-select: none;
|
|
18991
|
+
user-select: none;
|
|
18938
18992
|
-webkit-touch-callout: none;
|
|
18939
18993
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
18940
18994
|
}
|
|
@@ -18978,12 +19032,12 @@ kendo-label > .k-label {
|
|
|
18978
19032
|
.k-time-highlight,
|
|
18979
19033
|
.k-time-list-highlight {
|
|
18980
19034
|
width: 100%;
|
|
18981
|
-
height:
|
|
19035
|
+
height: 28px;
|
|
18982
19036
|
border-width: 1px 0px;
|
|
18983
19037
|
border-style: solid;
|
|
18984
19038
|
box-sizing: border-box;
|
|
18985
19039
|
position: absolute;
|
|
18986
|
-
top: calc(
|
|
19040
|
+
top: calc(50% + 9px);
|
|
18987
19041
|
left: 0;
|
|
18988
19042
|
right: 0;
|
|
18989
19043
|
transform: translateY(-50%);
|
|
@@ -19019,7 +19073,7 @@ kendo-label > .k-label {
|
|
|
19019
19073
|
width: 100%;
|
|
19020
19074
|
left: 0;
|
|
19021
19075
|
pointer-events: none;
|
|
19022
|
-
height: calc(
|
|
19076
|
+
height: calc(50% - 14px);
|
|
19023
19077
|
box-sizing: border-box;
|
|
19024
19078
|
border-width: 0;
|
|
19025
19079
|
border-style: solid;
|
|
@@ -19109,14 +19163,14 @@ kendo-label > .k-label {
|
|
|
19109
19163
|
|
|
19110
19164
|
.k-time-separator {
|
|
19111
19165
|
width: 0;
|
|
19112
|
-
height:
|
|
19166
|
+
height: 28px;
|
|
19113
19167
|
align-self: center;
|
|
19114
19168
|
display: inline-flex;
|
|
19115
19169
|
justify-content: center;
|
|
19116
19170
|
align-items: center;
|
|
19117
19171
|
position: relative;
|
|
19118
19172
|
z-index: 11;
|
|
19119
|
-
top:
|
|
19173
|
+
top: 9px;
|
|
19120
19174
|
}
|
|
19121
19175
|
|
|
19122
19176
|
.k-timeselector-sm {
|
|
@@ -19126,11 +19180,11 @@ kendo-label > .k-label {
|
|
|
19126
19180
|
|
|
19127
19181
|
.k-timeselector-sm .k-time-highlight,
|
|
19128
19182
|
.k-timeselector-sm .k-time-list-highlight {
|
|
19129
|
-
height:
|
|
19183
|
+
height: 24px;
|
|
19130
19184
|
}
|
|
19131
19185
|
|
|
19132
19186
|
.k-timeselector-sm .k-time-separator {
|
|
19133
|
-
height:
|
|
19187
|
+
height: 24px;
|
|
19134
19188
|
}
|
|
19135
19189
|
|
|
19136
19190
|
.k-timeselector-sm .k-time-list-item,
|
|
@@ -19145,11 +19199,11 @@ kendo-label > .k-label {
|
|
|
19145
19199
|
|
|
19146
19200
|
.k-timeselector-md .k-time-highlight,
|
|
19147
19201
|
.k-timeselector-md .k-time-list-highlight {
|
|
19148
|
-
height:
|
|
19202
|
+
height: 28px;
|
|
19149
19203
|
}
|
|
19150
19204
|
|
|
19151
19205
|
.k-timeselector-md .k-time-separator {
|
|
19152
|
-
height:
|
|
19206
|
+
height: 28px;
|
|
19153
19207
|
}
|
|
19154
19208
|
|
|
19155
19209
|
.k-timeselector-md .k-time-list-item,
|
|
@@ -19164,11 +19218,11 @@ kendo-label > .k-label {
|
|
|
19164
19218
|
|
|
19165
19219
|
.k-timeselector-lg .k-time-highlight,
|
|
19166
19220
|
.k-timeselector-lg .k-time-list-highlight {
|
|
19167
|
-
height:
|
|
19221
|
+
height: 40px;
|
|
19168
19222
|
}
|
|
19169
19223
|
|
|
19170
19224
|
.k-timeselector-lg .k-time-separator {
|
|
19171
|
-
height:
|
|
19225
|
+
height: 40px;
|
|
19172
19226
|
}
|
|
19173
19227
|
|
|
19174
19228
|
.k-timeselector-lg .k-time-list-item,
|
|
@@ -19371,7 +19425,9 @@ kendo-label > .k-label {
|
|
|
19371
19425
|
border-radius: 4px;
|
|
19372
19426
|
position: relative;
|
|
19373
19427
|
flex: 1 1 auto;
|
|
19374
|
-
user-select: none;
|
|
19428
|
+
-webkit-user-select: none;
|
|
19429
|
+
-ms-user-select: none;
|
|
19430
|
+
user-select: none;
|
|
19375
19431
|
-ms-touch-action: pinch-zoom double-tap-zoom;
|
|
19376
19432
|
}
|
|
19377
19433
|
|
|
@@ -19499,7 +19555,7 @@ kendo-label > .k-label {
|
|
|
19499
19555
|
vertical-align: middle;
|
|
19500
19556
|
}
|
|
19501
19557
|
|
|
19502
|
-
.k-colorgradient-color-contrast .k-contrast-validation .k-
|
|
19558
|
+
.k-colorgradient-color-contrast .k-contrast-validation .k-icon + .k-icon {
|
|
19503
19559
|
margin-left: -13px;
|
|
19504
19560
|
}
|
|
19505
19561
|
|
|
@@ -19617,7 +19673,7 @@ kendo-label > .k-label {
|
|
|
19617
19673
|
}
|
|
19618
19674
|
|
|
19619
19675
|
.k-coloreditor-views {
|
|
19620
|
-
min-width: calc(
|
|
19676
|
+
min-width: calc(var(--kendo-color-preview-width, 24px)*var(--kendo-color-preview-columns, 10));
|
|
19621
19677
|
padding: 12px 12px;
|
|
19622
19678
|
gap: 12px;
|
|
19623
19679
|
}
|
|
@@ -19665,7 +19721,7 @@ kendo-label > .k-label {
|
|
|
19665
19721
|
}
|
|
19666
19722
|
|
|
19667
19723
|
.k-datetime-wrap {
|
|
19668
|
-
width:
|
|
19724
|
+
width: 288px;
|
|
19669
19725
|
overflow: hidden;
|
|
19670
19726
|
}
|
|
19671
19727
|
|
|
@@ -19682,7 +19738,7 @@ kendo-label > .k-label {
|
|
|
19682
19738
|
.k-datetime-calendar-wrap,
|
|
19683
19739
|
.k-datetime-time-wrap {
|
|
19684
19740
|
text-align: center;
|
|
19685
|
-
flex: 0 0
|
|
19741
|
+
flex: 0 0 288px;
|
|
19686
19742
|
}
|
|
19687
19743
|
|
|
19688
19744
|
.k-date-tab .k-datetime-selector {
|
|
@@ -20102,7 +20158,9 @@ kendo-label > .k-label {
|
|
|
20102
20158
|
line-height: 1;
|
|
20103
20159
|
position: relative;
|
|
20104
20160
|
cursor: pointer;
|
|
20105
|
-
user-select: none;
|
|
20161
|
+
-webkit-user-select: none;
|
|
20162
|
+
-ms-user-select: none;
|
|
20163
|
+
user-select: none;
|
|
20106
20164
|
-webkit-touch-callout: none;
|
|
20107
20165
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
20108
20166
|
}
|
|
@@ -20187,11 +20245,11 @@ kendo-label > .k-label {
|
|
|
20187
20245
|
}
|
|
20188
20246
|
|
|
20189
20247
|
.k-switch-sm.k-switch-on .k-switch-thumb-wrap {
|
|
20190
|
-
left: calc(
|
|
20248
|
+
left: calc(100% - 13px);
|
|
20191
20249
|
}
|
|
20192
20250
|
|
|
20193
20251
|
.k-switch-sm.k-switch-off .k-switch-thumb-wrap {
|
|
20194
|
-
left:
|
|
20252
|
+
left: 13px;
|
|
20195
20253
|
}
|
|
20196
20254
|
|
|
20197
20255
|
.k-switch-sm[dir="rtl"] .k-switch-label-on,
|
|
@@ -20211,13 +20269,13 @@ kendo-label > .k-label {
|
|
|
20211
20269
|
.k-switch-sm[dir="rtl"].k-switch-on .k-switch-thumb-wrap,
|
|
20212
20270
|
[dir="rtl"] .k-switch-sm.k-switch-on .k-switch-thumb-wrap,
|
|
20213
20271
|
.k-rtl .k-switch-sm.k-switch-on .k-switch-thumb-wrap {
|
|
20214
|
-
left:
|
|
20272
|
+
left: 13px;
|
|
20215
20273
|
}
|
|
20216
20274
|
|
|
20217
20275
|
.k-switch-sm[dir="rtl"].k-switch-off .k-switch-thumb-wrap,
|
|
20218
20276
|
[dir="rtl"] .k-switch-sm.k-switch-off .k-switch-thumb-wrap,
|
|
20219
20277
|
.k-rtl .k-switch-sm.k-switch-off .k-switch-thumb-wrap {
|
|
20220
|
-
left: calc(
|
|
20278
|
+
left: calc(100% - 13px);
|
|
20221
20279
|
}
|
|
20222
20280
|
|
|
20223
20281
|
.k-switch-md {
|
|
@@ -20245,11 +20303,11 @@ kendo-label > .k-label {
|
|
|
20245
20303
|
}
|
|
20246
20304
|
|
|
20247
20305
|
.k-switch-md.k-switch-on .k-switch-thumb-wrap {
|
|
20248
|
-
left: calc(
|
|
20306
|
+
left: calc(100% - 15px);
|
|
20249
20307
|
}
|
|
20250
20308
|
|
|
20251
20309
|
.k-switch-md.k-switch-off .k-switch-thumb-wrap {
|
|
20252
|
-
left:
|
|
20310
|
+
left: 15px;
|
|
20253
20311
|
}
|
|
20254
20312
|
|
|
20255
20313
|
.k-switch-md[dir="rtl"] .k-switch-label-on,
|
|
@@ -20269,13 +20327,13 @@ kendo-label > .k-label {
|
|
|
20269
20327
|
.k-switch-md[dir="rtl"].k-switch-on .k-switch-thumb-wrap,
|
|
20270
20328
|
[dir="rtl"] .k-switch-md.k-switch-on .k-switch-thumb-wrap,
|
|
20271
20329
|
.k-rtl .k-switch-md.k-switch-on .k-switch-thumb-wrap {
|
|
20272
|
-
left:
|
|
20330
|
+
left: 15px;
|
|
20273
20331
|
}
|
|
20274
20332
|
|
|
20275
20333
|
.k-switch-md[dir="rtl"].k-switch-off .k-switch-thumb-wrap,
|
|
20276
20334
|
[dir="rtl"] .k-switch-md.k-switch-off .k-switch-thumb-wrap,
|
|
20277
20335
|
.k-rtl .k-switch-md.k-switch-off .k-switch-thumb-wrap {
|
|
20278
|
-
left: calc(
|
|
20336
|
+
left: calc(100% - 15px);
|
|
20279
20337
|
}
|
|
20280
20338
|
|
|
20281
20339
|
.k-switch-lg {
|
|
@@ -20303,11 +20361,11 @@ kendo-label > .k-label {
|
|
|
20303
20361
|
}
|
|
20304
20362
|
|
|
20305
20363
|
.k-switch-lg.k-switch-on .k-switch-thumb-wrap {
|
|
20306
|
-
left: calc(
|
|
20364
|
+
left: calc(100% - 17px);
|
|
20307
20365
|
}
|
|
20308
20366
|
|
|
20309
20367
|
.k-switch-lg.k-switch-off .k-switch-thumb-wrap {
|
|
20310
|
-
left:
|
|
20368
|
+
left: 17px;
|
|
20311
20369
|
}
|
|
20312
20370
|
|
|
20313
20371
|
.k-switch-lg[dir="rtl"] .k-switch-label-on,
|
|
@@ -20327,13 +20385,13 @@ kendo-label > .k-label {
|
|
|
20327
20385
|
.k-switch-lg[dir="rtl"].k-switch-on .k-switch-thumb-wrap,
|
|
20328
20386
|
[dir="rtl"] .k-switch-lg.k-switch-on .k-switch-thumb-wrap,
|
|
20329
20387
|
.k-rtl .k-switch-lg.k-switch-on .k-switch-thumb-wrap {
|
|
20330
|
-
left:
|
|
20388
|
+
left: 17px;
|
|
20331
20389
|
}
|
|
20332
20390
|
|
|
20333
20391
|
.k-switch-lg[dir="rtl"].k-switch-off .k-switch-thumb-wrap,
|
|
20334
20392
|
[dir="rtl"] .k-switch-lg.k-switch-off .k-switch-thumb-wrap,
|
|
20335
20393
|
.k-rtl .k-switch-lg.k-switch-off .k-switch-thumb-wrap {
|
|
20336
|
-
left: calc(
|
|
20394
|
+
left: calc(100% - 17px);
|
|
20337
20395
|
}
|
|
20338
20396
|
|
|
20339
20397
|
.k-switch[dir="rtl"] .k-switch-thumb,
|
|
@@ -20545,7 +20603,7 @@ kendo-label > .k-label {
|
|
|
20545
20603
|
}
|
|
20546
20604
|
|
|
20547
20605
|
.k-upload .k-upload-files .k-file {
|
|
20548
|
-
padding: 8px 8px
|
|
20606
|
+
padding: 8px 8px 10px;
|
|
20549
20607
|
border-width: 0 0 1px;
|
|
20550
20608
|
border-style: solid;
|
|
20551
20609
|
outline: none;
|
|
@@ -20655,7 +20713,7 @@ kendo-label > .k-label {
|
|
|
20655
20713
|
|
|
20656
20714
|
.k-upload .k-upload-files .k-file-invalid-extension-wrapper + .k-file-name-size-wrapper,
|
|
20657
20715
|
.k-upload .k-upload-files .k-file-single > .k-file-extension-wrapper + .k-file-name-size-wrapper {
|
|
20658
|
-
margin-left: calc(
|
|
20716
|
+
margin-left: calc(24px + 1em);
|
|
20659
20717
|
min-height: 38px;
|
|
20660
20718
|
display: block;
|
|
20661
20719
|
overflow: hidden;
|
|
@@ -20663,7 +20721,7 @@ kendo-label > .k-label {
|
|
|
20663
20721
|
|
|
20664
20722
|
.k-upload .k-upload-files .k-multiple-files-invalid-extension-wrapper + .k-file-name-size-wrapper,
|
|
20665
20723
|
.k-upload .k-upload-files .k-multiple-files-extension-wrapper + .k-file-name-size-wrapper {
|
|
20666
|
-
margin-left: calc(
|
|
20724
|
+
margin-left: calc(24px + 1em);
|
|
20667
20725
|
}
|
|
20668
20726
|
|
|
20669
20727
|
.k-upload .k-upload-files .k-file-extension-wrapper + .k-file-name-size-wrapper {
|
|
@@ -20781,7 +20839,7 @@ kendo-label > .k-label {
|
|
|
20781
20839
|
height: 2px;
|
|
20782
20840
|
position: absolute;
|
|
20783
20841
|
bottom: 4px;
|
|
20784
|
-
width: calc(100% -
|
|
20842
|
+
width: calc(100% - 16px);
|
|
20785
20843
|
}
|
|
20786
20844
|
|
|
20787
20845
|
.k-upload .k-progressbar .k-progress {
|
|
@@ -21969,7 +22027,7 @@ kendo-label > .k-label {
|
|
|
21969
22027
|
|
|
21970
22028
|
.k-window-actions {
|
|
21971
22029
|
margin: -5em 0;
|
|
21972
|
-
margin-inline-end:
|
|
22030
|
+
margin-inline-end: -4px;
|
|
21973
22031
|
line-height: 1;
|
|
21974
22032
|
display: flex;
|
|
21975
22033
|
flex-flow: row nowrap;
|
|
@@ -22324,7 +22382,7 @@ kendo-drawer .k-drawer-wrapper {
|
|
|
22324
22382
|
}
|
|
22325
22383
|
|
|
22326
22384
|
.k-drawer-mini .k-drawer-wrapper {
|
|
22327
|
-
width:
|
|
22385
|
+
width: 48px;
|
|
22328
22386
|
}
|
|
22329
22387
|
|
|
22330
22388
|
.k-rtl.k-drawer-mini .k-drawer-start,
|
|
@@ -22476,7 +22534,8 @@ kendo-drawer .k-drawer-wrapper {
|
|
|
22476
22534
|
flex: none;
|
|
22477
22535
|
}
|
|
22478
22536
|
|
|
22479
|
-
.k-notification-wrap > .k-i-close
|
|
22537
|
+
.k-notification-wrap > .k-i-close,
|
|
22538
|
+
.k-notification-wrap > .k-i-x {
|
|
22480
22539
|
margin-right: 0;
|
|
22481
22540
|
margin-left: 4px;
|
|
22482
22541
|
flex: none;
|
|
@@ -22494,7 +22553,9 @@ kendo-drawer .k-drawer-wrapper {
|
|
|
22494
22553
|
}
|
|
22495
22554
|
|
|
22496
22555
|
.k-rtl .k-notification .k-notification-wrap > .k-i-close,
|
|
22497
|
-
|
|
22556
|
+
.k-rtl .k-notification .k-notification-wrap > .k-i-x,
|
|
22557
|
+
[dir="rtl"] .k-notification .k-notification-wrap > .k-i-close,
|
|
22558
|
+
[dir="rtl"] .k-notification .k-notification-wrap > .k-i-x {
|
|
22498
22559
|
margin-left: 0;
|
|
22499
22560
|
margin-right: 4px;
|
|
22500
22561
|
}
|
|
@@ -22505,7 +22566,8 @@ kendo-drawer .k-drawer-wrapper {
|
|
|
22505
22566
|
background-color: #ffffff;
|
|
22506
22567
|
}
|
|
22507
22568
|
|
|
22508
|
-
.k-notification-wrap > .k-i-close
|
|
22569
|
+
.k-notification-wrap > .k-i-close,
|
|
22570
|
+
.k-notification-wrap > .k-i-x {
|
|
22509
22571
|
color: inherit;
|
|
22510
22572
|
}
|
|
22511
22573
|
|
|
@@ -22605,7 +22667,7 @@ kendo-card-footer {
|
|
|
22605
22667
|
}
|
|
22606
22668
|
|
|
22607
22669
|
.k-card > .k-card-inner {
|
|
22608
|
-
border-radius:
|
|
22670
|
+
border-radius: 7px;
|
|
22609
22671
|
display: flex;
|
|
22610
22672
|
flex-direction: inherit;
|
|
22611
22673
|
overflow: hidden;
|
|
@@ -23246,7 +23308,7 @@ kendo-card-footer {
|
|
|
23246
23308
|
.k-bottom-nav-item {
|
|
23247
23309
|
padding: 0 8px;
|
|
23248
23310
|
min-width: 72px;
|
|
23249
|
-
min-height:
|
|
23311
|
+
min-height: 48px;
|
|
23250
23312
|
border-width: 0;
|
|
23251
23313
|
border-radius: 4px;
|
|
23252
23314
|
box-sizing: border-box;
|
|
@@ -23749,6 +23811,10 @@ kendo-card-footer {
|
|
|
23749
23811
|
z-index: 3;
|
|
23750
23812
|
}
|
|
23751
23813
|
|
|
23814
|
+
.k-rtl .k-pager-wrap .k-i-caret-alt-to-left,
|
|
23815
|
+
.k-rtl .k-pager-wrap .k-i-caret-alt-to-right,
|
|
23816
|
+
.k-rtl .k-pager-wrap .k-i-caret-alt-left,
|
|
23817
|
+
.k-rtl .k-pager-wrap .k-i-caret-alt-right,
|
|
23752
23818
|
.k-rtl .k-pager-wrap .k-i-arrow-end-left,
|
|
23753
23819
|
.k-rtl .k-pager-wrap .k-i-arrow-60-left,
|
|
23754
23820
|
.k-rtl .k-pager-wrap .k-i-arrow-60-right,
|
|
@@ -23756,7 +23822,11 @@ kendo-card-footer {
|
|
|
23756
23822
|
.k-rtl .k-pager-wrap .k-i-seek-w,
|
|
23757
23823
|
.k-rtl .k-pager-wrap .k-i-arrow-w,
|
|
23758
23824
|
.k-rtl .k-pager-wrap .k-i-arrow-e,
|
|
23759
|
-
.k-rtl .k-pager-wrap .k-i-seek-e, .k-pager-wrap[dir="rtl"] .k-i-
|
|
23825
|
+
.k-rtl .k-pager-wrap .k-i-seek-e, .k-pager-wrap[dir="rtl"] .k-i-caret-alt-to-left,
|
|
23826
|
+
.k-pager-wrap[dir="rtl"] .k-i-caret-alt-to-right,
|
|
23827
|
+
.k-pager-wrap[dir="rtl"] .k-i-caret-alt-left,
|
|
23828
|
+
.k-pager-wrap[dir="rtl"] .k-i-caret-alt-right,
|
|
23829
|
+
.k-pager-wrap[dir="rtl"] .k-i-arrow-end-left,
|
|
23760
23830
|
.k-pager-wrap[dir="rtl"] .k-i-arrow-60-left,
|
|
23761
23831
|
.k-pager-wrap[dir="rtl"] .k-i-arrow-60-right,
|
|
23762
23832
|
.k-pager-wrap[dir="rtl"] .k-i-arrow-end-right,
|
|
@@ -23764,6 +23834,10 @@ kendo-card-footer {
|
|
|
23764
23834
|
.k-pager-wrap[dir="rtl"] .k-i-arrow-w,
|
|
23765
23835
|
.k-pager-wrap[dir="rtl"] .k-i-arrow-e,
|
|
23766
23836
|
.k-pager-wrap[dir="rtl"] .k-i-seek-e,
|
|
23837
|
+
[dir="rtl"] .k-pager-wrap .k-i-caret-alt-to-left,
|
|
23838
|
+
[dir="rtl"] .k-pager-wrap .k-i-caret-alt-to-right,
|
|
23839
|
+
[dir="rtl"] .k-pager-wrap .k-i-caret-alt-left,
|
|
23840
|
+
[dir="rtl"] .k-pager-wrap .k-i-caret-alt-right,
|
|
23767
23841
|
[dir="rtl"] .k-pager-wrap .k-i-arrow-end-left,
|
|
23768
23842
|
[dir="rtl"] .k-pager-wrap .k-i-arrow-60-left,
|
|
23769
23843
|
[dir="rtl"] .k-pager-wrap .k-i-arrow-60-right,
|
|
@@ -23772,6 +23846,14 @@ kendo-card-footer {
|
|
|
23772
23846
|
[dir="rtl"] .k-pager-wrap .k-i-arrow-w,
|
|
23773
23847
|
[dir="rtl"] .k-pager-wrap .k-i-arrow-e,
|
|
23774
23848
|
[dir="rtl"] .k-pager-wrap .k-i-seek-e, .k-rtl
|
|
23849
|
+
.k-pager .k-i-caret-alt-to-left,
|
|
23850
|
+
.k-rtl
|
|
23851
|
+
.k-pager .k-i-caret-alt-to-right,
|
|
23852
|
+
.k-rtl
|
|
23853
|
+
.k-pager .k-i-caret-alt-left,
|
|
23854
|
+
.k-rtl
|
|
23855
|
+
.k-pager .k-i-caret-alt-right,
|
|
23856
|
+
.k-rtl
|
|
23775
23857
|
.k-pager .k-i-arrow-end-left,
|
|
23776
23858
|
.k-rtl
|
|
23777
23859
|
.k-pager .k-i-arrow-60-left,
|
|
@@ -23787,6 +23869,10 @@ kendo-card-footer {
|
|
|
23787
23869
|
.k-pager .k-i-arrow-e,
|
|
23788
23870
|
.k-rtl
|
|
23789
23871
|
.k-pager .k-i-seek-e,
|
|
23872
|
+
.k-pager[dir="rtl"] .k-i-caret-alt-to-left,
|
|
23873
|
+
.k-pager[dir="rtl"] .k-i-caret-alt-to-right,
|
|
23874
|
+
.k-pager[dir="rtl"] .k-i-caret-alt-left,
|
|
23875
|
+
.k-pager[dir="rtl"] .k-i-caret-alt-right,
|
|
23790
23876
|
.k-pager[dir="rtl"] .k-i-arrow-end-left,
|
|
23791
23877
|
.k-pager[dir="rtl"] .k-i-arrow-60-left,
|
|
23792
23878
|
.k-pager[dir="rtl"] .k-i-arrow-60-right,
|
|
@@ -23796,6 +23882,14 @@ kendo-card-footer {
|
|
|
23796
23882
|
.k-pager[dir="rtl"] .k-i-arrow-e,
|
|
23797
23883
|
.k-pager[dir="rtl"] .k-i-seek-e,
|
|
23798
23884
|
[dir="rtl"]
|
|
23885
|
+
.k-pager .k-i-caret-alt-to-left,
|
|
23886
|
+
[dir="rtl"]
|
|
23887
|
+
.k-pager .k-i-caret-alt-to-right,
|
|
23888
|
+
[dir="rtl"]
|
|
23889
|
+
.k-pager .k-i-caret-alt-left,
|
|
23890
|
+
[dir="rtl"]
|
|
23891
|
+
.k-pager .k-i-caret-alt-right,
|
|
23892
|
+
[dir="rtl"]
|
|
23799
23893
|
.k-pager .k-i-arrow-end-left,
|
|
23800
23894
|
[dir="rtl"]
|
|
23801
23895
|
.k-pager .k-i-arrow-60-left,
|
|
@@ -23823,8 +23917,8 @@ kendo-card-footer {
|
|
|
23823
23917
|
}
|
|
23824
23918
|
|
|
23825
23919
|
.k-pager-nav, .k-pager-numbers .k-link, .k-pager-refresh {
|
|
23826
|
-
min-width: calc(
|
|
23827
|
-
height: calc(
|
|
23920
|
+
min-width: calc(1.4285714286em + 10px);
|
|
23921
|
+
height: calc(1.4285714286em + 10px);
|
|
23828
23922
|
color: inherit;
|
|
23829
23923
|
text-align: center;
|
|
23830
23924
|
display: inline-flex;
|
|
@@ -23942,7 +24036,7 @@ kendo-card-footer {
|
|
|
23942
24036
|
.k-pager-sm .k-pager-numbers-wrap {
|
|
23943
24037
|
margin-left: 1em;
|
|
23944
24038
|
margin-right: 1em;
|
|
23945
|
-
height: calc(
|
|
24039
|
+
height: calc(1.4285714286em + 10px);
|
|
23946
24040
|
border-color: inherit;
|
|
23947
24041
|
}
|
|
23948
24042
|
|
|
@@ -24115,10 +24209,10 @@ kendo-card-footer {
|
|
|
24115
24209
|
pointer-events: none;
|
|
24116
24210
|
display: none;
|
|
24117
24211
|
position: absolute;
|
|
24118
|
-
top:
|
|
24119
|
-
right:
|
|
24120
|
-
bottom:
|
|
24121
|
-
left:
|
|
24212
|
+
top: -4px;
|
|
24213
|
+
right: -4px;
|
|
24214
|
+
bottom: -4px;
|
|
24215
|
+
left: -4px;
|
|
24122
24216
|
z-index: 2;
|
|
24123
24217
|
}
|
|
24124
24218
|
|
|
@@ -24144,7 +24238,7 @@ kendo-card-footer {
|
|
|
24144
24238
|
}
|
|
24145
24239
|
|
|
24146
24240
|
.k-stepper .k-step-label .k-step-text {
|
|
24147
|
-
max-width: calc(10em -
|
|
24241
|
+
max-width: calc(10em - 20px);
|
|
24148
24242
|
flex-grow: 1;
|
|
24149
24243
|
white-space: nowrap;
|
|
24150
24244
|
text-overflow: ellipsis;
|
|
@@ -24215,13 +24309,13 @@ kendo-card-footer {
|
|
|
24215
24309
|
}
|
|
24216
24310
|
|
|
24217
24311
|
.k-step-list-horizontal .k-step-indicator + .k-step-label {
|
|
24218
|
-
margin-top:
|
|
24312
|
+
margin-top: 5px;
|
|
24219
24313
|
}
|
|
24220
24314
|
|
|
24221
24315
|
.k-step-list-horizontal ~ .k-progressbar {
|
|
24222
24316
|
width: 100%;
|
|
24223
24317
|
height: 2px;
|
|
24224
|
-
top:
|
|
24318
|
+
top: 17px;
|
|
24225
24319
|
}
|
|
24226
24320
|
|
|
24227
24321
|
.k-step-list-vertical {
|
|
@@ -24229,7 +24323,7 @@ kendo-card-footer {
|
|
|
24229
24323
|
}
|
|
24230
24324
|
|
|
24231
24325
|
.k-step-list-vertical .k-step {
|
|
24232
|
-
min-height:
|
|
24326
|
+
min-height: 54px;
|
|
24233
24327
|
}
|
|
24234
24328
|
|
|
24235
24329
|
.k-step-list-vertical .k-step-label {
|
|
@@ -24244,7 +24338,7 @@ kendo-card-footer {
|
|
|
24244
24338
|
width: 2px;
|
|
24245
24339
|
height: 100%;
|
|
24246
24340
|
min-height: 20px;
|
|
24247
|
-
left:
|
|
24341
|
+
left: 17px;
|
|
24248
24342
|
}
|
|
24249
24343
|
|
|
24250
24344
|
.k-step-list-vertical .k-step-content {
|
|
@@ -24283,7 +24377,7 @@ kendo-card-footer {
|
|
|
24283
24377
|
.k-rtl .k-stepper .k-step-list-vertical ~ .k-progressbar,
|
|
24284
24378
|
.k-stepper[dir="rtl"] .k-step-list-vertical ~ .k-progressbar {
|
|
24285
24379
|
left: auto;
|
|
24286
|
-
right:
|
|
24380
|
+
right: 17px;
|
|
24287
24381
|
}
|
|
24288
24382
|
|
|
24289
24383
|
.k-stepper {
|
|
@@ -24770,7 +24864,7 @@ kendo-card-footer {
|
|
|
24770
24864
|
|
|
24771
24865
|
.k-wizard .k-wizard-step {
|
|
24772
24866
|
box-sizing: border-box;
|
|
24773
|
-
padding:
|
|
24867
|
+
padding: 10px;
|
|
24774
24868
|
width: 100%;
|
|
24775
24869
|
display: flex;
|
|
24776
24870
|
flex-direction: column;
|
|
@@ -24999,7 +25093,9 @@ kendo-card-footer {
|
|
|
24999
25093
|
align-items: center;
|
|
25000
25094
|
align-content: center;
|
|
25001
25095
|
position: relative;
|
|
25002
|
-
user-select: none;
|
|
25096
|
+
-webkit-user-select: none;
|
|
25097
|
+
-ms-user-select: none;
|
|
25098
|
+
user-select: none;
|
|
25003
25099
|
cursor: default;
|
|
25004
25100
|
transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
|
|
25005
25101
|
}
|
|
@@ -25036,7 +25132,9 @@ kendo-card-footer {
|
|
|
25036
25132
|
align-items: center;
|
|
25037
25133
|
align-content: center;
|
|
25038
25134
|
position: relative;
|
|
25039
|
-
user-select: none;
|
|
25135
|
+
-webkit-user-select: none;
|
|
25136
|
+
-ms-user-select: none;
|
|
25137
|
+
user-select: none;
|
|
25040
25138
|
cursor: default;
|
|
25041
25139
|
transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
|
|
25042
25140
|
}
|
|
@@ -25074,7 +25172,7 @@ kendo-card-footer {
|
|
|
25074
25172
|
.k-panelbar .k-group .k-panelbar-expand,
|
|
25075
25173
|
.k-panelbar .k-group .k-panelbar-collapse,
|
|
25076
25174
|
.k-panelbar .k-panelbar-group .k-panelbar-toggle {
|
|
25077
|
-
margin-inline-end:
|
|
25175
|
+
margin-inline-end: 0px;
|
|
25078
25176
|
}
|
|
25079
25177
|
|
|
25080
25178
|
.k-rtl .k-panelbar .k-group > .k-item.k-level-1 .k-link,
|
|
@@ -25118,7 +25216,7 @@ kendo-card-footer {
|
|
|
25118
25216
|
.k-ie .k-group .k-panelbar-expand,
|
|
25119
25217
|
.k-ie .k-group .k-panelbar-collapse,
|
|
25120
25218
|
.k-ie .k-panelbar-group .k-panelbar-toggle {
|
|
25121
|
-
margin-right:
|
|
25219
|
+
margin-right: 0px;
|
|
25122
25220
|
}
|
|
25123
25221
|
|
|
25124
25222
|
.k-rtl .k-ie .k-panelbar-expand,
|
|
@@ -25139,7 +25237,7 @@ kendo-card-footer {
|
|
|
25139
25237
|
.k-ie.k-rtl .k-panelbar-group .k-panelbar-toggle, .k-ie[dir="rtl"] .k-group .k-panelbar-expand,
|
|
25140
25238
|
.k-ie[dir="rtl"] .k-group .k-panelbar-collapse,
|
|
25141
25239
|
.k-ie[dir="rtl"] .k-panelbar-group .k-panelbar-toggle {
|
|
25142
|
-
margin-left:
|
|
25240
|
+
margin-left: 0px;
|
|
25143
25241
|
}
|
|
25144
25242
|
|
|
25145
25243
|
.k-panelbar {
|
|
@@ -25331,7 +25429,6 @@ kendo-card-footer {
|
|
|
25331
25429
|
outline: 0;
|
|
25332
25430
|
position: absolute;
|
|
25333
25431
|
-webkit-user-select: none;
|
|
25334
|
-
-moz-user-select: none;
|
|
25335
25432
|
-ms-user-select: none;
|
|
25336
25433
|
user-select: none;
|
|
25337
25434
|
display: flex;
|
|
@@ -25588,7 +25685,9 @@ kendo-card-footer {
|
|
|
25588
25685
|
.k-pane-wrapper .k-pane {
|
|
25589
25686
|
width: 100%;
|
|
25590
25687
|
height: 100%;
|
|
25591
|
-
user-select: none;
|
|
25688
|
+
-webkit-user-select: none;
|
|
25689
|
+
-ms-user-select: none;
|
|
25690
|
+
user-select: none;
|
|
25592
25691
|
box-sizing: border-box;
|
|
25593
25692
|
font-family: sans-serif;
|
|
25594
25693
|
overflow-x: hidden;
|
|
@@ -25670,8 +25769,8 @@ kendo-card-footer {
|
|
|
25670
25769
|
.k-grid-mobile .k-header a {
|
|
25671
25770
|
-webkit-touch-callout: none;
|
|
25672
25771
|
-webkit-user-select: none;
|
|
25673
|
-
-
|
|
25674
|
-
|
|
25772
|
+
-ms-user-select: none;
|
|
25773
|
+
user-select: none;
|
|
25675
25774
|
-webkit-user-drag: none;
|
|
25676
25775
|
-moz-user-drag: none;
|
|
25677
25776
|
}
|
|
@@ -25850,7 +25949,8 @@ kendo-card-footer {
|
|
|
25850
25949
|
border-radius: 50%;
|
|
25851
25950
|
}
|
|
25852
25951
|
|
|
25853
|
-
.k-scheduler-mobile .k-task .k-i-reload
|
|
25952
|
+
.k-scheduler-mobile .k-task .k-i-reload,
|
|
25953
|
+
.k-scheduler-mobile .k-task .k-i-arrow-rotate-cw {
|
|
25854
25954
|
font-size: 1em;
|
|
25855
25955
|
margin-right: .5em;
|
|
25856
25956
|
}
|
|
@@ -25870,7 +25970,8 @@ kendo-card-footer {
|
|
|
25870
25970
|
.k-scheduler-mobile .k-scheduler-times .k-scheduler-groupcolumn .k-scheduler-group-text,
|
|
25871
25971
|
.k-scheduler-mobile .k-scheduler-agenda .k-scheduler-group-cell .k-scheduler-group-text,
|
|
25872
25972
|
.k-scheduler-mobile .k-scheduler-agenda .k-scheduler-groupcolumn .k-scheduler-group-text {
|
|
25873
|
-
writing-mode:
|
|
25973
|
+
-ms-writing-mode: tb-lr;
|
|
25974
|
+
writing-mode: vertical-lr;
|
|
25874
25975
|
transform: rotate(180deg);
|
|
25875
25976
|
white-space: nowrap;
|
|
25876
25977
|
}
|
|
@@ -26233,7 +26334,7 @@ kendo-card-footer {
|
|
|
26233
26334
|
}
|
|
26234
26335
|
|
|
26235
26336
|
.k-grid .k-grouping-row .k-icon {
|
|
26236
|
-
margin-left:
|
|
26337
|
+
margin-left: 0px;
|
|
26237
26338
|
margin-right: 8px;
|
|
26238
26339
|
text-decoration: none;
|
|
26239
26340
|
}
|
|
@@ -26402,7 +26503,7 @@ kendo-card-footer {
|
|
|
26402
26503
|
.k-grid[dir="rtl"] .k-grid-header .k-filterable,
|
|
26403
26504
|
.k-rtl .k-grid .k-grid-header .k-with-icon,
|
|
26404
26505
|
.k-rtl .k-grid .k-grid-header .k-filterable {
|
|
26405
|
-
padding-left: calc(
|
|
26506
|
+
padding-left: calc(1.4285714286em + 14px);
|
|
26406
26507
|
padding-right: 8px;
|
|
26407
26508
|
}
|
|
26408
26509
|
|
|
@@ -26460,7 +26561,7 @@ kendo-card-footer {
|
|
|
26460
26561
|
.k-grid[dir="rtl"] .k-grouping-row .k-icon,
|
|
26461
26562
|
.k-rtl .k-grid .k-grouping-row .k-icon {
|
|
26462
26563
|
margin-left: 8px;
|
|
26463
|
-
margin-right:
|
|
26564
|
+
margin-right: 0px;
|
|
26464
26565
|
}
|
|
26465
26566
|
|
|
26466
26567
|
.k-grid[dir="rtl"] .k-column-resizer,
|
|
@@ -26537,7 +26638,7 @@ kendo-card-footer {
|
|
|
26537
26638
|
|
|
26538
26639
|
.k-grouping-header::before {
|
|
26539
26640
|
content: "";
|
|
26540
|
-
height: calc(
|
|
26641
|
+
height: calc(1.4285714286em + 10px);
|
|
26541
26642
|
display: inline-block;
|
|
26542
26643
|
vertical-align: middle;
|
|
26543
26644
|
}
|
|
@@ -26616,7 +26717,7 @@ kendo-card-footer {
|
|
|
26616
26717
|
|
|
26617
26718
|
.k-grouping-dropclue {
|
|
26618
26719
|
width: 12px;
|
|
26619
|
-
height: calc(
|
|
26720
|
+
height: calc(1.4285714286em + 10px);
|
|
26620
26721
|
position: absolute;
|
|
26621
26722
|
top: 3px;
|
|
26622
26723
|
box-sizing: content-box;
|
|
@@ -26641,7 +26742,7 @@ kendo-card-footer {
|
|
|
26641
26742
|
width: 2px;
|
|
26642
26743
|
height: calc(100% - 6px);
|
|
26643
26744
|
top: 6px;
|
|
26644
|
-
left:
|
|
26745
|
+
left: 5px;
|
|
26645
26746
|
}
|
|
26646
26747
|
|
|
26647
26748
|
.k-grid-header-wrap,
|
|
@@ -26694,7 +26795,9 @@ div.k-grid-footer {
|
|
|
26694
26795
|
}
|
|
26695
26796
|
|
|
26696
26797
|
.k-grid-header.k-grid-draggable-header {
|
|
26697
|
-
user-select: none;
|
|
26798
|
+
-webkit-user-select: none;
|
|
26799
|
+
-ms-user-select: none;
|
|
26800
|
+
user-select: none;
|
|
26698
26801
|
touch-action: none;
|
|
26699
26802
|
}
|
|
26700
26803
|
|
|
@@ -26729,12 +26832,12 @@ div.k-grid-footer {
|
|
|
26729
26832
|
|
|
26730
26833
|
.k-grid-header .k-with-icon,
|
|
26731
26834
|
.k-grid-header .k-filterable {
|
|
26732
|
-
padding-right: calc(
|
|
26835
|
+
padding-right: calc(1.4285714286em + 14px);
|
|
26733
26836
|
}
|
|
26734
26837
|
|
|
26735
26838
|
.k-ie .k-grid-header .k-with-icon, .k-ie
|
|
26736
26839
|
.k-grid-header .k-filterable {
|
|
26737
|
-
padding-right: calc(
|
|
26840
|
+
padding-right: calc(1.4285714286em + 14px);
|
|
26738
26841
|
}
|
|
26739
26842
|
|
|
26740
26843
|
.k-grid-header .k-header > .k-link:focus {
|
|
@@ -26745,8 +26848,8 @@ div.k-grid-footer {
|
|
|
26745
26848
|
.k-grid-header .k-header-column-menu,
|
|
26746
26849
|
.k-grid-header .k-grid-header-menu {
|
|
26747
26850
|
padding: 4px;
|
|
26748
|
-
width: calc(
|
|
26749
|
-
height: calc(
|
|
26851
|
+
width: calc(1.4285714286em + 10px);
|
|
26852
|
+
height: calc(1.4285714286em + 10px);
|
|
26750
26853
|
box-sizing: border-box;
|
|
26751
26854
|
outline: 0;
|
|
26752
26855
|
line-height: 1.4285714286;
|
|
@@ -26756,7 +26859,7 @@ div.k-grid-footer {
|
|
|
26756
26859
|
justify-content: center;
|
|
26757
26860
|
position: absolute;
|
|
26758
26861
|
right: 4px;
|
|
26759
|
-
bottom:
|
|
26862
|
+
bottom: 4px;
|
|
26760
26863
|
z-index: 1;
|
|
26761
26864
|
}
|
|
26762
26865
|
|
|
@@ -26766,9 +26869,9 @@ div.k-grid-footer {
|
|
|
26766
26869
|
cursor: pointer;
|
|
26767
26870
|
}
|
|
26768
26871
|
|
|
26769
|
-
.k-grid-header .k-cell-inner > .k-link > .k-icon.k-i-sort-desc-sm, .k-grid-header .k-cell-inner > .k-link > .k-icon.k-i-sort-asc-sm {
|
|
26872
|
+
.k-grid-header .k-cell-inner > .k-link > .k-icon.k-i-sort-desc-sm, .k-grid-header .k-cell-inner > .k-link > .k-icon.k-i-sort-asc-sm, .k-grid-header .k-cell-inner > .k-link > .k-icon.k-i-sort-asc-small, .k-grid-header .k-cell-inner > .k-link > .k-icon.k-i-sort-desc-small {
|
|
26770
26873
|
vertical-align: text-top;
|
|
26771
|
-
margin-inline-start:
|
|
26874
|
+
margin-inline-start: 7px;
|
|
26772
26875
|
}
|
|
26773
26876
|
|
|
26774
26877
|
.k-grid-header .k-sort-order {
|
|
@@ -27180,7 +27283,7 @@ div.k-grid-norecords {
|
|
|
27180
27283
|
}
|
|
27181
27284
|
|
|
27182
27285
|
.k-filterable > .k-cell-inner {
|
|
27183
|
-
margin-inline-end: calc(-1
|
|
27286
|
+
margin-inline-end: calc(-1.4285714286em + -14px);
|
|
27184
27287
|
}
|
|
27185
27288
|
|
|
27186
27289
|
.k-filterable > .k-cell-inner .k-link {
|
|
@@ -27502,7 +27605,9 @@ div.k-grid-norecords {
|
|
|
27502
27605
|
display: flex;
|
|
27503
27606
|
flex: 0 0 auto;
|
|
27504
27607
|
position: relative;
|
|
27505
|
-
user-select: none;
|
|
27608
|
+
-webkit-user-select: none;
|
|
27609
|
+
-ms-user-select: none;
|
|
27610
|
+
user-select: none;
|
|
27506
27611
|
}
|
|
27507
27612
|
|
|
27508
27613
|
.k-column-menu-group-header-text {
|
|
@@ -27691,6 +27796,8 @@ th.k-sorted {
|
|
|
27691
27796
|
|
|
27692
27797
|
.k-grid-header .k-i-sort-asc-sm,
|
|
27693
27798
|
.k-grid-header .k-i-sort-desc-sm,
|
|
27799
|
+
.k-grid-header .k-i-sort-asc-small,
|
|
27800
|
+
.k-grid-header .k-i-sort-desc-small,
|
|
27694
27801
|
.k-grid-header .k-sort-order {
|
|
27695
27802
|
color: #f35800;
|
|
27696
27803
|
}
|
|
@@ -28359,7 +28466,6 @@ kendo-grid tr.k-hover .k-grid-content-sticky.k-selected {
|
|
|
28359
28466
|
border-color: inherit;
|
|
28360
28467
|
box-sizing: border-box;
|
|
28361
28468
|
-webkit-user-select: none;
|
|
28362
|
-
-moz-user-select: none;
|
|
28363
28469
|
-ms-user-select: none;
|
|
28364
28470
|
user-select: none;
|
|
28365
28471
|
position: absolute;
|
|
@@ -28683,12 +28789,12 @@ kendo-grid tr.k-hover .k-grid-content-sticky.k-selected {
|
|
|
28683
28789
|
|
|
28684
28790
|
.k-spreadsheet-filter-menu > .k-menu .k-link,
|
|
28685
28791
|
.k-spreadsheet-filter-menu > .k-menu.k-menu-vertical .k-link {
|
|
28686
|
-
padding-left:
|
|
28792
|
+
padding-left: 24px;
|
|
28687
28793
|
}
|
|
28688
28794
|
|
|
28689
28795
|
.k-spreadsheet-filter-menu > .k-menu .k-icon,
|
|
28690
28796
|
.k-spreadsheet-filter-menu > .k-menu.k-menu-vertical .k-icon {
|
|
28691
|
-
margin-left:
|
|
28797
|
+
margin-left: -20px;
|
|
28692
28798
|
margin-right: 4px;
|
|
28693
28799
|
}
|
|
28694
28800
|
|
|
@@ -29354,7 +29460,9 @@ kendo-grid tr.k-hover .k-grid-content-sticky.k-selected {
|
|
|
29354
29460
|
border-style: solid;
|
|
29355
29461
|
box-sizing: border-box;
|
|
29356
29462
|
cursor: pointer;
|
|
29357
|
-
user-select: none;
|
|
29463
|
+
-webkit-user-select: none;
|
|
29464
|
+
-ms-user-select: none;
|
|
29465
|
+
user-select: none;
|
|
29358
29466
|
}
|
|
29359
29467
|
|
|
29360
29468
|
.k-flex-row .k-pivotgrid-configurator-button, .k-d-flex-row .k-pivotgrid-configurator-button,
|
|
@@ -29365,7 +29473,8 @@ kendo-grid tr.k-hover .k-grid-content-sticky.k-selected {
|
|
|
29365
29473
|
|
|
29366
29474
|
.k-flex-row .k-pivotgrid-configurator-button span, .k-d-flex-row .k-pivotgrid-configurator-button span,
|
|
29367
29475
|
.k-flex-row-reverse .k-pivotgrid-configurator-button span {
|
|
29368
|
-
writing-mode:
|
|
29476
|
+
-ms-writing-mode: tb-rl;
|
|
29477
|
+
writing-mode: vertical-rl;
|
|
29369
29478
|
}
|
|
29370
29479
|
|
|
29371
29480
|
.k-flex-row .k-pivotgrid-configurator-button .k-icon, .k-d-flex-row .k-pivotgrid-configurator-button .k-icon,
|
|
@@ -29390,19 +29499,19 @@ kendo-grid tr.k-hover .k-grid-content-sticky.k-selected {
|
|
|
29390
29499
|
}
|
|
29391
29500
|
|
|
29392
29501
|
.k-flex-row .k-pivotgrid-configurator-overlay, .k-d-flex-row .k-pivotgrid-configurator-overlay {
|
|
29393
|
-
right: calc(
|
|
29502
|
+
right: calc(1.4285714286em + 10px);
|
|
29394
29503
|
}
|
|
29395
29504
|
|
|
29396
29505
|
.k-flex-row-reverse .k-pivotgrid-configurator-overlay {
|
|
29397
|
-
left: calc(
|
|
29506
|
+
left: calc(1.4285714286em + 10px);
|
|
29398
29507
|
}
|
|
29399
29508
|
|
|
29400
29509
|
.k-flex-col .k-pivotgrid-configurator-overlay, .k-d-flex-col .k-pivotgrid-configurator-overlay, .k-flex-column .k-pivotgrid-configurator-overlay {
|
|
29401
|
-
bottom: calc(
|
|
29510
|
+
bottom: calc(1.4285714286em + 10px);
|
|
29402
29511
|
}
|
|
29403
29512
|
|
|
29404
29513
|
.k-flex-col-reverse .k-pivotgrid-configurator-overlay, .k-flex-column-reverse .k-pivotgrid-configurator-overlay {
|
|
29405
|
-
top: calc(
|
|
29514
|
+
top: calc(1.4285714286em + 10px);
|
|
29406
29515
|
}
|
|
29407
29516
|
|
|
29408
29517
|
.k-pivotgrid-configurator-header {
|
|
@@ -30163,7 +30272,7 @@ kendo-grid tr.k-hover .k-grid-content-sticky.k-selected {
|
|
|
30163
30272
|
content: "";
|
|
30164
30273
|
position: absolute;
|
|
30165
30274
|
width: 1px;
|
|
30166
|
-
top:
|
|
30275
|
+
top: -5px;
|
|
30167
30276
|
bottom: 50%;
|
|
30168
30277
|
left: -8px;
|
|
30169
30278
|
}
|
|
@@ -30350,7 +30459,7 @@ kendo-grid tr.k-hover .k-grid-content-sticky.k-selected {
|
|
|
30350
30459
|
.k-filemanager-preview {
|
|
30351
30460
|
padding: 48px 16px 16px;
|
|
30352
30461
|
width: 20%;
|
|
30353
|
-
min-height:
|
|
30462
|
+
min-height: 304px;
|
|
30354
30463
|
border-width: 0;
|
|
30355
30464
|
border-left-width: 1px;
|
|
30356
30465
|
border-style: solid;
|
|
@@ -30904,8 +31013,8 @@ kendo-editor.k-readonly .k-editor-content.k-focus {
|
|
|
30904
31013
|
|
|
30905
31014
|
.k-editor-toolbar .k-tool {
|
|
30906
31015
|
padding: 4px;
|
|
30907
|
-
width: calc(
|
|
30908
|
-
height: calc(
|
|
31016
|
+
width: calc(1.4285714286em + 10px);
|
|
31017
|
+
height: calc(1.4285714286em + 10px);
|
|
30909
31018
|
}
|
|
30910
31019
|
|
|
30911
31020
|
.k-editor-toolbar .k-tool-text {
|
|
@@ -30967,7 +31076,9 @@ kendo-editor.k-readonly .k-editor-content.k-focus {
|
|
|
30967
31076
|
float: left;
|
|
30968
31077
|
opacity: 1;
|
|
30969
31078
|
cursor: text;
|
|
30970
|
-
user-select: none;
|
|
31079
|
+
-webkit-user-select: none;
|
|
31080
|
+
-ms-user-select: none;
|
|
31081
|
+
user-select: none;
|
|
30971
31082
|
}
|
|
30972
31083
|
|
|
30973
31084
|
td.k-editor-content {
|
|
@@ -31027,7 +31138,8 @@ td.k-editor-content {
|
|
|
31027
31138
|
cursor: se-resize;
|
|
31028
31139
|
}
|
|
31029
31140
|
|
|
31030
|
-
.k-editor .k-resize-handle .k-i-arrow-45-down-right
|
|
31141
|
+
.k-editor .k-resize-handle .k-i-arrow-45-down-right,
|
|
31142
|
+
.k-editor .k-resize-handle .k-i-caret-br {
|
|
31031
31143
|
display: none;
|
|
31032
31144
|
}
|
|
31033
31145
|
|
|
@@ -31077,7 +31189,7 @@ td.k-editor-content {
|
|
|
31077
31189
|
|
|
31078
31190
|
.k-editor-dialog .k-edit-label {
|
|
31079
31191
|
width: 30%;
|
|
31080
|
-
padding:
|
|
31192
|
+
padding: 5px 0;
|
|
31081
31193
|
}
|
|
31082
31194
|
|
|
31083
31195
|
.k-editor-dialog .k-edit-field {
|
|
@@ -31506,7 +31618,7 @@ kendo-editor.k-readonly .k-editor-content.k-focus {
|
|
|
31506
31618
|
|
|
31507
31619
|
.k-imageeditor-action-pane {
|
|
31508
31620
|
padding: 32px 16px;
|
|
31509
|
-
width:
|
|
31621
|
+
width: 241px;
|
|
31510
31622
|
border-width: 0;
|
|
31511
31623
|
border-left-width: 1px;
|
|
31512
31624
|
border-style: solid;
|
|
@@ -31554,14 +31666,14 @@ kendo-editor.k-readonly .k-editor-content.k-focus {
|
|
|
31554
31666
|
|
|
31555
31667
|
.k-imageeditor-crop .k-resize-n,
|
|
31556
31668
|
.k-imageeditor-crop .k-resize-s {
|
|
31557
|
-
left: calc(
|
|
31669
|
+
left: calc(50% - 7.5px);
|
|
31558
31670
|
width: 15px;
|
|
31559
31671
|
height: 0;
|
|
31560
31672
|
}
|
|
31561
31673
|
|
|
31562
31674
|
.k-imageeditor-crop .k-resize-w,
|
|
31563
31675
|
.k-imageeditor-crop .k-resize-e {
|
|
31564
|
-
top: calc(
|
|
31676
|
+
top: calc(50% - 7.5px);
|
|
31565
31677
|
width: 0;
|
|
31566
31678
|
height: 15px;
|
|
31567
31679
|
}
|
|
@@ -31612,7 +31724,7 @@ kendo-editor.k-readonly .k-editor-content.k-focus {
|
|
|
31612
31724
|
.k-imageeditor-canvas {
|
|
31613
31725
|
background: linear-gradient(45deg, rgba(0, 0, 0, 0.09) 25%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.09) 75%, rgba(0, 0, 0, 0.09) 0), linear-gradient(45deg, rgba(0, 0, 0, 0.09) 25%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.09) 75%, rgba(0, 0, 0, 0.09) 0), white;
|
|
31614
31726
|
background-repeat: repeat, repeat;
|
|
31615
|
-
background-position: 0px 0px,
|
|
31727
|
+
background-position: 0px 0px, 5px 5px;
|
|
31616
31728
|
transform-origin: 0 0 0;
|
|
31617
31729
|
background-origin: padding-box, padding-box;
|
|
31618
31730
|
background-size: 10px 10px, 10px 10px;
|
|
@@ -31657,7 +31769,7 @@ kendo-editor.k-readonly .k-editor-content.k-focus {
|
|
|
31657
31769
|
}
|
|
31658
31770
|
|
|
31659
31771
|
.k-gantt .k-grid-header tr {
|
|
31660
|
-
height: calc(
|
|
31772
|
+
height: calc(1.4285714286em + 17px);
|
|
31661
31773
|
}
|
|
31662
31774
|
|
|
31663
31775
|
.k-gantt .k-grid-header .k-header {
|
|
@@ -31669,11 +31781,11 @@ kendo-editor.k-readonly .k-editor-content.k-focus {
|
|
|
31669
31781
|
}
|
|
31670
31782
|
|
|
31671
31783
|
.k-gantt .k-grid-content tr {
|
|
31672
|
-
height: calc(
|
|
31784
|
+
height: calc(1.4285714286em + 16px);
|
|
31673
31785
|
}
|
|
31674
31786
|
|
|
31675
31787
|
.k-gantt.k-gantt-planned .k-grid-content tr {
|
|
31676
|
-
height: calc(
|
|
31788
|
+
height: calc(2.4285714286em + 16px);
|
|
31677
31789
|
}
|
|
31678
31790
|
|
|
31679
31791
|
.k-gantt .k-gantt-layout {
|
|
@@ -31840,8 +31952,8 @@ kendo-editor.k-readonly .k-editor-content.k-focus {
|
|
|
31840
31952
|
.k-gantt-toolbar .k-gantt-pdf,
|
|
31841
31953
|
.k-gantt-toolbar .k-gantt-create {
|
|
31842
31954
|
padding: 4px;
|
|
31843
|
-
width: calc(
|
|
31844
|
-
height: calc(
|
|
31955
|
+
width: calc(1.4285714286em + 10px);
|
|
31956
|
+
height: calc(1.4285714286em + 10px);
|
|
31845
31957
|
}
|
|
31846
31958
|
.k-gantt-toolbar .k-gantt-pdf .k-button-text,
|
|
31847
31959
|
.k-gantt-toolbar .k-gantt-create .k-button-text {
|
|
@@ -31877,7 +31989,7 @@ kendo-editor.k-readonly .k-editor-content.k-focus {
|
|
|
31877
31989
|
}
|
|
31878
31990
|
|
|
31879
31991
|
.k-gantt-treelist .k-grid-header tr {
|
|
31880
|
-
height: calc(
|
|
31992
|
+
height: calc(2.8571428571em + 34px);
|
|
31881
31993
|
vertical-align: bottom;
|
|
31882
31994
|
}
|
|
31883
31995
|
|
|
@@ -31891,7 +32003,7 @@ kendo-editor.k-readonly .k-editor-content.k-focus {
|
|
|
31891
32003
|
}
|
|
31892
32004
|
|
|
31893
32005
|
.k-gantt-treelist .k-gantt-treelist-nested-columns .k-grid-header tr {
|
|
31894
|
-
height: calc(
|
|
32006
|
+
height: calc(1.4285714286em + 17px);
|
|
31895
32007
|
}
|
|
31896
32008
|
|
|
31897
32009
|
.k-gantt-treelist.k-gantt-treelist-scrollable .k-grid-content {
|
|
@@ -32012,8 +32124,8 @@ kendo-editor.k-readonly .k-editor-content.k-focus {
|
|
|
32012
32124
|
}
|
|
32013
32125
|
|
|
32014
32126
|
.k-task-dot {
|
|
32015
|
-
width:
|
|
32016
|
-
height:
|
|
32127
|
+
width: 16px;
|
|
32128
|
+
height: 16px;
|
|
32017
32129
|
line-height: 1;
|
|
32018
32130
|
cursor: pointer;
|
|
32019
32131
|
display: none;
|
|
@@ -32284,7 +32396,7 @@ kendo-editor.k-readonly .k-editor-content.k-focus {
|
|
|
32284
32396
|
|
|
32285
32397
|
.k-task-planned .k-task-moment {
|
|
32286
32398
|
border-width: 2px;
|
|
32287
|
-
border-radius:
|
|
32399
|
+
border-radius: 5px;
|
|
32288
32400
|
border-style: solid;
|
|
32289
32401
|
height: 6px;
|
|
32290
32402
|
width: 6px;
|
|
@@ -32295,15 +32407,15 @@ kendo-editor.k-readonly .k-editor-content.k-focus {
|
|
|
32295
32407
|
}
|
|
32296
32408
|
|
|
32297
32409
|
.k-task-planned .k-task-moment.k-moment-left {
|
|
32298
|
-
margin-left:
|
|
32410
|
+
margin-left: -4px;
|
|
32299
32411
|
}
|
|
32300
32412
|
|
|
32301
32413
|
.k-task-planned:hover .k-task-duration {
|
|
32302
|
-
height:
|
|
32414
|
+
height: 3px;
|
|
32303
32415
|
}
|
|
32304
32416
|
|
|
32305
32417
|
.k-milestone-wrap .k-task-moment {
|
|
32306
|
-
margin-left:
|
|
32418
|
+
margin-left: 3px;
|
|
32307
32419
|
}
|
|
32308
32420
|
|
|
32309
32421
|
.k-planned-tooltip .k-task-content {
|
|
@@ -33104,7 +33216,7 @@ kendo-scheduler .k-event > div,
|
|
|
33104
33216
|
|
|
33105
33217
|
kendo-scheduler .k-event .k-event-template,
|
|
33106
33218
|
.k-event .k-event-template {
|
|
33107
|
-
line-height:
|
|
33219
|
+
line-height: 17px;
|
|
33108
33220
|
padding: 4px 8px;
|
|
33109
33221
|
}
|
|
33110
33222
|
|
|
@@ -33520,12 +33632,12 @@ kendo-scheduler .k-recurrence-editor {
|
|
|
33520
33632
|
}
|
|
33521
33633
|
|
|
33522
33634
|
.k-scheduler-yearview .k-day-indicator {
|
|
33523
|
-
margin-top:
|
|
33635
|
+
margin-top: 24px;
|
|
33524
33636
|
width: 3px;
|
|
33525
33637
|
height: 3px;
|
|
33526
33638
|
border-radius: 50%;
|
|
33527
33639
|
position: absolute;
|
|
33528
|
-
left: calc(
|
|
33640
|
+
left: calc(50% - 1.5px);
|
|
33529
33641
|
}
|
|
33530
33642
|
|
|
33531
33643
|
.k-scheduler-tooltip {
|
|
@@ -33697,9 +33809,13 @@ kendo-scheduler .k-recurrence-editor {
|
|
|
33697
33809
|
float: right;
|
|
33698
33810
|
}
|
|
33699
33811
|
|
|
33812
|
+
.k-rtl .k-scheduler .k-i-caret-alt-left,
|
|
33813
|
+
.k-rtl .k-scheduler .k-i-caret-alt-right,
|
|
33700
33814
|
.k-rtl .k-scheduler .k-i-arrow-60-left,
|
|
33701
33815
|
.k-rtl .k-scheduler .k-i-arrow-60-right,
|
|
33702
|
-
.k-rtl .k-scheduler .k-current-time-arrow-right, .k-rtl.k-scheduler .k-i-
|
|
33816
|
+
.k-rtl .k-scheduler .k-current-time-arrow-right, .k-rtl.k-scheduler .k-i-caret-alt-left,
|
|
33817
|
+
.k-rtl.k-scheduler .k-i-caret-alt-right,
|
|
33818
|
+
.k-rtl.k-scheduler .k-i-arrow-60-left,
|
|
33703
33819
|
.k-rtl.k-scheduler .k-i-arrow-60-right,
|
|
33704
33820
|
.k-rtl.k-scheduler .k-current-time-arrow-right {
|
|
33705
33821
|
transform: scaleX(-1);
|
|
@@ -34082,11 +34198,11 @@ kendo-scheduler .k-recurrence-editor {
|
|
|
34082
34198
|
}
|
|
34083
34199
|
|
|
34084
34200
|
.k-chat .k-avatars .k-message-group:not(.k-alt):not(.k-no-avatar) {
|
|
34085
|
-
padding-left:
|
|
34201
|
+
padding-left: 40px;
|
|
34086
34202
|
}
|
|
34087
34203
|
|
|
34088
34204
|
.k-chat .k-avatars .k-message-group.k-alt:not(.k-no-avatar) {
|
|
34089
|
-
padding-right:
|
|
34205
|
+
padding-right: 40px;
|
|
34090
34206
|
}
|
|
34091
34207
|
|
|
34092
34208
|
.k-author {
|
|
@@ -34120,7 +34236,9 @@ kendo-scheduler .k-recurrence-editor {
|
|
|
34120
34236
|
border-style: solid;
|
|
34121
34237
|
line-height: 18px;
|
|
34122
34238
|
cursor: pointer;
|
|
34123
|
-
user-select: none;
|
|
34239
|
+
-webkit-user-select: none;
|
|
34240
|
+
-ms-user-select: none;
|
|
34241
|
+
user-select: none;
|
|
34124
34242
|
display: inline-block;
|
|
34125
34243
|
flex: 0 0 auto;
|
|
34126
34244
|
transition-property: color, background-color, border-color;
|
|
@@ -34382,13 +34500,13 @@ kendo-scheduler .k-recurrence-editor {
|
|
|
34382
34500
|
.k-rtl .k-avatars .k-message-group:not(.k-alt):not(.k-no-avatar),
|
|
34383
34501
|
[dir="rtl"] .k-avatars .k-message-group:not(.k-alt):not(.k-no-avatar) {
|
|
34384
34502
|
padding-left: 0;
|
|
34385
|
-
padding-right:
|
|
34503
|
+
padding-right: 40px;
|
|
34386
34504
|
}
|
|
34387
34505
|
|
|
34388
34506
|
.k-rtl .k-avatars .k-message-group.k-alt:not(.k-no-avatar),
|
|
34389
34507
|
[dir="rtl"] .k-avatars .k-message-group.k-alt:not(.k-no-avatar) {
|
|
34390
34508
|
padding-right: 0;
|
|
34391
|
-
padding-left:
|
|
34509
|
+
padding-left: 40px;
|
|
34392
34510
|
}
|
|
34393
34511
|
|
|
34394
34512
|
.k-rtl .k-chat .k-card-deck .k-card-wrap + .k-card-wrap,
|
|
@@ -34619,7 +34737,7 @@ kendo-scheduler .k-recurrence-editor {
|
|
|
34619
34737
|
border-radius: 4px;
|
|
34620
34738
|
line-height: 1.4285714286;
|
|
34621
34739
|
min-width: 80px;
|
|
34622
|
-
max-width:
|
|
34740
|
+
max-width: 160px;
|
|
34623
34741
|
position: relative;
|
|
34624
34742
|
z-index: 1;
|
|
34625
34743
|
}
|
|
@@ -34699,11 +34817,11 @@ kendo-scheduler .k-recurrence-editor {
|
|
|
34699
34817
|
}
|
|
34700
34818
|
|
|
34701
34819
|
.k-timeline-vertical {
|
|
34702
|
-
padding-left:
|
|
34820
|
+
padding-left: 127px;
|
|
34703
34821
|
}
|
|
34704
34822
|
|
|
34705
34823
|
.k-timeline-vertical.k-timeline-dates-hidden {
|
|
34706
|
-
padding-left:
|
|
34824
|
+
padding-left: 77px;
|
|
34707
34825
|
}
|
|
34708
34826
|
|
|
34709
34827
|
.k-timeline-vertical::after {
|
|
@@ -34746,7 +34864,7 @@ kendo-scheduler .k-recurrence-editor {
|
|
|
34746
34864
|
|
|
34747
34865
|
.k-timeline-vertical .k-timeline-card .k-card {
|
|
34748
34866
|
margin-left: 16px;
|
|
34749
|
-
min-height:
|
|
34867
|
+
min-height: 70px;
|
|
34750
34868
|
width: 400px;
|
|
34751
34869
|
max-width: 100%;
|
|
34752
34870
|
}
|
|
@@ -34898,9 +35016,9 @@ kendo-scheduler .k-recurrence-editor {
|
|
|
34898
35016
|
|
|
34899
35017
|
.k-timeline-horizontal .k-timeline-track-wrap::after {
|
|
34900
35018
|
top: auto;
|
|
34901
|
-
bottom:
|
|
34902
|
-
left:
|
|
34903
|
-
right:
|
|
35019
|
+
bottom: 18px;
|
|
35020
|
+
left: 28px;
|
|
35021
|
+
right: 28px;
|
|
34904
35022
|
transform: translateY(-50%);
|
|
34905
35023
|
height: 6px;
|
|
34906
35024
|
}
|
|
@@ -34917,7 +35035,7 @@ kendo-scheduler .k-recurrence-editor {
|
|
|
34917
35035
|
}
|
|
34918
35036
|
|
|
34919
35037
|
.k-timeline-horizontal .k-timeline-track-wrap .k-timeline-flag {
|
|
34920
|
-
margin-bottom:
|
|
35038
|
+
margin-bottom: 22px;
|
|
34921
35039
|
position: relative;
|
|
34922
35040
|
min-width: 60px;
|
|
34923
35041
|
}
|
|
@@ -34943,7 +35061,7 @@ kendo-scheduler .k-recurrence-editor {
|
|
|
34943
35061
|
height: 30px;
|
|
34944
35062
|
border-radius: 50%;
|
|
34945
35063
|
position: absolute;
|
|
34946
|
-
bottom:
|
|
35064
|
+
bottom: 11px;
|
|
34947
35065
|
z-index: 3;
|
|
34948
35066
|
display: flex;
|
|
34949
35067
|
align-items: center;
|
|
@@ -34964,7 +35082,7 @@ kendo-scheduler .k-recurrence-editor {
|
|
|
34964
35082
|
}
|
|
34965
35083
|
|
|
34966
35084
|
.k-timeline-mobile .k-timeline-flag {
|
|
34967
|
-
max-width:
|
|
35085
|
+
max-width: 112px;
|
|
34968
35086
|
}
|
|
34969
35087
|
|
|
34970
35088
|
.k-timeline-mobile.k-timeline-horizontal .k-timeline-flag-wrap {
|
|
@@ -34972,11 +35090,11 @@ kendo-scheduler .k-recurrence-editor {
|
|
|
34972
35090
|
}
|
|
34973
35091
|
|
|
34974
35092
|
.k-timeline-mobile.k-timeline-vertical {
|
|
34975
|
-
padding-left:
|
|
35093
|
+
padding-left: 103px;
|
|
34976
35094
|
}
|
|
34977
35095
|
|
|
34978
35096
|
.k-timeline-mobile.k-timeline-vertical.k-timeline-dates-hidden {
|
|
34979
|
-
padding-left:
|
|
35097
|
+
padding-left: 53px;
|
|
34980
35098
|
}
|
|
34981
35099
|
|
|
34982
35100
|
.k-timeline-mobile.k-timeline-vertical.k-timeline-alternating {
|
|
@@ -35052,6 +35170,7 @@ kendo-scheduler .k-recurrence-editor {
|
|
|
35052
35170
|
border-width: 1px;
|
|
35053
35171
|
border-style: solid;
|
|
35054
35172
|
box-sizing: border-box;
|
|
35173
|
+
position: relative;
|
|
35055
35174
|
outline: 0;
|
|
35056
35175
|
font-family: inherit;
|
|
35057
35176
|
font-size: 14px;
|
|
@@ -35081,27 +35200,33 @@ kendo-scheduler .k-recurrence-editor {
|
|
|
35081
35200
|
overflow: visible;
|
|
35082
35201
|
}
|
|
35083
35202
|
|
|
35084
|
-
.k-pdf-viewer .k-
|
|
35203
|
+
.k-pdf-viewer .k-canvas {
|
|
35204
|
+
display: flex;
|
|
35205
|
+
flex-direction: column;
|
|
35085
35206
|
flex: 1 1 auto;
|
|
35086
35207
|
outline: none;
|
|
35087
35208
|
}
|
|
35088
35209
|
|
|
35089
|
-
.k-pdf-viewer .k-
|
|
35210
|
+
.k-pdf-viewer .k-canvas .k-enable-text-select, .k-pdf-viewer .k-canvas.k-enable-text-select {
|
|
35090
35211
|
-webkit-user-select: text;
|
|
35091
|
-
-moz-user-select: text;
|
|
35092
35212
|
-ms-user-select: text;
|
|
35093
35213
|
user-select: text;
|
|
35094
35214
|
cursor: text;
|
|
35095
35215
|
}
|
|
35096
35216
|
|
|
35097
|
-
.k-pdf-viewer .k-
|
|
35217
|
+
.k-pdf-viewer .k-canvas .k-enable-panning, .k-pdf-viewer .k-canvas.k-enable-panning {
|
|
35098
35218
|
cursor: grab;
|
|
35099
35219
|
}
|
|
35100
35220
|
|
|
35101
|
-
.k-pdf-viewer .k-
|
|
35221
|
+
.k-pdf-viewer .k-canvas .k-enable-panning span::selection,
|
|
35222
|
+
.k-pdf-viewer .k-canvas.k-enable-panning span::selection {
|
|
35102
35223
|
background-color: transparent;
|
|
35103
35224
|
}
|
|
35104
35225
|
|
|
35226
|
+
.k-pdf-viewer .k-pdf-viewer-pages {
|
|
35227
|
+
flex: 1 1 auto;
|
|
35228
|
+
}
|
|
35229
|
+
|
|
35105
35230
|
.k-pdf-viewer .k-page {
|
|
35106
35231
|
position: relative;
|
|
35107
35232
|
margin: 30px auto;
|
|
@@ -35130,11 +35255,38 @@ kendo-scheduler .k-recurrence-editor {
|
|
|
35130
35255
|
color: transparent;
|
|
35131
35256
|
}
|
|
35132
35257
|
|
|
35258
|
+
.k-pdf-viewer .k-page .k-text-layer .k-search-highlight-mark {
|
|
35259
|
+
color: transparent;
|
|
35260
|
+
}
|
|
35261
|
+
|
|
35262
|
+
.k-pdf-viewer .k-blank-page {
|
|
35263
|
+
margin: 0;
|
|
35264
|
+
display: flex;
|
|
35265
|
+
flex-flow: column nowrap;
|
|
35266
|
+
width: 100%;
|
|
35267
|
+
height: 100%;
|
|
35268
|
+
align-items: center;
|
|
35269
|
+
justify-content: center;
|
|
35270
|
+
background-color: inherit !important;
|
|
35271
|
+
}
|
|
35272
|
+
|
|
35273
|
+
.k-pdf-viewer .k-blank-page .k-upload,
|
|
35274
|
+
.k-pdf-viewer .k-blank-page .k-dropzone,
|
|
35275
|
+
.k-pdf-viewer .k-blank-page .k-dropzone-inner {
|
|
35276
|
+
border: 0;
|
|
35277
|
+
background: none;
|
|
35278
|
+
}
|
|
35279
|
+
|
|
35280
|
+
.k-pdf-viewer .k-blank-page > .k-icon {
|
|
35281
|
+
font-size: 48px;
|
|
35282
|
+
}
|
|
35283
|
+
|
|
35133
35284
|
.k-pdf-viewer-search-dialog {
|
|
35134
|
-
padding:
|
|
35285
|
+
padding: 0 !important;
|
|
35135
35286
|
}
|
|
35136
35287
|
|
|
35137
|
-
.k-
|
|
35288
|
+
.k-search-panel, .k-search-container {
|
|
35289
|
+
padding: 12px 8px;
|
|
35138
35290
|
display: flex;
|
|
35139
35291
|
gap: 8px;
|
|
35140
35292
|
flex-flow: row nowrap;
|
|
@@ -35143,22 +35295,32 @@ kendo-scheduler .k-recurrence-editor {
|
|
|
35143
35295
|
align-items: center;
|
|
35144
35296
|
}
|
|
35145
35297
|
|
|
35146
|
-
.k-
|
|
35298
|
+
.k-search-panel .k-search-dialog-draghandle, .k-search-container .k-search-dialog-draghandle {
|
|
35147
35299
|
cursor: move;
|
|
35148
35300
|
margin-left: 0;
|
|
35149
35301
|
}
|
|
35150
35302
|
|
|
35151
|
-
.k-
|
|
35303
|
+
.k-search-panel .k-textbox, .k-search-container .k-textbox {
|
|
35152
35304
|
width: 10em;
|
|
35153
35305
|
flex: none;
|
|
35154
35306
|
}
|
|
35155
35307
|
|
|
35156
|
-
.k-
|
|
35308
|
+
.k-search-panel .k-textbox .k-button, .k-search-container .k-textbox .k-button {
|
|
35157
35309
|
border-width: 0;
|
|
35158
35310
|
}
|
|
35159
35311
|
|
|
35160
|
-
.k-
|
|
35161
|
-
|
|
35312
|
+
.k-search-panel .k-search-matches, .k-search-container .k-search-matches {
|
|
35313
|
+
display: inline-flex;
|
|
35314
|
+
gap: 4px;
|
|
35315
|
+
}
|
|
35316
|
+
|
|
35317
|
+
.k-pdf-viewer-canvas > .k-search-panel, .k-pdf-viewer-canvas > .k-search-container {
|
|
35318
|
+
width: max-content;
|
|
35319
|
+
margin-top: calc(-1.4285714286em + -35px);
|
|
35320
|
+
border-width: 1px;
|
|
35321
|
+
border-style: solid;
|
|
35322
|
+
border-radius: 4px;
|
|
35323
|
+
z-index: 10;
|
|
35162
35324
|
}
|
|
35163
35325
|
|
|
35164
35326
|
.k-ie .k-pdf-viewer-search-dialog .k-search-container > * + * {
|
|
@@ -35182,13 +35344,30 @@ kendo-scheduler .k-recurrence-editor {
|
|
|
35182
35344
|
box-shadow: 0 0 15px #cacaca;
|
|
35183
35345
|
}
|
|
35184
35346
|
|
|
35347
|
+
.k-pdf-viewer .k-blank-page > .k-icon {
|
|
35348
|
+
color: #6c6c6c;
|
|
35349
|
+
}
|
|
35350
|
+
|
|
35185
35351
|
.k-pdf-viewer .k-search-highlight {
|
|
35186
35352
|
background-color: #272727;
|
|
35187
35353
|
}
|
|
35188
35354
|
|
|
35355
|
+
.k-pdf-viewer .k-search-highlight-mark {
|
|
35356
|
+
background-color: yellow;
|
|
35357
|
+
}
|
|
35358
|
+
|
|
35359
|
+
.k-pdf-viewer-canvas > .k-search-panel, .k-pdf-viewer-canvas > .k-search-container {
|
|
35360
|
+
border-color: #cacaca;
|
|
35361
|
+
color: #272727;
|
|
35362
|
+
background-color: #ffffff;
|
|
35363
|
+
box-shadow: 1px 1px 7px 1px rgba(0, 0, 0, 0.12);
|
|
35364
|
+
}
|
|
35365
|
+
|
|
35189
35366
|
.km-scrollview,
|
|
35190
35367
|
.km-scroll-container {
|
|
35191
|
-
user-select: none;
|
|
35368
|
+
-webkit-user-select: none;
|
|
35369
|
+
-ms-user-select: none;
|
|
35370
|
+
user-select: none;
|
|
35192
35371
|
border-collapse: separate;
|
|
35193
35372
|
}
|
|
35194
35373
|
|
|
@@ -35303,7 +35482,9 @@ kendo-scrollview.k-scrollview,
|
|
|
35303
35482
|
|
|
35304
35483
|
.k-scrollview-wrap .k-scrollview img,
|
|
35305
35484
|
.k-scrollview .k-scrollview-wrap img {
|
|
35306
|
-
user-select: none;
|
|
35485
|
+
-webkit-user-select: none;
|
|
35486
|
+
-ms-user-select: none;
|
|
35487
|
+
user-select: none;
|
|
35307
35488
|
}
|
|
35308
35489
|
|
|
35309
35490
|
.k-scrollview-wrap .k-scrollview > li,
|
|
@@ -35325,20 +35506,20 @@ kendo-scrollview.k-scrollview,
|
|
|
35325
35506
|
.k-scrollview-wrap.k-scrollview-animate {
|
|
35326
35507
|
display: flex;
|
|
35327
35508
|
flex-flow: row nowrap;
|
|
35328
|
-
width: calc(
|
|
35509
|
+
width: calc(var(--kendo-scrollview-views, 1)*100%);
|
|
35329
35510
|
transition-duration: 0.3s;
|
|
35330
35511
|
transition-timing-function: ease-in-out;
|
|
35331
|
-
transform: translateX(calc(
|
|
35512
|
+
transform: translateX(calc(-100%/var(--kendo-scrollview-views, 1)*(var(--kendo-scrollview-current, 1) - 1)));
|
|
35332
35513
|
}
|
|
35333
35514
|
|
|
35334
35515
|
.k-scrollview-wrap.k-scrollview-animate .k-scrollview-view {
|
|
35335
|
-
width: calc(
|
|
35336
|
-
flex: 0 0 calc(
|
|
35516
|
+
width: calc(100%/var(--kendo-scrollview-views, 1));
|
|
35517
|
+
flex: 0 0 calc(100%/var(--kendo-scrollview-views, 1));
|
|
35337
35518
|
}
|
|
35338
35519
|
|
|
35339
35520
|
[dir="rtl"] .k-scrollview-wrap.k-scrollview-animate,
|
|
35340
35521
|
.k-rtl .k-scrollview-wrap.k-scrollview-animate {
|
|
35341
|
-
transform: translateX(calc(
|
|
35522
|
+
transform: translateX(calc(100%/var(--kendo-scrollview-views, 1)*(var(--kendo-scrollview-current, 1) - 1)));
|
|
35342
35523
|
}
|
|
35343
35524
|
|
|
35344
35525
|
kendo-scrollview.k-scrollview-wrap kendo-scrollview-pager,
|
|
@@ -35350,7 +35531,7 @@ kendo-scrollview.k-scrollview kendo-scrollview-pager,
|
|
|
35350
35531
|
left: 0;
|
|
35351
35532
|
right: 0;
|
|
35352
35533
|
bottom: 0;
|
|
35353
|
-
height:
|
|
35534
|
+
height: 50px;
|
|
35354
35535
|
text-align: center;
|
|
35355
35536
|
}
|
|
35356
35537
|
|
|
@@ -35426,7 +35607,9 @@ kendo-scrollview.k-scrollview .k-scrollview-nav {
|
|
|
35426
35607
|
height: 60%;
|
|
35427
35608
|
top: 20%;
|
|
35428
35609
|
text-decoration: none;
|
|
35429
|
-
user-select: none;
|
|
35610
|
+
-webkit-user-select: none;
|
|
35611
|
+
-ms-user-select: none;
|
|
35612
|
+
user-select: none;
|
|
35430
35613
|
cursor: pointer;
|
|
35431
35614
|
}
|
|
35432
35615
|
|
|
@@ -35903,11 +36086,11 @@ div.k-scrollview.k-scrollview-light .k-scrollview-nav-wrap {
|
|
|
35903
36086
|
}
|
|
35904
36087
|
|
|
35905
36088
|
.k-treemap .k-treemap-title + .k-treemap-wrap {
|
|
35906
|
-
top:
|
|
36089
|
+
top: 25.0000000004px;
|
|
35907
36090
|
}
|
|
35908
36091
|
|
|
35909
36092
|
.k-treemap .k-treemap-title-vertical + .k-treemap-wrap {
|
|
35910
|
-
left:
|
|
36093
|
+
left: 25.0000000004px;
|
|
35911
36094
|
}
|
|
35912
36095
|
|
|
35913
36096
|
.k-treemap .k-leaf {
|
|
@@ -36309,7 +36492,9 @@ div.k-scrollview.k-scrollview-light .k-scrollview-nav-wrap {
|
|
|
36309
36492
|
.k-map .km-scroll-wrapper {
|
|
36310
36493
|
width: 100%;
|
|
36311
36494
|
height: 100%;
|
|
36312
|
-
user-select: none;
|
|
36495
|
+
-webkit-user-select: none;
|
|
36496
|
+
-ms-user-select: none;
|
|
36497
|
+
user-select: none;
|
|
36313
36498
|
position: absolute;
|
|
36314
36499
|
}
|
|
36315
36500
|
|
|
@@ -36350,8 +36535,8 @@ div.k-scrollview.k-scrollview-light .k-scrollview-nav-wrap {
|
|
|
36350
36535
|
|
|
36351
36536
|
.k-navigator {
|
|
36352
36537
|
margin: 1em;
|
|
36353
|
-
width:
|
|
36354
|
-
height:
|
|
36538
|
+
width: 52px;
|
|
36539
|
+
height: 52px;
|
|
36355
36540
|
border-width: 1px;
|
|
36356
36541
|
border-style: solid;
|
|
36357
36542
|
box-sizing: border-box;
|
|
@@ -36621,8 +36806,8 @@ div.k-scrollview.k-scrollview-light .k-scrollview-nav-wrap {
|
|
|
36621
36806
|
}
|
|
36622
36807
|
|
|
36623
36808
|
.k-signature-sm .k-signature-line {
|
|
36624
|
-
width: calc(
|
|
36625
|
-
bottom: calc(
|
|
36809
|
+
width: calc(100% - 4px);
|
|
36810
|
+
bottom: calc(1.4285714286em + 12px);
|
|
36626
36811
|
}
|
|
36627
36812
|
|
|
36628
36813
|
.k-signature-md {
|
|
@@ -36630,8 +36815,8 @@ div.k-scrollview.k-scrollview-light .k-scrollview-nav-wrap {
|
|
|
36630
36815
|
}
|
|
36631
36816
|
|
|
36632
36817
|
.k-signature-md .k-signature-line {
|
|
36633
|
-
width: calc(
|
|
36634
|
-
bottom: calc(
|
|
36818
|
+
width: calc(100% - 8px);
|
|
36819
|
+
bottom: calc(1.4285714286em + 14px);
|
|
36635
36820
|
}
|
|
36636
36821
|
|
|
36637
36822
|
.k-signature-lg {
|
|
@@ -36639,8 +36824,8 @@ div.k-scrollview.k-scrollview-light .k-scrollview-nav-wrap {
|
|
|
36639
36824
|
}
|
|
36640
36825
|
|
|
36641
36826
|
.k-signature-lg .k-signature-line {
|
|
36642
|
-
width: calc(
|
|
36643
|
-
bottom: calc(
|
|
36827
|
+
width: calc(100% - 12px);
|
|
36828
|
+
bottom: calc(1.4285714286em + 16px);
|
|
36644
36829
|
}
|
|
36645
36830
|
|
|
36646
36831
|
.k-signature .k-signature-line {
|