@progress/kendo-theme-bootstrap 5.6.1-dev.4 → 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 +529 -380
- package/dist/all.scss +284 -192
- package/lib/swatches/bootstrap-3-dark.json +1 -1
- package/lib/swatches/bootstrap-3.json +1 -1
- package/lib/swatches/bootstrap-4-dark.json +1 -1
- package/lib/swatches/bootstrap-4.json +1 -1
- package/lib/swatches/bootstrap-dataviz-v4.json +1 -1
- package/lib/swatches/bootstrap-main-dark.json +1 -1
- package/lib/swatches/bootstrap-main.json +1 -1
- package/lib/swatches/bootstrap-nordic.json +1 -1
- package/lib/swatches/bootstrap-turquoise-dark.json +1 -1
- package/lib/swatches/bootstrap-turquoise.json +1 -1
- package/lib/swatches/bootstrap-urban.json +1 -1
- package/lib/swatches/bootstrap-vintage.json +1 -1
- package/package.json +4 -4
- package/scss/badge/_variables.scss +70 -35
- package/scss/card/_variables.scss +0 -10
- package/scss/grid/_theme.scss +2 -0
- package/scss/pdf-viewer/_index.scss +3 -0
- package/scss/pdf-viewer/_variables.scss +14 -1
- package/scss/popover/_variables.scss +0 -4
package/dist/all.css
CHANGED
|
@@ -3216,26 +3216,51 @@ kendo-sortable {
|
|
|
3216
3216
|
position: static !important;
|
|
3217
3217
|
}
|
|
3218
3218
|
|
|
3219
|
+
.\!k-static,
|
|
3220
|
+
.\!k-pos-static {
|
|
3221
|
+
position: static !important;
|
|
3222
|
+
}
|
|
3223
|
+
|
|
3219
3224
|
.k-relative,
|
|
3220
3225
|
.k-pos-relative {
|
|
3221
3226
|
position: relative !important;
|
|
3222
3227
|
}
|
|
3223
3228
|
|
|
3229
|
+
.\!k-relative,
|
|
3230
|
+
.\!k-pos-relative {
|
|
3231
|
+
position: relative !important;
|
|
3232
|
+
}
|
|
3233
|
+
|
|
3224
3234
|
.k-absolute,
|
|
3225
3235
|
.k-pos-absolute {
|
|
3226
3236
|
position: absolute !important;
|
|
3227
3237
|
}
|
|
3228
3238
|
|
|
3239
|
+
.\!k-absolute,
|
|
3240
|
+
.\!k-pos-absolute {
|
|
3241
|
+
position: absolute !important;
|
|
3242
|
+
}
|
|
3243
|
+
|
|
3229
3244
|
.k-fixed,
|
|
3230
3245
|
.k-pos-fixed {
|
|
3231
3246
|
position: fixed !important;
|
|
3232
3247
|
}
|
|
3233
3248
|
|
|
3249
|
+
.\!k-fixed,
|
|
3250
|
+
.\!k-pos-fixed {
|
|
3251
|
+
position: fixed !important;
|
|
3252
|
+
}
|
|
3253
|
+
|
|
3234
3254
|
.k-sticky,
|
|
3235
3255
|
.k-pos-sticky {
|
|
3236
3256
|
position: sticky !important;
|
|
3237
3257
|
}
|
|
3238
3258
|
|
|
3259
|
+
.\!k-sticky,
|
|
3260
|
+
.\!k-pos-sticky {
|
|
3261
|
+
position: sticky !important;
|
|
3262
|
+
}
|
|
3263
|
+
|
|
3239
3264
|
.k-top,
|
|
3240
3265
|
.k-pos-top {
|
|
3241
3266
|
top: 0;
|
|
@@ -6563,23 +6588,32 @@ kendo-sortable {
|
|
|
6563
6588
|
}
|
|
6564
6589
|
|
|
6565
6590
|
.k-user-select-none {
|
|
6566
|
-
user-select: none !important;
|
|
6591
|
+
-webkit-user-select: none !important;
|
|
6592
|
+
-ms-user-select: none !important;
|
|
6593
|
+
user-select: none !important;
|
|
6567
6594
|
}
|
|
6568
6595
|
|
|
6569
6596
|
.k-user-select-auto {
|
|
6570
|
-
user-select: auto !important;
|
|
6597
|
+
-webkit-user-select: auto !important;
|
|
6598
|
+
-ms-user-select: auto !important;
|
|
6599
|
+
user-select: auto !important;
|
|
6571
6600
|
}
|
|
6572
6601
|
|
|
6573
6602
|
.k-user-select-text {
|
|
6574
|
-
user-select: text !important;
|
|
6603
|
+
-webkit-user-select: text !important;
|
|
6604
|
+
-ms-user-select: text !important;
|
|
6605
|
+
user-select: text !important;
|
|
6575
6606
|
}
|
|
6576
6607
|
|
|
6577
6608
|
.k-user-select-all {
|
|
6578
|
-
user-select: all !important;
|
|
6609
|
+
-webkit-user-select: all !important;
|
|
6610
|
+
user-select: all !important;
|
|
6579
6611
|
}
|
|
6580
6612
|
|
|
6581
6613
|
.k-user-select-contain {
|
|
6582
|
-
user-select: contain !important;
|
|
6614
|
+
-webkit-user-select: contain !important;
|
|
6615
|
+
-ms-user-select: element !important;
|
|
6616
|
+
user-select: contain !important;
|
|
6583
6617
|
}
|
|
6584
6618
|
|
|
6585
6619
|
.k-cursor-auto {
|
|
@@ -11777,7 +11811,7 @@ kendo-sortable {
|
|
|
11777
11811
|
|
|
11778
11812
|
.k-badge {
|
|
11779
11813
|
padding: 0;
|
|
11780
|
-
border-width:
|
|
11814
|
+
border-width: 1px;
|
|
11781
11815
|
border-style: solid;
|
|
11782
11816
|
border-color: transparent;
|
|
11783
11817
|
box-sizing: border-box;
|
|
@@ -11826,92 +11860,38 @@ a.k-badge:hover,
|
|
|
11826
11860
|
|
|
11827
11861
|
.k-badge-sm {
|
|
11828
11862
|
padding: 0.175em 0.325em;
|
|
11829
|
-
|
|
11830
|
-
font-size: 0.625em;
|
|
11863
|
+
font-size: 0.75em;
|
|
11831
11864
|
line-height: 1;
|
|
11865
|
+
min-width: calc(1.35em + 2px);
|
|
11832
11866
|
}
|
|
11833
11867
|
|
|
11834
11868
|
.k-badge-sm:empty {
|
|
11835
11869
|
padding: 0.175em;
|
|
11870
|
+
min-width: auto;
|
|
11836
11871
|
}
|
|
11837
11872
|
|
|
11838
11873
|
.k-badge-md {
|
|
11839
11874
|
padding: 0.35em 0.65em;
|
|
11840
|
-
border-width: 1px;
|
|
11841
11875
|
font-size: 0.75em;
|
|
11842
11876
|
line-height: 1;
|
|
11877
|
+
min-width: calc(1.7em + 2px);
|
|
11843
11878
|
}
|
|
11844
11879
|
|
|
11845
11880
|
.k-badge-md:empty {
|
|
11846
11881
|
padding: 0.35em;
|
|
11882
|
+
min-width: auto;
|
|
11847
11883
|
}
|
|
11848
11884
|
|
|
11849
11885
|
.k-badge-lg {
|
|
11850
11886
|
padding: 0.525em 0.975em;
|
|
11851
|
-
|
|
11852
|
-
|
|
11853
|
-
|
|
11887
|
+
font-size: 0.75em;
|
|
11888
|
+
line-height: 1;
|
|
11889
|
+
min-width: calc(2.05em + 2px);
|
|
11854
11890
|
}
|
|
11855
11891
|
|
|
11856
11892
|
.k-badge-lg:empty {
|
|
11857
11893
|
padding: 0.525em;
|
|
11858
|
-
|
|
11859
|
-
|
|
11860
|
-
.k-badge-rounded.k-badge-sm {
|
|
11861
|
-
border-radius: 0.1875rem;
|
|
11862
|
-
}
|
|
11863
|
-
|
|
11864
|
-
.k-badge-rounded.k-badge-md {
|
|
11865
|
-
border-radius: 0.375rem;
|
|
11866
|
-
}
|
|
11867
|
-
|
|
11868
|
-
.k-badge-rounded.k-badge-lg {
|
|
11869
|
-
border-radius: 0.5625rem;
|
|
11870
|
-
}
|
|
11871
|
-
|
|
11872
|
-
.k-badge-pill {
|
|
11873
|
-
border-radius: 5rem;
|
|
11874
|
-
}
|
|
11875
|
-
|
|
11876
|
-
.k-badge-circle {
|
|
11877
|
-
padding: 0 !important;
|
|
11878
|
-
border-radius: 100%;
|
|
11879
|
-
}
|
|
11880
|
-
|
|
11881
|
-
.k-badge-circle.k-badge-sm {
|
|
11882
|
-
width: calc( 1em + 0.35em + 2px);
|
|
11883
|
-
height: calc( 1em + 0.35em + 2px);
|
|
11884
|
-
}
|
|
11885
|
-
|
|
11886
|
-
.k-badge-circle.k-badge-md {
|
|
11887
|
-
width: calc( 1em + 0.7em + 2px);
|
|
11888
|
-
height: calc( 1em + 0.7em + 2px);
|
|
11889
|
-
}
|
|
11890
|
-
|
|
11891
|
-
.k-badge-circle.k-badge-lg {
|
|
11892
|
-
width: calc( 1.25em + 1.05em + 2px);
|
|
11893
|
-
height: calc( 1.25em + 1.05em + 2px);
|
|
11894
|
-
}
|
|
11895
|
-
|
|
11896
|
-
.k-badge-dot {
|
|
11897
|
-
padding: 0 !important;
|
|
11898
|
-
border-radius: 100%;
|
|
11899
|
-
font-size: 0;
|
|
11900
|
-
}
|
|
11901
|
-
|
|
11902
|
-
.k-badge-dot.k-badge-sm {
|
|
11903
|
-
width: 6px;
|
|
11904
|
-
height: 6px;
|
|
11905
|
-
}
|
|
11906
|
-
|
|
11907
|
-
.k-badge-dot.k-badge-md {
|
|
11908
|
-
width: 10px;
|
|
11909
|
-
height: 10px;
|
|
11910
|
-
}
|
|
11911
|
-
|
|
11912
|
-
.k-badge-dot.k-badge-lg {
|
|
11913
|
-
width: 12px;
|
|
11914
|
-
height: 12px;
|
|
11894
|
+
min-width: auto;
|
|
11915
11895
|
}
|
|
11916
11896
|
|
|
11917
11897
|
kendo-badge-container {
|
|
@@ -12022,61 +12002,61 @@ kendo-badge-container {
|
|
|
12022
12002
|
box-shadow: 0 0 0 2px #ffffff;
|
|
12023
12003
|
}
|
|
12024
12004
|
|
|
12025
|
-
.k-badge-solid
|
|
12005
|
+
.k-badge-solid-primary {
|
|
12026
12006
|
border-color: #0d6efd;
|
|
12027
12007
|
color: white;
|
|
12028
12008
|
background-color: #0d6efd;
|
|
12029
12009
|
}
|
|
12030
12010
|
|
|
12031
|
-
.k-badge-solid
|
|
12011
|
+
.k-badge-solid-secondary {
|
|
12032
12012
|
border-color: #6c757d;
|
|
12033
12013
|
color: white;
|
|
12034
12014
|
background-color: #6c757d;
|
|
12035
12015
|
}
|
|
12036
12016
|
|
|
12037
|
-
.k-badge-solid
|
|
12017
|
+
.k-badge-solid-tertiary {
|
|
12038
12018
|
border-color: #6f42c1;
|
|
12039
12019
|
color: white;
|
|
12040
12020
|
background-color: #6f42c1;
|
|
12041
12021
|
}
|
|
12042
12022
|
|
|
12043
|
-
.k-badge-solid
|
|
12023
|
+
.k-badge-solid-info {
|
|
12044
12024
|
border-color: #0dcaf0;
|
|
12045
12025
|
color: white;
|
|
12046
12026
|
background-color: #0dcaf0;
|
|
12047
12027
|
}
|
|
12048
12028
|
|
|
12049
|
-
.k-badge-solid
|
|
12029
|
+
.k-badge-solid-success {
|
|
12050
12030
|
border-color: #198754;
|
|
12051
12031
|
color: white;
|
|
12052
12032
|
background-color: #198754;
|
|
12053
12033
|
}
|
|
12054
12034
|
|
|
12055
|
-
.k-badge-solid
|
|
12035
|
+
.k-badge-solid-warning {
|
|
12056
12036
|
border-color: #ffc107;
|
|
12057
12037
|
color: black;
|
|
12058
12038
|
background-color: #ffc107;
|
|
12059
12039
|
}
|
|
12060
12040
|
|
|
12061
|
-
.k-badge-solid
|
|
12041
|
+
.k-badge-solid-error {
|
|
12062
12042
|
border-color: #dc3545;
|
|
12063
12043
|
color: white;
|
|
12064
12044
|
background-color: #dc3545;
|
|
12065
12045
|
}
|
|
12066
12046
|
|
|
12067
|
-
.k-badge-solid
|
|
12047
|
+
.k-badge-solid-dark {
|
|
12068
12048
|
border-color: #212529;
|
|
12069
12049
|
color: white;
|
|
12070
12050
|
background-color: #212529;
|
|
12071
12051
|
}
|
|
12072
12052
|
|
|
12073
|
-
.k-badge-solid
|
|
12053
|
+
.k-badge-solid-light {
|
|
12074
12054
|
border-color: #f8f9fa;
|
|
12075
12055
|
color: black;
|
|
12076
12056
|
background-color: #f8f9fa;
|
|
12077
12057
|
}
|
|
12078
12058
|
|
|
12079
|
-
.k-badge-solid
|
|
12059
|
+
.k-badge-solid-inverse {
|
|
12080
12060
|
border-color: #212529;
|
|
12081
12061
|
color: white;
|
|
12082
12062
|
background-color: #212529;
|
|
@@ -12087,43 +12067,43 @@ kendo-badge-container {
|
|
|
12087
12067
|
background-color: #ffffff;
|
|
12088
12068
|
}
|
|
12089
12069
|
|
|
12090
|
-
.k-badge-outline
|
|
12070
|
+
.k-badge-outline-primary {
|
|
12091
12071
|
color: #0d6efd;
|
|
12092
12072
|
}
|
|
12093
12073
|
|
|
12094
|
-
.k-badge-outline
|
|
12074
|
+
.k-badge-outline-secondary {
|
|
12095
12075
|
color: #6c757d;
|
|
12096
12076
|
}
|
|
12097
12077
|
|
|
12098
|
-
.k-badge-outline
|
|
12078
|
+
.k-badge-outline-tertiary {
|
|
12099
12079
|
color: #6f42c1;
|
|
12100
12080
|
}
|
|
12101
12081
|
|
|
12102
|
-
.k-badge-outline
|
|
12082
|
+
.k-badge-outline-info {
|
|
12103
12083
|
color: #0dcaf0;
|
|
12104
12084
|
}
|
|
12105
12085
|
|
|
12106
|
-
.k-badge-outline
|
|
12086
|
+
.k-badge-outline-success {
|
|
12107
12087
|
color: #198754;
|
|
12108
12088
|
}
|
|
12109
12089
|
|
|
12110
|
-
.k-badge-outline
|
|
12090
|
+
.k-badge-outline-warning {
|
|
12111
12091
|
color: #ffc107;
|
|
12112
12092
|
}
|
|
12113
12093
|
|
|
12114
|
-
.k-badge-outline
|
|
12094
|
+
.k-badge-outline-error {
|
|
12115
12095
|
color: #dc3545;
|
|
12116
12096
|
}
|
|
12117
12097
|
|
|
12118
|
-
.k-badge-outline
|
|
12098
|
+
.k-badge-outline-dark {
|
|
12119
12099
|
color: #212529;
|
|
12120
12100
|
}
|
|
12121
12101
|
|
|
12122
|
-
.k-badge-outline
|
|
12102
|
+
.k-badge-outline-light {
|
|
12123
12103
|
color: #f8f9fa;
|
|
12124
12104
|
}
|
|
12125
12105
|
|
|
12126
|
-
.k-badge-outline
|
|
12106
|
+
.k-badge-outline-inverse {
|
|
12127
12107
|
color: #212529;
|
|
12128
12108
|
}
|
|
12129
12109
|
|
|
@@ -12142,7 +12122,9 @@ kendo-badge-container {
|
|
|
12142
12122
|
justify-content: center;
|
|
12143
12123
|
gap: 0.5rem;
|
|
12144
12124
|
vertical-align: middle;
|
|
12145
|
-
user-select: none;
|
|
12125
|
+
-webkit-user-select: none;
|
|
12126
|
+
-ms-user-select: none;
|
|
12127
|
+
user-select: none;
|
|
12146
12128
|
cursor: pointer;
|
|
12147
12129
|
outline: none;
|
|
12148
12130
|
-webkit-appearance: none;
|
|
@@ -12201,8 +12183,8 @@ kendo-badge-container {
|
|
|
12201
12183
|
}
|
|
12202
12184
|
|
|
12203
12185
|
.k-button-sm.k-icon-button > .k-button-icon {
|
|
12204
|
-
min-width:
|
|
12205
|
-
min-height:
|
|
12186
|
+
min-width: 1.25rem;
|
|
12187
|
+
min-height: 1.25rem;
|
|
12206
12188
|
}
|
|
12207
12189
|
|
|
12208
12190
|
.k-button-md {
|
|
@@ -12216,8 +12198,8 @@ kendo-badge-container {
|
|
|
12216
12198
|
}
|
|
12217
12199
|
|
|
12218
12200
|
.k-button-md.k-icon-button > .k-button-icon {
|
|
12219
|
-
min-width:
|
|
12220
|
-
min-height:
|
|
12201
|
+
min-width: 1.5rem;
|
|
12202
|
+
min-height: 1.5rem;
|
|
12221
12203
|
}
|
|
12222
12204
|
|
|
12223
12205
|
.k-button-lg {
|
|
@@ -12231,8 +12213,8 @@ kendo-badge-container {
|
|
|
12231
12213
|
}
|
|
12232
12214
|
|
|
12233
12215
|
.k-button-lg.k-icon-button > .k-button-icon {
|
|
12234
|
-
min-width:
|
|
12235
|
-
min-height:
|
|
12216
|
+
min-width: 1.5rem;
|
|
12217
|
+
min-height: 1.5rem;
|
|
12236
12218
|
}
|
|
12237
12219
|
|
|
12238
12220
|
.k-button-square {
|
|
@@ -13415,11 +13397,20 @@ kendo-badge-container {
|
|
|
13415
13397
|
margin: 0;
|
|
13416
13398
|
}
|
|
13417
13399
|
|
|
13400
|
+
.k-input:-ms-input-placeholder, .k-picker:-ms-input-placeholder {
|
|
13401
|
+
color: #6c757d;
|
|
13402
|
+
opacity: 1;
|
|
13403
|
+
-ms-user-select: none;
|
|
13404
|
+
user-select: none;
|
|
13405
|
+
}
|
|
13406
|
+
|
|
13418
13407
|
.k-input::placeholder,
|
|
13419
13408
|
.k-picker::placeholder {
|
|
13420
13409
|
color: #6c757d;
|
|
13421
13410
|
opacity: 1;
|
|
13422
|
-
user-select: none;
|
|
13411
|
+
-webkit-user-select: none;
|
|
13412
|
+
-ms-user-select: none;
|
|
13413
|
+
user-select: none;
|
|
13423
13414
|
}
|
|
13424
13415
|
|
|
13425
13416
|
.k-input:-ms-input-placeholder,
|
|
@@ -13509,10 +13500,19 @@ select.k-picker:disabled, select.k-picker[disabled] {
|
|
|
13509
13500
|
display: none;
|
|
13510
13501
|
}
|
|
13511
13502
|
|
|
13503
|
+
.k-input-inner:-ms-input-placeholder {
|
|
13504
|
+
color: #6c757d;
|
|
13505
|
+
opacity: 1;
|
|
13506
|
+
-ms-user-select: none;
|
|
13507
|
+
user-select: none;
|
|
13508
|
+
}
|
|
13509
|
+
|
|
13512
13510
|
.k-input-inner::placeholder {
|
|
13513
13511
|
color: #6c757d;
|
|
13514
13512
|
opacity: 1;
|
|
13515
|
-
user-select: none;
|
|
13513
|
+
-webkit-user-select: none;
|
|
13514
|
+
-ms-user-select: none;
|
|
13515
|
+
user-select: none;
|
|
13516
13516
|
}
|
|
13517
13517
|
|
|
13518
13518
|
.k-input-inner:-ms-input-placeholder {
|
|
@@ -13764,14 +13764,14 @@ textarea.k-input-inner {
|
|
|
13764
13764
|
.k-picker-sm .k-clear-value,
|
|
13765
13765
|
.k-picker-sm .k-input-prefix > .k-icon,
|
|
13766
13766
|
.k-picker-sm .k-input-suffix > .k-icon {
|
|
13767
|
-
width: calc(
|
|
13768
|
-
height: calc(
|
|
13767
|
+
width: calc(16px + 0.5rem);
|
|
13768
|
+
height: calc(16px + 0.5rem);
|
|
13769
13769
|
}
|
|
13770
13770
|
|
|
13771
13771
|
.k-input-sm.k-icon-picker .k-input-inner,
|
|
13772
13772
|
.k-picker-sm.k-icon-picker .k-input-inner {
|
|
13773
|
-
width:
|
|
13774
|
-
height:
|
|
13773
|
+
width: 1.4285714286em;
|
|
13774
|
+
height: 1.4285714286em;
|
|
13775
13775
|
padding: 0.25rem;
|
|
13776
13776
|
box-sizing: content-box;
|
|
13777
13777
|
}
|
|
@@ -13827,14 +13827,14 @@ textarea.k-input-inner {
|
|
|
13827
13827
|
.k-picker-md .k-clear-value,
|
|
13828
13828
|
.k-picker-md .k-input-prefix > .k-icon,
|
|
13829
13829
|
.k-picker-md .k-input-suffix > .k-icon {
|
|
13830
|
-
width: calc(
|
|
13831
|
-
height: calc(
|
|
13830
|
+
width: calc(16px + 0.75rem);
|
|
13831
|
+
height: calc(16px + 0.75rem);
|
|
13832
13832
|
}
|
|
13833
13833
|
|
|
13834
13834
|
.k-input-md.k-icon-picker .k-input-inner,
|
|
13835
13835
|
.k-picker-md.k-icon-picker .k-input-inner {
|
|
13836
|
-
width:
|
|
13837
|
-
height:
|
|
13836
|
+
width: 1.5em;
|
|
13837
|
+
height: 1.5em;
|
|
13838
13838
|
padding: 0.375rem;
|
|
13839
13839
|
box-sizing: content-box;
|
|
13840
13840
|
}
|
|
@@ -13890,14 +13890,14 @@ textarea.k-input-inner {
|
|
|
13890
13890
|
.k-picker-lg .k-clear-value,
|
|
13891
13891
|
.k-picker-lg .k-input-prefix > .k-icon,
|
|
13892
13892
|
.k-picker-lg .k-input-suffix > .k-icon {
|
|
13893
|
-
width: calc(
|
|
13894
|
-
height: calc(
|
|
13893
|
+
width: calc(16px + 1rem);
|
|
13894
|
+
height: calc(16px + 1rem);
|
|
13895
13895
|
}
|
|
13896
13896
|
|
|
13897
13897
|
.k-input-lg.k-icon-picker .k-input-inner,
|
|
13898
13898
|
.k-picker-lg.k-icon-picker .k-input-inner {
|
|
13899
|
-
width:
|
|
13900
|
-
height:
|
|
13899
|
+
width: 1.5em;
|
|
13900
|
+
height: 1.5em;
|
|
13901
13901
|
padding: 0.5rem;
|
|
13902
13902
|
box-sizing: content-box;
|
|
13903
13903
|
}
|
|
@@ -14164,7 +14164,7 @@ textarea.k-input-inner {
|
|
|
14164
14164
|
}
|
|
14165
14165
|
|
|
14166
14166
|
.k-floating-label-container {
|
|
14167
|
-
padding-top:
|
|
14167
|
+
padding-top: 1.5rem;
|
|
14168
14168
|
box-sizing: border-box;
|
|
14169
14169
|
display: inline-flex;
|
|
14170
14170
|
vertical-align: middle;
|
|
@@ -14186,8 +14186,8 @@ textarea.k-input-inner {
|
|
|
14186
14186
|
white-space: nowrap;
|
|
14187
14187
|
text-overflow: ellipsis;
|
|
14188
14188
|
position: absolute;
|
|
14189
|
-
top: calc(
|
|
14190
|
-
left: calc(
|
|
14189
|
+
top: calc(1.875rem + 1px);
|
|
14190
|
+
left: calc(0.75rem + 1px);
|
|
14191
14191
|
overflow: hidden;
|
|
14192
14192
|
cursor: text;
|
|
14193
14193
|
transform-origin: left center;
|
|
@@ -14200,8 +14200,8 @@ textarea.k-input-inner {
|
|
|
14200
14200
|
}
|
|
14201
14201
|
|
|
14202
14202
|
.k-floating-label-container.k-state-empty > .k-label, .k-floating-label-container.k-empty > .k-label {
|
|
14203
|
-
top: calc(
|
|
14204
|
-
left: calc(
|
|
14203
|
+
top: calc(1.875rem + 1px);
|
|
14204
|
+
left: calc(0.75rem + 1px);
|
|
14205
14205
|
transform: scale(1);
|
|
14206
14206
|
pointer-events: none;
|
|
14207
14207
|
}
|
|
@@ -14220,6 +14220,10 @@ textarea.k-input-inner {
|
|
|
14220
14220
|
transform: scale(1);
|
|
14221
14221
|
}
|
|
14222
14222
|
|
|
14223
|
+
.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 {
|
|
14224
|
+
color: transparent;
|
|
14225
|
+
}
|
|
14226
|
+
|
|
14223
14227
|
.k-floating-label-container.k-state-empty:not(.k-state-focused) ::placeholder,
|
|
14224
14228
|
.k-floating-label-container.k-empty:not(.k-focus):not(:focus-within) ::placeholder {
|
|
14225
14229
|
color: transparent;
|
|
@@ -14235,7 +14239,7 @@ textarea.k-input-inner {
|
|
|
14235
14239
|
.k-rtl .k-floating-label-container.k-state-empty > .k-label,
|
|
14236
14240
|
.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 {
|
|
14237
14241
|
left: auto;
|
|
14238
|
-
right: calc(
|
|
14242
|
+
right: calc(0.75rem + 1px);
|
|
14239
14243
|
}
|
|
14240
14244
|
|
|
14241
14245
|
[dir="rtl"] .k-floating-label-container > .k-label,
|
|
@@ -14828,7 +14832,9 @@ textarea.k-input-inner {
|
|
|
14828
14832
|
position: relative;
|
|
14829
14833
|
overflow: hidden;
|
|
14830
14834
|
cursor: pointer;
|
|
14831
|
-
user-select: none;
|
|
14835
|
+
-webkit-user-select: none;
|
|
14836
|
+
-ms-user-select: none;
|
|
14837
|
+
user-select: none;
|
|
14832
14838
|
}
|
|
14833
14839
|
|
|
14834
14840
|
.k-chip *,
|
|
@@ -15217,7 +15223,7 @@ textarea.k-input-inner {
|
|
|
15217
15223
|
}
|
|
15218
15224
|
|
|
15219
15225
|
.k-icon-color-preview .k-color-preview-mask {
|
|
15220
|
-
width:
|
|
15226
|
+
width: 14px;
|
|
15221
15227
|
height: 2px;
|
|
15222
15228
|
}
|
|
15223
15229
|
|
|
@@ -15380,32 +15386,32 @@ textarea.k-input-inner {
|
|
|
15380
15386
|
top: 100%;
|
|
15381
15387
|
left: 0;
|
|
15382
15388
|
animation: spinner-3-segment 2s ease infinite;
|
|
15383
|
-
animation-delay:
|
|
15389
|
+
animation-delay: -0.6666666667s;
|
|
15384
15390
|
}
|
|
15385
15391
|
|
|
15386
15392
|
.k-loader-spinner-3 .k-loader-segment:nth-child(3) {
|
|
15387
15393
|
top: 100%;
|
|
15388
15394
|
left: 100%;
|
|
15389
15395
|
animation: spinner-3-segment 2s ease infinite;
|
|
15390
|
-
animation-delay:
|
|
15396
|
+
animation-delay: -1.3333333333s;
|
|
15391
15397
|
}
|
|
15392
15398
|
|
|
15393
15399
|
.k-loader-spinner-3.k-loader-sm .k-loader-canvas {
|
|
15394
15400
|
margin: 0.125rem;
|
|
15395
|
-
width:
|
|
15396
|
-
height:
|
|
15401
|
+
width: 0.75rem;
|
|
15402
|
+
height: 0.6160254038rem;
|
|
15397
15403
|
}
|
|
15398
15404
|
|
|
15399
15405
|
.k-loader-spinner-3.k-loader-md .k-loader-canvas {
|
|
15400
15406
|
margin: 0.25rem;
|
|
15401
|
-
width:
|
|
15402
|
-
height:
|
|
15407
|
+
width: 1.5rem;
|
|
15408
|
+
height: 1.2320508076rem;
|
|
15403
15409
|
}
|
|
15404
15410
|
|
|
15405
15411
|
.k-loader-spinner-3.k-loader-lg .k-loader-canvas {
|
|
15406
15412
|
margin: 0.5rem;
|
|
15407
|
-
width:
|
|
15408
|
-
height:
|
|
15413
|
+
width: 3rem;
|
|
15414
|
+
height: 2.4641016152rem;
|
|
15409
15415
|
}
|
|
15410
15416
|
|
|
15411
15417
|
@keyframes spinner-4-segment-1 {
|
|
@@ -15785,7 +15791,9 @@ textarea.k-input-inner {
|
|
|
15785
15791
|
flex-flow: column nowrap;
|
|
15786
15792
|
flex: none;
|
|
15787
15793
|
position: relative;
|
|
15788
|
-
user-select: none;
|
|
15794
|
+
-webkit-user-select: none;
|
|
15795
|
+
-ms-user-select: none;
|
|
15796
|
+
user-select: none;
|
|
15789
15797
|
}
|
|
15790
15798
|
|
|
15791
15799
|
.k-menu-item-content {
|
|
@@ -15857,12 +15865,12 @@ textarea.k-input-inner {
|
|
|
15857
15865
|
|
|
15858
15866
|
.k-menu-vertical > .k-menu-item > .k-menu-link {
|
|
15859
15867
|
padding: 0.25rem 1rem;
|
|
15860
|
-
padding-right: calc(
|
|
15868
|
+
padding-right: calc(2rem + 16px);
|
|
15861
15869
|
}
|
|
15862
15870
|
|
|
15863
15871
|
.k-menu-vertical > .k-menu-item > .k-menu-link > .k-menu-expand-arrow {
|
|
15864
15872
|
margin-inline-start: 1rem;
|
|
15865
|
-
margin-inline-end: calc(
|
|
15873
|
+
margin-inline-end: calc(-1.5rem + -16px);
|
|
15866
15874
|
}
|
|
15867
15875
|
|
|
15868
15876
|
.k-menu-vertical > .k-separator {
|
|
@@ -15926,12 +15934,12 @@ textarea.k-input-inner {
|
|
|
15926
15934
|
|
|
15927
15935
|
.k-menu-group-sm .k-menu-link {
|
|
15928
15936
|
padding: 0.125rem 1rem;
|
|
15929
|
-
padding-inline-end: calc(
|
|
15937
|
+
padding-inline-end: calc(2rem + 16px);
|
|
15930
15938
|
}
|
|
15931
15939
|
|
|
15932
15940
|
.k-menu-group-sm .k-menu-expand-arrow {
|
|
15933
15941
|
margin-inline-start: 1rem;
|
|
15934
|
-
margin-inline-end: calc(
|
|
15942
|
+
margin-inline-end: calc(-1.5rem + -16px);
|
|
15935
15943
|
}
|
|
15936
15944
|
|
|
15937
15945
|
.k-menu-group-md {
|
|
@@ -15946,12 +15954,12 @@ textarea.k-input-inner {
|
|
|
15946
15954
|
|
|
15947
15955
|
.k-menu-group-md .k-menu-link {
|
|
15948
15956
|
padding: 0.25rem 1rem;
|
|
15949
|
-
padding-inline-end: calc(
|
|
15957
|
+
padding-inline-end: calc(2rem + 16px);
|
|
15950
15958
|
}
|
|
15951
15959
|
|
|
15952
15960
|
.k-menu-group-md .k-menu-expand-arrow {
|
|
15953
15961
|
margin-inline-start: 1rem;
|
|
15954
|
-
margin-inline-end: calc(
|
|
15962
|
+
margin-inline-end: calc(-1.5rem + -16px);
|
|
15955
15963
|
}
|
|
15956
15964
|
|
|
15957
15965
|
.k-menu-group-lg {
|
|
@@ -15966,12 +15974,12 @@ textarea.k-input-inner {
|
|
|
15966
15974
|
|
|
15967
15975
|
.k-menu-group-lg .k-menu-link {
|
|
15968
15976
|
padding: 0.375rem 1rem;
|
|
15969
|
-
padding-inline-end: calc(
|
|
15977
|
+
padding-inline-end: calc(2rem + 16px);
|
|
15970
15978
|
}
|
|
15971
15979
|
|
|
15972
15980
|
.k-menu-group-lg .k-menu-expand-arrow {
|
|
15973
15981
|
margin-inline-start: 1rem;
|
|
15974
|
-
margin-inline-end: calc(
|
|
15982
|
+
margin-inline-end: calc(-1.5rem + -16px);
|
|
15975
15983
|
}
|
|
15976
15984
|
|
|
15977
15985
|
.k-popups-wrapper {
|
|
@@ -16071,13 +16079,13 @@ textarea.k-input-inner {
|
|
|
16071
16079
|
.k-rtl .k-menu-vertical > .k-menu-item > .k-menu-link,
|
|
16072
16080
|
[dir="rtl"] .k-menu-vertical > .k-menu-item > .k-menu-link {
|
|
16073
16081
|
padding-right: 1rem;
|
|
16074
|
-
padding-left: calc(
|
|
16082
|
+
padding-left: calc(2rem + 16px);
|
|
16075
16083
|
}
|
|
16076
16084
|
|
|
16077
16085
|
.k-rtl .k-menu-group .k-menu-link,
|
|
16078
16086
|
[dir="rtl"] .k-menu-group .k-menu-link {
|
|
16079
16087
|
padding-right: 1rem;
|
|
16080
|
-
padding-left: calc(
|
|
16088
|
+
padding-left: calc(2rem + 16px);
|
|
16081
16089
|
}
|
|
16082
16090
|
|
|
16083
16091
|
.k-menu.k-menu-horizontal:not(.k-context-menu) {
|
|
@@ -16195,7 +16203,7 @@ textarea.k-input-inner {
|
|
|
16195
16203
|
|
|
16196
16204
|
.k-toolbar::before {
|
|
16197
16205
|
content: "";
|
|
16198
|
-
height: calc(
|
|
16206
|
+
height: calc(1.5em + 0.75rem + 2px);
|
|
16199
16207
|
margin-inline-start: -0.5rem;
|
|
16200
16208
|
}
|
|
16201
16209
|
|
|
@@ -16263,6 +16271,11 @@ textarea.k-input-inner {
|
|
|
16263
16271
|
align-items: center;
|
|
16264
16272
|
}
|
|
16265
16273
|
|
|
16274
|
+
.k-toolbar .k-toolbar-item:focus {
|
|
16275
|
+
text-decoration: none;
|
|
16276
|
+
outline: 0;
|
|
16277
|
+
}
|
|
16278
|
+
|
|
16266
16279
|
.k-toolbar-group {
|
|
16267
16280
|
display: flex;
|
|
16268
16281
|
flex-direction: inherit;
|
|
@@ -16378,6 +16391,11 @@ kendo-toolbar-renderer {
|
|
|
16378
16391
|
border-color: inherit;
|
|
16379
16392
|
}
|
|
16380
16393
|
|
|
16394
|
+
.k-toolbar .k-toolbar-item:focus,
|
|
16395
|
+
.k-toolbar .k-toolbar-item.k-focus {
|
|
16396
|
+
box-shadow: 0 0 0 0.25rem rgba(228, 231, 235, 0.5);
|
|
16397
|
+
}
|
|
16398
|
+
|
|
16381
16399
|
.k-overflow-container .k-button:hover, .k-overflow-container .k-button.k-hover {
|
|
16382
16400
|
color: #212529;
|
|
16383
16401
|
background: #e9ecef;
|
|
@@ -16671,7 +16689,7 @@ kendo-label > .k-label {
|
|
|
16671
16689
|
}
|
|
16672
16690
|
|
|
16673
16691
|
.k-form-horizontal .k-form-field-wrap {
|
|
16674
|
-
max-width: calc(
|
|
16692
|
+
max-width: calc(75% - 10px);
|
|
16675
16693
|
flex: 1 1 auto;
|
|
16676
16694
|
}
|
|
16677
16695
|
|
|
@@ -16738,7 +16756,7 @@ kendo-label > .k-label {
|
|
|
16738
16756
|
width: 25%;
|
|
16739
16757
|
text-align: right;
|
|
16740
16758
|
line-height: 1.5;
|
|
16741
|
-
padding: calc(
|
|
16759
|
+
padding: calc(0.5rem + 1px) 0;
|
|
16742
16760
|
padding-right: 1.5rem;
|
|
16743
16761
|
align-self: center;
|
|
16744
16762
|
}
|
|
@@ -16787,7 +16805,7 @@ kendo-label > .k-label {
|
|
|
16787
16805
|
|
|
16788
16806
|
.k-edit-label {
|
|
16789
16807
|
margin: 0 0 1rem 0;
|
|
16790
|
-
padding: calc(
|
|
16808
|
+
padding: calc(0.375rem + 1px) 0;
|
|
16791
16809
|
width: 30%;
|
|
16792
16810
|
line-height: 1.5;
|
|
16793
16811
|
text-align: right;
|
|
@@ -16804,7 +16822,7 @@ kendo-label > .k-label {
|
|
|
16804
16822
|
}
|
|
16805
16823
|
|
|
16806
16824
|
.k-edit-field.k-no-editor {
|
|
16807
|
-
padding: calc(
|
|
16825
|
+
padding: calc(0.375rem + 1px) 0;
|
|
16808
16826
|
}
|
|
16809
16827
|
|
|
16810
16828
|
.k-edit-field > .k-widget {
|
|
@@ -16856,12 +16874,12 @@ kendo-label > .k-label {
|
|
|
16856
16874
|
}
|
|
16857
16875
|
|
|
16858
16876
|
.k-form-inline .k-form-field > span:not(.k-widget) {
|
|
16859
|
-
padding: calc(
|
|
16877
|
+
padding: calc(0.5rem - 1px) 0;
|
|
16860
16878
|
padding-right: 1rem;
|
|
16861
16879
|
}
|
|
16862
16880
|
|
|
16863
16881
|
.k-edit-label {
|
|
16864
|
-
padding: calc(
|
|
16882
|
+
padding: calc(0.5rem - 1px) 0;
|
|
16865
16883
|
}
|
|
16866
16884
|
|
|
16867
16885
|
.k-form,
|
|
@@ -17056,7 +17074,7 @@ kendo-label > .k-label {
|
|
|
17056
17074
|
}
|
|
17057
17075
|
|
|
17058
17076
|
.k-validator-tooltip {
|
|
17059
|
-
margin-top:
|
|
17077
|
+
margin-top: 0.4rem;
|
|
17060
17078
|
width: auto;
|
|
17061
17079
|
white-space: normal;
|
|
17062
17080
|
display: flex;
|
|
@@ -17348,13 +17366,13 @@ kendo-label > .k-label {
|
|
|
17348
17366
|
.k-progressbar-horizontal > .k-state-selected,
|
|
17349
17367
|
.k-progressbar-horizontal > .k-selected {
|
|
17350
17368
|
width: 0;
|
|
17351
|
-
width: calc(
|
|
17369
|
+
width: calc(var( --kendo-progressbar-progress, 0 )*1%);
|
|
17352
17370
|
flex-direction: row;
|
|
17353
17371
|
}
|
|
17354
17372
|
|
|
17355
17373
|
.k-progressbar-horizontal > .k-state-selected > .k-progress-status-wrap,
|
|
17356
17374
|
.k-progressbar-horizontal > .k-selected > .k-progress-status-wrap {
|
|
17357
|
-
width: calc(
|
|
17375
|
+
width: calc(100%*(100/var( --kendo-progressbar-progress, 1 )));
|
|
17358
17376
|
}
|
|
17359
17377
|
|
|
17360
17378
|
.k-progressbar-horizontal > ul {
|
|
@@ -17385,13 +17403,14 @@ kendo-label > .k-label {
|
|
|
17385
17403
|
}
|
|
17386
17404
|
|
|
17387
17405
|
.k-progressbar-vertical .k-progress-status {
|
|
17388
|
-
writing-mode:
|
|
17406
|
+
-ms-writing-mode: tb-lr;
|
|
17407
|
+
writing-mode: vertical-lr;
|
|
17389
17408
|
}
|
|
17390
17409
|
|
|
17391
17410
|
.k-progressbar-vertical > .k-state-selected,
|
|
17392
17411
|
.k-progressbar-vertical > .k-selected {
|
|
17393
17412
|
height: 0;
|
|
17394
|
-
height: calc(
|
|
17413
|
+
height: calc(var( --kendo-progressbar-progress, 0 )*1%);
|
|
17395
17414
|
flex-direction: column-reverse;
|
|
17396
17415
|
align-self: flex-end;
|
|
17397
17416
|
align-items: flex-end;
|
|
@@ -17399,7 +17418,7 @@ kendo-label > .k-label {
|
|
|
17399
17418
|
|
|
17400
17419
|
.k-progressbar-vertical > .k-state-selected > .k-progress-status-wrap,
|
|
17401
17420
|
.k-progressbar-vertical > .k-selected > .k-progress-status-wrap {
|
|
17402
|
-
height: calc(
|
|
17421
|
+
height: calc(100%*(100/var( --kendo-progressbar-progress, 1 )));
|
|
17403
17422
|
}
|
|
17404
17423
|
|
|
17405
17424
|
.k-progressbar-vertical > ul {
|
|
@@ -17866,7 +17885,7 @@ kendo-label > .k-label {
|
|
|
17866
17885
|
.k-slider {
|
|
17867
17886
|
width: min-content;
|
|
17868
17887
|
height: min-content;
|
|
17869
|
-
gap:
|
|
17888
|
+
gap: 7px;
|
|
17870
17889
|
}
|
|
17871
17890
|
|
|
17872
17891
|
.k-slider .k-button {
|
|
@@ -17889,7 +17908,9 @@ kendo-label > .k-label {
|
|
|
17889
17908
|
display: flex;
|
|
17890
17909
|
flex-flow: inherit;
|
|
17891
17910
|
justify-content: space-between;
|
|
17892
|
-
user-select: none;
|
|
17911
|
+
-webkit-user-select: none;
|
|
17912
|
+
-ms-user-select: none;
|
|
17913
|
+
user-select: none;
|
|
17893
17914
|
}
|
|
17894
17915
|
|
|
17895
17916
|
.k-slider .k-slider-track-wrap .k-tick {
|
|
@@ -17929,31 +17950,31 @@ kendo-label > .k-label {
|
|
|
17929
17950
|
}
|
|
17930
17951
|
|
|
17931
17952
|
.k-slider-horizontal .k-slider-track-wrap .k-slider-selection {
|
|
17932
|
-
width: calc(
|
|
17933
|
-
left: calc(
|
|
17953
|
+
width: calc((var(--kendo-slider-end, 0) - var(--kendo-slider-start, 0))*1%);
|
|
17954
|
+
left: calc(var(--kendo-slider-start, 0)*1%);
|
|
17934
17955
|
}
|
|
17935
17956
|
|
|
17936
17957
|
.k-slider-horizontal .k-slider-track-wrap .k-draghandle-start {
|
|
17937
|
-
left: calc(
|
|
17958
|
+
left: calc(var(--kendo-slider-start, 0)*1%);
|
|
17938
17959
|
}
|
|
17939
17960
|
|
|
17940
17961
|
.k-slider-horizontal .k-slider-track-wrap .k-draghandle-end {
|
|
17941
|
-
left: calc(
|
|
17962
|
+
left: calc(var(--kendo-slider-end, 0)*1%);
|
|
17942
17963
|
}
|
|
17943
17964
|
|
|
17944
17965
|
[dir="rtl"] .k-slider-horizontal .k-slider-track-wrap .k-slider-selection {
|
|
17945
17966
|
left: unset;
|
|
17946
|
-
right: calc(
|
|
17967
|
+
right: calc(var(--kendo-slider-start, 0)*1%);
|
|
17947
17968
|
}
|
|
17948
17969
|
|
|
17949
17970
|
[dir="rtl"] .k-slider-horizontal .k-slider-track-wrap .k-draghandle-start {
|
|
17950
17971
|
left: unset;
|
|
17951
|
-
right: calc(
|
|
17972
|
+
right: calc(var(--kendo-slider-start, 0)*1%);
|
|
17952
17973
|
}
|
|
17953
17974
|
|
|
17954
17975
|
[dir="rtl"] .k-slider-horizontal .k-slider-track-wrap .k-draghandle-end {
|
|
17955
17976
|
left: unset;
|
|
17956
|
-
right: calc(
|
|
17977
|
+
right: calc(var(--kendo-slider-end, 0)*1%);
|
|
17957
17978
|
}
|
|
17958
17979
|
|
|
17959
17980
|
[dir="rtl"] .k-slider-horizontal .k-slider-track-wrap .k-draghandle {
|
|
@@ -17984,16 +18005,16 @@ kendo-label > .k-label {
|
|
|
17984
18005
|
}
|
|
17985
18006
|
|
|
17986
18007
|
.k-slider-vertical .k-slider-track-wrap .k-slider-selection {
|
|
17987
|
-
bottom: calc(
|
|
17988
|
-
height: calc(
|
|
18008
|
+
bottom: calc(var(--kendo-slider-start, 0)*1%);
|
|
18009
|
+
height: calc((var(--kendo-slider-end, 0) - var(--kendo-slider-start, 0))*1%);
|
|
17989
18010
|
}
|
|
17990
18011
|
|
|
17991
18012
|
.k-slider-vertical .k-slider-track-wrap .k-draghandle-start {
|
|
17992
|
-
bottom: calc(
|
|
18013
|
+
bottom: calc(var(--kendo-slider-start, 0)*1%);
|
|
17993
18014
|
}
|
|
17994
18015
|
|
|
17995
18016
|
.k-slider-vertical .k-slider-track-wrap .k-draghandle-end {
|
|
17996
|
-
bottom: calc(
|
|
18017
|
+
bottom: calc(var(--kendo-slider-end, 0)*1%);
|
|
17997
18018
|
}
|
|
17998
18019
|
|
|
17999
18020
|
.k-slider-vertical {
|
|
@@ -18221,12 +18242,12 @@ kendo-label > .k-label {
|
|
|
18221
18242
|
left: auto;
|
|
18222
18243
|
}
|
|
18223
18244
|
|
|
18224
|
-
.k-rtl .k-slider-horizontal .k-button .k-
|
|
18225
|
-
.k-rtl .k-slider-horizontal .k-button .k-
|
|
18226
|
-
.k-slider-horizontal.k-rtl .k-button .k-
|
|
18227
|
-
[dir="rtl"] .k-slider-horizontal .k-button .k-
|
|
18228
|
-
[dir="rtl"] .k-slider-horizontal .k-button .k-
|
|
18229
|
-
.k-slider-horizontal[dir="rtl"] .k-button .k-
|
|
18245
|
+
.k-rtl .k-slider-horizontal .k-button-increase .k-icon,
|
|
18246
|
+
.k-rtl .k-slider-horizontal .k-button-decrease .k-icon, .k-slider-horizontal.k-rtl .k-button-increase .k-icon,
|
|
18247
|
+
.k-slider-horizontal.k-rtl .k-button-decrease .k-icon,
|
|
18248
|
+
[dir="rtl"] .k-slider-horizontal .k-button-increase .k-icon,
|
|
18249
|
+
[dir="rtl"] .k-slider-horizontal .k-button-decrease .k-icon, .k-slider-horizontal[dir="rtl"] .k-button-increase .k-icon,
|
|
18250
|
+
.k-slider-horizontal[dir="rtl"] .k-button-decrease .k-icon {
|
|
18230
18251
|
transform: scaleX(-1);
|
|
18231
18252
|
}
|
|
18232
18253
|
|
|
@@ -18312,13 +18333,13 @@ kendo-label > .k-label {
|
|
|
18312
18333
|
}
|
|
18313
18334
|
|
|
18314
18335
|
.k-slider-horizontal .k-slider-wrap:not(.k-slider-buttons) {
|
|
18315
|
-
padding-left:
|
|
18316
|
-
padding-right:
|
|
18336
|
+
padding-left: 7px;
|
|
18337
|
+
padding-right: 7px;
|
|
18317
18338
|
}
|
|
18318
18339
|
|
|
18319
18340
|
.k-slider-vertical .k-slider-wrap:not(.k-slider-buttons) {
|
|
18320
|
-
padding-top:
|
|
18321
|
-
padding-bottom:
|
|
18341
|
+
padding-top: 7px;
|
|
18342
|
+
padding-bottom: 7px;
|
|
18322
18343
|
}
|
|
18323
18344
|
|
|
18324
18345
|
.k-slider {
|
|
@@ -18387,7 +18408,9 @@ kendo-label > .k-label {
|
|
|
18387
18408
|
overflow: hidden;
|
|
18388
18409
|
display: inline-flex;
|
|
18389
18410
|
flex-flow: column nowrap;
|
|
18390
|
-
user-select: none;
|
|
18411
|
+
-webkit-user-select: none;
|
|
18412
|
+
-ms-user-select: none;
|
|
18413
|
+
user-select: none;
|
|
18391
18414
|
-webkit-touch-callout: none;
|
|
18392
18415
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
18393
18416
|
}
|
|
@@ -19086,7 +19109,9 @@ kendo-label > .k-label {
|
|
|
19086
19109
|
overflow: hidden;
|
|
19087
19110
|
display: flex;
|
|
19088
19111
|
flex-flow: column nowrap;
|
|
19089
|
-
user-select: none;
|
|
19112
|
+
-webkit-user-select: none;
|
|
19113
|
+
-ms-user-select: none;
|
|
19114
|
+
user-select: none;
|
|
19090
19115
|
-webkit-touch-callout: none;
|
|
19091
19116
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
19092
19117
|
}
|
|
@@ -19130,12 +19155,12 @@ kendo-label > .k-label {
|
|
|
19130
19155
|
.k-time-highlight,
|
|
19131
19156
|
.k-time-list-highlight {
|
|
19132
19157
|
width: 100%;
|
|
19133
|
-
height:
|
|
19158
|
+
height: 2rem;
|
|
19134
19159
|
border-width: 1px 0px;
|
|
19135
19160
|
border-style: solid;
|
|
19136
19161
|
box-sizing: border-box;
|
|
19137
19162
|
position: absolute;
|
|
19138
|
-
top: calc(
|
|
19163
|
+
top: calc(50% + 0.65625rem);
|
|
19139
19164
|
left: 0;
|
|
19140
19165
|
right: 0;
|
|
19141
19166
|
transform: translateY(-50%);
|
|
@@ -19171,7 +19196,7 @@ kendo-label > .k-label {
|
|
|
19171
19196
|
width: 100%;
|
|
19172
19197
|
left: 0;
|
|
19173
19198
|
pointer-events: none;
|
|
19174
|
-
height: calc(
|
|
19199
|
+
height: calc(50% - 1rem);
|
|
19175
19200
|
box-sizing: border-box;
|
|
19176
19201
|
border-width: 0;
|
|
19177
19202
|
border-style: solid;
|
|
@@ -19261,14 +19286,14 @@ kendo-label > .k-label {
|
|
|
19261
19286
|
|
|
19262
19287
|
.k-time-separator {
|
|
19263
19288
|
width: 0;
|
|
19264
|
-
height:
|
|
19289
|
+
height: 2rem;
|
|
19265
19290
|
align-self: center;
|
|
19266
19291
|
display: inline-flex;
|
|
19267
19292
|
justify-content: center;
|
|
19268
19293
|
align-items: center;
|
|
19269
19294
|
position: relative;
|
|
19270
19295
|
z-index: 11;
|
|
19271
|
-
top:
|
|
19296
|
+
top: 0.65625rem;
|
|
19272
19297
|
}
|
|
19273
19298
|
|
|
19274
19299
|
.k-timeselector-sm {
|
|
@@ -19278,11 +19303,11 @@ kendo-label > .k-label {
|
|
|
19278
19303
|
|
|
19279
19304
|
.k-timeselector-sm .k-time-highlight,
|
|
19280
19305
|
.k-timeselector-sm .k-time-list-highlight {
|
|
19281
|
-
height:
|
|
19306
|
+
height: 1.75rem;
|
|
19282
19307
|
}
|
|
19283
19308
|
|
|
19284
19309
|
.k-timeselector-sm .k-time-separator {
|
|
19285
|
-
height:
|
|
19310
|
+
height: 1.75rem;
|
|
19286
19311
|
}
|
|
19287
19312
|
|
|
19288
19313
|
.k-timeselector-sm .k-time-list-item,
|
|
@@ -19297,11 +19322,11 @@ kendo-label > .k-label {
|
|
|
19297
19322
|
|
|
19298
19323
|
.k-timeselector-md .k-time-highlight,
|
|
19299
19324
|
.k-timeselector-md .k-time-list-highlight {
|
|
19300
|
-
height:
|
|
19325
|
+
height: 2rem;
|
|
19301
19326
|
}
|
|
19302
19327
|
|
|
19303
19328
|
.k-timeselector-md .k-time-separator {
|
|
19304
|
-
height:
|
|
19329
|
+
height: 2rem;
|
|
19305
19330
|
}
|
|
19306
19331
|
|
|
19307
19332
|
.k-timeselector-md .k-time-list-item,
|
|
@@ -19316,11 +19341,11 @@ kendo-label > .k-label {
|
|
|
19316
19341
|
|
|
19317
19342
|
.k-timeselector-lg .k-time-highlight,
|
|
19318
19343
|
.k-timeselector-lg .k-time-list-highlight {
|
|
19319
|
-
height:
|
|
19344
|
+
height: 2.5rem;
|
|
19320
19345
|
}
|
|
19321
19346
|
|
|
19322
19347
|
.k-timeselector-lg .k-time-separator {
|
|
19323
|
-
height:
|
|
19348
|
+
height: 2.5rem;
|
|
19324
19349
|
}
|
|
19325
19350
|
|
|
19326
19351
|
.k-timeselector-lg .k-time-list-item,
|
|
@@ -19523,7 +19548,9 @@ kendo-label > .k-label {
|
|
|
19523
19548
|
border-radius: 0.375rem;
|
|
19524
19549
|
position: relative;
|
|
19525
19550
|
flex: 1 1 auto;
|
|
19526
|
-
user-select: none;
|
|
19551
|
+
-webkit-user-select: none;
|
|
19552
|
+
-ms-user-select: none;
|
|
19553
|
+
user-select: none;
|
|
19527
19554
|
-ms-touch-action: pinch-zoom double-tap-zoom;
|
|
19528
19555
|
}
|
|
19529
19556
|
|
|
@@ -19651,7 +19678,7 @@ kendo-label > .k-label {
|
|
|
19651
19678
|
vertical-align: middle;
|
|
19652
19679
|
}
|
|
19653
19680
|
|
|
19654
|
-
.k-colorgradient-color-contrast .k-contrast-validation .k-
|
|
19681
|
+
.k-colorgradient-color-contrast .k-contrast-validation .k-icon + .k-icon {
|
|
19655
19682
|
margin-left: -13px;
|
|
19656
19683
|
}
|
|
19657
19684
|
|
|
@@ -19769,7 +19796,7 @@ kendo-label > .k-label {
|
|
|
19769
19796
|
}
|
|
19770
19797
|
|
|
19771
19798
|
.k-coloreditor-views {
|
|
19772
|
-
min-width: calc(
|
|
19799
|
+
min-width: calc(var(--kendo-color-preview-width, 1.5rem)*var(--kendo-color-preview-columns, 10));
|
|
19773
19800
|
padding: 1rem 1rem;
|
|
19774
19801
|
gap: 1rem;
|
|
19775
19802
|
}
|
|
@@ -19817,7 +19844,7 @@ kendo-label > .k-label {
|
|
|
19817
19844
|
}
|
|
19818
19845
|
|
|
19819
19846
|
.k-datetime-wrap {
|
|
19820
|
-
width: calc(
|
|
19847
|
+
width: calc(304px + 2rem);
|
|
19821
19848
|
overflow: hidden;
|
|
19822
19849
|
}
|
|
19823
19850
|
|
|
@@ -19834,7 +19861,7 @@ kendo-label > .k-label {
|
|
|
19834
19861
|
.k-datetime-calendar-wrap,
|
|
19835
19862
|
.k-datetime-time-wrap {
|
|
19836
19863
|
text-align: center;
|
|
19837
|
-
flex: 0 0 calc(
|
|
19864
|
+
flex: 0 0 calc(304px + 2rem);
|
|
19838
19865
|
}
|
|
19839
19866
|
|
|
19840
19867
|
.k-date-tab .k-datetime-selector {
|
|
@@ -20256,7 +20283,9 @@ kendo-label > .k-label {
|
|
|
20256
20283
|
line-height: 1;
|
|
20257
20284
|
position: relative;
|
|
20258
20285
|
cursor: pointer;
|
|
20259
|
-
user-select: none;
|
|
20286
|
+
-webkit-user-select: none;
|
|
20287
|
+
-ms-user-select: none;
|
|
20288
|
+
user-select: none;
|
|
20260
20289
|
-webkit-touch-callout: none;
|
|
20261
20290
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
20262
20291
|
}
|
|
@@ -20330,11 +20359,11 @@ kendo-label > .k-label {
|
|
|
20330
20359
|
}
|
|
20331
20360
|
|
|
20332
20361
|
.k-switch-sm.k-switch-on .k-switch-thumb-wrap {
|
|
20333
|
-
left: calc(
|
|
20362
|
+
left: calc(100% - 13px);
|
|
20334
20363
|
}
|
|
20335
20364
|
|
|
20336
20365
|
.k-switch-sm.k-switch-off .k-switch-thumb-wrap {
|
|
20337
|
-
left:
|
|
20366
|
+
left: 13px;
|
|
20338
20367
|
}
|
|
20339
20368
|
|
|
20340
20369
|
.k-switch-sm[dir="rtl"] .k-switch-label-on,
|
|
@@ -20352,13 +20381,13 @@ kendo-label > .k-label {
|
|
|
20352
20381
|
.k-switch-sm[dir="rtl"].k-switch-on .k-switch-thumb-wrap,
|
|
20353
20382
|
[dir="rtl"] .k-switch-sm.k-switch-on .k-switch-thumb-wrap,
|
|
20354
20383
|
.k-rtl .k-switch-sm.k-switch-on .k-switch-thumb-wrap {
|
|
20355
|
-
left:
|
|
20384
|
+
left: 13px;
|
|
20356
20385
|
}
|
|
20357
20386
|
|
|
20358
20387
|
.k-switch-sm[dir="rtl"].k-switch-off .k-switch-thumb-wrap,
|
|
20359
20388
|
[dir="rtl"] .k-switch-sm.k-switch-off .k-switch-thumb-wrap,
|
|
20360
20389
|
.k-rtl .k-switch-sm.k-switch-off .k-switch-thumb-wrap {
|
|
20361
|
-
left: calc(
|
|
20390
|
+
left: calc(100% - 13px);
|
|
20362
20391
|
}
|
|
20363
20392
|
|
|
20364
20393
|
.k-switch-md {
|
|
@@ -20377,11 +20406,11 @@ kendo-label > .k-label {
|
|
|
20377
20406
|
}
|
|
20378
20407
|
|
|
20379
20408
|
.k-switch-md.k-switch-on .k-switch-thumb-wrap {
|
|
20380
|
-
left: calc(
|
|
20409
|
+
left: calc(100% - 15px);
|
|
20381
20410
|
}
|
|
20382
20411
|
|
|
20383
20412
|
.k-switch-md.k-switch-off .k-switch-thumb-wrap {
|
|
20384
|
-
left:
|
|
20413
|
+
left: 15px;
|
|
20385
20414
|
}
|
|
20386
20415
|
|
|
20387
20416
|
.k-switch-md[dir="rtl"] .k-switch-label-on,
|
|
@@ -20399,13 +20428,13 @@ kendo-label > .k-label {
|
|
|
20399
20428
|
.k-switch-md[dir="rtl"].k-switch-on .k-switch-thumb-wrap,
|
|
20400
20429
|
[dir="rtl"] .k-switch-md.k-switch-on .k-switch-thumb-wrap,
|
|
20401
20430
|
.k-rtl .k-switch-md.k-switch-on .k-switch-thumb-wrap {
|
|
20402
|
-
left:
|
|
20431
|
+
left: 15px;
|
|
20403
20432
|
}
|
|
20404
20433
|
|
|
20405
20434
|
.k-switch-md[dir="rtl"].k-switch-off .k-switch-thumb-wrap,
|
|
20406
20435
|
[dir="rtl"] .k-switch-md.k-switch-off .k-switch-thumb-wrap,
|
|
20407
20436
|
.k-rtl .k-switch-md.k-switch-off .k-switch-thumb-wrap {
|
|
20408
|
-
left: calc(
|
|
20437
|
+
left: calc(100% - 15px);
|
|
20409
20438
|
}
|
|
20410
20439
|
|
|
20411
20440
|
.k-switch-lg {
|
|
@@ -20424,11 +20453,11 @@ kendo-label > .k-label {
|
|
|
20424
20453
|
}
|
|
20425
20454
|
|
|
20426
20455
|
.k-switch-lg.k-switch-on .k-switch-thumb-wrap {
|
|
20427
|
-
left: calc(
|
|
20456
|
+
left: calc(100% - 17px);
|
|
20428
20457
|
}
|
|
20429
20458
|
|
|
20430
20459
|
.k-switch-lg.k-switch-off .k-switch-thumb-wrap {
|
|
20431
|
-
left:
|
|
20460
|
+
left: 17px;
|
|
20432
20461
|
}
|
|
20433
20462
|
|
|
20434
20463
|
.k-switch-lg[dir="rtl"] .k-switch-label-on,
|
|
@@ -20446,13 +20475,13 @@ kendo-label > .k-label {
|
|
|
20446
20475
|
.k-switch-lg[dir="rtl"].k-switch-on .k-switch-thumb-wrap,
|
|
20447
20476
|
[dir="rtl"] .k-switch-lg.k-switch-on .k-switch-thumb-wrap,
|
|
20448
20477
|
.k-rtl .k-switch-lg.k-switch-on .k-switch-thumb-wrap {
|
|
20449
|
-
left:
|
|
20478
|
+
left: 17px;
|
|
20450
20479
|
}
|
|
20451
20480
|
|
|
20452
20481
|
.k-switch-lg[dir="rtl"].k-switch-off .k-switch-thumb-wrap,
|
|
20453
20482
|
[dir="rtl"] .k-switch-lg.k-switch-off .k-switch-thumb-wrap,
|
|
20454
20483
|
.k-rtl .k-switch-lg.k-switch-off .k-switch-thumb-wrap {
|
|
20455
|
-
left: calc(
|
|
20484
|
+
left: calc(100% - 17px);
|
|
20456
20485
|
}
|
|
20457
20486
|
|
|
20458
20487
|
.k-switch[dir="rtl"] .k-switch-thumb,
|
|
@@ -20773,7 +20802,7 @@ kendo-label > .k-label {
|
|
|
20773
20802
|
|
|
20774
20803
|
.k-upload .k-upload-files .k-file-invalid-extension-wrapper + .k-file-name-size-wrapper,
|
|
20775
20804
|
.k-upload .k-upload-files .k-file-single > .k-file-extension-wrapper + .k-file-name-size-wrapper {
|
|
20776
|
-
margin-left: calc(
|
|
20805
|
+
margin-left: calc(24px + 1rem);
|
|
20777
20806
|
min-height: 38px;
|
|
20778
20807
|
display: block;
|
|
20779
20808
|
overflow: hidden;
|
|
@@ -20781,7 +20810,7 @@ kendo-label > .k-label {
|
|
|
20781
20810
|
|
|
20782
20811
|
.k-upload .k-upload-files .k-multiple-files-invalid-extension-wrapper + .k-file-name-size-wrapper,
|
|
20783
20812
|
.k-upload .k-upload-files .k-multiple-files-extension-wrapper + .k-file-name-size-wrapper {
|
|
20784
|
-
margin-left: calc(
|
|
20813
|
+
margin-left: calc(24px + 1rem);
|
|
20785
20814
|
}
|
|
20786
20815
|
|
|
20787
20816
|
.k-upload .k-upload-files .k-file-extension-wrapper + .k-file-name-size-wrapper {
|
|
@@ -20899,7 +20928,7 @@ kendo-label > .k-label {
|
|
|
20899
20928
|
height: 2px;
|
|
20900
20929
|
position: absolute;
|
|
20901
20930
|
bottom: 0.5rem;
|
|
20902
|
-
width: calc(100% -
|
|
20931
|
+
width: calc(100% - 2rem);
|
|
20903
20932
|
}
|
|
20904
20933
|
|
|
20905
20934
|
.k-upload .k-progressbar .k-progress {
|
|
@@ -22110,7 +22139,7 @@ kendo-label > .k-label {
|
|
|
22110
22139
|
|
|
22111
22140
|
.k-window-actions {
|
|
22112
22141
|
margin: -5em 0;
|
|
22113
|
-
margin-inline-end:
|
|
22142
|
+
margin-inline-end: 0rem;
|
|
22114
22143
|
line-height: 1;
|
|
22115
22144
|
display: flex;
|
|
22116
22145
|
gap: 0.5rem;
|
|
@@ -22467,7 +22496,7 @@ kendo-drawer .k-drawer-wrapper {
|
|
|
22467
22496
|
}
|
|
22468
22497
|
|
|
22469
22498
|
.k-drawer-mini .k-drawer-wrapper {
|
|
22470
|
-
width: calc(
|
|
22499
|
+
width: calc(2rem + 16px);
|
|
22471
22500
|
}
|
|
22472
22501
|
|
|
22473
22502
|
.k-rtl.k-drawer-mini .k-drawer-start,
|
|
@@ -22638,7 +22667,8 @@ kendo-drawer .k-drawer-wrapper {
|
|
|
22638
22667
|
flex: none;
|
|
22639
22668
|
}
|
|
22640
22669
|
|
|
22641
|
-
.k-notification-wrap > .k-i-close
|
|
22670
|
+
.k-notification-wrap > .k-i-close,
|
|
22671
|
+
.k-notification-wrap > .k-i-x {
|
|
22642
22672
|
margin-right: 0;
|
|
22643
22673
|
margin-left: 0.5rem;
|
|
22644
22674
|
flex: none;
|
|
@@ -22656,7 +22686,9 @@ kendo-drawer .k-drawer-wrapper {
|
|
|
22656
22686
|
}
|
|
22657
22687
|
|
|
22658
22688
|
.k-rtl .k-notification .k-notification-wrap > .k-i-close,
|
|
22659
|
-
|
|
22689
|
+
.k-rtl .k-notification .k-notification-wrap > .k-i-x,
|
|
22690
|
+
[dir="rtl"] .k-notification .k-notification-wrap > .k-i-close,
|
|
22691
|
+
[dir="rtl"] .k-notification .k-notification-wrap > .k-i-x {
|
|
22660
22692
|
margin-left: 0;
|
|
22661
22693
|
margin-right: 0.5rem;
|
|
22662
22694
|
}
|
|
@@ -22667,7 +22699,8 @@ kendo-drawer .k-drawer-wrapper {
|
|
|
22667
22699
|
background-color: #ffffff;
|
|
22668
22700
|
}
|
|
22669
22701
|
|
|
22670
|
-
.k-notification-wrap > .k-i-close
|
|
22702
|
+
.k-notification-wrap > .k-i-close,
|
|
22703
|
+
.k-notification-wrap > .k-i-x {
|
|
22671
22704
|
color: inherit;
|
|
22672
22705
|
}
|
|
22673
22706
|
|
|
@@ -22771,6 +22804,7 @@ kendo-card-footer {
|
|
|
22771
22804
|
display: flex;
|
|
22772
22805
|
flex-direction: inherit;
|
|
22773
22806
|
overflow: hidden;
|
|
22807
|
+
position: relative;
|
|
22774
22808
|
}
|
|
22775
22809
|
|
|
22776
22810
|
.k-card-horizontal {
|
|
@@ -23034,7 +23068,7 @@ kendo-card-footer {
|
|
|
23034
23068
|
margin: 0;
|
|
23035
23069
|
width: 1.3em;
|
|
23036
23070
|
height: 1.3em;
|
|
23037
|
-
border-width: 1px
|
|
23071
|
+
border-width: 1px;
|
|
23038
23072
|
border-style: solid;
|
|
23039
23073
|
box-sizing: border-box;
|
|
23040
23074
|
position: absolute;
|
|
@@ -23043,25 +23077,25 @@ kendo-card-footer {
|
|
|
23043
23077
|
.k-card-callout.k-callout-n {
|
|
23044
23078
|
top: 0;
|
|
23045
23079
|
left: 50%;
|
|
23046
|
-
transform: translate(-50%, -50%) rotate(
|
|
23080
|
+
transform: translate(-50%, -50%) rotate(45deg);
|
|
23047
23081
|
}
|
|
23048
23082
|
|
|
23049
23083
|
.k-card-callout.k-callout-e {
|
|
23050
23084
|
top: 50%;
|
|
23051
23085
|
right: 0;
|
|
23052
|
-
transform: translate(50%, -50%) rotate(
|
|
23086
|
+
transform: translate(50%, -50%) rotate(-45deg);
|
|
23053
23087
|
}
|
|
23054
23088
|
|
|
23055
23089
|
.k-card-callout.k-callout-s {
|
|
23056
23090
|
bottom: 0;
|
|
23057
23091
|
left: 50%;
|
|
23058
|
-
transform: translate(-50%, 50%) rotate(
|
|
23092
|
+
transform: translate(-50%, 50%) rotate(45deg);
|
|
23059
23093
|
}
|
|
23060
23094
|
|
|
23061
23095
|
.k-card-callout.k-callout-w {
|
|
23062
23096
|
top: 50%;
|
|
23063
23097
|
left: 0;
|
|
23064
|
-
transform: translate(-50%, -50%) rotate(
|
|
23098
|
+
transform: translate(-50%, -50%) rotate(45deg);
|
|
23065
23099
|
}
|
|
23066
23100
|
|
|
23067
23101
|
.k-card-flat {
|
|
@@ -23078,6 +23112,11 @@ kendo-card-footer {
|
|
|
23078
23112
|
background-color: #ffffff;
|
|
23079
23113
|
}
|
|
23080
23114
|
|
|
23115
|
+
.k-card .k-card-inner {
|
|
23116
|
+
background-color: inherit;
|
|
23117
|
+
border-color: inherit;
|
|
23118
|
+
}
|
|
23119
|
+
|
|
23081
23120
|
.k-card:focus, .k-card.k-focus, .k-card.k-state-focus {
|
|
23082
23121
|
box-shadow: 0 0 0 3px rgba(222, 226, 230, 0.5);
|
|
23083
23122
|
}
|
|
@@ -23216,32 +23255,9 @@ kendo-card-footer {
|
|
|
23216
23255
|
}
|
|
23217
23256
|
|
|
23218
23257
|
.k-card-callout {
|
|
23219
|
-
border-color:
|
|
23220
|
-
background-color:
|
|
23221
|
-
|
|
23222
|
-
|
|
23223
|
-
.k-card:focus .k-card-callout.k-callout-n,
|
|
23224
|
-
.k-card.k-focus .k-card-callout.k-callout-n,
|
|
23225
|
-
.k-card.k-state-focus .k-card-callout.k-callout-n {
|
|
23226
|
-
box-shadow: 0 0 0 3px rgba(222, 226, 230, 0.5);
|
|
23227
|
-
}
|
|
23228
|
-
|
|
23229
|
-
.k-card:focus .k-card-callout.k-callout-e,
|
|
23230
|
-
.k-card.k-focus .k-card-callout.k-callout-e,
|
|
23231
|
-
.k-card.k-state-focus .k-card-callout.k-callout-e {
|
|
23232
|
-
box-shadow: 0 0 0 3px rgba(222, 226, 230, 0.5);
|
|
23233
|
-
}
|
|
23234
|
-
|
|
23235
|
-
.k-card:focus .k-card-callout.k-callout-s,
|
|
23236
|
-
.k-card.k-focus .k-card-callout.k-callout-s,
|
|
23237
|
-
.k-card.k-state-focus .k-card-callout.k-callout-s {
|
|
23238
|
-
box-shadow: 3px -3px 0 0 rgba(222, 226, 230, 0.5);
|
|
23239
|
-
}
|
|
23240
|
-
|
|
23241
|
-
.k-card:focus .k-card-callout.k-callout-w,
|
|
23242
|
-
.k-card.k-focus .k-card-callout.k-callout-w,
|
|
23243
|
-
.k-card.k-state-focus .k-card-callout.k-callout-w {
|
|
23244
|
-
box-shadow: 0 0 0 3px rgba(222, 226, 230, 0.5);
|
|
23258
|
+
border-color: inherit;
|
|
23259
|
+
background-color: inherit;
|
|
23260
|
+
box-shadow: inherit;
|
|
23245
23261
|
}
|
|
23246
23262
|
|
|
23247
23263
|
.k-popover {
|
|
@@ -23267,6 +23283,11 @@ kendo-card-footer {
|
|
|
23267
23283
|
box-sizing: border-box;
|
|
23268
23284
|
}
|
|
23269
23285
|
|
|
23286
|
+
.k-popover-inner {
|
|
23287
|
+
position: relative;
|
|
23288
|
+
border-radius: inherit;
|
|
23289
|
+
}
|
|
23290
|
+
|
|
23270
23291
|
.k-popover-header {
|
|
23271
23292
|
border-top-left-radius: 0.5rem;
|
|
23272
23293
|
border-top-right-radius: 0.5rem;
|
|
@@ -23287,7 +23308,7 @@ kendo-card-footer {
|
|
|
23287
23308
|
margin: 0;
|
|
23288
23309
|
width: 1.3em;
|
|
23289
23310
|
height: 1.3em;
|
|
23290
|
-
border-width: 1px
|
|
23311
|
+
border-width: 1px;
|
|
23291
23312
|
border-style: solid;
|
|
23292
23313
|
position: absolute;
|
|
23293
23314
|
}
|
|
@@ -23295,25 +23316,25 @@ kendo-card-footer {
|
|
|
23295
23316
|
.k-popover-callout.k-callout-n {
|
|
23296
23317
|
top: 0;
|
|
23297
23318
|
left: 50%;
|
|
23298
|
-
transform: translate(-50%, -50%) rotate(
|
|
23319
|
+
transform: translate(-50%, -50%) rotate(45deg);
|
|
23299
23320
|
}
|
|
23300
23321
|
|
|
23301
23322
|
.k-popover-callout.k-callout-e {
|
|
23302
23323
|
top: 50%;
|
|
23303
23324
|
right: 0;
|
|
23304
|
-
transform: translate(50%, -50%) rotate(
|
|
23325
|
+
transform: translate(50%, -50%) rotate(-45deg);
|
|
23305
23326
|
}
|
|
23306
23327
|
|
|
23307
23328
|
.k-popover-callout.k-callout-s {
|
|
23308
23329
|
bottom: 0;
|
|
23309
23330
|
left: 50%;
|
|
23310
|
-
transform: translate(-50%, 50%) rotate(
|
|
23331
|
+
transform: translate(-50%, 50%) rotate(45deg);
|
|
23311
23332
|
}
|
|
23312
23333
|
|
|
23313
23334
|
.k-popover-callout.k-callout-w {
|
|
23314
23335
|
top: 50%;
|
|
23315
23336
|
left: 0;
|
|
23316
|
-
transform: translate(-50%, -50%) rotate(
|
|
23337
|
+
transform: translate(-50%, -50%) rotate(45deg);
|
|
23317
23338
|
}
|
|
23318
23339
|
|
|
23319
23340
|
.k-popover {
|
|
@@ -23322,6 +23343,11 @@ kendo-card-footer {
|
|
|
23322
23343
|
background-color: #ffffff;
|
|
23323
23344
|
}
|
|
23324
23345
|
|
|
23346
|
+
.k-popover-inner {
|
|
23347
|
+
background-color: inherit;
|
|
23348
|
+
border-color: inherit;
|
|
23349
|
+
}
|
|
23350
|
+
|
|
23325
23351
|
.k-popover-header {
|
|
23326
23352
|
border-color: #dee2e6;
|
|
23327
23353
|
color: #212529;
|
|
@@ -23329,8 +23355,9 @@ kendo-card-footer {
|
|
|
23329
23355
|
}
|
|
23330
23356
|
|
|
23331
23357
|
.k-popover-callout {
|
|
23332
|
-
border-color:
|
|
23333
|
-
background-color:
|
|
23358
|
+
border-color: inherit;
|
|
23359
|
+
background-color: inherit;
|
|
23360
|
+
box-shadow: inherit;
|
|
23334
23361
|
}
|
|
23335
23362
|
|
|
23336
23363
|
.k-rpanel-left,
|
|
@@ -23415,7 +23442,7 @@ kendo-card-footer {
|
|
|
23415
23442
|
.k-bottom-nav-item {
|
|
23416
23443
|
padding: 0 0.5rem;
|
|
23417
23444
|
min-width: 72px;
|
|
23418
|
-
min-height: calc(
|
|
23445
|
+
min-height: calc(40px + 1rem);
|
|
23419
23446
|
border-width: 0;
|
|
23420
23447
|
box-sizing: border-box;
|
|
23421
23448
|
font: inherit;
|
|
@@ -23935,6 +23962,10 @@ kendo-card-footer {
|
|
|
23935
23962
|
z-index: 3;
|
|
23936
23963
|
}
|
|
23937
23964
|
|
|
23965
|
+
.k-rtl .k-pager-wrap .k-i-caret-alt-to-left,
|
|
23966
|
+
.k-rtl .k-pager-wrap .k-i-caret-alt-to-right,
|
|
23967
|
+
.k-rtl .k-pager-wrap .k-i-caret-alt-left,
|
|
23968
|
+
.k-rtl .k-pager-wrap .k-i-caret-alt-right,
|
|
23938
23969
|
.k-rtl .k-pager-wrap .k-i-arrow-end-left,
|
|
23939
23970
|
.k-rtl .k-pager-wrap .k-i-arrow-60-left,
|
|
23940
23971
|
.k-rtl .k-pager-wrap .k-i-arrow-60-right,
|
|
@@ -23942,7 +23973,11 @@ kendo-card-footer {
|
|
|
23942
23973
|
.k-rtl .k-pager-wrap .k-i-seek-w,
|
|
23943
23974
|
.k-rtl .k-pager-wrap .k-i-arrow-w,
|
|
23944
23975
|
.k-rtl .k-pager-wrap .k-i-arrow-e,
|
|
23945
|
-
.k-rtl .k-pager-wrap .k-i-seek-e, .k-pager-wrap[dir="rtl"] .k-i-
|
|
23976
|
+
.k-rtl .k-pager-wrap .k-i-seek-e, .k-pager-wrap[dir="rtl"] .k-i-caret-alt-to-left,
|
|
23977
|
+
.k-pager-wrap[dir="rtl"] .k-i-caret-alt-to-right,
|
|
23978
|
+
.k-pager-wrap[dir="rtl"] .k-i-caret-alt-left,
|
|
23979
|
+
.k-pager-wrap[dir="rtl"] .k-i-caret-alt-right,
|
|
23980
|
+
.k-pager-wrap[dir="rtl"] .k-i-arrow-end-left,
|
|
23946
23981
|
.k-pager-wrap[dir="rtl"] .k-i-arrow-60-left,
|
|
23947
23982
|
.k-pager-wrap[dir="rtl"] .k-i-arrow-60-right,
|
|
23948
23983
|
.k-pager-wrap[dir="rtl"] .k-i-arrow-end-right,
|
|
@@ -23950,6 +23985,10 @@ kendo-card-footer {
|
|
|
23950
23985
|
.k-pager-wrap[dir="rtl"] .k-i-arrow-w,
|
|
23951
23986
|
.k-pager-wrap[dir="rtl"] .k-i-arrow-e,
|
|
23952
23987
|
.k-pager-wrap[dir="rtl"] .k-i-seek-e,
|
|
23988
|
+
[dir="rtl"] .k-pager-wrap .k-i-caret-alt-to-left,
|
|
23989
|
+
[dir="rtl"] .k-pager-wrap .k-i-caret-alt-to-right,
|
|
23990
|
+
[dir="rtl"] .k-pager-wrap .k-i-caret-alt-left,
|
|
23991
|
+
[dir="rtl"] .k-pager-wrap .k-i-caret-alt-right,
|
|
23953
23992
|
[dir="rtl"] .k-pager-wrap .k-i-arrow-end-left,
|
|
23954
23993
|
[dir="rtl"] .k-pager-wrap .k-i-arrow-60-left,
|
|
23955
23994
|
[dir="rtl"] .k-pager-wrap .k-i-arrow-60-right,
|
|
@@ -23958,6 +23997,14 @@ kendo-card-footer {
|
|
|
23958
23997
|
[dir="rtl"] .k-pager-wrap .k-i-arrow-w,
|
|
23959
23998
|
[dir="rtl"] .k-pager-wrap .k-i-arrow-e,
|
|
23960
23999
|
[dir="rtl"] .k-pager-wrap .k-i-seek-e, .k-rtl
|
|
24000
|
+
.k-pager .k-i-caret-alt-to-left,
|
|
24001
|
+
.k-rtl
|
|
24002
|
+
.k-pager .k-i-caret-alt-to-right,
|
|
24003
|
+
.k-rtl
|
|
24004
|
+
.k-pager .k-i-caret-alt-left,
|
|
24005
|
+
.k-rtl
|
|
24006
|
+
.k-pager .k-i-caret-alt-right,
|
|
24007
|
+
.k-rtl
|
|
23961
24008
|
.k-pager .k-i-arrow-end-left,
|
|
23962
24009
|
.k-rtl
|
|
23963
24010
|
.k-pager .k-i-arrow-60-left,
|
|
@@ -23973,6 +24020,10 @@ kendo-card-footer {
|
|
|
23973
24020
|
.k-pager .k-i-arrow-e,
|
|
23974
24021
|
.k-rtl
|
|
23975
24022
|
.k-pager .k-i-seek-e,
|
|
24023
|
+
.k-pager[dir="rtl"] .k-i-caret-alt-to-left,
|
|
24024
|
+
.k-pager[dir="rtl"] .k-i-caret-alt-to-right,
|
|
24025
|
+
.k-pager[dir="rtl"] .k-i-caret-alt-left,
|
|
24026
|
+
.k-pager[dir="rtl"] .k-i-caret-alt-right,
|
|
23976
24027
|
.k-pager[dir="rtl"] .k-i-arrow-end-left,
|
|
23977
24028
|
.k-pager[dir="rtl"] .k-i-arrow-60-left,
|
|
23978
24029
|
.k-pager[dir="rtl"] .k-i-arrow-60-right,
|
|
@@ -23982,6 +24033,14 @@ kendo-card-footer {
|
|
|
23982
24033
|
.k-pager[dir="rtl"] .k-i-arrow-e,
|
|
23983
24034
|
.k-pager[dir="rtl"] .k-i-seek-e,
|
|
23984
24035
|
[dir="rtl"]
|
|
24036
|
+
.k-pager .k-i-caret-alt-to-left,
|
|
24037
|
+
[dir="rtl"]
|
|
24038
|
+
.k-pager .k-i-caret-alt-to-right,
|
|
24039
|
+
[dir="rtl"]
|
|
24040
|
+
.k-pager .k-i-caret-alt-left,
|
|
24041
|
+
[dir="rtl"]
|
|
24042
|
+
.k-pager .k-i-caret-alt-right,
|
|
24043
|
+
[dir="rtl"]
|
|
23985
24044
|
.k-pager .k-i-arrow-end-left,
|
|
23986
24045
|
[dir="rtl"]
|
|
23987
24046
|
.k-pager .k-i-arrow-60-left,
|
|
@@ -24009,8 +24068,8 @@ kendo-card-footer {
|
|
|
24009
24068
|
}
|
|
24010
24069
|
|
|
24011
24070
|
.k-pager-nav, .k-pager-numbers .k-link, .k-pager-refresh {
|
|
24012
|
-
min-width: calc(
|
|
24013
|
-
height: calc(
|
|
24071
|
+
min-width: calc(1.5em + 0.75rem + 2px);
|
|
24072
|
+
height: calc(1.5em + 0.75rem + 2px);
|
|
24014
24073
|
color: inherit;
|
|
24015
24074
|
text-align: center;
|
|
24016
24075
|
display: inline-flex;
|
|
@@ -24152,7 +24211,7 @@ kendo-card-footer {
|
|
|
24152
24211
|
.k-pager-sm .k-pager-numbers-wrap {
|
|
24153
24212
|
margin-left: 1rem;
|
|
24154
24213
|
margin-right: 1rem;
|
|
24155
|
-
height: calc(
|
|
24214
|
+
height: calc(1.5em + 0.75rem + 2px);
|
|
24156
24215
|
border-color: inherit;
|
|
24157
24216
|
}
|
|
24158
24217
|
|
|
@@ -24381,10 +24440,10 @@ kendo-card-footer {
|
|
|
24381
24440
|
pointer-events: none;
|
|
24382
24441
|
display: none;
|
|
24383
24442
|
position: absolute;
|
|
24384
|
-
top:
|
|
24385
|
-
right:
|
|
24386
|
-
bottom:
|
|
24387
|
-
left:
|
|
24443
|
+
top: -4px;
|
|
24444
|
+
right: -4px;
|
|
24445
|
+
bottom: -4px;
|
|
24446
|
+
left: -4px;
|
|
24388
24447
|
z-index: 2;
|
|
24389
24448
|
}
|
|
24390
24449
|
|
|
@@ -24410,7 +24469,7 @@ kendo-card-footer {
|
|
|
24410
24469
|
}
|
|
24411
24470
|
|
|
24412
24471
|
.k-stepper .k-step-label .k-step-text {
|
|
24413
|
-
max-width: calc(10em -
|
|
24472
|
+
max-width: calc(10em - 16px - 0.5rem);
|
|
24414
24473
|
flex-grow: 1;
|
|
24415
24474
|
white-space: nowrap;
|
|
24416
24475
|
text-overflow: ellipsis;
|
|
@@ -24481,13 +24540,13 @@ kendo-card-footer {
|
|
|
24481
24540
|
}
|
|
24482
24541
|
|
|
24483
24542
|
.k-step-list-horizontal .k-step-indicator + .k-step-label {
|
|
24484
|
-
margin-top:
|
|
24543
|
+
margin-top: 5px;
|
|
24485
24544
|
}
|
|
24486
24545
|
|
|
24487
24546
|
.k-step-list-horizontal ~ .k-progressbar {
|
|
24488
24547
|
width: 100%;
|
|
24489
24548
|
height: 2px;
|
|
24490
|
-
top:
|
|
24549
|
+
top: 17px;
|
|
24491
24550
|
}
|
|
24492
24551
|
|
|
24493
24552
|
.k-step-list-vertical {
|
|
@@ -24495,7 +24554,7 @@ kendo-card-footer {
|
|
|
24495
24554
|
}
|
|
24496
24555
|
|
|
24497
24556
|
.k-step-list-vertical .k-step {
|
|
24498
|
-
min-height:
|
|
24557
|
+
min-height: 54px;
|
|
24499
24558
|
}
|
|
24500
24559
|
|
|
24501
24560
|
.k-step-list-vertical .k-step-label {
|
|
@@ -24510,7 +24569,7 @@ kendo-card-footer {
|
|
|
24510
24569
|
width: 2px;
|
|
24511
24570
|
height: 100%;
|
|
24512
24571
|
min-height: 20px;
|
|
24513
|
-
left:
|
|
24572
|
+
left: 17px;
|
|
24514
24573
|
}
|
|
24515
24574
|
|
|
24516
24575
|
.k-step-list-vertical .k-step-content {
|
|
@@ -24549,7 +24608,7 @@ kendo-card-footer {
|
|
|
24549
24608
|
.k-rtl .k-stepper .k-step-list-vertical ~ .k-progressbar,
|
|
24550
24609
|
.k-stepper[dir="rtl"] .k-step-list-vertical ~ .k-progressbar {
|
|
24551
24610
|
left: auto;
|
|
24552
|
-
right:
|
|
24611
|
+
right: 17px;
|
|
24553
24612
|
}
|
|
24554
24613
|
|
|
24555
24614
|
.k-stepper {
|
|
@@ -25177,7 +25236,7 @@ kendo-card-footer {
|
|
|
25177
25236
|
|
|
25178
25237
|
.k-rtl .k-expander .k-expander-indicator, .k-expander.k-rtl .k-expander-indicator, .k-expander[dir="rtl"] .k-expander-indicator {
|
|
25179
25238
|
margin-left: 0;
|
|
25180
|
-
margin-right:
|
|
25239
|
+
margin-right: 0.75rem;
|
|
25181
25240
|
}
|
|
25182
25241
|
|
|
25183
25242
|
.k-expander-header {
|
|
@@ -25198,7 +25257,7 @@ kendo-card-footer {
|
|
|
25198
25257
|
}
|
|
25199
25258
|
|
|
25200
25259
|
.k-expander-indicator {
|
|
25201
|
-
margin-left:
|
|
25260
|
+
margin-left: 0.75rem;
|
|
25202
25261
|
}
|
|
25203
25262
|
|
|
25204
25263
|
.k-expander-content {
|
|
@@ -25289,7 +25348,9 @@ kendo-card-footer {
|
|
|
25289
25348
|
align-items: center;
|
|
25290
25349
|
align-content: center;
|
|
25291
25350
|
position: relative;
|
|
25292
|
-
user-select: none;
|
|
25351
|
+
-webkit-user-select: none;
|
|
25352
|
+
-ms-user-select: none;
|
|
25353
|
+
user-select: none;
|
|
25293
25354
|
cursor: default;
|
|
25294
25355
|
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;
|
|
25295
25356
|
}
|
|
@@ -25326,7 +25387,9 @@ kendo-card-footer {
|
|
|
25326
25387
|
align-items: center;
|
|
25327
25388
|
align-content: center;
|
|
25328
25389
|
position: relative;
|
|
25329
|
-
user-select: none;
|
|
25390
|
+
-webkit-user-select: none;
|
|
25391
|
+
-ms-user-select: none;
|
|
25392
|
+
user-select: none;
|
|
25330
25393
|
cursor: default;
|
|
25331
25394
|
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;
|
|
25332
25395
|
}
|
|
@@ -25364,7 +25427,7 @@ kendo-card-footer {
|
|
|
25364
25427
|
.k-panelbar .k-group .k-panelbar-expand,
|
|
25365
25428
|
.k-panelbar .k-group .k-panelbar-collapse,
|
|
25366
25429
|
.k-panelbar .k-panelbar-group .k-panelbar-toggle {
|
|
25367
|
-
margin-inline-end:
|
|
25430
|
+
margin-inline-end: 0rem;
|
|
25368
25431
|
}
|
|
25369
25432
|
|
|
25370
25433
|
.k-rtl .k-panelbar .k-group > .k-item.k-level-1 .k-link,
|
|
@@ -25408,7 +25471,7 @@ kendo-card-footer {
|
|
|
25408
25471
|
.k-ie .k-group .k-panelbar-expand,
|
|
25409
25472
|
.k-ie .k-group .k-panelbar-collapse,
|
|
25410
25473
|
.k-ie .k-panelbar-group .k-panelbar-toggle {
|
|
25411
|
-
margin-right:
|
|
25474
|
+
margin-right: 0rem;
|
|
25412
25475
|
}
|
|
25413
25476
|
|
|
25414
25477
|
.k-rtl .k-ie .k-panelbar-expand,
|
|
@@ -25429,7 +25492,7 @@ kendo-card-footer {
|
|
|
25429
25492
|
.k-ie.k-rtl .k-panelbar-group .k-panelbar-toggle, .k-ie[dir="rtl"] .k-group .k-panelbar-expand,
|
|
25430
25493
|
.k-ie[dir="rtl"] .k-group .k-panelbar-collapse,
|
|
25431
25494
|
.k-ie[dir="rtl"] .k-panelbar-group .k-panelbar-toggle {
|
|
25432
|
-
margin-left:
|
|
25495
|
+
margin-left: 0rem;
|
|
25433
25496
|
}
|
|
25434
25497
|
|
|
25435
25498
|
.k-panelbar {
|
|
@@ -25616,7 +25679,6 @@ kendo-card-footer {
|
|
|
25616
25679
|
outline: 0;
|
|
25617
25680
|
position: absolute;
|
|
25618
25681
|
-webkit-user-select: none;
|
|
25619
|
-
-moz-user-select: none;
|
|
25620
25682
|
-ms-user-select: none;
|
|
25621
25683
|
user-select: none;
|
|
25622
25684
|
display: flex;
|
|
@@ -25873,7 +25935,9 @@ kendo-card-footer {
|
|
|
25873
25935
|
.k-pane-wrapper .k-pane {
|
|
25874
25936
|
width: 100%;
|
|
25875
25937
|
height: 100%;
|
|
25876
|
-
user-select: none;
|
|
25938
|
+
-webkit-user-select: none;
|
|
25939
|
+
-ms-user-select: none;
|
|
25940
|
+
user-select: none;
|
|
25877
25941
|
box-sizing: border-box;
|
|
25878
25942
|
font-family: sans-serif;
|
|
25879
25943
|
overflow-x: hidden;
|
|
@@ -25955,8 +26019,8 @@ kendo-card-footer {
|
|
|
25955
26019
|
.k-grid-mobile .k-header a {
|
|
25956
26020
|
-webkit-touch-callout: none;
|
|
25957
26021
|
-webkit-user-select: none;
|
|
25958
|
-
-
|
|
25959
|
-
|
|
26022
|
+
-ms-user-select: none;
|
|
26023
|
+
user-select: none;
|
|
25960
26024
|
-webkit-user-drag: none;
|
|
25961
26025
|
-moz-user-drag: none;
|
|
25962
26026
|
}
|
|
@@ -26135,7 +26199,8 @@ kendo-card-footer {
|
|
|
26135
26199
|
border-radius: 50%;
|
|
26136
26200
|
}
|
|
26137
26201
|
|
|
26138
|
-
.k-scheduler-mobile .k-task .k-i-reload
|
|
26202
|
+
.k-scheduler-mobile .k-task .k-i-reload,
|
|
26203
|
+
.k-scheduler-mobile .k-task .k-i-arrow-rotate-cw {
|
|
26139
26204
|
font-size: 1em;
|
|
26140
26205
|
margin-right: .5em;
|
|
26141
26206
|
}
|
|
@@ -26155,7 +26220,8 @@ kendo-card-footer {
|
|
|
26155
26220
|
.k-scheduler-mobile .k-scheduler-times .k-scheduler-groupcolumn .k-scheduler-group-text,
|
|
26156
26221
|
.k-scheduler-mobile .k-scheduler-agenda .k-scheduler-group-cell .k-scheduler-group-text,
|
|
26157
26222
|
.k-scheduler-mobile .k-scheduler-agenda .k-scheduler-groupcolumn .k-scheduler-group-text {
|
|
26158
|
-
writing-mode:
|
|
26223
|
+
-ms-writing-mode: tb-lr;
|
|
26224
|
+
writing-mode: vertical-lr;
|
|
26159
26225
|
transform: rotate(180deg);
|
|
26160
26226
|
white-space: nowrap;
|
|
26161
26227
|
}
|
|
@@ -26518,7 +26584,7 @@ kendo-card-footer {
|
|
|
26518
26584
|
}
|
|
26519
26585
|
|
|
26520
26586
|
.k-grid .k-grouping-row .k-icon {
|
|
26521
|
-
margin-left: calc(
|
|
26587
|
+
margin-left: calc(8px - 0.5rem);
|
|
26522
26588
|
margin-right: 8px;
|
|
26523
26589
|
text-decoration: none;
|
|
26524
26590
|
}
|
|
@@ -26687,7 +26753,7 @@ kendo-card-footer {
|
|
|
26687
26753
|
.k-grid[dir="rtl"] .k-grid-header .k-filterable,
|
|
26688
26754
|
.k-rtl .k-grid .k-grid-header .k-with-icon,
|
|
26689
26755
|
.k-rtl .k-grid .k-grid-header .k-filterable {
|
|
26690
|
-
padding-left: calc(
|
|
26756
|
+
padding-left: calc(1.5em + 1.25rem + 2px);
|
|
26691
26757
|
padding-right: 0.5rem;
|
|
26692
26758
|
}
|
|
26693
26759
|
|
|
@@ -26745,7 +26811,7 @@ kendo-card-footer {
|
|
|
26745
26811
|
.k-grid[dir="rtl"] .k-grouping-row .k-icon,
|
|
26746
26812
|
.k-rtl .k-grid .k-grouping-row .k-icon {
|
|
26747
26813
|
margin-left: 8px;
|
|
26748
|
-
margin-right: calc(
|
|
26814
|
+
margin-right: calc(8px - 0.5rem);
|
|
26749
26815
|
}
|
|
26750
26816
|
|
|
26751
26817
|
.k-grid[dir="rtl"] .k-column-resizer,
|
|
@@ -26822,7 +26888,7 @@ kendo-card-footer {
|
|
|
26822
26888
|
|
|
26823
26889
|
.k-grouping-header::before {
|
|
26824
26890
|
content: "";
|
|
26825
|
-
height: calc(
|
|
26891
|
+
height: calc(1.5em + 0.75rem + 2px);
|
|
26826
26892
|
display: inline-block;
|
|
26827
26893
|
vertical-align: middle;
|
|
26828
26894
|
}
|
|
@@ -26901,7 +26967,7 @@ kendo-card-footer {
|
|
|
26901
26967
|
|
|
26902
26968
|
.k-grouping-dropclue {
|
|
26903
26969
|
width: 12px;
|
|
26904
|
-
height: calc(
|
|
26970
|
+
height: calc(1.5em + 0.75rem + 2px);
|
|
26905
26971
|
position: absolute;
|
|
26906
26972
|
top: 3px;
|
|
26907
26973
|
box-sizing: content-box;
|
|
@@ -26926,7 +26992,7 @@ kendo-card-footer {
|
|
|
26926
26992
|
width: 2px;
|
|
26927
26993
|
height: calc(100% - 6px);
|
|
26928
26994
|
top: 6px;
|
|
26929
|
-
left:
|
|
26995
|
+
left: 5px;
|
|
26930
26996
|
}
|
|
26931
26997
|
|
|
26932
26998
|
.k-grid-header-wrap,
|
|
@@ -26979,7 +27045,9 @@ div.k-grid-footer {
|
|
|
26979
27045
|
}
|
|
26980
27046
|
|
|
26981
27047
|
.k-grid-header.k-grid-draggable-header {
|
|
26982
|
-
user-select: none;
|
|
27048
|
+
-webkit-user-select: none;
|
|
27049
|
+
-ms-user-select: none;
|
|
27050
|
+
user-select: none;
|
|
26983
27051
|
touch-action: none;
|
|
26984
27052
|
}
|
|
26985
27053
|
|
|
@@ -27014,12 +27082,12 @@ div.k-grid-footer {
|
|
|
27014
27082
|
|
|
27015
27083
|
.k-grid-header .k-with-icon,
|
|
27016
27084
|
.k-grid-header .k-filterable {
|
|
27017
|
-
padding-right: calc(
|
|
27085
|
+
padding-right: calc(1.5em + 1.25rem + 2px);
|
|
27018
27086
|
}
|
|
27019
27087
|
|
|
27020
27088
|
.k-ie .k-grid-header .k-with-icon, .k-ie
|
|
27021
27089
|
.k-grid-header .k-filterable {
|
|
27022
|
-
padding-right: calc(
|
|
27090
|
+
padding-right: calc(1.5em + 1.25rem + 2px);
|
|
27023
27091
|
}
|
|
27024
27092
|
|
|
27025
27093
|
.k-grid-header .k-header > .k-link:focus {
|
|
@@ -27030,8 +27098,8 @@ div.k-grid-footer {
|
|
|
27030
27098
|
.k-grid-header .k-header-column-menu,
|
|
27031
27099
|
.k-grid-header .k-grid-header-menu {
|
|
27032
27100
|
padding: 0.375rem;
|
|
27033
|
-
width: calc(
|
|
27034
|
-
height: calc(
|
|
27101
|
+
width: calc(1.5em + 0.75rem + 2px);
|
|
27102
|
+
height: calc(1.5em + 0.75rem + 2px);
|
|
27035
27103
|
box-sizing: border-box;
|
|
27036
27104
|
outline: 0;
|
|
27037
27105
|
line-height: 1.5;
|
|
@@ -27041,7 +27109,7 @@ div.k-grid-footer {
|
|
|
27041
27109
|
justify-content: center;
|
|
27042
27110
|
position: absolute;
|
|
27043
27111
|
right: 0.5rem;
|
|
27044
|
-
bottom:
|
|
27112
|
+
bottom: 0.125rem;
|
|
27045
27113
|
z-index: 1;
|
|
27046
27114
|
}
|
|
27047
27115
|
|
|
@@ -27051,9 +27119,9 @@ div.k-grid-footer {
|
|
|
27051
27119
|
cursor: pointer;
|
|
27052
27120
|
}
|
|
27053
27121
|
|
|
27054
|
-
.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 {
|
|
27122
|
+
.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 {
|
|
27055
27123
|
vertical-align: text-top;
|
|
27056
|
-
margin-inline-start: calc(
|
|
27124
|
+
margin-inline-start: calc(1rem - 1px);
|
|
27057
27125
|
}
|
|
27058
27126
|
|
|
27059
27127
|
.k-grid-header .k-sort-order {
|
|
@@ -27465,7 +27533,7 @@ div.k-grid-norecords {
|
|
|
27465
27533
|
}
|
|
27466
27534
|
|
|
27467
27535
|
.k-filterable > .k-cell-inner {
|
|
27468
|
-
margin-inline-end: calc(-1
|
|
27536
|
+
margin-inline-end: calc(-1.5em + -1.25rem + -2px);
|
|
27469
27537
|
}
|
|
27470
27538
|
|
|
27471
27539
|
.k-filterable > .k-cell-inner .k-link {
|
|
@@ -27787,7 +27855,9 @@ div.k-grid-norecords {
|
|
|
27787
27855
|
display: flex;
|
|
27788
27856
|
flex: 0 0 auto;
|
|
27789
27857
|
position: relative;
|
|
27790
|
-
user-select: none;
|
|
27858
|
+
-webkit-user-select: none;
|
|
27859
|
+
-ms-user-select: none;
|
|
27860
|
+
user-select: none;
|
|
27791
27861
|
}
|
|
27792
27862
|
|
|
27793
27863
|
.k-column-menu-group-header-text {
|
|
@@ -27945,6 +28015,8 @@ div.k-grid-norecords {
|
|
|
27945
28015
|
|
|
27946
28016
|
.k-grid-header .k-i-sort-asc-sm,
|
|
27947
28017
|
.k-grid-header .k-i-sort-desc-sm,
|
|
28018
|
+
.k-grid-header .k-i-sort-asc-small,
|
|
28019
|
+
.k-grid-header .k-i-sort-desc-small,
|
|
27948
28020
|
.k-grid-header .k-sort-order {
|
|
27949
28021
|
color: #0d6efd;
|
|
27950
28022
|
}
|
|
@@ -28641,7 +28713,6 @@ kendo-grid tr.k-hover .k-grid-content-sticky.k-selected {
|
|
|
28641
28713
|
border-color: inherit;
|
|
28642
28714
|
box-sizing: border-box;
|
|
28643
28715
|
-webkit-user-select: none;
|
|
28644
|
-
-moz-user-select: none;
|
|
28645
28716
|
-ms-user-select: none;
|
|
28646
28717
|
user-select: none;
|
|
28647
28718
|
position: absolute;
|
|
@@ -28965,12 +29036,12 @@ kendo-grid tr.k-hover .k-grid-content-sticky.k-selected {
|
|
|
28965
29036
|
|
|
28966
29037
|
.k-spreadsheet-filter-menu > .k-menu .k-link,
|
|
28967
29038
|
.k-spreadsheet-filter-menu > .k-menu.k-menu-vertical .k-link {
|
|
28968
|
-
padding-left: calc(
|
|
29039
|
+
padding-left: calc(16px + 1rem);
|
|
28969
29040
|
}
|
|
28970
29041
|
|
|
28971
29042
|
.k-spreadsheet-filter-menu > .k-menu .k-icon,
|
|
28972
29043
|
.k-spreadsheet-filter-menu > .k-menu.k-menu-vertical .k-icon {
|
|
28973
|
-
margin-left: calc(-
|
|
29044
|
+
margin-left: calc(-16px + -0.5rem);
|
|
28974
29045
|
margin-right: 0.5rem;
|
|
28975
29046
|
}
|
|
28976
29047
|
|
|
@@ -29641,7 +29712,9 @@ kendo-grid tr.k-hover .k-grid-content-sticky.k-selected {
|
|
|
29641
29712
|
border-style: solid;
|
|
29642
29713
|
box-sizing: border-box;
|
|
29643
29714
|
cursor: pointer;
|
|
29644
|
-
user-select: none;
|
|
29715
|
+
-webkit-user-select: none;
|
|
29716
|
+
-ms-user-select: none;
|
|
29717
|
+
user-select: none;
|
|
29645
29718
|
}
|
|
29646
29719
|
|
|
29647
29720
|
.k-flex-row .k-pivotgrid-configurator-button, .k-d-flex-row .k-pivotgrid-configurator-button,
|
|
@@ -29652,7 +29725,8 @@ kendo-grid tr.k-hover .k-grid-content-sticky.k-selected {
|
|
|
29652
29725
|
|
|
29653
29726
|
.k-flex-row .k-pivotgrid-configurator-button span, .k-d-flex-row .k-pivotgrid-configurator-button span,
|
|
29654
29727
|
.k-flex-row-reverse .k-pivotgrid-configurator-button span {
|
|
29655
|
-
writing-mode:
|
|
29728
|
+
-ms-writing-mode: tb-rl;
|
|
29729
|
+
writing-mode: vertical-rl;
|
|
29656
29730
|
}
|
|
29657
29731
|
|
|
29658
29732
|
.k-flex-row .k-pivotgrid-configurator-button .k-icon, .k-d-flex-row .k-pivotgrid-configurator-button .k-icon,
|
|
@@ -29677,19 +29751,19 @@ kendo-grid tr.k-hover .k-grid-content-sticky.k-selected {
|
|
|
29677
29751
|
}
|
|
29678
29752
|
|
|
29679
29753
|
.k-flex-row .k-pivotgrid-configurator-overlay, .k-d-flex-row .k-pivotgrid-configurator-overlay {
|
|
29680
|
-
right: calc(
|
|
29754
|
+
right: calc(1.5em + 0.5rem + 2px);
|
|
29681
29755
|
}
|
|
29682
29756
|
|
|
29683
29757
|
.k-flex-row-reverse .k-pivotgrid-configurator-overlay {
|
|
29684
|
-
left: calc(
|
|
29758
|
+
left: calc(1.5em + 0.5rem + 2px);
|
|
29685
29759
|
}
|
|
29686
29760
|
|
|
29687
29761
|
.k-flex-col .k-pivotgrid-configurator-overlay, .k-d-flex-col .k-pivotgrid-configurator-overlay, .k-flex-column .k-pivotgrid-configurator-overlay {
|
|
29688
|
-
bottom: calc(
|
|
29762
|
+
bottom: calc(1.5em + 0.5rem + 2px);
|
|
29689
29763
|
}
|
|
29690
29764
|
|
|
29691
29765
|
.k-flex-col-reverse .k-pivotgrid-configurator-overlay, .k-flex-column-reverse .k-pivotgrid-configurator-overlay {
|
|
29692
|
-
top: calc(
|
|
29766
|
+
top: calc(1.5em + 0.5rem + 2px);
|
|
29693
29767
|
}
|
|
29694
29768
|
|
|
29695
29769
|
.k-pivotgrid-configurator-header {
|
|
@@ -30657,7 +30731,7 @@ kendo-grid tr.k-hover .k-grid-content-sticky.k-selected {
|
|
|
30657
30731
|
.k-filemanager-preview {
|
|
30658
30732
|
padding: 3rem 1rem 1rem;
|
|
30659
30733
|
width: 20%;
|
|
30660
|
-
min-height: calc(
|
|
30734
|
+
min-height: calc(7rem + 192px);
|
|
30661
30735
|
border-width: 0;
|
|
30662
30736
|
border-left-width: 1px;
|
|
30663
30737
|
border-style: solid;
|
|
@@ -31212,8 +31286,8 @@ kendo-editor.k-readonly .k-editor-content.k-focus {
|
|
|
31212
31286
|
|
|
31213
31287
|
.k-editor-toolbar .k-tool {
|
|
31214
31288
|
padding: 0.375rem;
|
|
31215
|
-
width: calc(
|
|
31216
|
-
height: calc(
|
|
31289
|
+
width: calc(1.5em + 0.75rem + 2px);
|
|
31290
|
+
height: calc(1.5em + 0.75rem + 2px);
|
|
31217
31291
|
}
|
|
31218
31292
|
|
|
31219
31293
|
.k-editor-toolbar .k-tool-text {
|
|
@@ -31275,7 +31349,9 @@ kendo-editor.k-readonly .k-editor-content.k-focus {
|
|
|
31275
31349
|
float: left;
|
|
31276
31350
|
opacity: 1;
|
|
31277
31351
|
cursor: text;
|
|
31278
|
-
user-select: none;
|
|
31352
|
+
-webkit-user-select: none;
|
|
31353
|
+
-ms-user-select: none;
|
|
31354
|
+
user-select: none;
|
|
31279
31355
|
}
|
|
31280
31356
|
|
|
31281
31357
|
td.k-editor-content {
|
|
@@ -31335,7 +31411,8 @@ td.k-editor-content {
|
|
|
31335
31411
|
cursor: se-resize;
|
|
31336
31412
|
}
|
|
31337
31413
|
|
|
31338
|
-
.k-editor .k-resize-handle .k-i-arrow-45-down-right
|
|
31414
|
+
.k-editor .k-resize-handle .k-i-arrow-45-down-right,
|
|
31415
|
+
.k-editor .k-resize-handle .k-i-caret-br {
|
|
31339
31416
|
display: none;
|
|
31340
31417
|
}
|
|
31341
31418
|
|
|
@@ -31385,7 +31462,7 @@ td.k-editor-content {
|
|
|
31385
31462
|
|
|
31386
31463
|
.k-editor-dialog .k-edit-label {
|
|
31387
31464
|
width: 30%;
|
|
31388
|
-
padding: calc(
|
|
31465
|
+
padding: calc(0.5rem + 1px) 0;
|
|
31389
31466
|
}
|
|
31390
31467
|
|
|
31391
31468
|
.k-editor-dialog .k-edit-field {
|
|
@@ -31813,7 +31890,7 @@ kendo-editor.k-readonly .k-editor-content.k-focus {
|
|
|
31813
31890
|
|
|
31814
31891
|
.k-imageeditor-action-pane {
|
|
31815
31892
|
padding: 2rem 1rem;
|
|
31816
|
-
width:
|
|
31893
|
+
width: 241px;
|
|
31817
31894
|
border-width: 0;
|
|
31818
31895
|
border-left-width: 1px;
|
|
31819
31896
|
border-style: solid;
|
|
@@ -31861,14 +31938,14 @@ kendo-editor.k-readonly .k-editor-content.k-focus {
|
|
|
31861
31938
|
|
|
31862
31939
|
.k-imageeditor-crop .k-resize-n,
|
|
31863
31940
|
.k-imageeditor-crop .k-resize-s {
|
|
31864
|
-
left: calc(
|
|
31941
|
+
left: calc(50% - 7.5px);
|
|
31865
31942
|
width: 15px;
|
|
31866
31943
|
height: 0;
|
|
31867
31944
|
}
|
|
31868
31945
|
|
|
31869
31946
|
.k-imageeditor-crop .k-resize-w,
|
|
31870
31947
|
.k-imageeditor-crop .k-resize-e {
|
|
31871
|
-
top: calc(
|
|
31948
|
+
top: calc(50% - 7.5px);
|
|
31872
31949
|
width: 0;
|
|
31873
31950
|
height: 15px;
|
|
31874
31951
|
}
|
|
@@ -31919,7 +31996,7 @@ kendo-editor.k-readonly .k-editor-content.k-focus {
|
|
|
31919
31996
|
.k-imageeditor-canvas {
|
|
31920
31997
|
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;
|
|
31921
31998
|
background-repeat: repeat, repeat;
|
|
31922
|
-
background-position: 0px 0px,
|
|
31999
|
+
background-position: 0px 0px, 5px 5px;
|
|
31923
32000
|
transform-origin: 0 0 0;
|
|
31924
32001
|
background-origin: padding-box, padding-box;
|
|
31925
32002
|
background-size: 10px 10px, 10px 10px;
|
|
@@ -31964,7 +32041,7 @@ kendo-editor.k-readonly .k-editor-content.k-focus {
|
|
|
31964
32041
|
}
|
|
31965
32042
|
|
|
31966
32043
|
.k-gantt .k-grid-header tr {
|
|
31967
|
-
height: calc(
|
|
32044
|
+
height: calc(1.5em + 1rem + 1px);
|
|
31968
32045
|
}
|
|
31969
32046
|
|
|
31970
32047
|
.k-gantt .k-grid-header .k-header {
|
|
@@ -31976,11 +32053,11 @@ kendo-editor.k-readonly .k-editor-content.k-focus {
|
|
|
31976
32053
|
}
|
|
31977
32054
|
|
|
31978
32055
|
.k-gantt .k-grid-content tr {
|
|
31979
|
-
height: calc(
|
|
32056
|
+
height: calc(1.5em + 1rem);
|
|
31980
32057
|
}
|
|
31981
32058
|
|
|
31982
32059
|
.k-gantt.k-gantt-planned .k-grid-content tr {
|
|
31983
|
-
height: calc(
|
|
32060
|
+
height: calc(2.55em + 1rem);
|
|
31984
32061
|
}
|
|
31985
32062
|
|
|
31986
32063
|
.k-gantt .k-gantt-layout {
|
|
@@ -32147,8 +32224,8 @@ kendo-editor.k-readonly .k-editor-content.k-focus {
|
|
|
32147
32224
|
.k-gantt-toolbar .k-gantt-pdf,
|
|
32148
32225
|
.k-gantt-toolbar .k-gantt-create {
|
|
32149
32226
|
padding: 0.375rem;
|
|
32150
|
-
width: calc(
|
|
32151
|
-
height: calc(
|
|
32227
|
+
width: calc(1.5em + 0.75rem + 2px);
|
|
32228
|
+
height: calc(1.5em + 0.75rem + 2px);
|
|
32152
32229
|
}
|
|
32153
32230
|
.k-gantt-toolbar .k-gantt-pdf .k-button-text,
|
|
32154
32231
|
.k-gantt-toolbar .k-gantt-create .k-button-text {
|
|
@@ -32184,7 +32261,7 @@ kendo-editor.k-readonly .k-editor-content.k-focus {
|
|
|
32184
32261
|
}
|
|
32185
32262
|
|
|
32186
32263
|
.k-gantt-treelist .k-grid-header tr {
|
|
32187
|
-
height: calc(
|
|
32264
|
+
height: calc(3em + 2rem + 2px);
|
|
32188
32265
|
vertical-align: bottom;
|
|
32189
32266
|
}
|
|
32190
32267
|
|
|
@@ -32198,7 +32275,7 @@ kendo-editor.k-readonly .k-editor-content.k-focus {
|
|
|
32198
32275
|
}
|
|
32199
32276
|
|
|
32200
32277
|
.k-gantt-treelist .k-gantt-treelist-nested-columns .k-grid-header tr {
|
|
32201
|
-
height: calc(
|
|
32278
|
+
height: calc(1.5em + 1rem + 1px);
|
|
32202
32279
|
}
|
|
32203
32280
|
|
|
32204
32281
|
.k-gantt-treelist.k-gantt-treelist-scrollable .k-grid-content {
|
|
@@ -32319,8 +32396,8 @@ kendo-editor.k-readonly .k-editor-content.k-focus {
|
|
|
32319
32396
|
}
|
|
32320
32397
|
|
|
32321
32398
|
.k-task-dot {
|
|
32322
|
-
width:
|
|
32323
|
-
height:
|
|
32399
|
+
width: 16px;
|
|
32400
|
+
height: 16px;
|
|
32324
32401
|
line-height: 1;
|
|
32325
32402
|
cursor: pointer;
|
|
32326
32403
|
display: none;
|
|
@@ -32591,7 +32668,7 @@ kendo-editor.k-readonly .k-editor-content.k-focus {
|
|
|
32591
32668
|
|
|
32592
32669
|
.k-task-planned .k-task-moment {
|
|
32593
32670
|
border-width: 2px;
|
|
32594
|
-
border-radius:
|
|
32671
|
+
border-radius: 5px;
|
|
32595
32672
|
border-style: solid;
|
|
32596
32673
|
height: 6px;
|
|
32597
32674
|
width: 6px;
|
|
@@ -32602,11 +32679,11 @@ kendo-editor.k-readonly .k-editor-content.k-focus {
|
|
|
32602
32679
|
}
|
|
32603
32680
|
|
|
32604
32681
|
.k-task-planned .k-task-moment.k-moment-left {
|
|
32605
|
-
margin-left:
|
|
32682
|
+
margin-left: -4px;
|
|
32606
32683
|
}
|
|
32607
32684
|
|
|
32608
32685
|
.k-task-planned:hover .k-task-duration {
|
|
32609
|
-
height:
|
|
32686
|
+
height: 3px;
|
|
32610
32687
|
}
|
|
32611
32688
|
|
|
32612
32689
|
.k-milestone-wrap .k-task-moment {
|
|
@@ -33413,7 +33490,7 @@ kendo-scheduler .k-event > div,
|
|
|
33413
33490
|
|
|
33414
33491
|
kendo-scheduler .k-event .k-event-template,
|
|
33415
33492
|
.k-event .k-event-template {
|
|
33416
|
-
line-height: calc(
|
|
33493
|
+
line-height: calc(25px - 0.5rem);
|
|
33417
33494
|
padding: 0.5rem 1rem;
|
|
33418
33495
|
}
|
|
33419
33496
|
|
|
@@ -33829,12 +33906,12 @@ kendo-scheduler .k-recurrence-editor {
|
|
|
33829
33906
|
}
|
|
33830
33907
|
|
|
33831
33908
|
.k-scheduler-yearview .k-day-indicator {
|
|
33832
|
-
margin-top: calc(
|
|
33909
|
+
margin-top: calc(38px - 0.5rem);
|
|
33833
33910
|
width: 3px;
|
|
33834
33911
|
height: 3px;
|
|
33835
33912
|
border-radius: 50%;
|
|
33836
33913
|
position: absolute;
|
|
33837
|
-
left: calc(
|
|
33914
|
+
left: calc(50% - 1.5px);
|
|
33838
33915
|
}
|
|
33839
33916
|
|
|
33840
33917
|
.k-scheduler-tooltip {
|
|
@@ -34006,9 +34083,13 @@ kendo-scheduler .k-recurrence-editor {
|
|
|
34006
34083
|
float: right;
|
|
34007
34084
|
}
|
|
34008
34085
|
|
|
34086
|
+
.k-rtl .k-scheduler .k-i-caret-alt-left,
|
|
34087
|
+
.k-rtl .k-scheduler .k-i-caret-alt-right,
|
|
34009
34088
|
.k-rtl .k-scheduler .k-i-arrow-60-left,
|
|
34010
34089
|
.k-rtl .k-scheduler .k-i-arrow-60-right,
|
|
34011
|
-
.k-rtl .k-scheduler .k-current-time-arrow-right, .k-rtl.k-scheduler .k-i-
|
|
34090
|
+
.k-rtl .k-scheduler .k-current-time-arrow-right, .k-rtl.k-scheduler .k-i-caret-alt-left,
|
|
34091
|
+
.k-rtl.k-scheduler .k-i-caret-alt-right,
|
|
34092
|
+
.k-rtl.k-scheduler .k-i-arrow-60-left,
|
|
34012
34093
|
.k-rtl.k-scheduler .k-i-arrow-60-right,
|
|
34013
34094
|
.k-rtl.k-scheduler .k-current-time-arrow-right {
|
|
34014
34095
|
transform: scaleX(-1);
|
|
@@ -34418,11 +34499,11 @@ kendo-scheduler .k-event .k-event-actions:first-child,
|
|
|
34418
34499
|
}
|
|
34419
34500
|
|
|
34420
34501
|
.k-chat .k-avatars .k-message-group:not(.k-alt):not(.k-no-avatar) {
|
|
34421
|
-
padding-left:
|
|
34502
|
+
padding-left: 40px;
|
|
34422
34503
|
}
|
|
34423
34504
|
|
|
34424
34505
|
.k-chat .k-avatars .k-message-group.k-alt:not(.k-no-avatar) {
|
|
34425
|
-
padding-right:
|
|
34506
|
+
padding-right: 40px;
|
|
34426
34507
|
}
|
|
34427
34508
|
|
|
34428
34509
|
.k-author {
|
|
@@ -34456,7 +34537,9 @@ kendo-scheduler .k-event .k-event-actions:first-child,
|
|
|
34456
34537
|
border-style: solid;
|
|
34457
34538
|
line-height: 1.25;
|
|
34458
34539
|
cursor: pointer;
|
|
34459
|
-
user-select: none;
|
|
34540
|
+
-webkit-user-select: none;
|
|
34541
|
+
-ms-user-select: none;
|
|
34542
|
+
user-select: none;
|
|
34460
34543
|
display: inline-block;
|
|
34461
34544
|
flex: 0 0 auto;
|
|
34462
34545
|
transition-property: color, background-color, border-color;
|
|
@@ -34718,13 +34801,13 @@ kendo-scheduler .k-event .k-event-actions:first-child,
|
|
|
34718
34801
|
.k-rtl .k-avatars .k-message-group:not(.k-alt):not(.k-no-avatar),
|
|
34719
34802
|
[dir="rtl"] .k-avatars .k-message-group:not(.k-alt):not(.k-no-avatar) {
|
|
34720
34803
|
padding-left: 0;
|
|
34721
|
-
padding-right:
|
|
34804
|
+
padding-right: 40px;
|
|
34722
34805
|
}
|
|
34723
34806
|
|
|
34724
34807
|
.k-rtl .k-avatars .k-message-group.k-alt:not(.k-no-avatar),
|
|
34725
34808
|
[dir="rtl"] .k-avatars .k-message-group.k-alt:not(.k-no-avatar) {
|
|
34726
34809
|
padding-right: 0;
|
|
34727
|
-
padding-left:
|
|
34810
|
+
padding-left: 40px;
|
|
34728
34811
|
}
|
|
34729
34812
|
|
|
34730
34813
|
.k-rtl .k-chat .k-card-deck .k-card-wrap + .k-card-wrap,
|
|
@@ -34955,7 +35038,7 @@ kendo-scheduler .k-event .k-event-actions:first-child,
|
|
|
34955
35038
|
border-radius: 0.375rem;
|
|
34956
35039
|
line-height: 1.5;
|
|
34957
35040
|
min-width: 80px;
|
|
34958
|
-
max-width:
|
|
35041
|
+
max-width: 160px;
|
|
34959
35042
|
position: relative;
|
|
34960
35043
|
z-index: 1;
|
|
34961
35044
|
}
|
|
@@ -35035,11 +35118,11 @@ kendo-scheduler .k-event .k-event-actions:first-child,
|
|
|
35035
35118
|
}
|
|
35036
35119
|
|
|
35037
35120
|
.k-timeline-vertical {
|
|
35038
|
-
padding-left:
|
|
35121
|
+
padding-left: 127px;
|
|
35039
35122
|
}
|
|
35040
35123
|
|
|
35041
35124
|
.k-timeline-vertical.k-timeline-dates-hidden {
|
|
35042
|
-
padding-left:
|
|
35125
|
+
padding-left: 77px;
|
|
35043
35126
|
}
|
|
35044
35127
|
|
|
35045
35128
|
.k-timeline-vertical::after {
|
|
@@ -35082,7 +35165,7 @@ kendo-scheduler .k-event .k-event-actions:first-child,
|
|
|
35082
35165
|
|
|
35083
35166
|
.k-timeline-vertical .k-timeline-card .k-card {
|
|
35084
35167
|
margin-left: 1rem;
|
|
35085
|
-
min-height:
|
|
35168
|
+
min-height: 70px;
|
|
35086
35169
|
width: 400px;
|
|
35087
35170
|
max-width: 100%;
|
|
35088
35171
|
}
|
|
@@ -35234,9 +35317,9 @@ kendo-scheduler .k-event .k-event-actions:first-child,
|
|
|
35234
35317
|
|
|
35235
35318
|
.k-timeline-horizontal .k-timeline-track-wrap::after {
|
|
35236
35319
|
top: auto;
|
|
35237
|
-
bottom:
|
|
35238
|
-
left:
|
|
35239
|
-
right:
|
|
35320
|
+
bottom: 22px;
|
|
35321
|
+
left: 36px;
|
|
35322
|
+
right: 36px;
|
|
35240
35323
|
transform: translateY(-50%);
|
|
35241
35324
|
height: 6px;
|
|
35242
35325
|
}
|
|
@@ -35253,7 +35336,7 @@ kendo-scheduler .k-event .k-event-actions:first-child,
|
|
|
35253
35336
|
}
|
|
35254
35337
|
|
|
35255
35338
|
.k-timeline-horizontal .k-timeline-track-wrap .k-timeline-flag {
|
|
35256
|
-
margin-bottom:
|
|
35339
|
+
margin-bottom: 22px;
|
|
35257
35340
|
position: relative;
|
|
35258
35341
|
min-width: 80px;
|
|
35259
35342
|
}
|
|
@@ -35279,7 +35362,7 @@ kendo-scheduler .k-event .k-event-actions:first-child,
|
|
|
35279
35362
|
height: 38px;
|
|
35280
35363
|
border-radius: 50%;
|
|
35281
35364
|
position: absolute;
|
|
35282
|
-
bottom:
|
|
35365
|
+
bottom: 11px;
|
|
35283
35366
|
z-index: 3;
|
|
35284
35367
|
display: flex;
|
|
35285
35368
|
align-items: center;
|
|
@@ -35300,7 +35383,7 @@ kendo-scheduler .k-event .k-event-actions:first-child,
|
|
|
35300
35383
|
}
|
|
35301
35384
|
|
|
35302
35385
|
.k-timeline-mobile .k-timeline-flag {
|
|
35303
|
-
max-width: calc(80px +
|
|
35386
|
+
max-width: calc(80px + 2rem);
|
|
35304
35387
|
}
|
|
35305
35388
|
|
|
35306
35389
|
.k-timeline-mobile.k-timeline-horizontal .k-timeline-flag-wrap {
|
|
@@ -35308,11 +35391,11 @@ kendo-scheduler .k-event .k-event-actions:first-child,
|
|
|
35308
35391
|
}
|
|
35309
35392
|
|
|
35310
35393
|
.k-timeline-mobile.k-timeline-vertical {
|
|
35311
|
-
padding-left: calc(
|
|
35394
|
+
padding-left: calc(1rem + 87px);
|
|
35312
35395
|
}
|
|
35313
35396
|
|
|
35314
35397
|
.k-timeline-mobile.k-timeline-vertical.k-timeline-dates-hidden {
|
|
35315
|
-
padding-left: calc(1rem +
|
|
35398
|
+
padding-left: calc(1rem + 37px);
|
|
35316
35399
|
}
|
|
35317
35400
|
|
|
35318
35401
|
.k-timeline-mobile.k-timeline-vertical.k-timeline-alternating {
|
|
@@ -35392,6 +35475,7 @@ kendo-scheduler .k-event .k-event-actions:first-child,
|
|
|
35392
35475
|
border-width: 1px;
|
|
35393
35476
|
border-style: solid;
|
|
35394
35477
|
box-sizing: border-box;
|
|
35478
|
+
position: relative;
|
|
35395
35479
|
outline: 0;
|
|
35396
35480
|
font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
35397
35481
|
font-size: 1rem;
|
|
@@ -35421,27 +35505,33 @@ kendo-scheduler .k-event .k-event-actions:first-child,
|
|
|
35421
35505
|
overflow: visible;
|
|
35422
35506
|
}
|
|
35423
35507
|
|
|
35424
|
-
.k-pdf-viewer .k-
|
|
35508
|
+
.k-pdf-viewer .k-canvas {
|
|
35509
|
+
display: flex;
|
|
35510
|
+
flex-direction: column;
|
|
35425
35511
|
flex: 1 1 auto;
|
|
35426
35512
|
outline: none;
|
|
35427
35513
|
}
|
|
35428
35514
|
|
|
35429
|
-
.k-pdf-viewer .k-
|
|
35515
|
+
.k-pdf-viewer .k-canvas .k-enable-text-select, .k-pdf-viewer .k-canvas.k-enable-text-select {
|
|
35430
35516
|
-webkit-user-select: text;
|
|
35431
|
-
-moz-user-select: text;
|
|
35432
35517
|
-ms-user-select: text;
|
|
35433
35518
|
user-select: text;
|
|
35434
35519
|
cursor: text;
|
|
35435
35520
|
}
|
|
35436
35521
|
|
|
35437
|
-
.k-pdf-viewer .k-
|
|
35522
|
+
.k-pdf-viewer .k-canvas .k-enable-panning, .k-pdf-viewer .k-canvas.k-enable-panning {
|
|
35438
35523
|
cursor: grab;
|
|
35439
35524
|
}
|
|
35440
35525
|
|
|
35441
|
-
.k-pdf-viewer .k-
|
|
35526
|
+
.k-pdf-viewer .k-canvas .k-enable-panning span::selection,
|
|
35527
|
+
.k-pdf-viewer .k-canvas.k-enable-panning span::selection {
|
|
35442
35528
|
background-color: transparent;
|
|
35443
35529
|
}
|
|
35444
35530
|
|
|
35531
|
+
.k-pdf-viewer .k-pdf-viewer-pages {
|
|
35532
|
+
flex: 1 1 auto;
|
|
35533
|
+
}
|
|
35534
|
+
|
|
35445
35535
|
.k-pdf-viewer .k-page {
|
|
35446
35536
|
position: relative;
|
|
35447
35537
|
margin: 30px auto;
|
|
@@ -35470,11 +35560,38 @@ kendo-scheduler .k-event .k-event-actions:first-child,
|
|
|
35470
35560
|
color: transparent;
|
|
35471
35561
|
}
|
|
35472
35562
|
|
|
35563
|
+
.k-pdf-viewer .k-page .k-text-layer .k-search-highlight-mark {
|
|
35564
|
+
color: transparent;
|
|
35565
|
+
}
|
|
35566
|
+
|
|
35567
|
+
.k-pdf-viewer .k-blank-page {
|
|
35568
|
+
margin: 0;
|
|
35569
|
+
display: flex;
|
|
35570
|
+
flex-flow: column nowrap;
|
|
35571
|
+
width: 100%;
|
|
35572
|
+
height: 100%;
|
|
35573
|
+
align-items: center;
|
|
35574
|
+
justify-content: center;
|
|
35575
|
+
background-color: inherit !important;
|
|
35576
|
+
}
|
|
35577
|
+
|
|
35578
|
+
.k-pdf-viewer .k-blank-page .k-upload,
|
|
35579
|
+
.k-pdf-viewer .k-blank-page .k-dropzone,
|
|
35580
|
+
.k-pdf-viewer .k-blank-page .k-dropzone-inner {
|
|
35581
|
+
border: 0;
|
|
35582
|
+
background: none;
|
|
35583
|
+
}
|
|
35584
|
+
|
|
35585
|
+
.k-pdf-viewer .k-blank-page > .k-icon {
|
|
35586
|
+
font-size: 48px;
|
|
35587
|
+
}
|
|
35588
|
+
|
|
35473
35589
|
.k-pdf-viewer-search-dialog {
|
|
35474
|
-
padding: 0
|
|
35590
|
+
padding: 0 !important;
|
|
35475
35591
|
}
|
|
35476
35592
|
|
|
35477
|
-
.k-
|
|
35593
|
+
.k-search-panel, .k-search-container {
|
|
35594
|
+
padding: 1rem 0.5rem;
|
|
35478
35595
|
display: flex;
|
|
35479
35596
|
gap: 0.5rem;
|
|
35480
35597
|
flex-flow: row nowrap;
|
|
@@ -35483,22 +35600,32 @@ kendo-scheduler .k-event .k-event-actions:first-child,
|
|
|
35483
35600
|
align-items: center;
|
|
35484
35601
|
}
|
|
35485
35602
|
|
|
35486
|
-
.k-
|
|
35603
|
+
.k-search-panel .k-search-dialog-draghandle, .k-search-container .k-search-dialog-draghandle {
|
|
35487
35604
|
cursor: move;
|
|
35488
35605
|
margin-left: 0;
|
|
35489
35606
|
}
|
|
35490
35607
|
|
|
35491
|
-
.k-
|
|
35608
|
+
.k-search-panel .k-textbox, .k-search-container .k-textbox {
|
|
35492
35609
|
width: 10em;
|
|
35493
35610
|
flex: none;
|
|
35494
35611
|
}
|
|
35495
35612
|
|
|
35496
|
-
.k-
|
|
35613
|
+
.k-search-panel .k-textbox .k-button, .k-search-container .k-textbox .k-button {
|
|
35497
35614
|
border-width: 0;
|
|
35498
35615
|
}
|
|
35499
35616
|
|
|
35500
|
-
.k-
|
|
35501
|
-
|
|
35617
|
+
.k-search-panel .k-search-matches, .k-search-container .k-search-matches {
|
|
35618
|
+
display: inline-flex;
|
|
35619
|
+
gap: 0.5rem;
|
|
35620
|
+
}
|
|
35621
|
+
|
|
35622
|
+
.k-pdf-viewer-canvas > .k-search-panel, .k-pdf-viewer-canvas > .k-search-container {
|
|
35623
|
+
width: max-content;
|
|
35624
|
+
margin-top: calc(-1.5em + -2.75rem + -3px);
|
|
35625
|
+
border-width: 1px;
|
|
35626
|
+
border-style: solid;
|
|
35627
|
+
border-radius: 0.25rem;
|
|
35628
|
+
z-index: 10;
|
|
35502
35629
|
}
|
|
35503
35630
|
|
|
35504
35631
|
.k-ie .k-pdf-viewer-search-dialog .k-search-container > * + * {
|
|
@@ -35522,13 +35649,29 @@ kendo-scheduler .k-event .k-event-actions:first-child,
|
|
|
35522
35649
|
box-shadow: 0 0 15px #dee2e6;
|
|
35523
35650
|
}
|
|
35524
35651
|
|
|
35652
|
+
.k-pdf-viewer .k-blank-page > .k-icon {
|
|
35653
|
+
color: #afb1b2;
|
|
35654
|
+
}
|
|
35655
|
+
|
|
35525
35656
|
.k-pdf-viewer .k-search-highlight {
|
|
35526
35657
|
background-color: #212529;
|
|
35527
35658
|
}
|
|
35528
35659
|
|
|
35660
|
+
.k-pdf-viewer .k-search-highlight-mark {
|
|
35661
|
+
background-color: yellow;
|
|
35662
|
+
}
|
|
35663
|
+
|
|
35664
|
+
.k-pdf-viewer-canvas > .k-search-panel, .k-pdf-viewer-canvas > .k-search-container {
|
|
35665
|
+
border-color: #dee2e6;
|
|
35666
|
+
color: #212529;
|
|
35667
|
+
background-color: #ffffff;
|
|
35668
|
+
}
|
|
35669
|
+
|
|
35529
35670
|
.km-scrollview,
|
|
35530
35671
|
.km-scroll-container {
|
|
35531
|
-
user-select: none;
|
|
35672
|
+
-webkit-user-select: none;
|
|
35673
|
+
-ms-user-select: none;
|
|
35674
|
+
user-select: none;
|
|
35532
35675
|
border-collapse: separate;
|
|
35533
35676
|
}
|
|
35534
35677
|
|
|
@@ -35643,7 +35786,9 @@ kendo-scrollview.k-scrollview,
|
|
|
35643
35786
|
|
|
35644
35787
|
.k-scrollview-wrap .k-scrollview img,
|
|
35645
35788
|
.k-scrollview .k-scrollview-wrap img {
|
|
35646
|
-
user-select: none;
|
|
35789
|
+
-webkit-user-select: none;
|
|
35790
|
+
-ms-user-select: none;
|
|
35791
|
+
user-select: none;
|
|
35647
35792
|
}
|
|
35648
35793
|
|
|
35649
35794
|
.k-scrollview-wrap .k-scrollview > li,
|
|
@@ -35665,20 +35810,20 @@ kendo-scrollview.k-scrollview,
|
|
|
35665
35810
|
.k-scrollview-wrap.k-scrollview-animate {
|
|
35666
35811
|
display: flex;
|
|
35667
35812
|
flex-flow: row nowrap;
|
|
35668
|
-
width: calc(
|
|
35813
|
+
width: calc(var(--kendo-scrollview-views, 1)*100%);
|
|
35669
35814
|
transition-duration: 0.3s;
|
|
35670
35815
|
transition-timing-function: ease-in-out;
|
|
35671
|
-
transform: translateX(calc(
|
|
35816
|
+
transform: translateX(calc(-100%/var(--kendo-scrollview-views, 1)*(var(--kendo-scrollview-current, 1) - 1)));
|
|
35672
35817
|
}
|
|
35673
35818
|
|
|
35674
35819
|
.k-scrollview-wrap.k-scrollview-animate .k-scrollview-view {
|
|
35675
|
-
width: calc(
|
|
35676
|
-
flex: 0 0 calc(
|
|
35820
|
+
width: calc(100%/var(--kendo-scrollview-views, 1));
|
|
35821
|
+
flex: 0 0 calc(100%/var(--kendo-scrollview-views, 1));
|
|
35677
35822
|
}
|
|
35678
35823
|
|
|
35679
35824
|
[dir="rtl"] .k-scrollview-wrap.k-scrollview-animate,
|
|
35680
35825
|
.k-rtl .k-scrollview-wrap.k-scrollview-animate {
|
|
35681
|
-
transform: translateX(calc(
|
|
35826
|
+
transform: translateX(calc(100%/var(--kendo-scrollview-views, 1)*(var(--kendo-scrollview-current, 1) - 1)));
|
|
35682
35827
|
}
|
|
35683
35828
|
|
|
35684
35829
|
kendo-scrollview.k-scrollview-wrap kendo-scrollview-pager,
|
|
@@ -35690,7 +35835,7 @@ kendo-scrollview.k-scrollview kendo-scrollview-pager,
|
|
|
35690
35835
|
left: 0;
|
|
35691
35836
|
right: 0;
|
|
35692
35837
|
bottom: 0;
|
|
35693
|
-
height:
|
|
35838
|
+
height: 50px;
|
|
35694
35839
|
text-align: center;
|
|
35695
35840
|
}
|
|
35696
35841
|
|
|
@@ -35766,7 +35911,9 @@ kendo-scrollview.k-scrollview .k-scrollview-nav {
|
|
|
35766
35911
|
height: 60%;
|
|
35767
35912
|
top: 20%;
|
|
35768
35913
|
text-decoration: none;
|
|
35769
|
-
user-select: none;
|
|
35914
|
+
-webkit-user-select: none;
|
|
35915
|
+
-ms-user-select: none;
|
|
35916
|
+
user-select: none;
|
|
35770
35917
|
cursor: pointer;
|
|
35771
35918
|
}
|
|
35772
35919
|
|
|
@@ -35967,8 +36114,8 @@ kendo-scrollview.k-scrollview-wrap.k-scrollview-light .k-scrollview-nav-wrap,
|
|
|
35967
36114
|
z-index: 12000;
|
|
35968
36115
|
}
|
|
35969
36116
|
|
|
35970
|
-
.k-sparkline-tooltip-wrapper
|
|
35971
|
-
.k-chart-tooltip-wrapper
|
|
36117
|
+
.k-sparkline-tooltip-wrapper .k-popup,
|
|
36118
|
+
.k-chart-tooltip-wrapper .k-popup {
|
|
35972
36119
|
padding: 0;
|
|
35973
36120
|
border-width: 0;
|
|
35974
36121
|
background: transparent;
|
|
@@ -36231,11 +36378,11 @@ kendo-scrollview.k-scrollview-wrap.k-scrollview-light .k-scrollview-nav-wrap,
|
|
|
36231
36378
|
}
|
|
36232
36379
|
|
|
36233
36380
|
.k-treemap .k-treemap-title + .k-treemap-wrap {
|
|
36234
|
-
top: calc(
|
|
36381
|
+
top: calc(2rem + 1px);
|
|
36235
36382
|
}
|
|
36236
36383
|
|
|
36237
36384
|
.k-treemap .k-treemap-title-vertical + .k-treemap-wrap {
|
|
36238
|
-
left: calc(
|
|
36385
|
+
left: calc(2rem + 1px);
|
|
36239
36386
|
}
|
|
36240
36387
|
|
|
36241
36388
|
.k-treemap .k-leaf {
|
|
@@ -36635,7 +36782,9 @@ kendo-scrollview.k-scrollview-wrap.k-scrollview-light .k-scrollview-nav-wrap,
|
|
|
36635
36782
|
.k-map .km-scroll-wrapper {
|
|
36636
36783
|
width: 100%;
|
|
36637
36784
|
height: 100%;
|
|
36638
|
-
user-select: none;
|
|
36785
|
+
-webkit-user-select: none;
|
|
36786
|
+
-ms-user-select: none;
|
|
36787
|
+
user-select: none;
|
|
36639
36788
|
position: absolute;
|
|
36640
36789
|
}
|
|
36641
36790
|
|
|
@@ -36676,8 +36825,8 @@ kendo-scrollview.k-scrollview-wrap.k-scrollview-light .k-scrollview-nav-wrap,
|
|
|
36676
36825
|
|
|
36677
36826
|
.k-navigator {
|
|
36678
36827
|
margin: 1rem;
|
|
36679
|
-
width:
|
|
36680
|
-
height:
|
|
36828
|
+
width: 52px;
|
|
36829
|
+
height: 52px;
|
|
36681
36830
|
border-width: 1px;
|
|
36682
36831
|
border-style: solid;
|
|
36683
36832
|
box-sizing: border-box;
|
|
@@ -36945,8 +37094,8 @@ kendo-scrollview.k-scrollview-wrap.k-scrollview-light .k-scrollview-nav-wrap,
|
|
|
36945
37094
|
}
|
|
36946
37095
|
|
|
36947
37096
|
.k-signature-sm .k-signature-line {
|
|
36948
|
-
width: calc(
|
|
36949
|
-
bottom: calc(
|
|
37097
|
+
width: calc(100% - 0.5rem);
|
|
37098
|
+
bottom: calc(1.5em + 1rem + 2px);
|
|
36950
37099
|
}
|
|
36951
37100
|
|
|
36952
37101
|
.k-signature-md {
|
|
@@ -36954,8 +37103,8 @@ kendo-scrollview.k-scrollview-wrap.k-scrollview-light .k-scrollview-nav-wrap,
|
|
|
36954
37103
|
}
|
|
36955
37104
|
|
|
36956
37105
|
.k-signature-md .k-signature-line {
|
|
36957
|
-
width: calc(
|
|
36958
|
-
bottom: calc(
|
|
37106
|
+
width: calc(100% - 0.75rem);
|
|
37107
|
+
bottom: calc(1.5em + 1.125rem + 2px);
|
|
36959
37108
|
}
|
|
36960
37109
|
|
|
36961
37110
|
.k-signature-lg {
|
|
@@ -36963,8 +37112,8 @@ kendo-scrollview.k-scrollview-wrap.k-scrollview-light .k-scrollview-nav-wrap,
|
|
|
36963
37112
|
}
|
|
36964
37113
|
|
|
36965
37114
|
.k-signature-lg .k-signature-line {
|
|
36966
|
-
width: calc(
|
|
36967
|
-
bottom: calc(
|
|
37115
|
+
width: calc(100% - 1rem);
|
|
37116
|
+
bottom: calc(1.5em + 1.25rem + 2px);
|
|
36968
37117
|
}
|
|
36969
37118
|
|
|
36970
37119
|
.k-signature .k-signature-line {
|