@progress/kendo-theme-default 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 +447 -262
- package/dist/all.scss +161 -38
- package/lib/swatches/default-blue.json +1 -1
- package/lib/swatches/default-dataviz-v4.json +1 -1
- package/lib/swatches/default-green.json +1 -1
- package/lib/swatches/default-main-dark.json +1 -1
- package/lib/swatches/default-main.json +1 -1
- package/lib/swatches/default-nordic.json +1 -1
- package/lib/swatches/default-ocean-blue.json +1 -1
- package/lib/swatches/default-orange.json +1 -1
- package/lib/swatches/default-purple.json +1 -1
- package/lib/swatches/default-turquoise.json +1 -1
- package/lib/swatches/default-urban.json +1 -1
- package/package.json +3 -3
- package/scss/adaptive/_layout.scss +2 -1
- package/scss/button/_variables.scss +1 -1
- package/scss/colorgradient/_layout.scss +1 -1
- package/scss/editor/_layout.scss +2 -1
- package/scss/grid/_layout.scss +3 -1
- package/scss/grid/_theme.scss +2 -0
- package/scss/notification/_layout.scss +4 -2
- package/scss/notification/_theme.scss +2 -1
- package/scss/pager/_layout.scss +4 -0
- package/scss/pdf-viewer/_index.scss +3 -0
- package/scss/pdf-viewer/_layout.scss +80 -28
- package/scss/pdf-viewer/_theme.scss +21 -0
- package/scss/pdf-viewer/_variables.scss +14 -1
- package/scss/scheduler/_layout.scss +2 -0
- package/scss/slider/_layout.scss +2 -2
- package/scss/toolbar/_layout.scss +6 -0
- package/scss/toolbar/_theme.scss +7 -0
package/dist/all.css
CHANGED
|
@@ -6583,23 +6583,32 @@ kendo-sortable {
|
|
|
6583
6583
|
}
|
|
6584
6584
|
|
|
6585
6585
|
.k-user-select-none {
|
|
6586
|
-
user-select: none !important;
|
|
6586
|
+
-webkit-user-select: none !important;
|
|
6587
|
+
-ms-user-select: none !important;
|
|
6588
|
+
user-select: none !important;
|
|
6587
6589
|
}
|
|
6588
6590
|
|
|
6589
6591
|
.k-user-select-auto {
|
|
6590
|
-
user-select: auto !important;
|
|
6592
|
+
-webkit-user-select: auto !important;
|
|
6593
|
+
-ms-user-select: auto !important;
|
|
6594
|
+
user-select: auto !important;
|
|
6591
6595
|
}
|
|
6592
6596
|
|
|
6593
6597
|
.k-user-select-text {
|
|
6594
|
-
user-select: text !important;
|
|
6598
|
+
-webkit-user-select: text !important;
|
|
6599
|
+
-ms-user-select: text !important;
|
|
6600
|
+
user-select: text !important;
|
|
6595
6601
|
}
|
|
6596
6602
|
|
|
6597
6603
|
.k-user-select-all {
|
|
6598
|
-
user-select: all !important;
|
|
6604
|
+
-webkit-user-select: all !important;
|
|
6605
|
+
user-select: all !important;
|
|
6599
6606
|
}
|
|
6600
6607
|
|
|
6601
6608
|
.k-user-select-contain {
|
|
6602
|
-
user-select: contain !important;
|
|
6609
|
+
-webkit-user-select: contain !important;
|
|
6610
|
+
-ms-user-select: element !important;
|
|
6611
|
+
user-select: contain !important;
|
|
6603
6612
|
}
|
|
6604
6613
|
|
|
6605
6614
|
.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 {
|
|
@@ -13381,11 +13392,20 @@ kendo-badge-container {
|
|
|
13381
13392
|
margin: 0;
|
|
13382
13393
|
}
|
|
13383
13394
|
|
|
13395
|
+
.k-input:-ms-input-placeholder, .k-picker:-ms-input-placeholder {
|
|
13396
|
+
color: #666666;
|
|
13397
|
+
opacity: 1;
|
|
13398
|
+
-ms-user-select: none;
|
|
13399
|
+
user-select: none;
|
|
13400
|
+
}
|
|
13401
|
+
|
|
13384
13402
|
.k-input::placeholder,
|
|
13385
13403
|
.k-picker::placeholder {
|
|
13386
13404
|
color: #666666;
|
|
13387
13405
|
opacity: 1;
|
|
13388
|
-
user-select: none;
|
|
13406
|
+
-webkit-user-select: none;
|
|
13407
|
+
-ms-user-select: none;
|
|
13408
|
+
user-select: none;
|
|
13389
13409
|
}
|
|
13390
13410
|
|
|
13391
13411
|
.k-input:-ms-input-placeholder,
|
|
@@ -13475,10 +13495,19 @@ select.k-picker:disabled, select.k-picker[disabled] {
|
|
|
13475
13495
|
display: none;
|
|
13476
13496
|
}
|
|
13477
13497
|
|
|
13498
|
+
.k-input-inner:-ms-input-placeholder {
|
|
13499
|
+
color: #666666;
|
|
13500
|
+
opacity: 1;
|
|
13501
|
+
-ms-user-select: none;
|
|
13502
|
+
user-select: none;
|
|
13503
|
+
}
|
|
13504
|
+
|
|
13478
13505
|
.k-input-inner::placeholder {
|
|
13479
13506
|
color: #666666;
|
|
13480
13507
|
opacity: 1;
|
|
13481
|
-
user-select: none;
|
|
13508
|
+
-webkit-user-select: none;
|
|
13509
|
+
-ms-user-select: none;
|
|
13510
|
+
user-select: none;
|
|
13482
13511
|
}
|
|
13483
13512
|
|
|
13484
13513
|
.k-input-inner:-ms-input-placeholder {
|
|
@@ -13594,7 +13623,7 @@ textarea.k-input-inner {
|
|
|
13594
13623
|
}
|
|
13595
13624
|
|
|
13596
13625
|
.k-input-button {
|
|
13597
|
-
width: calc(
|
|
13626
|
+
width: calc(1.4285714286em + 8px);
|
|
13598
13627
|
border-width: 0;
|
|
13599
13628
|
border-inline-start-width: 1px;
|
|
13600
13629
|
flex: none;
|
|
@@ -13617,7 +13646,7 @@ textarea.k-input-inner {
|
|
|
13617
13646
|
}
|
|
13618
13647
|
|
|
13619
13648
|
.k-input-spinner {
|
|
13620
|
-
width: calc(
|
|
13649
|
+
width: calc(1.4285714286em + 8px);
|
|
13621
13650
|
flex: none;
|
|
13622
13651
|
display: flex;
|
|
13623
13652
|
flex-flow: column nowrap;
|
|
@@ -13730,14 +13759,14 @@ textarea.k-input-inner {
|
|
|
13730
13759
|
.k-picker-sm .k-clear-value,
|
|
13731
13760
|
.k-picker-sm .k-input-prefix > .k-icon,
|
|
13732
13761
|
.k-picker-sm .k-input-suffix > .k-icon {
|
|
13733
|
-
width:
|
|
13734
|
-
height:
|
|
13762
|
+
width: 20px;
|
|
13763
|
+
height: 20px;
|
|
13735
13764
|
}
|
|
13736
13765
|
|
|
13737
13766
|
.k-input-sm.k-icon-picker .k-input-inner,
|
|
13738
13767
|
.k-picker-sm.k-icon-picker .k-input-inner {
|
|
13739
|
-
width:
|
|
13740
|
-
height:
|
|
13768
|
+
width: 1.4285714286em;
|
|
13769
|
+
height: 1.4285714286em;
|
|
13741
13770
|
padding: 2px;
|
|
13742
13771
|
box-sizing: content-box;
|
|
13743
13772
|
}
|
|
@@ -13793,14 +13822,14 @@ textarea.k-input-inner {
|
|
|
13793
13822
|
.k-picker-md .k-clear-value,
|
|
13794
13823
|
.k-picker-md .k-input-prefix > .k-icon,
|
|
13795
13824
|
.k-picker-md .k-input-suffix > .k-icon {
|
|
13796
|
-
width:
|
|
13797
|
-
height:
|
|
13825
|
+
width: 24px;
|
|
13826
|
+
height: 24px;
|
|
13798
13827
|
}
|
|
13799
13828
|
|
|
13800
13829
|
.k-input-md.k-icon-picker .k-input-inner,
|
|
13801
13830
|
.k-picker-md.k-icon-picker .k-input-inner {
|
|
13802
|
-
width:
|
|
13803
|
-
height:
|
|
13831
|
+
width: 1.4285714286em;
|
|
13832
|
+
height: 1.4285714286em;
|
|
13804
13833
|
padding: 4px;
|
|
13805
13834
|
box-sizing: content-box;
|
|
13806
13835
|
}
|
|
@@ -13856,14 +13885,14 @@ textarea.k-input-inner {
|
|
|
13856
13885
|
.k-picker-lg .k-clear-value,
|
|
13857
13886
|
.k-picker-lg .k-input-prefix > .k-icon,
|
|
13858
13887
|
.k-picker-lg .k-input-suffix > .k-icon {
|
|
13859
|
-
width:
|
|
13860
|
-
height:
|
|
13888
|
+
width: 32px;
|
|
13889
|
+
height: 32px;
|
|
13861
13890
|
}
|
|
13862
13891
|
|
|
13863
13892
|
.k-input-lg.k-icon-picker .k-input-inner,
|
|
13864
13893
|
.k-picker-lg.k-icon-picker .k-input-inner {
|
|
13865
|
-
width:
|
|
13866
|
-
height:
|
|
13894
|
+
width: 1.5em;
|
|
13895
|
+
height: 1.5em;
|
|
13867
13896
|
padding: 8px;
|
|
13868
13897
|
box-sizing: content-box;
|
|
13869
13898
|
}
|
|
@@ -14079,7 +14108,7 @@ textarea.k-input-inner {
|
|
|
14079
14108
|
}
|
|
14080
14109
|
|
|
14081
14110
|
.k-floating-label-container {
|
|
14082
|
-
padding-top:
|
|
14111
|
+
padding-top: 20.0000000004px;
|
|
14083
14112
|
box-sizing: border-box;
|
|
14084
14113
|
display: inline-flex;
|
|
14085
14114
|
vertical-align: middle;
|
|
@@ -14101,8 +14130,8 @@ textarea.k-input-inner {
|
|
|
14101
14130
|
white-space: nowrap;
|
|
14102
14131
|
text-overflow: ellipsis;
|
|
14103
14132
|
position: absolute;
|
|
14104
|
-
top:
|
|
14105
|
-
left:
|
|
14133
|
+
top: 25.0000000004px;
|
|
14134
|
+
left: 9px;
|
|
14106
14135
|
overflow: hidden;
|
|
14107
14136
|
cursor: text;
|
|
14108
14137
|
transform-origin: left center;
|
|
@@ -14115,8 +14144,8 @@ textarea.k-input-inner {
|
|
|
14115
14144
|
}
|
|
14116
14145
|
|
|
14117
14146
|
.k-floating-label-container.k-state-empty > .k-label, .k-floating-label-container.k-empty > .k-label {
|
|
14118
|
-
top:
|
|
14119
|
-
left:
|
|
14147
|
+
top: 25.0000000004px;
|
|
14148
|
+
left: 9px;
|
|
14120
14149
|
transform: scale(1);
|
|
14121
14150
|
pointer-events: none;
|
|
14122
14151
|
}
|
|
@@ -14135,6 +14164,10 @@ textarea.k-input-inner {
|
|
|
14135
14164
|
transform: scale(1);
|
|
14136
14165
|
}
|
|
14137
14166
|
|
|
14167
|
+
.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 {
|
|
14168
|
+
color: transparent;
|
|
14169
|
+
}
|
|
14170
|
+
|
|
14138
14171
|
.k-floating-label-container.k-state-empty:not(.k-state-focused) ::placeholder,
|
|
14139
14172
|
.k-floating-label-container.k-empty:not(.k-focus):not(:focus-within) ::placeholder {
|
|
14140
14173
|
color: transparent;
|
|
@@ -14150,7 +14183,7 @@ textarea.k-input-inner {
|
|
|
14150
14183
|
.k-rtl .k-floating-label-container.k-state-empty > .k-label,
|
|
14151
14184
|
.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 {
|
|
14152
14185
|
left: auto;
|
|
14153
|
-
right:
|
|
14186
|
+
right: 9px;
|
|
14154
14187
|
}
|
|
14155
14188
|
|
|
14156
14189
|
[dir="rtl"] .k-floating-label-container > .k-label,
|
|
@@ -14741,7 +14774,9 @@ textarea.k-input-inner {
|
|
|
14741
14774
|
position: relative;
|
|
14742
14775
|
overflow: hidden;
|
|
14743
14776
|
cursor: pointer;
|
|
14744
|
-
user-select: none;
|
|
14777
|
+
-webkit-user-select: none;
|
|
14778
|
+
-ms-user-select: none;
|
|
14779
|
+
user-select: none;
|
|
14745
14780
|
}
|
|
14746
14781
|
|
|
14747
14782
|
.k-chip *,
|
|
@@ -15130,7 +15165,7 @@ textarea.k-input-inner {
|
|
|
15130
15165
|
}
|
|
15131
15166
|
|
|
15132
15167
|
.k-icon-color-preview .k-color-preview-mask {
|
|
15133
|
-
width:
|
|
15168
|
+
width: 14px;
|
|
15134
15169
|
height: 2px;
|
|
15135
15170
|
}
|
|
15136
15171
|
|
|
@@ -15293,32 +15328,32 @@ textarea.k-input-inner {
|
|
|
15293
15328
|
top: 100%;
|
|
15294
15329
|
left: 0;
|
|
15295
15330
|
animation: spinner-3-segment 2s ease infinite;
|
|
15296
|
-
animation-delay:
|
|
15331
|
+
animation-delay: -0.6666666667s;
|
|
15297
15332
|
}
|
|
15298
15333
|
|
|
15299
15334
|
.k-loader-spinner-3 .k-loader-segment:nth-child(3) {
|
|
15300
15335
|
top: 100%;
|
|
15301
15336
|
left: 100%;
|
|
15302
15337
|
animation: spinner-3-segment 2s ease infinite;
|
|
15303
|
-
animation-delay:
|
|
15338
|
+
animation-delay: -1.3333333333s;
|
|
15304
15339
|
}
|
|
15305
15340
|
|
|
15306
15341
|
.k-loader-spinner-3.k-loader-sm .k-loader-canvas {
|
|
15307
15342
|
margin: 2px;
|
|
15308
|
-
width:
|
|
15309
|
-
height:
|
|
15343
|
+
width: 12px;
|
|
15344
|
+
height: 9.8564064608px;
|
|
15310
15345
|
}
|
|
15311
15346
|
|
|
15312
15347
|
.k-loader-spinner-3.k-loader-md .k-loader-canvas {
|
|
15313
15348
|
margin: 4px;
|
|
15314
|
-
width:
|
|
15315
|
-
height:
|
|
15349
|
+
width: 24px;
|
|
15350
|
+
height: 19.7128129216px;
|
|
15316
15351
|
}
|
|
15317
15352
|
|
|
15318
15353
|
.k-loader-spinner-3.k-loader-lg .k-loader-canvas {
|
|
15319
15354
|
margin: 8px;
|
|
15320
|
-
width:
|
|
15321
|
-
height:
|
|
15355
|
+
width: 48px;
|
|
15356
|
+
height: 39.4256258432px;
|
|
15322
15357
|
}
|
|
15323
15358
|
|
|
15324
15359
|
@keyframes spinner-4-segment-1 {
|
|
@@ -15698,7 +15733,9 @@ textarea.k-input-inner {
|
|
|
15698
15733
|
flex-flow: column nowrap;
|
|
15699
15734
|
flex: none;
|
|
15700
15735
|
position: relative;
|
|
15701
|
-
user-select: none;
|
|
15736
|
+
-webkit-user-select: none;
|
|
15737
|
+
-ms-user-select: none;
|
|
15738
|
+
user-select: none;
|
|
15702
15739
|
}
|
|
15703
15740
|
|
|
15704
15741
|
.k-menu-item-content {
|
|
@@ -15770,12 +15807,12 @@ textarea.k-input-inner {
|
|
|
15770
15807
|
|
|
15771
15808
|
.k-menu-vertical > .k-menu-item > .k-menu-link {
|
|
15772
15809
|
padding: 4px 8px;
|
|
15773
|
-
padding-right:
|
|
15810
|
+
padding-right: 32px;
|
|
15774
15811
|
}
|
|
15775
15812
|
|
|
15776
15813
|
.k-menu-vertical > .k-menu-item > .k-menu-link > .k-menu-expand-arrow {
|
|
15777
15814
|
margin-inline-start: 8px;
|
|
15778
|
-
margin-inline-end:
|
|
15815
|
+
margin-inline-end: -28px;
|
|
15779
15816
|
}
|
|
15780
15817
|
|
|
15781
15818
|
.k-menu-vertical > .k-separator {
|
|
@@ -15839,12 +15876,12 @@ textarea.k-input-inner {
|
|
|
15839
15876
|
|
|
15840
15877
|
.k-menu-group-sm .k-menu-link {
|
|
15841
15878
|
padding: 2px 8px;
|
|
15842
|
-
padding-inline-end:
|
|
15879
|
+
padding-inline-end: 32px;
|
|
15843
15880
|
}
|
|
15844
15881
|
|
|
15845
15882
|
.k-menu-group-sm .k-menu-expand-arrow {
|
|
15846
15883
|
margin-inline-start: 8px;
|
|
15847
|
-
margin-inline-end:
|
|
15884
|
+
margin-inline-end: -28px;
|
|
15848
15885
|
}
|
|
15849
15886
|
|
|
15850
15887
|
.k-menu-group-md {
|
|
@@ -15859,12 +15896,12 @@ textarea.k-input-inner {
|
|
|
15859
15896
|
|
|
15860
15897
|
.k-menu-group-md .k-menu-link {
|
|
15861
15898
|
padding: 4px 8px;
|
|
15862
|
-
padding-inline-end:
|
|
15899
|
+
padding-inline-end: 32px;
|
|
15863
15900
|
}
|
|
15864
15901
|
|
|
15865
15902
|
.k-menu-group-md .k-menu-expand-arrow {
|
|
15866
15903
|
margin-inline-start: 8px;
|
|
15867
|
-
margin-inline-end:
|
|
15904
|
+
margin-inline-end: -28px;
|
|
15868
15905
|
}
|
|
15869
15906
|
|
|
15870
15907
|
.k-menu-group-lg {
|
|
@@ -15879,12 +15916,12 @@ textarea.k-input-inner {
|
|
|
15879
15916
|
|
|
15880
15917
|
.k-menu-group-lg .k-menu-link {
|
|
15881
15918
|
padding: 6px 8px;
|
|
15882
|
-
padding-inline-end:
|
|
15919
|
+
padding-inline-end: 32px;
|
|
15883
15920
|
}
|
|
15884
15921
|
|
|
15885
15922
|
.k-menu-group-lg .k-menu-expand-arrow {
|
|
15886
15923
|
margin-inline-start: 8px;
|
|
15887
|
-
margin-inline-end:
|
|
15924
|
+
margin-inline-end: -28px;
|
|
15888
15925
|
}
|
|
15889
15926
|
|
|
15890
15927
|
.k-popups-wrapper {
|
|
@@ -15984,13 +16021,13 @@ textarea.k-input-inner {
|
|
|
15984
16021
|
.k-rtl .k-menu-vertical > .k-menu-item > .k-menu-link,
|
|
15985
16022
|
[dir="rtl"] .k-menu-vertical > .k-menu-item > .k-menu-link {
|
|
15986
16023
|
padding-right: 8px;
|
|
15987
|
-
padding-left:
|
|
16024
|
+
padding-left: 32px;
|
|
15988
16025
|
}
|
|
15989
16026
|
|
|
15990
16027
|
.k-rtl .k-menu-group .k-menu-link,
|
|
15991
16028
|
[dir="rtl"] .k-menu-group .k-menu-link {
|
|
15992
16029
|
padding-right: 8px;
|
|
15993
|
-
padding-left:
|
|
16030
|
+
padding-left: 32px;
|
|
15994
16031
|
}
|
|
15995
16032
|
|
|
15996
16033
|
.k-menu:not(.k-context-menu) {
|
|
@@ -16081,7 +16118,7 @@ textarea.k-input-inner {
|
|
|
16081
16118
|
|
|
16082
16119
|
.k-toolbar::before {
|
|
16083
16120
|
content: "";
|
|
16084
|
-
height: calc(
|
|
16121
|
+
height: calc(1.4285714286em + 10px);
|
|
16085
16122
|
margin-inline-start: -8px;
|
|
16086
16123
|
}
|
|
16087
16124
|
|
|
@@ -16149,6 +16186,11 @@ textarea.k-input-inner {
|
|
|
16149
16186
|
align-items: center;
|
|
16150
16187
|
}
|
|
16151
16188
|
|
|
16189
|
+
.k-toolbar .k-toolbar-item:focus {
|
|
16190
|
+
text-decoration: none;
|
|
16191
|
+
outline: 0;
|
|
16192
|
+
}
|
|
16193
|
+
|
|
16152
16194
|
.k-toolbar-group {
|
|
16153
16195
|
display: flex;
|
|
16154
16196
|
flex-direction: inherit;
|
|
@@ -16264,6 +16306,11 @@ kendo-toolbar-renderer {
|
|
|
16264
16306
|
border-color: inherit;
|
|
16265
16307
|
}
|
|
16266
16308
|
|
|
16309
|
+
.k-toolbar .k-toolbar-item:focus,
|
|
16310
|
+
.k-toolbar .k-toolbar-item.k-focus {
|
|
16311
|
+
box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08);
|
|
16312
|
+
}
|
|
16313
|
+
|
|
16267
16314
|
.k-overflow-container .k-button:hover, .k-overflow-container .k-button.k-hover {
|
|
16268
16315
|
color: #424242;
|
|
16269
16316
|
background: #f0f0f0;
|
|
@@ -16557,7 +16604,7 @@ kendo-label > .k-label {
|
|
|
16557
16604
|
}
|
|
16558
16605
|
|
|
16559
16606
|
.k-form-horizontal .k-form-field-wrap {
|
|
16560
|
-
max-width: calc(
|
|
16607
|
+
max-width: calc(75% - 10px);
|
|
16561
16608
|
flex: 1 1 auto;
|
|
16562
16609
|
}
|
|
16563
16610
|
|
|
@@ -16624,7 +16671,7 @@ kendo-label > .k-label {
|
|
|
16624
16671
|
width: 25%;
|
|
16625
16672
|
text-align: right;
|
|
16626
16673
|
line-height: 1.4285714286;
|
|
16627
|
-
padding:
|
|
16674
|
+
padding: 5px 0;
|
|
16628
16675
|
padding-right: 12px;
|
|
16629
16676
|
align-self: center;
|
|
16630
16677
|
}
|
|
@@ -16673,7 +16720,7 @@ kendo-label > .k-label {
|
|
|
16673
16720
|
|
|
16674
16721
|
.k-edit-label {
|
|
16675
16722
|
margin: 0 0 1em 0;
|
|
16676
|
-
padding:
|
|
16723
|
+
padding: 5px 0;
|
|
16677
16724
|
width: 30%;
|
|
16678
16725
|
line-height: 1.4285714286;
|
|
16679
16726
|
text-align: right;
|
|
@@ -16690,7 +16737,7 @@ kendo-label > .k-label {
|
|
|
16690
16737
|
}
|
|
16691
16738
|
|
|
16692
16739
|
.k-edit-field.k-no-editor {
|
|
16693
|
-
padding:
|
|
16740
|
+
padding: 5px 0;
|
|
16694
16741
|
}
|
|
16695
16742
|
|
|
16696
16743
|
.k-edit-field > .k-widget {
|
|
@@ -16913,7 +16960,7 @@ kendo-label > .k-label {
|
|
|
16913
16960
|
}
|
|
16914
16961
|
|
|
16915
16962
|
.k-validator-tooltip {
|
|
16916
|
-
margin-top:
|
|
16963
|
+
margin-top: 6px;
|
|
16917
16964
|
width: auto;
|
|
16918
16965
|
white-space: normal;
|
|
16919
16966
|
display: flex;
|
|
@@ -17205,13 +17252,13 @@ kendo-label > .k-label {
|
|
|
17205
17252
|
.k-progressbar-horizontal > .k-state-selected,
|
|
17206
17253
|
.k-progressbar-horizontal > .k-selected {
|
|
17207
17254
|
width: 0;
|
|
17208
|
-
width: calc(
|
|
17255
|
+
width: calc(var( --kendo-progressbar-progress, 0 )*1%);
|
|
17209
17256
|
flex-direction: row;
|
|
17210
17257
|
}
|
|
17211
17258
|
|
|
17212
17259
|
.k-progressbar-horizontal > .k-state-selected > .k-progress-status-wrap,
|
|
17213
17260
|
.k-progressbar-horizontal > .k-selected > .k-progress-status-wrap {
|
|
17214
|
-
width: calc(
|
|
17261
|
+
width: calc(100%*(100/var( --kendo-progressbar-progress, 1 )));
|
|
17215
17262
|
}
|
|
17216
17263
|
|
|
17217
17264
|
.k-progressbar-horizontal > ul {
|
|
@@ -17242,13 +17289,14 @@ kendo-label > .k-label {
|
|
|
17242
17289
|
}
|
|
17243
17290
|
|
|
17244
17291
|
.k-progressbar-vertical .k-progress-status {
|
|
17245
|
-
writing-mode:
|
|
17292
|
+
-ms-writing-mode: tb-lr;
|
|
17293
|
+
writing-mode: vertical-lr;
|
|
17246
17294
|
}
|
|
17247
17295
|
|
|
17248
17296
|
.k-progressbar-vertical > .k-state-selected,
|
|
17249
17297
|
.k-progressbar-vertical > .k-selected {
|
|
17250
17298
|
height: 0;
|
|
17251
|
-
height: calc(
|
|
17299
|
+
height: calc(var( --kendo-progressbar-progress, 0 )*1%);
|
|
17252
17300
|
flex-direction: column-reverse;
|
|
17253
17301
|
align-self: flex-end;
|
|
17254
17302
|
align-items: flex-end;
|
|
@@ -17256,7 +17304,7 @@ kendo-label > .k-label {
|
|
|
17256
17304
|
|
|
17257
17305
|
.k-progressbar-vertical > .k-state-selected > .k-progress-status-wrap,
|
|
17258
17306
|
.k-progressbar-vertical > .k-selected > .k-progress-status-wrap {
|
|
17259
|
-
height: calc(
|
|
17307
|
+
height: calc(100%*(100/var( --kendo-progressbar-progress, 1 )));
|
|
17260
17308
|
}
|
|
17261
17309
|
|
|
17262
17310
|
.k-progressbar-vertical > ul {
|
|
@@ -17724,7 +17772,7 @@ kendo-label > .k-label {
|
|
|
17724
17772
|
.k-slider {
|
|
17725
17773
|
width: min-content;
|
|
17726
17774
|
height: min-content;
|
|
17727
|
-
gap:
|
|
17775
|
+
gap: 7px;
|
|
17728
17776
|
}
|
|
17729
17777
|
|
|
17730
17778
|
.k-slider .k-button {
|
|
@@ -17747,7 +17795,9 @@ kendo-label > .k-label {
|
|
|
17747
17795
|
display: flex;
|
|
17748
17796
|
flex-flow: inherit;
|
|
17749
17797
|
justify-content: space-between;
|
|
17750
|
-
user-select: none;
|
|
17798
|
+
-webkit-user-select: none;
|
|
17799
|
+
-ms-user-select: none;
|
|
17800
|
+
user-select: none;
|
|
17751
17801
|
}
|
|
17752
17802
|
|
|
17753
17803
|
.k-slider .k-slider-track-wrap .k-tick {
|
|
@@ -17787,31 +17837,31 @@ kendo-label > .k-label {
|
|
|
17787
17837
|
}
|
|
17788
17838
|
|
|
17789
17839
|
.k-slider-horizontal .k-slider-track-wrap .k-slider-selection {
|
|
17790
|
-
width: calc(
|
|
17791
|
-
left: calc(
|
|
17840
|
+
width: calc((var(--kendo-slider-end, 0) - var(--kendo-slider-start, 0))*1%);
|
|
17841
|
+
left: calc(var(--kendo-slider-start, 0)*1%);
|
|
17792
17842
|
}
|
|
17793
17843
|
|
|
17794
17844
|
.k-slider-horizontal .k-slider-track-wrap .k-draghandle-start {
|
|
17795
|
-
left: calc(
|
|
17845
|
+
left: calc(var(--kendo-slider-start, 0)*1%);
|
|
17796
17846
|
}
|
|
17797
17847
|
|
|
17798
17848
|
.k-slider-horizontal .k-slider-track-wrap .k-draghandle-end {
|
|
17799
|
-
left: calc(
|
|
17849
|
+
left: calc(var(--kendo-slider-end, 0)*1%);
|
|
17800
17850
|
}
|
|
17801
17851
|
|
|
17802
17852
|
[dir="rtl"] .k-slider-horizontal .k-slider-track-wrap .k-slider-selection {
|
|
17803
17853
|
left: unset;
|
|
17804
|
-
right: calc(
|
|
17854
|
+
right: calc(var(--kendo-slider-start, 0)*1%);
|
|
17805
17855
|
}
|
|
17806
17856
|
|
|
17807
17857
|
[dir="rtl"] .k-slider-horizontal .k-slider-track-wrap .k-draghandle-start {
|
|
17808
17858
|
left: unset;
|
|
17809
|
-
right: calc(
|
|
17859
|
+
right: calc(var(--kendo-slider-start, 0)*1%);
|
|
17810
17860
|
}
|
|
17811
17861
|
|
|
17812
17862
|
[dir="rtl"] .k-slider-horizontal .k-slider-track-wrap .k-draghandle-end {
|
|
17813
17863
|
left: unset;
|
|
17814
|
-
right: calc(
|
|
17864
|
+
right: calc(var(--kendo-slider-end, 0)*1%);
|
|
17815
17865
|
}
|
|
17816
17866
|
|
|
17817
17867
|
[dir="rtl"] .k-slider-horizontal .k-slider-track-wrap .k-draghandle {
|
|
@@ -17842,16 +17892,16 @@ kendo-label > .k-label {
|
|
|
17842
17892
|
}
|
|
17843
17893
|
|
|
17844
17894
|
.k-slider-vertical .k-slider-track-wrap .k-slider-selection {
|
|
17845
|
-
bottom: calc(
|
|
17846
|
-
height: calc(
|
|
17895
|
+
bottom: calc(var(--kendo-slider-start, 0)*1%);
|
|
17896
|
+
height: calc((var(--kendo-slider-end, 0) - var(--kendo-slider-start, 0))*1%);
|
|
17847
17897
|
}
|
|
17848
17898
|
|
|
17849
17899
|
.k-slider-vertical .k-slider-track-wrap .k-draghandle-start {
|
|
17850
|
-
bottom: calc(
|
|
17900
|
+
bottom: calc(var(--kendo-slider-start, 0)*1%);
|
|
17851
17901
|
}
|
|
17852
17902
|
|
|
17853
17903
|
.k-slider-vertical .k-slider-track-wrap .k-draghandle-end {
|
|
17854
|
-
bottom: calc(
|
|
17904
|
+
bottom: calc(var(--kendo-slider-end, 0)*1%);
|
|
17855
17905
|
}
|
|
17856
17906
|
|
|
17857
17907
|
.k-slider-vertical {
|
|
@@ -18079,12 +18129,12 @@ kendo-label > .k-label {
|
|
|
18079
18129
|
left: auto;
|
|
18080
18130
|
}
|
|
18081
18131
|
|
|
18082
|
-
.k-rtl .k-slider-horizontal .k-button .k-
|
|
18083
|
-
.k-rtl .k-slider-horizontal .k-button .k-
|
|
18084
|
-
.k-slider-horizontal.k-rtl .k-button .k-
|
|
18085
|
-
[dir="rtl"] .k-slider-horizontal .k-button .k-
|
|
18086
|
-
[dir="rtl"] .k-slider-horizontal .k-button .k-
|
|
18087
|
-
.k-slider-horizontal[dir="rtl"] .k-button .k-
|
|
18132
|
+
.k-rtl .k-slider-horizontal .k-button-increase .k-icon,
|
|
18133
|
+
.k-rtl .k-slider-horizontal .k-button-decrease .k-icon, .k-slider-horizontal.k-rtl .k-button-increase .k-icon,
|
|
18134
|
+
.k-slider-horizontal.k-rtl .k-button-decrease .k-icon,
|
|
18135
|
+
[dir="rtl"] .k-slider-horizontal .k-button-increase .k-icon,
|
|
18136
|
+
[dir="rtl"] .k-slider-horizontal .k-button-decrease .k-icon, .k-slider-horizontal[dir="rtl"] .k-button-increase .k-icon,
|
|
18137
|
+
.k-slider-horizontal[dir="rtl"] .k-button-decrease .k-icon {
|
|
18088
18138
|
transform: scaleX(-1);
|
|
18089
18139
|
}
|
|
18090
18140
|
|
|
@@ -18170,13 +18220,13 @@ kendo-label > .k-label {
|
|
|
18170
18220
|
}
|
|
18171
18221
|
|
|
18172
18222
|
.k-slider-horizontal .k-slider-wrap:not(.k-slider-buttons) {
|
|
18173
|
-
padding-left:
|
|
18174
|
-
padding-right:
|
|
18223
|
+
padding-left: 7px;
|
|
18224
|
+
padding-right: 7px;
|
|
18175
18225
|
}
|
|
18176
18226
|
|
|
18177
18227
|
.k-slider-vertical .k-slider-wrap:not(.k-slider-buttons) {
|
|
18178
|
-
padding-top:
|
|
18179
|
-
padding-bottom:
|
|
18228
|
+
padding-top: 7px;
|
|
18229
|
+
padding-bottom: 7px;
|
|
18180
18230
|
}
|
|
18181
18231
|
|
|
18182
18232
|
.k-slider {
|
|
@@ -18243,7 +18293,9 @@ kendo-label > .k-label {
|
|
|
18243
18293
|
overflow: hidden;
|
|
18244
18294
|
display: inline-flex;
|
|
18245
18295
|
flex-flow: column nowrap;
|
|
18246
|
-
user-select: none;
|
|
18296
|
+
-webkit-user-select: none;
|
|
18297
|
+
-ms-user-select: none;
|
|
18298
|
+
user-select: none;
|
|
18247
18299
|
-webkit-touch-callout: none;
|
|
18248
18300
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
18249
18301
|
}
|
|
@@ -18935,7 +18987,9 @@ kendo-label > .k-label {
|
|
|
18935
18987
|
overflow: hidden;
|
|
18936
18988
|
display: flex;
|
|
18937
18989
|
flex-flow: column nowrap;
|
|
18938
|
-
user-select: none;
|
|
18990
|
+
-webkit-user-select: none;
|
|
18991
|
+
-ms-user-select: none;
|
|
18992
|
+
user-select: none;
|
|
18939
18993
|
-webkit-touch-callout: none;
|
|
18940
18994
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
18941
18995
|
}
|
|
@@ -18979,12 +19033,12 @@ kendo-label > .k-label {
|
|
|
18979
19033
|
.k-time-highlight,
|
|
18980
19034
|
.k-time-list-highlight {
|
|
18981
19035
|
width: 100%;
|
|
18982
|
-
height:
|
|
19036
|
+
height: 28px;
|
|
18983
19037
|
border-width: 1px 0px;
|
|
18984
19038
|
border-style: solid;
|
|
18985
19039
|
box-sizing: border-box;
|
|
18986
19040
|
position: absolute;
|
|
18987
|
-
top: calc(
|
|
19041
|
+
top: calc(50% + 9px);
|
|
18988
19042
|
left: 0;
|
|
18989
19043
|
right: 0;
|
|
18990
19044
|
transform: translateY(-50%);
|
|
@@ -19020,7 +19074,7 @@ kendo-label > .k-label {
|
|
|
19020
19074
|
width: 100%;
|
|
19021
19075
|
left: 0;
|
|
19022
19076
|
pointer-events: none;
|
|
19023
|
-
height: calc(
|
|
19077
|
+
height: calc(50% - 14px);
|
|
19024
19078
|
box-sizing: border-box;
|
|
19025
19079
|
border-width: 0;
|
|
19026
19080
|
border-style: solid;
|
|
@@ -19110,14 +19164,14 @@ kendo-label > .k-label {
|
|
|
19110
19164
|
|
|
19111
19165
|
.k-time-separator {
|
|
19112
19166
|
width: 0;
|
|
19113
|
-
height:
|
|
19167
|
+
height: 28px;
|
|
19114
19168
|
align-self: center;
|
|
19115
19169
|
display: inline-flex;
|
|
19116
19170
|
justify-content: center;
|
|
19117
19171
|
align-items: center;
|
|
19118
19172
|
position: relative;
|
|
19119
19173
|
z-index: 11;
|
|
19120
|
-
top:
|
|
19174
|
+
top: 9px;
|
|
19121
19175
|
}
|
|
19122
19176
|
|
|
19123
19177
|
.k-timeselector-sm {
|
|
@@ -19127,11 +19181,11 @@ kendo-label > .k-label {
|
|
|
19127
19181
|
|
|
19128
19182
|
.k-timeselector-sm .k-time-highlight,
|
|
19129
19183
|
.k-timeselector-sm .k-time-list-highlight {
|
|
19130
|
-
height:
|
|
19184
|
+
height: 24px;
|
|
19131
19185
|
}
|
|
19132
19186
|
|
|
19133
19187
|
.k-timeselector-sm .k-time-separator {
|
|
19134
|
-
height:
|
|
19188
|
+
height: 24px;
|
|
19135
19189
|
}
|
|
19136
19190
|
|
|
19137
19191
|
.k-timeselector-sm .k-time-list-item,
|
|
@@ -19146,11 +19200,11 @@ kendo-label > .k-label {
|
|
|
19146
19200
|
|
|
19147
19201
|
.k-timeselector-md .k-time-highlight,
|
|
19148
19202
|
.k-timeselector-md .k-time-list-highlight {
|
|
19149
|
-
height:
|
|
19203
|
+
height: 28px;
|
|
19150
19204
|
}
|
|
19151
19205
|
|
|
19152
19206
|
.k-timeselector-md .k-time-separator {
|
|
19153
|
-
height:
|
|
19207
|
+
height: 28px;
|
|
19154
19208
|
}
|
|
19155
19209
|
|
|
19156
19210
|
.k-timeselector-md .k-time-list-item,
|
|
@@ -19165,11 +19219,11 @@ kendo-label > .k-label {
|
|
|
19165
19219
|
|
|
19166
19220
|
.k-timeselector-lg .k-time-highlight,
|
|
19167
19221
|
.k-timeselector-lg .k-time-list-highlight {
|
|
19168
|
-
height:
|
|
19222
|
+
height: 40px;
|
|
19169
19223
|
}
|
|
19170
19224
|
|
|
19171
19225
|
.k-timeselector-lg .k-time-separator {
|
|
19172
|
-
height:
|
|
19226
|
+
height: 40px;
|
|
19173
19227
|
}
|
|
19174
19228
|
|
|
19175
19229
|
.k-timeselector-lg .k-time-list-item,
|
|
@@ -19372,7 +19426,9 @@ kendo-label > .k-label {
|
|
|
19372
19426
|
border-radius: 4px;
|
|
19373
19427
|
position: relative;
|
|
19374
19428
|
flex: 1 1 auto;
|
|
19375
|
-
user-select: none;
|
|
19429
|
+
-webkit-user-select: none;
|
|
19430
|
+
-ms-user-select: none;
|
|
19431
|
+
user-select: none;
|
|
19376
19432
|
-ms-touch-action: pinch-zoom double-tap-zoom;
|
|
19377
19433
|
}
|
|
19378
19434
|
|
|
@@ -19500,7 +19556,7 @@ kendo-label > .k-label {
|
|
|
19500
19556
|
vertical-align: middle;
|
|
19501
19557
|
}
|
|
19502
19558
|
|
|
19503
|
-
.k-colorgradient-color-contrast .k-contrast-validation .k-
|
|
19559
|
+
.k-colorgradient-color-contrast .k-contrast-validation .k-icon + .k-icon {
|
|
19504
19560
|
margin-left: -13px;
|
|
19505
19561
|
}
|
|
19506
19562
|
|
|
@@ -19618,7 +19674,7 @@ kendo-label > .k-label {
|
|
|
19618
19674
|
}
|
|
19619
19675
|
|
|
19620
19676
|
.k-coloreditor-views {
|
|
19621
|
-
min-width: calc(
|
|
19677
|
+
min-width: calc(var(--kendo-color-preview-width, 24px)*var(--kendo-color-preview-columns, 10));
|
|
19622
19678
|
padding: 12px 12px;
|
|
19623
19679
|
gap: 12px;
|
|
19624
19680
|
}
|
|
@@ -19666,7 +19722,7 @@ kendo-label > .k-label {
|
|
|
19666
19722
|
}
|
|
19667
19723
|
|
|
19668
19724
|
.k-datetime-wrap {
|
|
19669
|
-
width:
|
|
19725
|
+
width: 288px;
|
|
19670
19726
|
overflow: hidden;
|
|
19671
19727
|
}
|
|
19672
19728
|
|
|
@@ -19683,7 +19739,7 @@ kendo-label > .k-label {
|
|
|
19683
19739
|
.k-datetime-calendar-wrap,
|
|
19684
19740
|
.k-datetime-time-wrap {
|
|
19685
19741
|
text-align: center;
|
|
19686
|
-
flex: 0 0
|
|
19742
|
+
flex: 0 0 288px;
|
|
19687
19743
|
}
|
|
19688
19744
|
|
|
19689
19745
|
.k-date-tab .k-datetime-selector {
|
|
@@ -20099,7 +20155,9 @@ kendo-label > .k-label {
|
|
|
20099
20155
|
line-height: 1;
|
|
20100
20156
|
position: relative;
|
|
20101
20157
|
cursor: pointer;
|
|
20102
|
-
user-select: none;
|
|
20158
|
+
-webkit-user-select: none;
|
|
20159
|
+
-ms-user-select: none;
|
|
20160
|
+
user-select: none;
|
|
20103
20161
|
-webkit-touch-callout: none;
|
|
20104
20162
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
20105
20163
|
}
|
|
@@ -20185,11 +20243,11 @@ kendo-label > .k-label {
|
|
|
20185
20243
|
}
|
|
20186
20244
|
|
|
20187
20245
|
.k-switch-sm.k-switch-on .k-switch-thumb-wrap {
|
|
20188
|
-
left: calc(
|
|
20246
|
+
left: calc(100% - 13px);
|
|
20189
20247
|
}
|
|
20190
20248
|
|
|
20191
20249
|
.k-switch-sm.k-switch-off .k-switch-thumb-wrap {
|
|
20192
|
-
left:
|
|
20250
|
+
left: 13px;
|
|
20193
20251
|
}
|
|
20194
20252
|
|
|
20195
20253
|
.k-switch-sm[dir="rtl"] .k-switch-label-on,
|
|
@@ -20209,13 +20267,13 @@ kendo-label > .k-label {
|
|
|
20209
20267
|
.k-switch-sm[dir="rtl"].k-switch-on .k-switch-thumb-wrap,
|
|
20210
20268
|
[dir="rtl"] .k-switch-sm.k-switch-on .k-switch-thumb-wrap,
|
|
20211
20269
|
.k-rtl .k-switch-sm.k-switch-on .k-switch-thumb-wrap {
|
|
20212
|
-
left:
|
|
20270
|
+
left: 13px;
|
|
20213
20271
|
}
|
|
20214
20272
|
|
|
20215
20273
|
.k-switch-sm[dir="rtl"].k-switch-off .k-switch-thumb-wrap,
|
|
20216
20274
|
[dir="rtl"] .k-switch-sm.k-switch-off .k-switch-thumb-wrap,
|
|
20217
20275
|
.k-rtl .k-switch-sm.k-switch-off .k-switch-thumb-wrap {
|
|
20218
|
-
left: calc(
|
|
20276
|
+
left: calc(100% - 13px);
|
|
20219
20277
|
}
|
|
20220
20278
|
|
|
20221
20279
|
.k-switch-md {
|
|
@@ -20243,11 +20301,11 @@ kendo-label > .k-label {
|
|
|
20243
20301
|
}
|
|
20244
20302
|
|
|
20245
20303
|
.k-switch-md.k-switch-on .k-switch-thumb-wrap {
|
|
20246
|
-
left: calc(
|
|
20304
|
+
left: calc(100% - 15px);
|
|
20247
20305
|
}
|
|
20248
20306
|
|
|
20249
20307
|
.k-switch-md.k-switch-off .k-switch-thumb-wrap {
|
|
20250
|
-
left:
|
|
20308
|
+
left: 15px;
|
|
20251
20309
|
}
|
|
20252
20310
|
|
|
20253
20311
|
.k-switch-md[dir="rtl"] .k-switch-label-on,
|
|
@@ -20267,13 +20325,13 @@ kendo-label > .k-label {
|
|
|
20267
20325
|
.k-switch-md[dir="rtl"].k-switch-on .k-switch-thumb-wrap,
|
|
20268
20326
|
[dir="rtl"] .k-switch-md.k-switch-on .k-switch-thumb-wrap,
|
|
20269
20327
|
.k-rtl .k-switch-md.k-switch-on .k-switch-thumb-wrap {
|
|
20270
|
-
left:
|
|
20328
|
+
left: 15px;
|
|
20271
20329
|
}
|
|
20272
20330
|
|
|
20273
20331
|
.k-switch-md[dir="rtl"].k-switch-off .k-switch-thumb-wrap,
|
|
20274
20332
|
[dir="rtl"] .k-switch-md.k-switch-off .k-switch-thumb-wrap,
|
|
20275
20333
|
.k-rtl .k-switch-md.k-switch-off .k-switch-thumb-wrap {
|
|
20276
|
-
left: calc(
|
|
20334
|
+
left: calc(100% - 15px);
|
|
20277
20335
|
}
|
|
20278
20336
|
|
|
20279
20337
|
.k-switch-lg {
|
|
@@ -20301,11 +20359,11 @@ kendo-label > .k-label {
|
|
|
20301
20359
|
}
|
|
20302
20360
|
|
|
20303
20361
|
.k-switch-lg.k-switch-on .k-switch-thumb-wrap {
|
|
20304
|
-
left: calc(
|
|
20362
|
+
left: calc(100% - 17px);
|
|
20305
20363
|
}
|
|
20306
20364
|
|
|
20307
20365
|
.k-switch-lg.k-switch-off .k-switch-thumb-wrap {
|
|
20308
|
-
left:
|
|
20366
|
+
left: 17px;
|
|
20309
20367
|
}
|
|
20310
20368
|
|
|
20311
20369
|
.k-switch-lg[dir="rtl"] .k-switch-label-on,
|
|
@@ -20325,13 +20383,13 @@ kendo-label > .k-label {
|
|
|
20325
20383
|
.k-switch-lg[dir="rtl"].k-switch-on .k-switch-thumb-wrap,
|
|
20326
20384
|
[dir="rtl"] .k-switch-lg.k-switch-on .k-switch-thumb-wrap,
|
|
20327
20385
|
.k-rtl .k-switch-lg.k-switch-on .k-switch-thumb-wrap {
|
|
20328
|
-
left:
|
|
20386
|
+
left: 17px;
|
|
20329
20387
|
}
|
|
20330
20388
|
|
|
20331
20389
|
.k-switch-lg[dir="rtl"].k-switch-off .k-switch-thumb-wrap,
|
|
20332
20390
|
[dir="rtl"] .k-switch-lg.k-switch-off .k-switch-thumb-wrap,
|
|
20333
20391
|
.k-rtl .k-switch-lg.k-switch-off .k-switch-thumb-wrap {
|
|
20334
|
-
left: calc(
|
|
20392
|
+
left: calc(100% - 17px);
|
|
20335
20393
|
}
|
|
20336
20394
|
|
|
20337
20395
|
.k-switch[dir="rtl"] .k-switch-thumb,
|
|
@@ -20533,7 +20591,7 @@ kendo-label > .k-label {
|
|
|
20533
20591
|
}
|
|
20534
20592
|
|
|
20535
20593
|
.k-upload .k-upload-files .k-file {
|
|
20536
|
-
padding: 8px 8px
|
|
20594
|
+
padding: 8px 8px 10px;
|
|
20537
20595
|
border-width: 0 0 1px;
|
|
20538
20596
|
border-style: solid;
|
|
20539
20597
|
outline: none;
|
|
@@ -20643,7 +20701,7 @@ kendo-label > .k-label {
|
|
|
20643
20701
|
|
|
20644
20702
|
.k-upload .k-upload-files .k-file-invalid-extension-wrapper + .k-file-name-size-wrapper,
|
|
20645
20703
|
.k-upload .k-upload-files .k-file-single > .k-file-extension-wrapper + .k-file-name-size-wrapper {
|
|
20646
|
-
margin-left: calc(
|
|
20704
|
+
margin-left: calc(24px + 1em);
|
|
20647
20705
|
min-height: 38px;
|
|
20648
20706
|
display: block;
|
|
20649
20707
|
overflow: hidden;
|
|
@@ -20651,7 +20709,7 @@ kendo-label > .k-label {
|
|
|
20651
20709
|
|
|
20652
20710
|
.k-upload .k-upload-files .k-multiple-files-invalid-extension-wrapper + .k-file-name-size-wrapper,
|
|
20653
20711
|
.k-upload .k-upload-files .k-multiple-files-extension-wrapper + .k-file-name-size-wrapper {
|
|
20654
|
-
margin-left: calc(
|
|
20712
|
+
margin-left: calc(24px + 1em);
|
|
20655
20713
|
}
|
|
20656
20714
|
|
|
20657
20715
|
.k-upload .k-upload-files .k-file-extension-wrapper + .k-file-name-size-wrapper {
|
|
@@ -20769,7 +20827,7 @@ kendo-label > .k-label {
|
|
|
20769
20827
|
height: 2px;
|
|
20770
20828
|
position: absolute;
|
|
20771
20829
|
bottom: 4px;
|
|
20772
|
-
width: calc(100% -
|
|
20830
|
+
width: calc(100% - 16px);
|
|
20773
20831
|
}
|
|
20774
20832
|
|
|
20775
20833
|
.k-upload .k-progressbar .k-progress {
|
|
@@ -21957,7 +22015,7 @@ kendo-label > .k-label {
|
|
|
21957
22015
|
|
|
21958
22016
|
.k-window-actions {
|
|
21959
22017
|
margin: -5em 0;
|
|
21960
|
-
margin-inline-end:
|
|
22018
|
+
margin-inline-end: -4px;
|
|
21961
22019
|
line-height: 1;
|
|
21962
22020
|
display: flex;
|
|
21963
22021
|
flex-flow: row nowrap;
|
|
@@ -22317,7 +22375,7 @@ kendo-drawer .k-drawer-wrapper {
|
|
|
22317
22375
|
}
|
|
22318
22376
|
|
|
22319
22377
|
.k-drawer-mini .k-drawer-wrapper {
|
|
22320
|
-
width:
|
|
22378
|
+
width: 48px;
|
|
22321
22379
|
}
|
|
22322
22380
|
|
|
22323
22381
|
.k-rtl.k-drawer-mini .k-drawer-start,
|
|
@@ -22469,7 +22527,8 @@ kendo-drawer .k-drawer-wrapper {
|
|
|
22469
22527
|
flex: none;
|
|
22470
22528
|
}
|
|
22471
22529
|
|
|
22472
|
-
.k-notification-wrap > .k-i-close
|
|
22530
|
+
.k-notification-wrap > .k-i-close,
|
|
22531
|
+
.k-notification-wrap > .k-i-x {
|
|
22473
22532
|
margin-right: 0;
|
|
22474
22533
|
margin-left: 4px;
|
|
22475
22534
|
flex: none;
|
|
@@ -22487,7 +22546,9 @@ kendo-drawer .k-drawer-wrapper {
|
|
|
22487
22546
|
}
|
|
22488
22547
|
|
|
22489
22548
|
.k-rtl .k-notification .k-notification-wrap > .k-i-close,
|
|
22490
|
-
|
|
22549
|
+
.k-rtl .k-notification .k-notification-wrap > .k-i-x,
|
|
22550
|
+
[dir="rtl"] .k-notification .k-notification-wrap > .k-i-close,
|
|
22551
|
+
[dir="rtl"] .k-notification .k-notification-wrap > .k-i-x {
|
|
22491
22552
|
margin-left: 0;
|
|
22492
22553
|
margin-right: 4px;
|
|
22493
22554
|
}
|
|
@@ -22498,7 +22559,8 @@ kendo-drawer .k-drawer-wrapper {
|
|
|
22498
22559
|
background-color: #ffffff;
|
|
22499
22560
|
}
|
|
22500
22561
|
|
|
22501
|
-
.k-notification-wrap > .k-i-close
|
|
22562
|
+
.k-notification-wrap > .k-i-close,
|
|
22563
|
+
.k-notification-wrap > .k-i-x {
|
|
22502
22564
|
color: inherit;
|
|
22503
22565
|
}
|
|
22504
22566
|
|
|
@@ -22598,7 +22660,7 @@ kendo-card-footer {
|
|
|
22598
22660
|
}
|
|
22599
22661
|
|
|
22600
22662
|
.k-card > .k-card-inner {
|
|
22601
|
-
border-radius:
|
|
22663
|
+
border-radius: 5px;
|
|
22602
22664
|
display: flex;
|
|
22603
22665
|
flex-direction: inherit;
|
|
22604
22666
|
overflow: hidden;
|
|
@@ -23239,7 +23301,7 @@ kendo-card-footer {
|
|
|
23239
23301
|
.k-bottom-nav-item {
|
|
23240
23302
|
padding: 0 8px;
|
|
23241
23303
|
min-width: 72px;
|
|
23242
|
-
min-height:
|
|
23304
|
+
min-height: 48px;
|
|
23243
23305
|
border-width: 0;
|
|
23244
23306
|
border-radius: 4px;
|
|
23245
23307
|
box-sizing: border-box;
|
|
@@ -23742,6 +23804,10 @@ kendo-card-footer {
|
|
|
23742
23804
|
z-index: 3;
|
|
23743
23805
|
}
|
|
23744
23806
|
|
|
23807
|
+
.k-rtl .k-pager-wrap .k-i-caret-alt-to-left,
|
|
23808
|
+
.k-rtl .k-pager-wrap .k-i-caret-alt-to-right,
|
|
23809
|
+
.k-rtl .k-pager-wrap .k-i-caret-alt-left,
|
|
23810
|
+
.k-rtl .k-pager-wrap .k-i-caret-alt-right,
|
|
23745
23811
|
.k-rtl .k-pager-wrap .k-i-arrow-end-left,
|
|
23746
23812
|
.k-rtl .k-pager-wrap .k-i-arrow-60-left,
|
|
23747
23813
|
.k-rtl .k-pager-wrap .k-i-arrow-60-right,
|
|
@@ -23749,7 +23815,11 @@ kendo-card-footer {
|
|
|
23749
23815
|
.k-rtl .k-pager-wrap .k-i-seek-w,
|
|
23750
23816
|
.k-rtl .k-pager-wrap .k-i-arrow-w,
|
|
23751
23817
|
.k-rtl .k-pager-wrap .k-i-arrow-e,
|
|
23752
|
-
.k-rtl .k-pager-wrap .k-i-seek-e, .k-pager-wrap[dir="rtl"] .k-i-
|
|
23818
|
+
.k-rtl .k-pager-wrap .k-i-seek-e, .k-pager-wrap[dir="rtl"] .k-i-caret-alt-to-left,
|
|
23819
|
+
.k-pager-wrap[dir="rtl"] .k-i-caret-alt-to-right,
|
|
23820
|
+
.k-pager-wrap[dir="rtl"] .k-i-caret-alt-left,
|
|
23821
|
+
.k-pager-wrap[dir="rtl"] .k-i-caret-alt-right,
|
|
23822
|
+
.k-pager-wrap[dir="rtl"] .k-i-arrow-end-left,
|
|
23753
23823
|
.k-pager-wrap[dir="rtl"] .k-i-arrow-60-left,
|
|
23754
23824
|
.k-pager-wrap[dir="rtl"] .k-i-arrow-60-right,
|
|
23755
23825
|
.k-pager-wrap[dir="rtl"] .k-i-arrow-end-right,
|
|
@@ -23757,6 +23827,10 @@ kendo-card-footer {
|
|
|
23757
23827
|
.k-pager-wrap[dir="rtl"] .k-i-arrow-w,
|
|
23758
23828
|
.k-pager-wrap[dir="rtl"] .k-i-arrow-e,
|
|
23759
23829
|
.k-pager-wrap[dir="rtl"] .k-i-seek-e,
|
|
23830
|
+
[dir="rtl"] .k-pager-wrap .k-i-caret-alt-to-left,
|
|
23831
|
+
[dir="rtl"] .k-pager-wrap .k-i-caret-alt-to-right,
|
|
23832
|
+
[dir="rtl"] .k-pager-wrap .k-i-caret-alt-left,
|
|
23833
|
+
[dir="rtl"] .k-pager-wrap .k-i-caret-alt-right,
|
|
23760
23834
|
[dir="rtl"] .k-pager-wrap .k-i-arrow-end-left,
|
|
23761
23835
|
[dir="rtl"] .k-pager-wrap .k-i-arrow-60-left,
|
|
23762
23836
|
[dir="rtl"] .k-pager-wrap .k-i-arrow-60-right,
|
|
@@ -23765,6 +23839,14 @@ kendo-card-footer {
|
|
|
23765
23839
|
[dir="rtl"] .k-pager-wrap .k-i-arrow-w,
|
|
23766
23840
|
[dir="rtl"] .k-pager-wrap .k-i-arrow-e,
|
|
23767
23841
|
[dir="rtl"] .k-pager-wrap .k-i-seek-e, .k-rtl
|
|
23842
|
+
.k-pager .k-i-caret-alt-to-left,
|
|
23843
|
+
.k-rtl
|
|
23844
|
+
.k-pager .k-i-caret-alt-to-right,
|
|
23845
|
+
.k-rtl
|
|
23846
|
+
.k-pager .k-i-caret-alt-left,
|
|
23847
|
+
.k-rtl
|
|
23848
|
+
.k-pager .k-i-caret-alt-right,
|
|
23849
|
+
.k-rtl
|
|
23768
23850
|
.k-pager .k-i-arrow-end-left,
|
|
23769
23851
|
.k-rtl
|
|
23770
23852
|
.k-pager .k-i-arrow-60-left,
|
|
@@ -23780,6 +23862,10 @@ kendo-card-footer {
|
|
|
23780
23862
|
.k-pager .k-i-arrow-e,
|
|
23781
23863
|
.k-rtl
|
|
23782
23864
|
.k-pager .k-i-seek-e,
|
|
23865
|
+
.k-pager[dir="rtl"] .k-i-caret-alt-to-left,
|
|
23866
|
+
.k-pager[dir="rtl"] .k-i-caret-alt-to-right,
|
|
23867
|
+
.k-pager[dir="rtl"] .k-i-caret-alt-left,
|
|
23868
|
+
.k-pager[dir="rtl"] .k-i-caret-alt-right,
|
|
23783
23869
|
.k-pager[dir="rtl"] .k-i-arrow-end-left,
|
|
23784
23870
|
.k-pager[dir="rtl"] .k-i-arrow-60-left,
|
|
23785
23871
|
.k-pager[dir="rtl"] .k-i-arrow-60-right,
|
|
@@ -23789,6 +23875,14 @@ kendo-card-footer {
|
|
|
23789
23875
|
.k-pager[dir="rtl"] .k-i-arrow-e,
|
|
23790
23876
|
.k-pager[dir="rtl"] .k-i-seek-e,
|
|
23791
23877
|
[dir="rtl"]
|
|
23878
|
+
.k-pager .k-i-caret-alt-to-left,
|
|
23879
|
+
[dir="rtl"]
|
|
23880
|
+
.k-pager .k-i-caret-alt-to-right,
|
|
23881
|
+
[dir="rtl"]
|
|
23882
|
+
.k-pager .k-i-caret-alt-left,
|
|
23883
|
+
[dir="rtl"]
|
|
23884
|
+
.k-pager .k-i-caret-alt-right,
|
|
23885
|
+
[dir="rtl"]
|
|
23792
23886
|
.k-pager .k-i-arrow-end-left,
|
|
23793
23887
|
[dir="rtl"]
|
|
23794
23888
|
.k-pager .k-i-arrow-60-left,
|
|
@@ -23816,8 +23910,8 @@ kendo-card-footer {
|
|
|
23816
23910
|
}
|
|
23817
23911
|
|
|
23818
23912
|
.k-pager-nav, .k-pager-numbers .k-link, .k-pager-refresh {
|
|
23819
|
-
min-width: calc(
|
|
23820
|
-
height: calc(
|
|
23913
|
+
min-width: calc(1.4285714286em + 10px);
|
|
23914
|
+
height: calc(1.4285714286em + 10px);
|
|
23821
23915
|
color: inherit;
|
|
23822
23916
|
text-align: center;
|
|
23823
23917
|
display: inline-flex;
|
|
@@ -23935,7 +24029,7 @@ kendo-card-footer {
|
|
|
23935
24029
|
.k-pager-sm .k-pager-numbers-wrap {
|
|
23936
24030
|
margin-left: 1em;
|
|
23937
24031
|
margin-right: 1em;
|
|
23938
|
-
height: calc(
|
|
24032
|
+
height: calc(1.4285714286em + 10px);
|
|
23939
24033
|
border-color: inherit;
|
|
23940
24034
|
}
|
|
23941
24035
|
|
|
@@ -24107,10 +24201,10 @@ kendo-card-footer {
|
|
|
24107
24201
|
pointer-events: none;
|
|
24108
24202
|
display: none;
|
|
24109
24203
|
position: absolute;
|
|
24110
|
-
top:
|
|
24111
|
-
right:
|
|
24112
|
-
bottom:
|
|
24113
|
-
left:
|
|
24204
|
+
top: -4px;
|
|
24205
|
+
right: -4px;
|
|
24206
|
+
bottom: -4px;
|
|
24207
|
+
left: -4px;
|
|
24114
24208
|
z-index: 2;
|
|
24115
24209
|
}
|
|
24116
24210
|
|
|
@@ -24136,7 +24230,7 @@ kendo-card-footer {
|
|
|
24136
24230
|
}
|
|
24137
24231
|
|
|
24138
24232
|
.k-stepper .k-step-label .k-step-text {
|
|
24139
|
-
max-width: calc(10em -
|
|
24233
|
+
max-width: calc(10em - 20px);
|
|
24140
24234
|
flex-grow: 1;
|
|
24141
24235
|
white-space: nowrap;
|
|
24142
24236
|
text-overflow: ellipsis;
|
|
@@ -24207,13 +24301,13 @@ kendo-card-footer {
|
|
|
24207
24301
|
}
|
|
24208
24302
|
|
|
24209
24303
|
.k-step-list-horizontal .k-step-indicator + .k-step-label {
|
|
24210
|
-
margin-top:
|
|
24304
|
+
margin-top: 5px;
|
|
24211
24305
|
}
|
|
24212
24306
|
|
|
24213
24307
|
.k-step-list-horizontal ~ .k-progressbar {
|
|
24214
24308
|
width: 100%;
|
|
24215
24309
|
height: 2px;
|
|
24216
|
-
top:
|
|
24310
|
+
top: 17px;
|
|
24217
24311
|
}
|
|
24218
24312
|
|
|
24219
24313
|
.k-step-list-vertical {
|
|
@@ -24221,7 +24315,7 @@ kendo-card-footer {
|
|
|
24221
24315
|
}
|
|
24222
24316
|
|
|
24223
24317
|
.k-step-list-vertical .k-step {
|
|
24224
|
-
min-height:
|
|
24318
|
+
min-height: 54px;
|
|
24225
24319
|
}
|
|
24226
24320
|
|
|
24227
24321
|
.k-step-list-vertical .k-step-label {
|
|
@@ -24236,7 +24330,7 @@ kendo-card-footer {
|
|
|
24236
24330
|
width: 2px;
|
|
24237
24331
|
height: 100%;
|
|
24238
24332
|
min-height: 20px;
|
|
24239
|
-
left:
|
|
24333
|
+
left: 17px;
|
|
24240
24334
|
}
|
|
24241
24335
|
|
|
24242
24336
|
.k-step-list-vertical .k-step-content {
|
|
@@ -24275,7 +24369,7 @@ kendo-card-footer {
|
|
|
24275
24369
|
.k-rtl .k-stepper .k-step-list-vertical ~ .k-progressbar,
|
|
24276
24370
|
.k-stepper[dir="rtl"] .k-step-list-vertical ~ .k-progressbar {
|
|
24277
24371
|
left: auto;
|
|
24278
|
-
right:
|
|
24372
|
+
right: 17px;
|
|
24279
24373
|
}
|
|
24280
24374
|
|
|
24281
24375
|
.k-stepper {
|
|
@@ -24761,7 +24855,7 @@ kendo-card-footer {
|
|
|
24761
24855
|
|
|
24762
24856
|
.k-wizard .k-wizard-step {
|
|
24763
24857
|
box-sizing: border-box;
|
|
24764
|
-
padding:
|
|
24858
|
+
padding: 10px;
|
|
24765
24859
|
width: 100%;
|
|
24766
24860
|
display: flex;
|
|
24767
24861
|
flex-direction: column;
|
|
@@ -24990,7 +25084,9 @@ kendo-card-footer {
|
|
|
24990
25084
|
align-items: center;
|
|
24991
25085
|
align-content: center;
|
|
24992
25086
|
position: relative;
|
|
24993
|
-
user-select: none;
|
|
25087
|
+
-webkit-user-select: none;
|
|
25088
|
+
-ms-user-select: none;
|
|
25089
|
+
user-select: none;
|
|
24994
25090
|
cursor: default;
|
|
24995
25091
|
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;
|
|
24996
25092
|
}
|
|
@@ -25027,7 +25123,9 @@ kendo-card-footer {
|
|
|
25027
25123
|
align-items: center;
|
|
25028
25124
|
align-content: center;
|
|
25029
25125
|
position: relative;
|
|
25030
|
-
user-select: none;
|
|
25126
|
+
-webkit-user-select: none;
|
|
25127
|
+
-ms-user-select: none;
|
|
25128
|
+
user-select: none;
|
|
25031
25129
|
cursor: default;
|
|
25032
25130
|
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;
|
|
25033
25131
|
}
|
|
@@ -25065,7 +25163,7 @@ kendo-card-footer {
|
|
|
25065
25163
|
.k-panelbar .k-group .k-panelbar-expand,
|
|
25066
25164
|
.k-panelbar .k-group .k-panelbar-collapse,
|
|
25067
25165
|
.k-panelbar .k-panelbar-group .k-panelbar-toggle {
|
|
25068
|
-
margin-inline-end:
|
|
25166
|
+
margin-inline-end: 0px;
|
|
25069
25167
|
}
|
|
25070
25168
|
|
|
25071
25169
|
.k-rtl .k-panelbar .k-group > .k-item.k-level-1 .k-link,
|
|
@@ -25109,7 +25207,7 @@ kendo-card-footer {
|
|
|
25109
25207
|
.k-ie .k-group .k-panelbar-expand,
|
|
25110
25208
|
.k-ie .k-group .k-panelbar-collapse,
|
|
25111
25209
|
.k-ie .k-panelbar-group .k-panelbar-toggle {
|
|
25112
|
-
margin-right:
|
|
25210
|
+
margin-right: 0px;
|
|
25113
25211
|
}
|
|
25114
25212
|
|
|
25115
25213
|
.k-rtl .k-ie .k-panelbar-expand,
|
|
@@ -25130,7 +25228,7 @@ kendo-card-footer {
|
|
|
25130
25228
|
.k-ie.k-rtl .k-panelbar-group .k-panelbar-toggle, .k-ie[dir="rtl"] .k-group .k-panelbar-expand,
|
|
25131
25229
|
.k-ie[dir="rtl"] .k-group .k-panelbar-collapse,
|
|
25132
25230
|
.k-ie[dir="rtl"] .k-panelbar-group .k-panelbar-toggle {
|
|
25133
|
-
margin-left:
|
|
25231
|
+
margin-left: 0px;
|
|
25134
25232
|
}
|
|
25135
25233
|
|
|
25136
25234
|
.k-panelbar {
|
|
@@ -25317,7 +25415,6 @@ kendo-card-footer {
|
|
|
25317
25415
|
outline: 0;
|
|
25318
25416
|
position: absolute;
|
|
25319
25417
|
-webkit-user-select: none;
|
|
25320
|
-
-moz-user-select: none;
|
|
25321
25418
|
-ms-user-select: none;
|
|
25322
25419
|
user-select: none;
|
|
25323
25420
|
display: flex;
|
|
@@ -25574,7 +25671,9 @@ kendo-card-footer {
|
|
|
25574
25671
|
.k-pane-wrapper .k-pane {
|
|
25575
25672
|
width: 100%;
|
|
25576
25673
|
height: 100%;
|
|
25577
|
-
user-select: none;
|
|
25674
|
+
-webkit-user-select: none;
|
|
25675
|
+
-ms-user-select: none;
|
|
25676
|
+
user-select: none;
|
|
25578
25677
|
box-sizing: border-box;
|
|
25579
25678
|
font-family: sans-serif;
|
|
25580
25679
|
overflow-x: hidden;
|
|
@@ -25656,8 +25755,8 @@ kendo-card-footer {
|
|
|
25656
25755
|
.k-grid-mobile .k-header a {
|
|
25657
25756
|
-webkit-touch-callout: none;
|
|
25658
25757
|
-webkit-user-select: none;
|
|
25659
|
-
-
|
|
25660
|
-
|
|
25758
|
+
-ms-user-select: none;
|
|
25759
|
+
user-select: none;
|
|
25661
25760
|
-webkit-user-drag: none;
|
|
25662
25761
|
-moz-user-drag: none;
|
|
25663
25762
|
}
|
|
@@ -25836,7 +25935,8 @@ kendo-card-footer {
|
|
|
25836
25935
|
border-radius: 50%;
|
|
25837
25936
|
}
|
|
25838
25937
|
|
|
25839
|
-
.k-scheduler-mobile .k-task .k-i-reload
|
|
25938
|
+
.k-scheduler-mobile .k-task .k-i-reload,
|
|
25939
|
+
.k-scheduler-mobile .k-task .k-i-arrow-rotate-cw {
|
|
25840
25940
|
font-size: 1em;
|
|
25841
25941
|
margin-right: .5em;
|
|
25842
25942
|
}
|
|
@@ -25856,7 +25956,8 @@ kendo-card-footer {
|
|
|
25856
25956
|
.k-scheduler-mobile .k-scheduler-times .k-scheduler-groupcolumn .k-scheduler-group-text,
|
|
25857
25957
|
.k-scheduler-mobile .k-scheduler-agenda .k-scheduler-group-cell .k-scheduler-group-text,
|
|
25858
25958
|
.k-scheduler-mobile .k-scheduler-agenda .k-scheduler-groupcolumn .k-scheduler-group-text {
|
|
25859
|
-
writing-mode:
|
|
25959
|
+
-ms-writing-mode: tb-lr;
|
|
25960
|
+
writing-mode: vertical-lr;
|
|
25860
25961
|
transform: rotate(180deg);
|
|
25861
25962
|
white-space: nowrap;
|
|
25862
25963
|
}
|
|
@@ -26219,7 +26320,7 @@ kendo-card-footer {
|
|
|
26219
26320
|
}
|
|
26220
26321
|
|
|
26221
26322
|
.k-grid .k-grouping-row .k-icon {
|
|
26222
|
-
margin-left:
|
|
26323
|
+
margin-left: -4px;
|
|
26223
26324
|
margin-right: 8px;
|
|
26224
26325
|
text-decoration: none;
|
|
26225
26326
|
}
|
|
@@ -26388,7 +26489,7 @@ kendo-card-footer {
|
|
|
26388
26489
|
.k-grid[dir="rtl"] .k-grid-header .k-filterable,
|
|
26389
26490
|
.k-rtl .k-grid .k-grid-header .k-with-icon,
|
|
26390
26491
|
.k-rtl .k-grid .k-grid-header .k-filterable {
|
|
26391
|
-
padding-left: calc(
|
|
26492
|
+
padding-left: calc(1.4285714286em + 14px);
|
|
26392
26493
|
padding-right: 12px;
|
|
26393
26494
|
}
|
|
26394
26495
|
|
|
@@ -26446,7 +26547,7 @@ kendo-card-footer {
|
|
|
26446
26547
|
.k-grid[dir="rtl"] .k-grouping-row .k-icon,
|
|
26447
26548
|
.k-rtl .k-grid .k-grouping-row .k-icon {
|
|
26448
26549
|
margin-left: 8px;
|
|
26449
|
-
margin-right:
|
|
26550
|
+
margin-right: -4px;
|
|
26450
26551
|
}
|
|
26451
26552
|
|
|
26452
26553
|
.k-grid[dir="rtl"] .k-column-resizer,
|
|
@@ -26523,7 +26624,7 @@ kendo-card-footer {
|
|
|
26523
26624
|
|
|
26524
26625
|
.k-grouping-header::before {
|
|
26525
26626
|
content: "";
|
|
26526
|
-
height: calc(
|
|
26627
|
+
height: calc(1.4285714286em + 10px);
|
|
26527
26628
|
display: inline-block;
|
|
26528
26629
|
vertical-align: middle;
|
|
26529
26630
|
}
|
|
@@ -26602,7 +26703,7 @@ kendo-card-footer {
|
|
|
26602
26703
|
|
|
26603
26704
|
.k-grouping-dropclue {
|
|
26604
26705
|
width: 12px;
|
|
26605
|
-
height: calc(
|
|
26706
|
+
height: calc(1.4285714286em + 10px);
|
|
26606
26707
|
position: absolute;
|
|
26607
26708
|
top: 3px;
|
|
26608
26709
|
box-sizing: content-box;
|
|
@@ -26627,7 +26728,7 @@ kendo-card-footer {
|
|
|
26627
26728
|
width: 2px;
|
|
26628
26729
|
height: calc(100% - 6px);
|
|
26629
26730
|
top: 6px;
|
|
26630
|
-
left:
|
|
26731
|
+
left: 5px;
|
|
26631
26732
|
}
|
|
26632
26733
|
|
|
26633
26734
|
.k-grid-header-wrap,
|
|
@@ -26680,7 +26781,9 @@ div.k-grid-footer {
|
|
|
26680
26781
|
}
|
|
26681
26782
|
|
|
26682
26783
|
.k-grid-header.k-grid-draggable-header {
|
|
26683
|
-
user-select: none;
|
|
26784
|
+
-webkit-user-select: none;
|
|
26785
|
+
-ms-user-select: none;
|
|
26786
|
+
user-select: none;
|
|
26684
26787
|
touch-action: none;
|
|
26685
26788
|
}
|
|
26686
26789
|
|
|
@@ -26715,12 +26818,12 @@ div.k-grid-footer {
|
|
|
26715
26818
|
|
|
26716
26819
|
.k-grid-header .k-with-icon,
|
|
26717
26820
|
.k-grid-header .k-filterable {
|
|
26718
|
-
padding-right: calc(
|
|
26821
|
+
padding-right: calc(1.4285714286em + 14px);
|
|
26719
26822
|
}
|
|
26720
26823
|
|
|
26721
26824
|
.k-ie .k-grid-header .k-with-icon, .k-ie
|
|
26722
26825
|
.k-grid-header .k-filterable {
|
|
26723
|
-
padding-right: calc(
|
|
26826
|
+
padding-right: calc(1.4285714286em + 14px);
|
|
26724
26827
|
}
|
|
26725
26828
|
|
|
26726
26829
|
.k-grid-header .k-header > .k-link:focus {
|
|
@@ -26731,8 +26834,8 @@ div.k-grid-footer {
|
|
|
26731
26834
|
.k-grid-header .k-header-column-menu,
|
|
26732
26835
|
.k-grid-header .k-grid-header-menu {
|
|
26733
26836
|
padding: 4px;
|
|
26734
|
-
width: calc(
|
|
26735
|
-
height: calc(
|
|
26837
|
+
width: calc(1.4285714286em + 10px);
|
|
26838
|
+
height: calc(1.4285714286em + 10px);
|
|
26736
26839
|
box-sizing: border-box;
|
|
26737
26840
|
outline: 0;
|
|
26738
26841
|
line-height: 1.4285714286;
|
|
@@ -26742,7 +26845,7 @@ div.k-grid-footer {
|
|
|
26742
26845
|
justify-content: center;
|
|
26743
26846
|
position: absolute;
|
|
26744
26847
|
right: 4px;
|
|
26745
|
-
bottom:
|
|
26848
|
+
bottom: 4px;
|
|
26746
26849
|
z-index: 1;
|
|
26747
26850
|
}
|
|
26748
26851
|
|
|
@@ -26752,9 +26855,9 @@ div.k-grid-footer {
|
|
|
26752
26855
|
cursor: pointer;
|
|
26753
26856
|
}
|
|
26754
26857
|
|
|
26755
|
-
.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 {
|
|
26858
|
+
.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 {
|
|
26756
26859
|
vertical-align: text-top;
|
|
26757
|
-
margin-inline-start:
|
|
26860
|
+
margin-inline-start: 7px;
|
|
26758
26861
|
}
|
|
26759
26862
|
|
|
26760
26863
|
.k-grid-header .k-sort-order {
|
|
@@ -27166,7 +27269,7 @@ div.k-grid-norecords {
|
|
|
27166
27269
|
}
|
|
27167
27270
|
|
|
27168
27271
|
.k-filterable > .k-cell-inner {
|
|
27169
|
-
margin-inline-end: calc(-1
|
|
27272
|
+
margin-inline-end: calc(-1.4285714286em + -14px);
|
|
27170
27273
|
}
|
|
27171
27274
|
|
|
27172
27275
|
.k-filterable > .k-cell-inner .k-link {
|
|
@@ -27488,7 +27591,9 @@ div.k-grid-norecords {
|
|
|
27488
27591
|
display: flex;
|
|
27489
27592
|
flex: 0 0 auto;
|
|
27490
27593
|
position: relative;
|
|
27491
|
-
user-select: none;
|
|
27594
|
+
-webkit-user-select: none;
|
|
27595
|
+
-ms-user-select: none;
|
|
27596
|
+
user-select: none;
|
|
27492
27597
|
}
|
|
27493
27598
|
|
|
27494
27599
|
.k-column-menu-group-header-text {
|
|
@@ -27678,6 +27783,8 @@ th.k-sorted {
|
|
|
27678
27783
|
|
|
27679
27784
|
.k-grid-header .k-i-sort-asc-sm,
|
|
27680
27785
|
.k-grid-header .k-i-sort-desc-sm,
|
|
27786
|
+
.k-grid-header .k-i-sort-asc-small,
|
|
27787
|
+
.k-grid-header .k-i-sort-desc-small,
|
|
27681
27788
|
.k-grid-header .k-sort-order {
|
|
27682
27789
|
color: #ff6358;
|
|
27683
27790
|
}
|
|
@@ -28346,7 +28453,6 @@ kendo-grid tr.k-hover .k-grid-content-sticky.k-selected {
|
|
|
28346
28453
|
border-color: inherit;
|
|
28347
28454
|
box-sizing: border-box;
|
|
28348
28455
|
-webkit-user-select: none;
|
|
28349
|
-
-moz-user-select: none;
|
|
28350
28456
|
-ms-user-select: none;
|
|
28351
28457
|
user-select: none;
|
|
28352
28458
|
position: absolute;
|
|
@@ -28670,12 +28776,12 @@ kendo-grid tr.k-hover .k-grid-content-sticky.k-selected {
|
|
|
28670
28776
|
|
|
28671
28777
|
.k-spreadsheet-filter-menu > .k-menu .k-link,
|
|
28672
28778
|
.k-spreadsheet-filter-menu > .k-menu.k-menu-vertical .k-link {
|
|
28673
|
-
padding-left:
|
|
28779
|
+
padding-left: 24px;
|
|
28674
28780
|
}
|
|
28675
28781
|
|
|
28676
28782
|
.k-spreadsheet-filter-menu > .k-menu .k-icon,
|
|
28677
28783
|
.k-spreadsheet-filter-menu > .k-menu.k-menu-vertical .k-icon {
|
|
28678
|
-
margin-left:
|
|
28784
|
+
margin-left: -20px;
|
|
28679
28785
|
margin-right: 4px;
|
|
28680
28786
|
}
|
|
28681
28787
|
|
|
@@ -29338,7 +29444,9 @@ kendo-grid tr.k-hover .k-grid-content-sticky.k-selected {
|
|
|
29338
29444
|
border-style: solid;
|
|
29339
29445
|
box-sizing: border-box;
|
|
29340
29446
|
cursor: pointer;
|
|
29341
|
-
user-select: none;
|
|
29447
|
+
-webkit-user-select: none;
|
|
29448
|
+
-ms-user-select: none;
|
|
29449
|
+
user-select: none;
|
|
29342
29450
|
}
|
|
29343
29451
|
|
|
29344
29452
|
.k-flex-row .k-pivotgrid-configurator-button, .k-d-flex-row .k-pivotgrid-configurator-button,
|
|
@@ -29349,7 +29457,8 @@ kendo-grid tr.k-hover .k-grid-content-sticky.k-selected {
|
|
|
29349
29457
|
|
|
29350
29458
|
.k-flex-row .k-pivotgrid-configurator-button span, .k-d-flex-row .k-pivotgrid-configurator-button span,
|
|
29351
29459
|
.k-flex-row-reverse .k-pivotgrid-configurator-button span {
|
|
29352
|
-
writing-mode:
|
|
29460
|
+
-ms-writing-mode: tb-rl;
|
|
29461
|
+
writing-mode: vertical-rl;
|
|
29353
29462
|
}
|
|
29354
29463
|
|
|
29355
29464
|
.k-flex-row .k-pivotgrid-configurator-button .k-icon, .k-d-flex-row .k-pivotgrid-configurator-button .k-icon,
|
|
@@ -29374,19 +29483,19 @@ kendo-grid tr.k-hover .k-grid-content-sticky.k-selected {
|
|
|
29374
29483
|
}
|
|
29375
29484
|
|
|
29376
29485
|
.k-flex-row .k-pivotgrid-configurator-overlay, .k-d-flex-row .k-pivotgrid-configurator-overlay {
|
|
29377
|
-
right: calc(
|
|
29486
|
+
right: calc(1.4285714286em + 10px);
|
|
29378
29487
|
}
|
|
29379
29488
|
|
|
29380
29489
|
.k-flex-row-reverse .k-pivotgrid-configurator-overlay {
|
|
29381
|
-
left: calc(
|
|
29490
|
+
left: calc(1.4285714286em + 10px);
|
|
29382
29491
|
}
|
|
29383
29492
|
|
|
29384
29493
|
.k-flex-col .k-pivotgrid-configurator-overlay, .k-d-flex-col .k-pivotgrid-configurator-overlay, .k-flex-column .k-pivotgrid-configurator-overlay {
|
|
29385
|
-
bottom: calc(
|
|
29494
|
+
bottom: calc(1.4285714286em + 10px);
|
|
29386
29495
|
}
|
|
29387
29496
|
|
|
29388
29497
|
.k-flex-col-reverse .k-pivotgrid-configurator-overlay, .k-flex-column-reverse .k-pivotgrid-configurator-overlay {
|
|
29389
|
-
top: calc(
|
|
29498
|
+
top: calc(1.4285714286em + 10px);
|
|
29390
29499
|
}
|
|
29391
29500
|
|
|
29392
29501
|
.k-pivotgrid-configurator-header {
|
|
@@ -30147,7 +30256,7 @@ kendo-grid tr.k-hover .k-grid-content-sticky.k-selected {
|
|
|
30147
30256
|
content: "";
|
|
30148
30257
|
position: absolute;
|
|
30149
30258
|
width: 1px;
|
|
30150
|
-
top:
|
|
30259
|
+
top: -5px;
|
|
30151
30260
|
bottom: 50%;
|
|
30152
30261
|
left: -8px;
|
|
30153
30262
|
}
|
|
@@ -30334,7 +30443,7 @@ kendo-grid tr.k-hover .k-grid-content-sticky.k-selected {
|
|
|
30334
30443
|
.k-filemanager-preview {
|
|
30335
30444
|
padding: 48px 16px 16px;
|
|
30336
30445
|
width: 20%;
|
|
30337
|
-
min-height:
|
|
30446
|
+
min-height: 304px;
|
|
30338
30447
|
border-width: 0;
|
|
30339
30448
|
border-left-width: 1px;
|
|
30340
30449
|
border-style: solid;
|
|
@@ -30888,8 +30997,8 @@ kendo-editor.k-readonly .k-editor-content.k-focus {
|
|
|
30888
30997
|
|
|
30889
30998
|
.k-editor-toolbar .k-tool {
|
|
30890
30999
|
padding: 4px;
|
|
30891
|
-
width: calc(
|
|
30892
|
-
height: calc(
|
|
31000
|
+
width: calc(1.4285714286em + 10px);
|
|
31001
|
+
height: calc(1.4285714286em + 10px);
|
|
30893
31002
|
}
|
|
30894
31003
|
|
|
30895
31004
|
.k-editor-toolbar .k-tool-text {
|
|
@@ -30951,7 +31060,9 @@ kendo-editor.k-readonly .k-editor-content.k-focus {
|
|
|
30951
31060
|
float: left;
|
|
30952
31061
|
opacity: 1;
|
|
30953
31062
|
cursor: text;
|
|
30954
|
-
user-select: none;
|
|
31063
|
+
-webkit-user-select: none;
|
|
31064
|
+
-ms-user-select: none;
|
|
31065
|
+
user-select: none;
|
|
30955
31066
|
}
|
|
30956
31067
|
|
|
30957
31068
|
td.k-editor-content {
|
|
@@ -31011,7 +31122,8 @@ td.k-editor-content {
|
|
|
31011
31122
|
cursor: se-resize;
|
|
31012
31123
|
}
|
|
31013
31124
|
|
|
31014
|
-
.k-editor .k-resize-handle .k-i-arrow-45-down-right
|
|
31125
|
+
.k-editor .k-resize-handle .k-i-arrow-45-down-right,
|
|
31126
|
+
.k-editor .k-resize-handle .k-i-caret-br {
|
|
31015
31127
|
display: none;
|
|
31016
31128
|
}
|
|
31017
31129
|
|
|
@@ -31061,7 +31173,7 @@ td.k-editor-content {
|
|
|
31061
31173
|
|
|
31062
31174
|
.k-editor-dialog .k-edit-label {
|
|
31063
31175
|
width: 30%;
|
|
31064
|
-
padding:
|
|
31176
|
+
padding: 5px 0;
|
|
31065
31177
|
}
|
|
31066
31178
|
|
|
31067
31179
|
.k-editor-dialog .k-edit-field {
|
|
@@ -31490,7 +31602,7 @@ kendo-editor.k-readonly .k-editor-content.k-focus {
|
|
|
31490
31602
|
|
|
31491
31603
|
.k-imageeditor-action-pane {
|
|
31492
31604
|
padding: 32px 16px;
|
|
31493
|
-
width:
|
|
31605
|
+
width: 241px;
|
|
31494
31606
|
border-width: 0;
|
|
31495
31607
|
border-left-width: 1px;
|
|
31496
31608
|
border-style: solid;
|
|
@@ -31538,14 +31650,14 @@ kendo-editor.k-readonly .k-editor-content.k-focus {
|
|
|
31538
31650
|
|
|
31539
31651
|
.k-imageeditor-crop .k-resize-n,
|
|
31540
31652
|
.k-imageeditor-crop .k-resize-s {
|
|
31541
|
-
left: calc(
|
|
31653
|
+
left: calc(50% - 7.5px);
|
|
31542
31654
|
width: 15px;
|
|
31543
31655
|
height: 0;
|
|
31544
31656
|
}
|
|
31545
31657
|
|
|
31546
31658
|
.k-imageeditor-crop .k-resize-w,
|
|
31547
31659
|
.k-imageeditor-crop .k-resize-e {
|
|
31548
|
-
top: calc(
|
|
31660
|
+
top: calc(50% - 7.5px);
|
|
31549
31661
|
width: 0;
|
|
31550
31662
|
height: 15px;
|
|
31551
31663
|
}
|
|
@@ -31596,7 +31708,7 @@ kendo-editor.k-readonly .k-editor-content.k-focus {
|
|
|
31596
31708
|
.k-imageeditor-canvas {
|
|
31597
31709
|
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;
|
|
31598
31710
|
background-repeat: repeat, repeat;
|
|
31599
|
-
background-position: 0px 0px,
|
|
31711
|
+
background-position: 0px 0px, 5px 5px;
|
|
31600
31712
|
transform-origin: 0 0 0;
|
|
31601
31713
|
background-origin: padding-box, padding-box;
|
|
31602
31714
|
background-size: 10px 10px, 10px 10px;
|
|
@@ -31641,7 +31753,7 @@ kendo-editor.k-readonly .k-editor-content.k-focus {
|
|
|
31641
31753
|
}
|
|
31642
31754
|
|
|
31643
31755
|
.k-gantt .k-grid-header tr {
|
|
31644
|
-
height: calc(
|
|
31756
|
+
height: calc(1.4285714286em + 17px);
|
|
31645
31757
|
}
|
|
31646
31758
|
|
|
31647
31759
|
.k-gantt .k-grid-header .k-header {
|
|
@@ -31653,11 +31765,11 @@ kendo-editor.k-readonly .k-editor-content.k-focus {
|
|
|
31653
31765
|
}
|
|
31654
31766
|
|
|
31655
31767
|
.k-gantt .k-grid-content tr {
|
|
31656
|
-
height: calc(
|
|
31768
|
+
height: calc(1.4285714286em + 16px);
|
|
31657
31769
|
}
|
|
31658
31770
|
|
|
31659
31771
|
.k-gantt.k-gantt-planned .k-grid-content tr {
|
|
31660
|
-
height: calc(
|
|
31772
|
+
height: calc(2.4285714286em + 16px);
|
|
31661
31773
|
}
|
|
31662
31774
|
|
|
31663
31775
|
.k-gantt .k-gantt-layout {
|
|
@@ -31824,8 +31936,8 @@ kendo-editor.k-readonly .k-editor-content.k-focus {
|
|
|
31824
31936
|
.k-gantt-toolbar .k-gantt-pdf,
|
|
31825
31937
|
.k-gantt-toolbar .k-gantt-create {
|
|
31826
31938
|
padding: 4px;
|
|
31827
|
-
width: calc(
|
|
31828
|
-
height: calc(
|
|
31939
|
+
width: calc(1.4285714286em + 10px);
|
|
31940
|
+
height: calc(1.4285714286em + 10px);
|
|
31829
31941
|
}
|
|
31830
31942
|
.k-gantt-toolbar .k-gantt-pdf .k-button-text,
|
|
31831
31943
|
.k-gantt-toolbar .k-gantt-create .k-button-text {
|
|
@@ -31861,7 +31973,7 @@ kendo-editor.k-readonly .k-editor-content.k-focus {
|
|
|
31861
31973
|
}
|
|
31862
31974
|
|
|
31863
31975
|
.k-gantt-treelist .k-grid-header tr {
|
|
31864
|
-
height: calc(
|
|
31976
|
+
height: calc(2.8571428571em + 34px);
|
|
31865
31977
|
vertical-align: bottom;
|
|
31866
31978
|
}
|
|
31867
31979
|
|
|
@@ -31875,7 +31987,7 @@ kendo-editor.k-readonly .k-editor-content.k-focus {
|
|
|
31875
31987
|
}
|
|
31876
31988
|
|
|
31877
31989
|
.k-gantt-treelist .k-gantt-treelist-nested-columns .k-grid-header tr {
|
|
31878
|
-
height: calc(
|
|
31990
|
+
height: calc(1.4285714286em + 17px);
|
|
31879
31991
|
}
|
|
31880
31992
|
|
|
31881
31993
|
.k-gantt-treelist.k-gantt-treelist-scrollable .k-grid-content {
|
|
@@ -31996,8 +32108,8 @@ kendo-editor.k-readonly .k-editor-content.k-focus {
|
|
|
31996
32108
|
}
|
|
31997
32109
|
|
|
31998
32110
|
.k-task-dot {
|
|
31999
|
-
width:
|
|
32000
|
-
height:
|
|
32111
|
+
width: 16px;
|
|
32112
|
+
height: 16px;
|
|
32001
32113
|
line-height: 1;
|
|
32002
32114
|
cursor: pointer;
|
|
32003
32115
|
display: none;
|
|
@@ -32268,7 +32380,7 @@ kendo-editor.k-readonly .k-editor-content.k-focus {
|
|
|
32268
32380
|
|
|
32269
32381
|
.k-task-planned .k-task-moment {
|
|
32270
32382
|
border-width: 2px;
|
|
32271
|
-
border-radius:
|
|
32383
|
+
border-radius: 5px;
|
|
32272
32384
|
border-style: solid;
|
|
32273
32385
|
height: 6px;
|
|
32274
32386
|
width: 6px;
|
|
@@ -32279,15 +32391,15 @@ kendo-editor.k-readonly .k-editor-content.k-focus {
|
|
|
32279
32391
|
}
|
|
32280
32392
|
|
|
32281
32393
|
.k-task-planned .k-task-moment.k-moment-left {
|
|
32282
|
-
margin-left:
|
|
32394
|
+
margin-left: -4px;
|
|
32283
32395
|
}
|
|
32284
32396
|
|
|
32285
32397
|
.k-task-planned:hover .k-task-duration {
|
|
32286
|
-
height:
|
|
32398
|
+
height: 3px;
|
|
32287
32399
|
}
|
|
32288
32400
|
|
|
32289
32401
|
.k-milestone-wrap .k-task-moment {
|
|
32290
|
-
margin-left:
|
|
32402
|
+
margin-left: 3px;
|
|
32291
32403
|
}
|
|
32292
32404
|
|
|
32293
32405
|
.k-planned-tooltip .k-task-content {
|
|
@@ -33088,7 +33200,7 @@ kendo-scheduler .k-event > div,
|
|
|
33088
33200
|
|
|
33089
33201
|
kendo-scheduler .k-event .k-event-template,
|
|
33090
33202
|
.k-event .k-event-template {
|
|
33091
|
-
line-height:
|
|
33203
|
+
line-height: 17px;
|
|
33092
33204
|
padding: 4px 8px;
|
|
33093
33205
|
}
|
|
33094
33206
|
|
|
@@ -33504,12 +33616,12 @@ kendo-scheduler .k-recurrence-editor {
|
|
|
33504
33616
|
}
|
|
33505
33617
|
|
|
33506
33618
|
.k-scheduler-yearview .k-day-indicator {
|
|
33507
|
-
margin-top: calc(
|
|
33619
|
+
margin-top: calc(32px - 0.5em);
|
|
33508
33620
|
width: 3px;
|
|
33509
33621
|
height: 3px;
|
|
33510
33622
|
border-radius: 50%;
|
|
33511
33623
|
position: absolute;
|
|
33512
|
-
left: calc(
|
|
33624
|
+
left: calc(50% - 1.5px);
|
|
33513
33625
|
}
|
|
33514
33626
|
|
|
33515
33627
|
.k-scheduler-tooltip {
|
|
@@ -33681,9 +33793,13 @@ kendo-scheduler .k-recurrence-editor {
|
|
|
33681
33793
|
float: right;
|
|
33682
33794
|
}
|
|
33683
33795
|
|
|
33796
|
+
.k-rtl .k-scheduler .k-i-caret-alt-left,
|
|
33797
|
+
.k-rtl .k-scheduler .k-i-caret-alt-right,
|
|
33684
33798
|
.k-rtl .k-scheduler .k-i-arrow-60-left,
|
|
33685
33799
|
.k-rtl .k-scheduler .k-i-arrow-60-right,
|
|
33686
|
-
.k-rtl .k-scheduler .k-current-time-arrow-right, .k-rtl.k-scheduler .k-i-
|
|
33800
|
+
.k-rtl .k-scheduler .k-current-time-arrow-right, .k-rtl.k-scheduler .k-i-caret-alt-left,
|
|
33801
|
+
.k-rtl.k-scheduler .k-i-caret-alt-right,
|
|
33802
|
+
.k-rtl.k-scheduler .k-i-arrow-60-left,
|
|
33687
33803
|
.k-rtl.k-scheduler .k-i-arrow-60-right,
|
|
33688
33804
|
.k-rtl.k-scheduler .k-current-time-arrow-right {
|
|
33689
33805
|
transform: scaleX(-1);
|
|
@@ -34066,11 +34182,11 @@ kendo-scheduler .k-recurrence-editor {
|
|
|
34066
34182
|
}
|
|
34067
34183
|
|
|
34068
34184
|
.k-chat .k-avatars .k-message-group:not(.k-alt):not(.k-no-avatar) {
|
|
34069
|
-
padding-left:
|
|
34185
|
+
padding-left: 40px;
|
|
34070
34186
|
}
|
|
34071
34187
|
|
|
34072
34188
|
.k-chat .k-avatars .k-message-group.k-alt:not(.k-no-avatar) {
|
|
34073
|
-
padding-right:
|
|
34189
|
+
padding-right: 40px;
|
|
34074
34190
|
}
|
|
34075
34191
|
|
|
34076
34192
|
.k-author {
|
|
@@ -34104,7 +34220,9 @@ kendo-scheduler .k-recurrence-editor {
|
|
|
34104
34220
|
border-style: solid;
|
|
34105
34221
|
line-height: 18px;
|
|
34106
34222
|
cursor: pointer;
|
|
34107
|
-
user-select: none;
|
|
34223
|
+
-webkit-user-select: none;
|
|
34224
|
+
-ms-user-select: none;
|
|
34225
|
+
user-select: none;
|
|
34108
34226
|
display: inline-block;
|
|
34109
34227
|
flex: 0 0 auto;
|
|
34110
34228
|
transition-property: color, background-color, border-color;
|
|
@@ -34366,13 +34484,13 @@ kendo-scheduler .k-recurrence-editor {
|
|
|
34366
34484
|
.k-rtl .k-avatars .k-message-group:not(.k-alt):not(.k-no-avatar),
|
|
34367
34485
|
[dir="rtl"] .k-avatars .k-message-group:not(.k-alt):not(.k-no-avatar) {
|
|
34368
34486
|
padding-left: 0;
|
|
34369
|
-
padding-right:
|
|
34487
|
+
padding-right: 40px;
|
|
34370
34488
|
}
|
|
34371
34489
|
|
|
34372
34490
|
.k-rtl .k-avatars .k-message-group.k-alt:not(.k-no-avatar),
|
|
34373
34491
|
[dir="rtl"] .k-avatars .k-message-group.k-alt:not(.k-no-avatar) {
|
|
34374
34492
|
padding-right: 0;
|
|
34375
|
-
padding-left:
|
|
34493
|
+
padding-left: 40px;
|
|
34376
34494
|
}
|
|
34377
34495
|
|
|
34378
34496
|
.k-rtl .k-chat .k-card-deck .k-card-wrap + .k-card-wrap,
|
|
@@ -34603,7 +34721,7 @@ kendo-scheduler .k-recurrence-editor {
|
|
|
34603
34721
|
border-radius: 4px;
|
|
34604
34722
|
line-height: 1.4285714286;
|
|
34605
34723
|
min-width: 80px;
|
|
34606
|
-
max-width:
|
|
34724
|
+
max-width: 160px;
|
|
34607
34725
|
position: relative;
|
|
34608
34726
|
z-index: 1;
|
|
34609
34727
|
}
|
|
@@ -34683,11 +34801,11 @@ kendo-scheduler .k-recurrence-editor {
|
|
|
34683
34801
|
}
|
|
34684
34802
|
|
|
34685
34803
|
.k-timeline-vertical {
|
|
34686
|
-
padding-left:
|
|
34804
|
+
padding-left: 127px;
|
|
34687
34805
|
}
|
|
34688
34806
|
|
|
34689
34807
|
.k-timeline-vertical.k-timeline-dates-hidden {
|
|
34690
|
-
padding-left:
|
|
34808
|
+
padding-left: 77px;
|
|
34691
34809
|
}
|
|
34692
34810
|
|
|
34693
34811
|
.k-timeline-vertical::after {
|
|
@@ -34730,7 +34848,7 @@ kendo-scheduler .k-recurrence-editor {
|
|
|
34730
34848
|
|
|
34731
34849
|
.k-timeline-vertical .k-timeline-card .k-card {
|
|
34732
34850
|
margin-left: 16px;
|
|
34733
|
-
min-height:
|
|
34851
|
+
min-height: 70px;
|
|
34734
34852
|
width: 400px;
|
|
34735
34853
|
max-width: 100%;
|
|
34736
34854
|
}
|
|
@@ -34882,9 +35000,9 @@ kendo-scheduler .k-recurrence-editor {
|
|
|
34882
35000
|
|
|
34883
35001
|
.k-timeline-horizontal .k-timeline-track-wrap::after {
|
|
34884
35002
|
top: auto;
|
|
34885
|
-
bottom:
|
|
34886
|
-
left:
|
|
34887
|
-
right:
|
|
35003
|
+
bottom: 18px;
|
|
35004
|
+
left: 28px;
|
|
35005
|
+
right: 28px;
|
|
34888
35006
|
transform: translateY(-50%);
|
|
34889
35007
|
height: 6px;
|
|
34890
35008
|
}
|
|
@@ -34901,7 +35019,7 @@ kendo-scheduler .k-recurrence-editor {
|
|
|
34901
35019
|
}
|
|
34902
35020
|
|
|
34903
35021
|
.k-timeline-horizontal .k-timeline-track-wrap .k-timeline-flag {
|
|
34904
|
-
margin-bottom:
|
|
35022
|
+
margin-bottom: 22px;
|
|
34905
35023
|
position: relative;
|
|
34906
35024
|
min-width: 60px;
|
|
34907
35025
|
}
|
|
@@ -34927,7 +35045,7 @@ kendo-scheduler .k-recurrence-editor {
|
|
|
34927
35045
|
height: 30px;
|
|
34928
35046
|
border-radius: 50%;
|
|
34929
35047
|
position: absolute;
|
|
34930
|
-
bottom:
|
|
35048
|
+
bottom: 11px;
|
|
34931
35049
|
z-index: 3;
|
|
34932
35050
|
display: flex;
|
|
34933
35051
|
align-items: center;
|
|
@@ -34948,7 +35066,7 @@ kendo-scheduler .k-recurrence-editor {
|
|
|
34948
35066
|
}
|
|
34949
35067
|
|
|
34950
35068
|
.k-timeline-mobile .k-timeline-flag {
|
|
34951
|
-
max-width:
|
|
35069
|
+
max-width: 112px;
|
|
34952
35070
|
}
|
|
34953
35071
|
|
|
34954
35072
|
.k-timeline-mobile.k-timeline-horizontal .k-timeline-flag-wrap {
|
|
@@ -34956,11 +35074,11 @@ kendo-scheduler .k-recurrence-editor {
|
|
|
34956
35074
|
}
|
|
34957
35075
|
|
|
34958
35076
|
.k-timeline-mobile.k-timeline-vertical {
|
|
34959
|
-
padding-left:
|
|
35077
|
+
padding-left: 103px;
|
|
34960
35078
|
}
|
|
34961
35079
|
|
|
34962
35080
|
.k-timeline-mobile.k-timeline-vertical.k-timeline-dates-hidden {
|
|
34963
|
-
padding-left:
|
|
35081
|
+
padding-left: 53px;
|
|
34964
35082
|
}
|
|
34965
35083
|
|
|
34966
35084
|
.k-timeline-mobile.k-timeline-vertical.k-timeline-alternating {
|
|
@@ -35036,6 +35154,7 @@ kendo-scheduler .k-recurrence-editor {
|
|
|
35036
35154
|
border-width: 1px;
|
|
35037
35155
|
border-style: solid;
|
|
35038
35156
|
box-sizing: border-box;
|
|
35157
|
+
position: relative;
|
|
35039
35158
|
outline: 0;
|
|
35040
35159
|
font-family: inherit;
|
|
35041
35160
|
font-size: 14px;
|
|
@@ -35065,27 +35184,33 @@ kendo-scheduler .k-recurrence-editor {
|
|
|
35065
35184
|
overflow: visible;
|
|
35066
35185
|
}
|
|
35067
35186
|
|
|
35068
|
-
.k-pdf-viewer .k-
|
|
35187
|
+
.k-pdf-viewer .k-canvas {
|
|
35188
|
+
display: flex;
|
|
35189
|
+
flex-direction: column;
|
|
35069
35190
|
flex: 1 1 auto;
|
|
35070
35191
|
outline: none;
|
|
35071
35192
|
}
|
|
35072
35193
|
|
|
35073
|
-
.k-pdf-viewer .k-
|
|
35194
|
+
.k-pdf-viewer .k-canvas .k-enable-text-select, .k-pdf-viewer .k-canvas.k-enable-text-select {
|
|
35074
35195
|
-webkit-user-select: text;
|
|
35075
|
-
-moz-user-select: text;
|
|
35076
35196
|
-ms-user-select: text;
|
|
35077
35197
|
user-select: text;
|
|
35078
35198
|
cursor: text;
|
|
35079
35199
|
}
|
|
35080
35200
|
|
|
35081
|
-
.k-pdf-viewer .k-
|
|
35201
|
+
.k-pdf-viewer .k-canvas .k-enable-panning, .k-pdf-viewer .k-canvas.k-enable-panning {
|
|
35082
35202
|
cursor: grab;
|
|
35083
35203
|
}
|
|
35084
35204
|
|
|
35085
|
-
.k-pdf-viewer .k-
|
|
35205
|
+
.k-pdf-viewer .k-canvas .k-enable-panning span::selection,
|
|
35206
|
+
.k-pdf-viewer .k-canvas.k-enable-panning span::selection {
|
|
35086
35207
|
background-color: transparent;
|
|
35087
35208
|
}
|
|
35088
35209
|
|
|
35210
|
+
.k-pdf-viewer .k-pdf-viewer-pages {
|
|
35211
|
+
flex: 1 1 auto;
|
|
35212
|
+
}
|
|
35213
|
+
|
|
35089
35214
|
.k-pdf-viewer .k-page {
|
|
35090
35215
|
position: relative;
|
|
35091
35216
|
margin: 30px auto;
|
|
@@ -35114,11 +35239,38 @@ kendo-scheduler .k-recurrence-editor {
|
|
|
35114
35239
|
color: transparent;
|
|
35115
35240
|
}
|
|
35116
35241
|
|
|
35242
|
+
.k-pdf-viewer .k-page .k-text-layer .k-search-highlight-mark {
|
|
35243
|
+
color: transparent;
|
|
35244
|
+
}
|
|
35245
|
+
|
|
35246
|
+
.k-pdf-viewer .k-blank-page {
|
|
35247
|
+
margin: 0;
|
|
35248
|
+
display: flex;
|
|
35249
|
+
flex-flow: column nowrap;
|
|
35250
|
+
width: 100%;
|
|
35251
|
+
height: 100%;
|
|
35252
|
+
align-items: center;
|
|
35253
|
+
justify-content: center;
|
|
35254
|
+
background-color: inherit !important;
|
|
35255
|
+
}
|
|
35256
|
+
|
|
35257
|
+
.k-pdf-viewer .k-blank-page .k-upload,
|
|
35258
|
+
.k-pdf-viewer .k-blank-page .k-dropzone,
|
|
35259
|
+
.k-pdf-viewer .k-blank-page .k-dropzone-inner {
|
|
35260
|
+
border: 0;
|
|
35261
|
+
background: none;
|
|
35262
|
+
}
|
|
35263
|
+
|
|
35264
|
+
.k-pdf-viewer .k-blank-page > .k-icon {
|
|
35265
|
+
font-size: 48px;
|
|
35266
|
+
}
|
|
35267
|
+
|
|
35117
35268
|
.k-pdf-viewer-search-dialog {
|
|
35118
|
-
padding:
|
|
35269
|
+
padding: 0 !important;
|
|
35119
35270
|
}
|
|
35120
35271
|
|
|
35121
|
-
.k-
|
|
35272
|
+
.k-search-panel, .k-search-container {
|
|
35273
|
+
padding: 16px 8px;
|
|
35122
35274
|
display: flex;
|
|
35123
35275
|
gap: 8px;
|
|
35124
35276
|
flex-flow: row nowrap;
|
|
@@ -35127,22 +35279,32 @@ kendo-scheduler .k-recurrence-editor {
|
|
|
35127
35279
|
align-items: center;
|
|
35128
35280
|
}
|
|
35129
35281
|
|
|
35130
|
-
.k-
|
|
35282
|
+
.k-search-panel .k-search-dialog-draghandle, .k-search-container .k-search-dialog-draghandle {
|
|
35131
35283
|
cursor: move;
|
|
35132
35284
|
margin-left: 0;
|
|
35133
35285
|
}
|
|
35134
35286
|
|
|
35135
|
-
.k-
|
|
35287
|
+
.k-search-panel .k-textbox, .k-search-container .k-textbox {
|
|
35136
35288
|
width: 10em;
|
|
35137
35289
|
flex: none;
|
|
35138
35290
|
}
|
|
35139
35291
|
|
|
35140
|
-
.k-
|
|
35292
|
+
.k-search-panel .k-textbox .k-button, .k-search-container .k-textbox .k-button {
|
|
35141
35293
|
border-width: 0;
|
|
35142
35294
|
}
|
|
35143
35295
|
|
|
35144
|
-
.k-
|
|
35145
|
-
|
|
35296
|
+
.k-search-panel .k-search-matches, .k-search-container .k-search-matches {
|
|
35297
|
+
display: inline-flex;
|
|
35298
|
+
gap: 4px;
|
|
35299
|
+
}
|
|
35300
|
+
|
|
35301
|
+
.k-pdf-viewer-canvas > .k-search-panel, .k-pdf-viewer-canvas > .k-search-container {
|
|
35302
|
+
width: max-content;
|
|
35303
|
+
margin-top: calc(-1.4285714286em + -43px);
|
|
35304
|
+
border-width: 1px;
|
|
35305
|
+
border-style: solid;
|
|
35306
|
+
border-radius: 0;
|
|
35307
|
+
z-index: 10;
|
|
35146
35308
|
}
|
|
35147
35309
|
|
|
35148
35310
|
.k-ie .k-pdf-viewer-search-dialog .k-search-container > * + * {
|
|
@@ -35166,13 +35328,30 @@ kendo-scheduler .k-recurrence-editor {
|
|
|
35166
35328
|
box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
|
|
35167
35329
|
}
|
|
35168
35330
|
|
|
35331
|
+
.k-pdf-viewer .k-blank-page > .k-icon {
|
|
35332
|
+
color: #7e7e7e;
|
|
35333
|
+
}
|
|
35334
|
+
|
|
35169
35335
|
.k-pdf-viewer .k-search-highlight {
|
|
35170
35336
|
background-color: #424242;
|
|
35171
35337
|
}
|
|
35172
35338
|
|
|
35339
|
+
.k-pdf-viewer .k-search-highlight-mark {
|
|
35340
|
+
background-color: yellow;
|
|
35341
|
+
}
|
|
35342
|
+
|
|
35343
|
+
.k-pdf-viewer-canvas > .k-search-panel, .k-pdf-viewer-canvas > .k-search-container {
|
|
35344
|
+
border-color: rgba(0, 0, 0, 0.08);
|
|
35345
|
+
color: #424242;
|
|
35346
|
+
background-color: #ffffff;
|
|
35347
|
+
box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.06);
|
|
35348
|
+
}
|
|
35349
|
+
|
|
35173
35350
|
.km-scrollview,
|
|
35174
35351
|
.km-scroll-container {
|
|
35175
|
-
user-select: none;
|
|
35352
|
+
-webkit-user-select: none;
|
|
35353
|
+
-ms-user-select: none;
|
|
35354
|
+
user-select: none;
|
|
35176
35355
|
border-collapse: separate;
|
|
35177
35356
|
}
|
|
35178
35357
|
|
|
@@ -35287,7 +35466,9 @@ kendo-scrollview.k-scrollview,
|
|
|
35287
35466
|
|
|
35288
35467
|
.k-scrollview-wrap .k-scrollview img,
|
|
35289
35468
|
.k-scrollview .k-scrollview-wrap img {
|
|
35290
|
-
user-select: none;
|
|
35469
|
+
-webkit-user-select: none;
|
|
35470
|
+
-ms-user-select: none;
|
|
35471
|
+
user-select: none;
|
|
35291
35472
|
}
|
|
35292
35473
|
|
|
35293
35474
|
.k-scrollview-wrap .k-scrollview > li,
|
|
@@ -35309,20 +35490,20 @@ kendo-scrollview.k-scrollview,
|
|
|
35309
35490
|
.k-scrollview-wrap.k-scrollview-animate {
|
|
35310
35491
|
display: flex;
|
|
35311
35492
|
flex-flow: row nowrap;
|
|
35312
|
-
width: calc(
|
|
35493
|
+
width: calc(var(--kendo-scrollview-views, 1)*100%);
|
|
35313
35494
|
transition-duration: 0.3s;
|
|
35314
35495
|
transition-timing-function: ease-in-out;
|
|
35315
|
-
transform: translateX(calc(
|
|
35496
|
+
transform: translateX(calc(-100%/var(--kendo-scrollview-views, 1)*(var(--kendo-scrollview-current, 1) - 1)));
|
|
35316
35497
|
}
|
|
35317
35498
|
|
|
35318
35499
|
.k-scrollview-wrap.k-scrollview-animate .k-scrollview-view {
|
|
35319
|
-
width: calc(
|
|
35320
|
-
flex: 0 0 calc(
|
|
35500
|
+
width: calc(100%/var(--kendo-scrollview-views, 1));
|
|
35501
|
+
flex: 0 0 calc(100%/var(--kendo-scrollview-views, 1));
|
|
35321
35502
|
}
|
|
35322
35503
|
|
|
35323
35504
|
[dir="rtl"] .k-scrollview-wrap.k-scrollview-animate,
|
|
35324
35505
|
.k-rtl .k-scrollview-wrap.k-scrollview-animate {
|
|
35325
|
-
transform: translateX(calc(
|
|
35506
|
+
transform: translateX(calc(100%/var(--kendo-scrollview-views, 1)*(var(--kendo-scrollview-current, 1) - 1)));
|
|
35326
35507
|
}
|
|
35327
35508
|
|
|
35328
35509
|
kendo-scrollview.k-scrollview-wrap kendo-scrollview-pager,
|
|
@@ -35334,7 +35515,7 @@ kendo-scrollview.k-scrollview kendo-scrollview-pager,
|
|
|
35334
35515
|
left: 0;
|
|
35335
35516
|
right: 0;
|
|
35336
35517
|
bottom: 0;
|
|
35337
|
-
height:
|
|
35518
|
+
height: 50px;
|
|
35338
35519
|
text-align: center;
|
|
35339
35520
|
}
|
|
35340
35521
|
|
|
@@ -35410,7 +35591,9 @@ kendo-scrollview.k-scrollview .k-scrollview-nav {
|
|
|
35410
35591
|
height: 60%;
|
|
35411
35592
|
top: 20%;
|
|
35412
35593
|
text-decoration: none;
|
|
35413
|
-
user-select: none;
|
|
35594
|
+
-webkit-user-select: none;
|
|
35595
|
+
-ms-user-select: none;
|
|
35596
|
+
user-select: none;
|
|
35414
35597
|
cursor: pointer;
|
|
35415
35598
|
}
|
|
35416
35599
|
|
|
@@ -35887,11 +36070,11 @@ div.k-scrollview.k-scrollview-light .k-scrollview-nav-wrap {
|
|
|
35887
36070
|
}
|
|
35888
36071
|
|
|
35889
36072
|
.k-treemap .k-treemap-title + .k-treemap-wrap {
|
|
35890
|
-
top:
|
|
36073
|
+
top: 25.0000000004px;
|
|
35891
36074
|
}
|
|
35892
36075
|
|
|
35893
36076
|
.k-treemap .k-treemap-title-vertical + .k-treemap-wrap {
|
|
35894
|
-
left:
|
|
36077
|
+
left: 25.0000000004px;
|
|
35895
36078
|
}
|
|
35896
36079
|
|
|
35897
36080
|
.k-treemap .k-leaf {
|
|
@@ -36291,7 +36474,9 @@ div.k-scrollview.k-scrollview-light .k-scrollview-nav-wrap {
|
|
|
36291
36474
|
.k-map .km-scroll-wrapper {
|
|
36292
36475
|
width: 100%;
|
|
36293
36476
|
height: 100%;
|
|
36294
|
-
user-select: none;
|
|
36477
|
+
-webkit-user-select: none;
|
|
36478
|
+
-ms-user-select: none;
|
|
36479
|
+
user-select: none;
|
|
36295
36480
|
position: absolute;
|
|
36296
36481
|
}
|
|
36297
36482
|
|
|
@@ -36332,8 +36517,8 @@ div.k-scrollview.k-scrollview-light .k-scrollview-nav-wrap {
|
|
|
36332
36517
|
|
|
36333
36518
|
.k-navigator {
|
|
36334
36519
|
margin: 1em;
|
|
36335
|
-
width:
|
|
36336
|
-
height:
|
|
36520
|
+
width: 52px;
|
|
36521
|
+
height: 52px;
|
|
36337
36522
|
border-width: 1px;
|
|
36338
36523
|
border-style: solid;
|
|
36339
36524
|
box-sizing: border-box;
|
|
@@ -36603,8 +36788,8 @@ div.k-scrollview.k-scrollview-light .k-scrollview-nav-wrap {
|
|
|
36603
36788
|
}
|
|
36604
36789
|
|
|
36605
36790
|
.k-signature-sm .k-signature-line {
|
|
36606
|
-
width: calc(
|
|
36607
|
-
bottom: calc(
|
|
36791
|
+
width: calc(100% - 4px);
|
|
36792
|
+
bottom: calc(1.4285714286em + 12px);
|
|
36608
36793
|
}
|
|
36609
36794
|
|
|
36610
36795
|
.k-signature-md {
|
|
@@ -36612,8 +36797,8 @@ div.k-scrollview.k-scrollview-light .k-scrollview-nav-wrap {
|
|
|
36612
36797
|
}
|
|
36613
36798
|
|
|
36614
36799
|
.k-signature-md .k-signature-line {
|
|
36615
|
-
width: calc(
|
|
36616
|
-
bottom: calc(
|
|
36800
|
+
width: calc(100% - 8px);
|
|
36801
|
+
bottom: calc(1.4285714286em + 14px);
|
|
36617
36802
|
}
|
|
36618
36803
|
|
|
36619
36804
|
.k-signature-lg {
|
|
@@ -36621,8 +36806,8 @@ div.k-scrollview.k-scrollview-light .k-scrollview-nav-wrap {
|
|
|
36621
36806
|
}
|
|
36622
36807
|
|
|
36623
36808
|
.k-signature-lg .k-signature-line {
|
|
36624
|
-
width: calc(
|
|
36625
|
-
bottom: calc(
|
|
36809
|
+
width: calc(100% - 12px);
|
|
36810
|
+
bottom: calc(1.4285714286em + 16px);
|
|
36626
36811
|
}
|
|
36627
36812
|
|
|
36628
36813
|
.k-signature .k-signature-line {
|