@progress/kendo-theme-bootstrap 7.3.0-dev.0 → 7.3.0-dev.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/all.css +44 -173
- package/dist/all.scss +480 -139
- package/dist/meta/sassdoc-data.json +43508 -32204
- package/dist/meta/sassdoc-raw-data.json +13678 -8453
- package/dist/meta/variables.json +4 -0
- 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 +5 -5
- package/scss/calendar/_variables.scss +198 -3
- package/scss/drawer/_variables.scss +65 -0
- package/scss/panelbar/_variables.scss +166 -0
package/dist/all.scss
CHANGED
|
@@ -26327,19 +26327,6 @@ $kendo-form-sizes: (
|
|
|
26327
26327
|
}
|
|
26328
26328
|
}
|
|
26329
26329
|
|
|
26330
|
-
.k-input-label {
|
|
26331
|
-
margin-right: $kendo-horizontal-form-label-margin-x;
|
|
26332
|
-
z-index: 1;
|
|
26333
|
-
|
|
26334
|
-
&:dir(rtl),
|
|
26335
|
-
.k-rtl &,
|
|
26336
|
-
&.k-rtl,
|
|
26337
|
-
[dir="rtl"] &,
|
|
26338
|
-
&[dir="rtl"] {
|
|
26339
|
-
margin-right: 0;
|
|
26340
|
-
margin-left: $kendo-horizontal-form-label-margin-x;
|
|
26341
|
-
}
|
|
26342
|
-
}
|
|
26343
26330
|
|
|
26344
26331
|
|
|
26345
26332
|
// Vertical Form
|
|
@@ -28384,7 +28371,7 @@ $kendo-floating-label-focus-text: null !default;
|
|
|
28384
28371
|
box-sizing: border-box;
|
|
28385
28372
|
}
|
|
28386
28373
|
|
|
28387
|
-
> .k-label {
|
|
28374
|
+
> .k-floating-label {
|
|
28388
28375
|
max-width: $kendo-floating-label-max-width;
|
|
28389
28376
|
font-size: $kendo-floating-label-font-size;
|
|
28390
28377
|
line-height: $kendo-floating-label-line-height;
|
|
@@ -28399,13 +28386,9 @@ $kendo-floating-label-focus-text: null !default;
|
|
|
28399
28386
|
transition: transform $kendo-floating-label-transition, color $kendo-floating-label-transition, top $kendo-floating-label-transition, left $kendo-floating-label-transition;
|
|
28400
28387
|
}
|
|
28401
28388
|
|
|
28402
|
-
> .k-widget {
|
|
28403
|
-
flex: 1 1 auto;
|
|
28404
|
-
width: auto;
|
|
28405
|
-
}
|
|
28406
28389
|
|
|
28407
28390
|
&.k-empty {
|
|
28408
|
-
> .k-label {
|
|
28391
|
+
> .k-floating-label {
|
|
28409
28392
|
top: var(--kendo-floating-label-offset-y, #{$kendo-floating-label-offset-y});
|
|
28410
28393
|
left: var(--kendo-floating-label-offset-x, #{$kendo-floating-label-offset-x});
|
|
28411
28394
|
transform: scale( $kendo-floating-label-scale );
|
|
@@ -28413,13 +28396,13 @@ $kendo-floating-label-focus-text: null !default;
|
|
|
28413
28396
|
}
|
|
28414
28397
|
}
|
|
28415
28398
|
|
|
28416
|
-
> .k-label,
|
|
28417
|
-
&.k-focus > .k-label {
|
|
28399
|
+
> .k-floating-label,
|
|
28400
|
+
&.k-focus > .k-floating-label {
|
|
28418
28401
|
top: var(--kendo-floating-label-focus-offset-y, #{$kendo-floating-label-focus-offset-y});
|
|
28419
28402
|
left: var(--kendo-floating-label-focus-offset-x, #{$kendo-floating-label-focus-offset-x});
|
|
28420
28403
|
transform: scale( $kendo-floating-label-focus-scale );
|
|
28421
28404
|
}
|
|
28422
|
-
&:focus-within > .k-label {
|
|
28405
|
+
&:focus-within > .k-floating-label {
|
|
28423
28406
|
top: var(--kendo-floating-label-focus-offset-y, #{$kendo-floating-label-focus-offset-y});
|
|
28424
28407
|
left: var(--kendo-floating-label-focus-offset-x, #{$kendo-floating-label-focus-offset-x});
|
|
28425
28408
|
transform: scale( $kendo-floating-label-focus-scale );
|
|
@@ -28433,24 +28416,24 @@ $kendo-floating-label-focus-text: null !default;
|
|
|
28433
28416
|
.k-rtl &,
|
|
28434
28417
|
&[dir="rtl"] {
|
|
28435
28418
|
|
|
28436
|
-
> .k-label {
|
|
28419
|
+
> .k-floating-label {
|
|
28437
28420
|
transform-origin: right center;
|
|
28438
28421
|
transition: transform $kendo-floating-label-transition, color $kendo-floating-label-transition, top $kendo-floating-label-transition, right $kendo-floating-label-transition;
|
|
28439
28422
|
}
|
|
28440
28423
|
|
|
28441
28424
|
&.k-empty {
|
|
28442
|
-
> .k-label {
|
|
28425
|
+
> .k-floating-label {
|
|
28443
28426
|
left: auto;
|
|
28444
28427
|
right: var(--kendo-floating-label-offset-x, #{$kendo-floating-label-offset-x});
|
|
28445
28428
|
}
|
|
28446
28429
|
}
|
|
28447
28430
|
|
|
28448
|
-
> .k-label,
|
|
28449
|
-
&.k-focus > .k-label {
|
|
28431
|
+
> .k-floating-label,
|
|
28432
|
+
&.k-focus > .k-floating-label {
|
|
28450
28433
|
left: auto;
|
|
28451
28434
|
right: var(--kendo-floating-label-focus-offset-x, #{$kendo-floating-label-focus-offset-x});
|
|
28452
28435
|
}
|
|
28453
|
-
&:focus-within > .k-label {
|
|
28436
|
+
&:focus-within > .k-floating-label {
|
|
28454
28437
|
left: auto;
|
|
28455
28438
|
right: var(--kendo-floating-label-focus-offset-x, #{$kendo-floating-label-focus-offset-x});
|
|
28456
28439
|
}
|
|
@@ -28479,23 +28462,23 @@ $kendo-floating-label-focus-text: null !default;
|
|
|
28479
28462
|
// Floating label
|
|
28480
28463
|
.k-floating-label-container {
|
|
28481
28464
|
|
|
28482
|
-
> .k-label {
|
|
28465
|
+
> .k-floating-label {
|
|
28483
28466
|
@include fill(
|
|
28484
28467
|
$color: $kendo-floating-label-text,
|
|
28485
28468
|
$bg: $kendo-floating-label-bg
|
|
28486
28469
|
);
|
|
28487
28470
|
}
|
|
28488
28471
|
|
|
28489
|
-
&.k-focus > .k-label {
|
|
28472
|
+
&.k-focus > .k-floating-label {
|
|
28490
28473
|
@include fill(
|
|
28491
28474
|
$color: $kendo-floating-label-focus-text,
|
|
28492
28475
|
$bg: $kendo-floating-label-focus-bg
|
|
28493
28476
|
);
|
|
28494
28477
|
}
|
|
28495
28478
|
|
|
28496
|
-
&.k-invalid > .k-label,
|
|
28497
|
-
&.ng-invalid.ng-touched > .k-label,
|
|
28498
|
-
&.ng-invalid.ng-dirty > .k-label {
|
|
28479
|
+
&.k-invalid > .k-floating-label,
|
|
28480
|
+
&.ng-invalid.ng-touched > .k-floating-label,
|
|
28481
|
+
&.ng-invalid.ng-dirty > .k-floating-label {
|
|
28499
28482
|
@include fill ( $color: $kendo-invalid-text );
|
|
28500
28483
|
}
|
|
28501
28484
|
}
|
|
@@ -31039,136 +31022,331 @@ $_kendo-module-meta: (
|
|
|
31039
31022
|
// #region @import "./_variables.scss"; -> scss/calendar/_variables.scss
|
|
31040
31023
|
// Calendar
|
|
31041
31024
|
|
|
31025
|
+
/// The width of the border around the Calendar.
|
|
31026
|
+
/// @group calendar
|
|
31042
31027
|
$kendo-calendar-border-width: 1px !default;
|
|
31028
|
+
|
|
31029
|
+
/// The font family of the Calendar.
|
|
31030
|
+
/// @group calendar
|
|
31043
31031
|
$kendo-calendar-font-family: $kendo-font-family !default;
|
|
31032
|
+
/// The font size of the Calendar.
|
|
31033
|
+
/// @group calendar
|
|
31044
31034
|
$kendo-calendar-font-size: $kendo-font-size-md !default;
|
|
31035
|
+
/// The line height of the Calendar.
|
|
31036
|
+
/// @group calendar
|
|
31045
31037
|
$kendo-calendar-line-height: $kendo-line-height-md !default;
|
|
31046
31038
|
|
|
31039
|
+
/// The size of the cells in the Calendar.
|
|
31040
|
+
/// @group calendar
|
|
31047
31041
|
$kendo-calendar-cell-size: 38px !default;
|
|
31048
31042
|
|
|
31043
|
+
/// The background color of the Calendar.
|
|
31044
|
+
/// @group calendar
|
|
31049
31045
|
$kendo-calendar-bg: $kendo-component-bg !default;
|
|
31046
|
+
/// The text color of the Calendar.
|
|
31047
|
+
/// @group calendar
|
|
31050
31048
|
$kendo-calendar-text: $kendo-component-text !default;
|
|
31049
|
+
/// The border color of the Calendar.
|
|
31050
|
+
/// @group calendar
|
|
31051
31051
|
$kendo-calendar-border: $kendo-component-border !default;
|
|
31052
31052
|
|
|
31053
|
+
/// The horizontal padding of the header in the Calendar.
|
|
31054
|
+
/// @group calendar
|
|
31053
31055
|
$kendo-calendar-header-padding-x: k-map-get( $kendo-spacing, 1 ) !default;
|
|
31056
|
+
/// The vertical padding of the header in the Calendar.
|
|
31057
|
+
/// @group calendar
|
|
31054
31058
|
$kendo-calendar-header-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
31059
|
+
|
|
31060
|
+
/// The border width of the header in the Calendar.
|
|
31061
|
+
/// @group calendar
|
|
31055
31062
|
$kendo-calendar-header-border-width: 1px !default;
|
|
31056
31063
|
|
|
31064
|
+
/// The background color of the header in the Calendar.
|
|
31065
|
+
/// @group calendar
|
|
31057
31066
|
$kendo-calendar-header-bg: $kendo-component-header-bg !default;
|
|
31067
|
+
/// The text color of the header in the Calendar.
|
|
31068
|
+
/// @group calendar
|
|
31058
31069
|
$kendo-calendar-header-text: $kendo-component-header-text !default;
|
|
31070
|
+
/// The border color of the header in the Calendar.
|
|
31071
|
+
/// @group calendar
|
|
31059
31072
|
$kendo-calendar-header-border: $kendo-component-header-border !default;
|
|
31073
|
+
/// The gradient of the header in the Calendar.
|
|
31074
|
+
/// @group calendar
|
|
31060
31075
|
$kendo-calendar-header-gradient: $kendo-component-header-gradient !default;
|
|
31076
|
+
/// The box shadow of the header in the Calendar.
|
|
31077
|
+
/// @group calendar
|
|
31061
31078
|
$kendo-calendar-header-shadow: none !default;
|
|
31062
31079
|
|
|
31080
|
+
/// The gap between the items in the navigation of the Calendar.
|
|
31081
|
+
/// @group calendar
|
|
31063
31082
|
$kendo-calendar-nav-gap: null !default;
|
|
31064
31083
|
|
|
31084
|
+
/// The horizontal padding of the footer in the Calendar.
|
|
31085
|
+
/// @group calendar
|
|
31065
31086
|
$kendo-calendar-footer-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
|
|
31087
|
+
/// The vertical padding of the footer in the Calendar.
|
|
31088
|
+
/// @group calendar
|
|
31066
31089
|
$kendo-calendar-footer-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
|
|
31067
31090
|
|
|
31091
|
+
/// The horizontal padding of the cells in the Calendar.
|
|
31092
|
+
/// @group calendar
|
|
31068
31093
|
$kendo-calendar-cell-padding-x: k-map-get( $kendo-spacing, 1 ) !default;
|
|
31094
|
+
/// The vertical padding of the cells in the Calendar.
|
|
31095
|
+
/// @group calendar
|
|
31069
31096
|
$kendo-calendar-cell-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
31097
|
+
|
|
31098
|
+
/// The line height of the cells in the Calendar.
|
|
31099
|
+
/// @group calendar
|
|
31070
31100
|
$kendo-calendar-cell-line-height: $kendo-calendar-line-height !default;
|
|
31101
|
+
|
|
31102
|
+
/// The border radius of the cells in the Calendar.
|
|
31103
|
+
/// @group calendar
|
|
31071
31104
|
$kendo-calendar-cell-border-radius: $kendo-border-radius-md !default;
|
|
31072
31105
|
|
|
31106
|
+
/// The horizontal padding of the header cells in the Calendar.
|
|
31107
|
+
/// @group calendar
|
|
31073
31108
|
$kendo-calendar-header-cell-padding-x: null !default;
|
|
31109
|
+
/// The vertical padding of the header cells in the Calendar.
|
|
31110
|
+
/// @group calendar
|
|
31074
31111
|
$kendo-calendar-header-cell-padding-y: null !default;
|
|
31112
|
+
/// The width of the header cells in the Calendar.
|
|
31113
|
+
/// @group calendar
|
|
31075
31114
|
$kendo-calendar-header-cell-width: $kendo-calendar-cell-size !default;
|
|
31115
|
+
/// The height of the header cells in the Calendar.
|
|
31116
|
+
/// @group calendar
|
|
31076
31117
|
$kendo-calendar-header-cell-height: $kendo-calendar-cell-size !default;
|
|
31118
|
+
/// The font size of the header cells in the Calendar.
|
|
31119
|
+
/// @group calendar
|
|
31077
31120
|
$kendo-calendar-header-cell-font-size: $kendo-font-size-sm !default;
|
|
31121
|
+
/// The line height of the header cells in the Calendar.
|
|
31122
|
+
/// @group calendar
|
|
31078
31123
|
$kendo-calendar-header-cell-line-height: 2 !default;
|
|
31124
|
+
|
|
31125
|
+
/// The background color of the header cells in the Calendar.
|
|
31126
|
+
/// @group calendar
|
|
31079
31127
|
$kendo-calendar-header-cell-bg: null !default;
|
|
31128
|
+
/// The text color of the header cells in the Calendar.
|
|
31129
|
+
/// @group calendar
|
|
31080
31130
|
$kendo-calendar-header-cell-text: $kendo-subtle-text !default;
|
|
31131
|
+
/// The opacity of the header cells in the Calendar.
|
|
31132
|
+
/// @group calendar
|
|
31081
31133
|
$kendo-calendar-header-cell-opacity: null !default;
|
|
31082
31134
|
|
|
31135
|
+
/// The horizontal padding of the caption in the Calendar.
|
|
31136
|
+
/// @group calendar
|
|
31083
31137
|
$kendo-calendar-caption-padding-x: k-map-get( $kendo-spacing, 3 ) !default;
|
|
31138
|
+
/// The vertical padding of the caption in the Calendar.
|
|
31139
|
+
/// @group calendar
|
|
31084
31140
|
$kendo-calendar-caption-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
31141
|
+
/// The height of the caption in the Calendar.
|
|
31142
|
+
/// @group calendar
|
|
31085
31143
|
$kendo-calendar-caption-height: $kendo-calendar-cell-size !default;
|
|
31144
|
+
/// The font size of the caption in the Calendar.
|
|
31145
|
+
/// @group calendar
|
|
31086
31146
|
$kendo-calendar-caption-font-size: null !default;
|
|
31147
|
+
/// The line height of the caption in the Calendar.
|
|
31148
|
+
/// @group calendar
|
|
31087
31149
|
$kendo-calendar-caption-line-height: null !default;
|
|
31150
|
+
/// The font weight of the caption in the Calendar.
|
|
31151
|
+
/// @group calendar
|
|
31088
31152
|
$kendo-calendar-caption-font-weight: bold !default;
|
|
31089
31153
|
|
|
31154
|
+
/// The font size of the week number cells in the Calendar.
|
|
31155
|
+
/// @group calendar
|
|
31156
|
+
$kendo-calendar-week-number-font-size: $kendo-font-size-sm !default;
|
|
31157
|
+
|
|
31158
|
+
/// The width of the Calendar view.
|
|
31159
|
+
/// @group calendar
|
|
31090
31160
|
$kendo-calendar-view-width: ($kendo-calendar-cell-size * 8) !default;
|
|
31161
|
+
/// The height of the Calendar view.
|
|
31162
|
+
/// @group calendar
|
|
31091
31163
|
$kendo-calendar-view-height: ($kendo-calendar-cell-size * 7) !default;
|
|
31164
|
+
|
|
31165
|
+
/// The gap between the items in the Calendar view.
|
|
31166
|
+
/// @group calendar
|
|
31092
31167
|
$kendo-calendar-view-gap: k-map-get( $kendo-spacing, 4 ) !default;
|
|
31093
31168
|
|
|
31169
|
+
/// The background color of the weekend cells in the Calendar.
|
|
31170
|
+
/// @group calendar
|
|
31094
31171
|
$kendo-calendar-weekend-bg: null !default;
|
|
31172
|
+
/// The text color of the weekend cells in the Calendar.
|
|
31173
|
+
/// @group calendar
|
|
31095
31174
|
$kendo-calendar-weekend-text: null !default;
|
|
31096
31175
|
|
|
31176
|
+
/// The style of the current day in the Calendar.
|
|
31177
|
+
/// @group calendar
|
|
31097
31178
|
$kendo-calendar-today-style: box !default;
|
|
31179
|
+
/// The color of the current day in the Calendar.
|
|
31180
|
+
/// @group calendar
|
|
31098
31181
|
$kendo-calendar-today-color: $kendo-color-primary !default;
|
|
31099
31182
|
|
|
31183
|
+
/// The background color of the week number cells in the Calendar.
|
|
31184
|
+
/// @group calendar
|
|
31100
31185
|
$kendo-calendar-week-number-bg: null !default;
|
|
31186
|
+
/// The text color of the week number cells in the Calendar.
|
|
31187
|
+
/// @group calendar
|
|
31101
31188
|
$kendo-calendar-week-number-text: $kendo-calendar-header-cell-text !default;
|
|
31102
31189
|
|
|
31190
|
+
/// The background color of the preceding/subsequent month cells in the Calendar.
|
|
31191
|
+
/// @group calendar
|
|
31103
31192
|
$kendo-calendar-other-month-bg: null !default;
|
|
31193
|
+
/// The text color of the preceding/subsequent month cells in the Calendar.
|
|
31194
|
+
/// @group calendar
|
|
31104
31195
|
$kendo-calendar-other-month-text: $kendo-calendar-header-cell-text !default;
|
|
31105
31196
|
|
|
31197
|
+
/// The background color of the cells in the Calendar.
|
|
31198
|
+
/// @group calendar
|
|
31106
31199
|
$kendo-calendar-cell-bg: null !default;
|
|
31200
|
+
/// The text color of the cells in the Calendar.
|
|
31201
|
+
/// @group calendar
|
|
31107
31202
|
$kendo-calendar-cell-text: null !default;
|
|
31203
|
+
/// The border color of the cells in the Calendar.
|
|
31204
|
+
/// @group calendar
|
|
31108
31205
|
$kendo-calendar-cell-border: null !default;
|
|
31206
|
+
/// The gradient of the cells in the Calendar.
|
|
31207
|
+
/// @group calendar
|
|
31109
31208
|
$kendo-calendar-cell-gradient: null !default;
|
|
31110
31209
|
|
|
31210
|
+
/// The background color of the hovered cells in the Calendar.
|
|
31211
|
+
/// @group calendar
|
|
31111
31212
|
$kendo-calendar-cell-hover-bg: $kendo-hover-bg !default;
|
|
31213
|
+
/// The text color of the hovered cells in the Calendar.
|
|
31214
|
+
/// @group calendar
|
|
31112
31215
|
$kendo-calendar-cell-hover-text: $kendo-hover-text !default;
|
|
31216
|
+
/// The border color of the hovered cells in the Calendar.
|
|
31217
|
+
/// @group calendar
|
|
31113
31218
|
$kendo-calendar-cell-hover-border: $kendo-hover-border !default;
|
|
31219
|
+
/// The gradient of the hovered cells in the Calendar.
|
|
31220
|
+
/// @group calendar
|
|
31114
31221
|
$kendo-calendar-cell-hover-gradient: null !default;
|
|
31115
31222
|
|
|
31223
|
+
/// The background color of the selected cells in the Calendar.
|
|
31224
|
+
/// @group calendar
|
|
31116
31225
|
$kendo-calendar-cell-selected-bg: $kendo-selected-bg !default;
|
|
31226
|
+
/// The text color of the selected cells in the Calendar.
|
|
31227
|
+
/// @group calendar
|
|
31117
31228
|
$kendo-calendar-cell-selected-text: $kendo-selected-text !default;
|
|
31229
|
+
/// The border color of the selected cells in the Calendar.
|
|
31230
|
+
/// @group calendar
|
|
31118
31231
|
$kendo-calendar-cell-selected-border: $kendo-selected-border !default;
|
|
31232
|
+
/// The gradient of the selected cells in the Calendar.
|
|
31233
|
+
/// @group calendar
|
|
31119
31234
|
$kendo-calendar-cell-selected-gradient: null !default;
|
|
31120
31235
|
|
|
31236
|
+
/// The background color of the selected and hovered cells in the Calendar.
|
|
31237
|
+
/// @group calendar
|
|
31121
31238
|
$kendo-calendar-cell-selected-hover-bg: $kendo-selected-hover-bg !default;
|
|
31239
|
+
/// The text color of the selected and hovered cells in the Calendar.
|
|
31240
|
+
/// @group calendar
|
|
31122
31241
|
$kendo-calendar-cell-selected-hover-text: $kendo-selected-hover-text !default;
|
|
31242
|
+
/// The border color of the selected and hovered cells in the Calendar.
|
|
31243
|
+
/// @group calendar
|
|
31123
31244
|
$kendo-calendar-cell-selected-hover-border: $kendo-selected-hover-border !default;
|
|
31245
|
+
/// The gradient of the selected and hovered cells in the Calendar.
|
|
31246
|
+
/// @group calendar
|
|
31124
31247
|
$kendo-calendar-cell-selected-hover-gradient: null !default;
|
|
31125
31248
|
|
|
31249
|
+
/// The shadow of the focused cells in the Calendar.
|
|
31250
|
+
/// @group calendar
|
|
31126
31251
|
$kendo-calendar-cell-focus-shadow: inset $kendo-button-focus-shadow !default;
|
|
31252
|
+
/// The shadow of the selected and focused cells in the Calendar.
|
|
31253
|
+
/// @group calendar
|
|
31127
31254
|
$kendo-calendar-cell-selected-focus-shadow: inset 0 0 0 2px if($kendo-enable-color-system, color-mix(in srgb, k-color( primary-active ) 50%, transparent), rgba( k-color-darken( $kendo-color-primary, 12.5% ), .5 )) !default;
|
|
31128
31255
|
|
|
31129
31256
|
|
|
31130
|
-
|
|
31257
|
+
/// The width of the Calendar navigation.
|
|
31258
|
+
/// @group calendar
|
|
31131
31259
|
$kendo-calendar-navigation-width: 5em !default;
|
|
31260
|
+
/// The height of the items in the Calendar navigation.
|
|
31261
|
+
/// @group calendar
|
|
31132
31262
|
$kendo-calendar-navigation-item-height: 2em !default;
|
|
31133
31263
|
|
|
31264
|
+
/// The background color of the Calendar navigation.
|
|
31265
|
+
/// @group calendar
|
|
31134
31266
|
$kendo-calendar-navigation-bg: $kendo-calendar-header-bg !default;
|
|
31267
|
+
/// The text color of the Calendar navigation.
|
|
31268
|
+
/// @group calendar
|
|
31135
31269
|
$kendo-calendar-navigation-text: $kendo-calendar-header-text !default;
|
|
31270
|
+
/// The border color of the Calendar navigation.
|
|
31271
|
+
/// @group calendar
|
|
31136
31272
|
$kendo-calendar-navigation-border: $kendo-calendar-header-border !default;
|
|
31137
31273
|
|
|
31274
|
+
/// The text color of the hovered items in the Calendar navigation.
|
|
31275
|
+
/// @group calendar
|
|
31138
31276
|
$kendo-calendar-navigation-hover-text: $kendo-link-hover-text !default;
|
|
31139
31277
|
|
|
31140
31278
|
|
|
31141
|
-
|
|
31279
|
+
/// The horizontal padding of the header in the Infinite Calendar.
|
|
31280
|
+
/// @group calendar
|
|
31142
31281
|
$kendo-infinite-calendar-header-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
|
|
31282
|
+
/// The vertical padding of the header in the Infinite Calendar.
|
|
31283
|
+
/// @group calendar
|
|
31143
31284
|
$kendo-infinite-calendar-header-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
|
|
31144
31285
|
|
|
31286
|
+
/// The horizontal padding of the Calendar view in the Infinite Calendar.
|
|
31287
|
+
/// @group calendar
|
|
31145
31288
|
$kendo-infinite-calendar-view-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
|
|
31289
|
+
/// The vertical padding of the Calendar view in the Infinite Calendar.
|
|
31290
|
+
/// @group calendar
|
|
31146
31291
|
$kendo-infinite-calendar-view-padding-y: 0px !default;
|
|
31292
|
+
/// The height of the Calendar view in the Infinite Calendar.
|
|
31293
|
+
/// @group calendar
|
|
31147
31294
|
$kendo-infinite-calendar-view-height: ( $kendo-calendar-cell-size * 9 ) !default;
|
|
31148
31295
|
|
|
31149
31296
|
|
|
31150
31297
|
// Multiview calendar
|
|
31151
31298
|
|
|
31152
31299
|
|
|
31153
|
-
|
|
31300
|
+
/// The font size of the small Calendar.
|
|
31301
|
+
/// @group calendar
|
|
31154
31302
|
$kendo-calendar-sm-font-size: $kendo-font-size-md !default;
|
|
31303
|
+
/// The line height of the small Calendar.
|
|
31304
|
+
/// @group calendar
|
|
31155
31305
|
$kendo-calendar-sm-line-height: $kendo-line-height-md !default;
|
|
31306
|
+
/// The size of the cells in the small Calendar.
|
|
31307
|
+
/// @group calendar
|
|
31156
31308
|
$kendo-calendar-sm-cell-size: 34px !default;
|
|
31309
|
+
/// The horizontal padding of the cells in the small Calendar.
|
|
31310
|
+
/// @group calendar
|
|
31157
31311
|
$kendo-calendar-sm-cell-padding-x: .125rem !default;
|
|
31312
|
+
/// The vertical padding of the cells in the small Calendar.
|
|
31313
|
+
/// @group calendar
|
|
31158
31314
|
$kendo-calendar-sm-cell-padding-y: .125rem !default;
|
|
31159
31315
|
|
|
31316
|
+
/// The font size of the medium Calendar.
|
|
31317
|
+
/// @group calendar
|
|
31160
31318
|
$kendo-calendar-md-font-size: $kendo-font-size-md !default;
|
|
31319
|
+
/// The line height of the medium Calendar.
|
|
31320
|
+
/// @group calendar
|
|
31161
31321
|
$kendo-calendar-md-line-height: $kendo-line-height-md !default;
|
|
31322
|
+
/// The size of the cells in the medium Calendar.
|
|
31323
|
+
/// @group calendar
|
|
31162
31324
|
$kendo-calendar-md-cell-size: 38px !default;
|
|
31325
|
+
/// The horizontal padding of the cells in the medium Calendar.
|
|
31326
|
+
/// @group calendar
|
|
31163
31327
|
$kendo-calendar-md-cell-padding-x: k-map-get( $kendo-spacing, 1 ) !default;
|
|
31328
|
+
/// The vertical padding of the cells in the medium Calendar.
|
|
31329
|
+
/// @group calendar
|
|
31164
31330
|
$kendo-calendar-md-cell-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
31165
31331
|
|
|
31332
|
+
/// The font size of the large Calendar.
|
|
31333
|
+
/// @group calendar
|
|
31166
31334
|
$kendo-calendar-lg-font-size: $kendo-font-size-lg !default;
|
|
31335
|
+
/// The line height of the large Calendar.
|
|
31336
|
+
/// @group calendar
|
|
31167
31337
|
$kendo-calendar-lg-line-height: $kendo-line-height-lg !default;
|
|
31338
|
+
/// The size of the cells in the large Calendar.
|
|
31339
|
+
/// @group calendar
|
|
31168
31340
|
$kendo-calendar-lg-cell-size: 42px !default;
|
|
31341
|
+
/// The horizontal padding of the cells in the large Calendar.
|
|
31342
|
+
/// @group calendar
|
|
31169
31343
|
$kendo-calendar-lg-cell-padding-x: k-map-get( $kendo-spacing, 1 ) !default;
|
|
31344
|
+
/// The vertical padding of the cells in the large Calendar.
|
|
31345
|
+
/// @group calendar
|
|
31170
31346
|
$kendo-calendar-lg-cell-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
31171
31347
|
|
|
31348
|
+
/// The sizes Map of the Calendar.
|
|
31349
|
+
/// @group calendar
|
|
31172
31350
|
$kendo-calendar-sizes: (
|
|
31173
31351
|
sm: (
|
|
31174
31352
|
font-size: $kendo-calendar-sm-font-size,
|
|
@@ -31284,6 +31462,9 @@ $kendo-calendar-sizes: (
|
|
|
31284
31462
|
block-size: var( --INTERNAL--kendo-calendar-cell-size, min-content );
|
|
31285
31463
|
border-color: transparent;
|
|
31286
31464
|
}
|
|
31465
|
+
.k-calendar-td.k-alt {
|
|
31466
|
+
font-size: $kendo-calendar-week-number-font-size;
|
|
31467
|
+
}
|
|
31287
31468
|
|
|
31288
31469
|
|
|
31289
31470
|
// Calendar cell inner
|
|
@@ -31331,11 +31512,6 @@ $kendo-calendar-sizes: (
|
|
|
31331
31512
|
justify-content: space-between;
|
|
31332
31513
|
flex: 0 0 auto;
|
|
31333
31514
|
|
|
31334
|
-
.k-title,
|
|
31335
|
-
.k-calendar-title {
|
|
31336
|
-
font-weight: bold;
|
|
31337
|
-
}
|
|
31338
|
-
|
|
31339
31515
|
.k-calendar-nav {
|
|
31340
31516
|
display: flex;
|
|
31341
31517
|
flex-flow: row nowrap;
|
|
@@ -31369,6 +31545,10 @@ $kendo-calendar-sizes: (
|
|
|
31369
31545
|
position: relative;
|
|
31370
31546
|
z-index: 1;
|
|
31371
31547
|
overflow: hidden;
|
|
31548
|
+
|
|
31549
|
+
.k-today {
|
|
31550
|
+
font-weight: bold;
|
|
31551
|
+
}
|
|
31372
31552
|
}
|
|
31373
31553
|
|
|
31374
31554
|
|
|
@@ -31779,9 +31959,6 @@ $kendo-calendar-sizes: (
|
|
|
31779
31959
|
$kendo-calendar-week-number-bg
|
|
31780
31960
|
);
|
|
31781
31961
|
}
|
|
31782
|
-
.k-out-of-range {
|
|
31783
|
-
pointer-events: none;
|
|
31784
|
-
}
|
|
31785
31962
|
|
|
31786
31963
|
|
|
31787
31964
|
// Interactive states
|
|
@@ -39938,44 +40115,109 @@ $_kendo-module-meta: (
|
|
|
39938
40115
|
// Component
|
|
39939
40116
|
// #region @import "./_variables.scss"; -> scss/drawer/_variables.scss
|
|
39940
40117
|
// Drawer
|
|
40118
|
+
|
|
40119
|
+
/// The background color of the Drawer.
|
|
40120
|
+
/// @group drawer
|
|
39941
40121
|
$kendo-drawer-bg: $kendo-component-bg !default;
|
|
40122
|
+
/// The text color of the Drawer.
|
|
40123
|
+
/// @group drawer
|
|
39942
40124
|
$kendo-drawer-text: $kendo-component-text !default;
|
|
40125
|
+
/// The border color of the Drawer.
|
|
40126
|
+
/// @group drawer
|
|
39943
40127
|
$kendo-drawer-border: $kendo-component-border !default;
|
|
40128
|
+
/// The border width of the Drawer.
|
|
40129
|
+
/// @group drawer
|
|
39944
40130
|
$kendo-drawer-border-width: 1px !default;
|
|
40131
|
+
/// The font family of the Drawer.
|
|
40132
|
+
/// @group drawer
|
|
39945
40133
|
$kendo-drawer-font-family: $kendo-font-family !default;
|
|
40134
|
+
/// The font size of the Drawer.
|
|
40135
|
+
/// @group drawer
|
|
39946
40136
|
$kendo-drawer-font-size: $kendo-font-size-md !default;
|
|
40137
|
+
/// The line height of the Drawer.
|
|
40138
|
+
/// @group drawer
|
|
39947
40139
|
$kendo-drawer-line-height: $kendo-line-height-md !default;
|
|
40140
|
+
|
|
40141
|
+
/// The horizontal padding of the Drawer content.
|
|
40142
|
+
/// @group drawer
|
|
39948
40143
|
$kendo-drawer-content-padding-x: $kendo-padding-md-x !default;
|
|
40144
|
+
/// The vertical padding of the Drawer content.
|
|
40145
|
+
/// @group drawer
|
|
39949
40146
|
$kendo-drawer-content-padding-y: $kendo-padding-md-y !default;
|
|
39950
40147
|
|
|
40148
|
+
/// The width of the Drawer scrollbar.
|
|
40149
|
+
/// @group drawer
|
|
39951
40150
|
$kendo-drawer-scrollbar-width: 7px !default;
|
|
40151
|
+
/// The color of the Drawer scrollbar track.
|
|
40152
|
+
/// @group drawer
|
|
39952
40153
|
$kendo-drawer-scrollbar-color: rgba( 156, 156, 156, .7 ) !default;
|
|
40154
|
+
/// The background color of the Drawer scrollbar thumb.
|
|
40155
|
+
/// @group drawer
|
|
39953
40156
|
$kendo-drawer-scrollbar-bg: #dedede !default;
|
|
40157
|
+
/// The border radius of the Drawer scrollbar.
|
|
40158
|
+
/// @group drawer
|
|
39954
40159
|
$kendo-drawer-scrollbar-radius: 20px !default;
|
|
40160
|
+
/// The hover color of the Drawer scrollbar track.
|
|
40161
|
+
/// @group drawer
|
|
39955
40162
|
$kendo-drawer-scrollbar-hover-color: rgba( 156, 156, 156, 1 ) !default;
|
|
39956
40163
|
|
|
40164
|
+
/// The horizontal padding of the Drawer item.
|
|
40165
|
+
/// @group drawer
|
|
39957
40166
|
$kendo-drawer-item-padding-x: $kendo-padding-md-x !default;
|
|
40167
|
+
/// The vertical padding of the Drawer item.
|
|
40168
|
+
/// @group drawer
|
|
39958
40169
|
$kendo-drawer-item-padding-y: $kendo-padding-md-y !default;
|
|
40170
|
+
/// The font size of the Drawer item.
|
|
40171
|
+
/// @group drawer
|
|
39959
40172
|
$kendo-drawer-item-font-size: 16px !default;
|
|
40173
|
+
/// The line height of the Drawer item.
|
|
40174
|
+
/// @group drawer
|
|
39960
40175
|
$kendo-drawer-item-line-height: $kendo-line-height-lg !default;
|
|
39961
40176
|
|
|
40177
|
+
/// The horizontal padding of the Drawer item in each level.
|
|
40178
|
+
/// @group drawer
|
|
39962
40179
|
$kendo-drawer-item-level-padding-x: $kendo-drawer-item-padding-x !default;
|
|
40180
|
+
/// The count of the Drawer item levels.
|
|
40181
|
+
/// @group drawer
|
|
39963
40182
|
$kendo-drawer-item-level-count: 5 !default;
|
|
39964
40183
|
|
|
40184
|
+
/// The horizontal padding of the Drawer icon.
|
|
40185
|
+
/// @group drawer
|
|
39965
40186
|
$kendo-drawer-icon-padding-x: 0 !default;
|
|
40187
|
+
/// The vertical padding of the Drawer icon.
|
|
40188
|
+
/// @group drawer
|
|
39966
40189
|
$kendo-drawer-icon-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
|
|
39967
40190
|
|
|
40191
|
+
/// The initial width of the mini Drawer.
|
|
40192
|
+
/// @group drawer
|
|
39968
40193
|
$kendo-drawer-mini-initial-width: calc( 2 * #{$kendo-drawer-item-padding-x} + #{$kendo-icon-size} ) !default;
|
|
39969
40194
|
|
|
40195
|
+
/// The background color of the hovered Drawer item.
|
|
40196
|
+
/// @group drawer
|
|
39970
40197
|
$kendo-drawer-hover-bg: $kendo-hover-bg !default;
|
|
40198
|
+
/// The text color of the hovered Drawer item.
|
|
40199
|
+
/// @group drawer
|
|
39971
40200
|
$kendo-drawer-hover-text: $kendo-hover-text !default;
|
|
39972
40201
|
|
|
40202
|
+
/// The background color of the focused Drawer item.
|
|
40203
|
+
/// @group drawer
|
|
39973
40204
|
$kendo-drawer-focus-bg: $kendo-hover-bg !default;
|
|
40205
|
+
/// The box shadow of the focused Drawer item.
|
|
40206
|
+
/// @group drawer
|
|
39974
40207
|
$kendo-drawer-focus-shadow: inset 0 0 0 2px rgba( black, .15 ) !default;
|
|
39975
40208
|
|
|
40209
|
+
/// The background color of the selected Drawer item.
|
|
40210
|
+
/// @group drawer
|
|
39976
40211
|
$kendo-drawer-selected-bg: $kendo-selected-bg !default;
|
|
40212
|
+
/// The text color of the selected Drawer item.
|
|
40213
|
+
/// @group drawer
|
|
39977
40214
|
$kendo-drawer-selected-text: $kendo-selected-text !default;
|
|
40215
|
+
|
|
40216
|
+
/// The background color of the selected and hovered Drawer item.
|
|
40217
|
+
/// @group drawer
|
|
39978
40218
|
$kendo-drawer-selected-hover-bg: if($kendo-enable-color-system, k-color( primary-hover ), k-try-shade( $kendo-selected-bg, 1 )) !default;
|
|
40219
|
+
/// The text color of the selected and hovered Drawer item.
|
|
40220
|
+
/// @group drawer
|
|
39979
40221
|
$kendo-drawer-selected-hover-text: $kendo-selected-text !default;
|
|
39980
40222
|
|
|
39981
40223
|
// #endregion
|
|
@@ -39983,15 +40225,20 @@ $kendo-drawer-selected-hover-text: $kendo-selected-text !default;
|
|
|
39983
40225
|
// #region @import "@progress/kendo-theme-default/scss/drawer/_layout.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-default/scss/drawer/_layout.scss
|
|
39984
40226
|
@mixin kendo-drawer--layout-base() {
|
|
39985
40227
|
|
|
40228
|
+
// Container
|
|
39986
40229
|
.k-drawer-container {
|
|
39987
40230
|
display: flex;
|
|
39988
40231
|
flex-flow: row nowrap;
|
|
39989
40232
|
align-items: flex-start;
|
|
39990
40233
|
}
|
|
40234
|
+
|
|
39991
40235
|
kendo-drawer.k-drawer,
|
|
39992
40236
|
kendo-drawer .k-drawer-wrapper {
|
|
39993
40237
|
transition: none;
|
|
39994
40238
|
}
|
|
40239
|
+
|
|
40240
|
+
|
|
40241
|
+
// Drawer
|
|
39995
40242
|
.k-drawer {
|
|
39996
40243
|
height: 100%;
|
|
39997
40244
|
max-width: 100%;
|
|
@@ -40016,41 +40263,38 @@ $kendo-drawer-selected-hover-text: $kendo-selected-text !default;
|
|
|
40016
40263
|
box-sizing: border-box;
|
|
40017
40264
|
}
|
|
40018
40265
|
|
|
40019
|
-
// Borders
|
|
40020
40266
|
.k-drawer-mini &.k-drawer-start,
|
|
40021
|
-
.k-drawer-expanded &.k-drawer-start
|
|
40022
|
-
|
|
40023
|
-
.k-drawer-left.k-drawer-expanded & {
|
|
40024
|
-
border-right-width: $kendo-drawer-border-width;
|
|
40267
|
+
.k-drawer-expanded &.k-drawer-start {
|
|
40268
|
+
border-inline-end-width: $kendo-drawer-border-width;
|
|
40025
40269
|
}
|
|
40270
|
+
|
|
40026
40271
|
.k-drawer-mini &.k-drawer-end,
|
|
40027
|
-
.k-drawer-expanded &.k-drawer-end
|
|
40028
|
-
|
|
40029
|
-
.k-drawer-right.k-drawer-expanded & {
|
|
40030
|
-
border-left-width: $kendo-drawer-border-width;
|
|
40272
|
+
.k-drawer-expanded &.k-drawer-end {
|
|
40273
|
+
border-inline-start-width: $kendo-drawer-border-width;
|
|
40031
40274
|
}
|
|
40032
40275
|
|
|
40276
|
+
|
|
40033
40277
|
// Position
|
|
40034
|
-
&.k-drawer-start
|
|
40035
|
-
.k-drawer-left & {
|
|
40278
|
+
&.k-drawer-start {
|
|
40036
40279
|
top: 0;
|
|
40037
|
-
|
|
40280
|
+
inset-inline-start: 0;
|
|
40038
40281
|
}
|
|
40039
|
-
&.k-drawer-end
|
|
40040
|
-
.k-drawer-right & {
|
|
40282
|
+
&.k-drawer-end {
|
|
40041
40283
|
top: 0;
|
|
40042
|
-
|
|
40284
|
+
inset-inline-end: 0;
|
|
40043
40285
|
}
|
|
40044
40286
|
}
|
|
40287
|
+
|
|
40288
|
+
|
|
40289
|
+
// Content
|
|
40045
40290
|
.k-drawer-content {
|
|
40046
40291
|
flex: 1 1 auto;
|
|
40047
40292
|
overflow: auto;
|
|
40048
40293
|
}
|
|
40049
40294
|
|
|
40050
40295
|
|
|
40051
|
-
// Overlay
|
|
40296
|
+
// Overlay
|
|
40052
40297
|
.k-drawer-overlay {
|
|
40053
|
-
|
|
40054
40298
|
.k-drawer {
|
|
40055
40299
|
max-width: 80vw; // limit width
|
|
40056
40300
|
position: fixed;
|
|
@@ -40064,7 +40308,6 @@ $kendo-drawer-selected-hover-text: $kendo-selected-text !default;
|
|
|
40064
40308
|
&.k-drawer-expanded > .k-overlay {
|
|
40065
40309
|
display: block;
|
|
40066
40310
|
}
|
|
40067
|
-
|
|
40068
40311
|
}
|
|
40069
40312
|
|
|
40070
40313
|
|
|
@@ -40079,13 +40322,9 @@ $kendo-drawer-selected-hover-text: $kendo-selected-text !default;
|
|
|
40079
40322
|
align-self: stretch;
|
|
40080
40323
|
}
|
|
40081
40324
|
|
|
40082
|
-
|
|
40083
|
-
|
|
40084
|
-
.k-drawer.k-drawer-end,
|
|
40085
|
-
&.k-drawer-right .k-drawer {
|
|
40086
|
-
order: 1;
|
|
40325
|
+
&:has(.k-drawer.k-drawer-end) {
|
|
40326
|
+
flex-direction: row-reverse;
|
|
40087
40327
|
}
|
|
40088
|
-
|
|
40089
40328
|
}
|
|
40090
40329
|
|
|
40091
40330
|
|
|
@@ -40104,8 +40343,7 @@ $kendo-drawer-selected-hover-text: $kendo-selected-text !default;
|
|
|
40104
40343
|
border-radius: $kendo-drawer-scrollbar-radius;
|
|
40105
40344
|
}
|
|
40106
40345
|
}
|
|
40107
|
-
.k-drawer-items
|
|
40108
|
-
.k-drawer-items ul {
|
|
40346
|
+
.k-drawer-items {
|
|
40109
40347
|
margin: 0;
|
|
40110
40348
|
padding: 0;
|
|
40111
40349
|
list-style: none;
|
|
@@ -40168,61 +40406,18 @@ $kendo-drawer-selected-hover-text: $kendo-selected-text !default;
|
|
|
40168
40406
|
}
|
|
40169
40407
|
}
|
|
40170
40408
|
}
|
|
40409
|
+
|
|
40410
|
+
|
|
40411
|
+
// Separator
|
|
40171
40412
|
.k-drawer-separator {
|
|
40172
40413
|
padding: 0;
|
|
40173
40414
|
height: 1px;
|
|
40174
40415
|
}
|
|
40175
40416
|
|
|
40176
40417
|
|
|
40177
|
-
|
|
40178
40418
|
// Mini mode
|
|
40179
|
-
.k-drawer-mini {
|
|
40180
|
-
|
|
40181
|
-
.k-drawer-wrapper {
|
|
40182
|
-
width: $kendo-drawer-mini-initial-width;
|
|
40183
|
-
}
|
|
40184
|
-
|
|
40185
|
-
}
|
|
40186
|
-
|
|
40187
|
-
|
|
40188
|
-
.k-rtl,
|
|
40189
|
-
[dir="rtl"] {
|
|
40190
|
-
|
|
40191
|
-
// Borders
|
|
40192
|
-
&.k-drawer-mini .k-drawer-start,
|
|
40193
|
-
.k-drawer-mini .k-drawer-start,
|
|
40194
|
-
.k-drawer-expanded .k-drawer-start,
|
|
40195
|
-
&.k-drawer-expanded .k-drawer-start {
|
|
40196
|
-
border-left-width: $kendo-drawer-border-width;
|
|
40197
|
-
border-right-width: 0;
|
|
40198
|
-
}
|
|
40199
|
-
&.k-drawer-mini .k-drawer-end,
|
|
40200
|
-
.k-drawer-mini .k-drawer-end,
|
|
40201
|
-
&.k-drawer-expanded .k-drawer-end
|
|
40202
|
-
.k-drawer-expanded .k-drawer-end {
|
|
40203
|
-
border-left-width: 0;
|
|
40204
|
-
border-right-width: $kendo-drawer-border-width;
|
|
40205
|
-
}
|
|
40206
|
-
|
|
40207
|
-
// Position
|
|
40208
|
-
&.k-drawer-overlay .k-drawer-start,
|
|
40209
|
-
.k-drawer-overlay .k-drawer-start {
|
|
40210
|
-
left: auto;
|
|
40211
|
-
right: 0;
|
|
40212
|
-
}
|
|
40213
|
-
&.k-drawer-overlay .k-drawer-end,
|
|
40214
|
-
.k-drawer-overlay .k-drawer-end {
|
|
40215
|
-
left: 0;
|
|
40216
|
-
right: auto;
|
|
40217
|
-
}
|
|
40218
|
-
|
|
40219
|
-
// Order
|
|
40220
|
-
.k-drawer-left.k-drawer-push .k-drawer {
|
|
40221
|
-
order: 1;
|
|
40222
|
-
}
|
|
40223
|
-
.k-drawer-right.k-drawer-push .k-drawer {
|
|
40224
|
-
order: 0;
|
|
40225
|
-
}
|
|
40419
|
+
.k-drawer-mini .k-drawer-wrapper {
|
|
40420
|
+
width: $kendo-drawer-mini-initial-width;
|
|
40226
40421
|
}
|
|
40227
40422
|
}
|
|
40228
40423
|
|
|
@@ -45216,108 +45411,274 @@ $_kendo-module-meta: (
|
|
|
45216
45411
|
// #region @import "./_variables.scss"; -> scss/panelbar/_variables.scss
|
|
45217
45412
|
// Panelbar
|
|
45218
45413
|
|
|
45414
|
+
/// The horizontal padding of the PanelBar.
|
|
45415
|
+
/// @group panelbar
|
|
45219
45416
|
$kendo-panelbar-padding-x: 0px !default;
|
|
45417
|
+
/// The vertical padding of the PanelBar.
|
|
45418
|
+
/// @group panelbar
|
|
45220
45419
|
$kendo-panelbar-padding-y: 0px !default;
|
|
45420
|
+
/// The font family of the PanelBar.
|
|
45421
|
+
/// @group panelbar
|
|
45221
45422
|
$kendo-panelbar-font-family: $kendo-font-family !default;
|
|
45423
|
+
/// The font size of the PanelBar.
|
|
45424
|
+
/// @group panelbar
|
|
45222
45425
|
$kendo-panelbar-font-size: $kendo-font-size-md !default;
|
|
45426
|
+
/// The line height of the PanelBar.
|
|
45427
|
+
/// @group panelbar
|
|
45223
45428
|
$kendo-panelbar-line-height: $kendo-line-height-md !default;
|
|
45429
|
+
/// The width of the border around the PanelBar.
|
|
45430
|
+
/// @group panelbar
|
|
45224
45431
|
$kendo-panelbar-border-width: 1px !default;
|
|
45432
|
+
/// The border style around the the PanelBar.
|
|
45433
|
+
/// @group panelbar
|
|
45225
45434
|
$kendo-panelbar-border-style: solid !default;
|
|
45435
|
+
/// The width of the border around the PanelBar items.
|
|
45436
|
+
/// @group panelbar
|
|
45226
45437
|
$kendo-panelbar-item-border-width: 1px !default;
|
|
45438
|
+
/// The style of the border around the PanelBar items.
|
|
45439
|
+
/// @group panelbar
|
|
45227
45440
|
$kendo-panelbar-item-border-style: solid !default;
|
|
45228
45441
|
|
|
45442
|
+
/// The horizontal padding of the PanelBar header.
|
|
45443
|
+
/// @group panelbar
|
|
45229
45444
|
$kendo-panelbar-header-padding-x: k-map-get( $kendo-spacing, 6 ) !default;
|
|
45445
|
+
/// The vertical padding of the PanelBar header.
|
|
45446
|
+
/// @group panelbar
|
|
45230
45447
|
$kendo-panelbar-header-padding-y: k-map-get( $kendo-spacing, 4 ) !default;
|
|
45231
45448
|
|
|
45449
|
+
/// The horizontal padding of the PanelBar items.
|
|
45450
|
+
/// @group panelbar
|
|
45232
45451
|
$kendo-panelbar-item-padding-x: k-map-get( $kendo-spacing, 6 ) !default;
|
|
45452
|
+
/// The vertical padding of the PanelBar items.
|
|
45453
|
+
/// @group panelbar
|
|
45233
45454
|
$kendo-panelbar-item-padding-y: k-map-get( $kendo-spacing, 3 ) !default;
|
|
45234
45455
|
|
|
45456
|
+
/// The maximum nesting of the PanelBar items.
|
|
45457
|
+
/// @group panelbar
|
|
45235
45458
|
$kendo-panelbar-item-level-count: 4 !default;
|
|
45236
45459
|
|
|
45460
|
+
/// The background color of the PanelBar.
|
|
45461
|
+
/// @group panelbar
|
|
45237
45462
|
$kendo-panelbar-bg: $kendo-component-bg !default;
|
|
45463
|
+
/// The text color of the PanelBar.
|
|
45464
|
+
/// @group panelbar
|
|
45238
45465
|
$kendo-panelbar-text: $kendo-component-text !default;
|
|
45466
|
+
/// The border color of the PanelBar.
|
|
45467
|
+
/// @group panelbar
|
|
45239
45468
|
$kendo-panelbar-border: $kendo-component-border !default;
|
|
45240
45469
|
|
|
45470
|
+
/// The background color of the PanelBar header.
|
|
45471
|
+
/// @group panelbar
|
|
45241
45472
|
$kendo-panelbar-header-bg: $kendo-panelbar-bg !default;
|
|
45473
|
+
/// The text color of the PanelBar header.
|
|
45474
|
+
/// @group panelbar
|
|
45242
45475
|
$kendo-panelbar-header-text: $kendo-link-text !default;
|
|
45476
|
+
/// The border color of the PanelBar header.
|
|
45477
|
+
/// @group panelbar
|
|
45243
45478
|
$kendo-panelbar-header-border: null !default;
|
|
45479
|
+
/// The gradient of the PanelBar header.
|
|
45480
|
+
/// @group panelbar
|
|
45244
45481
|
$kendo-panelbar-header-gradient: null !default;
|
|
45245
45482
|
|
|
45483
|
+
/// The background color of the hovered PanelBar header.
|
|
45484
|
+
/// @group panelbar
|
|
45246
45485
|
$kendo-panelbar-header-hover-bg: if($kendo-enable-color-system, k-color( base-subtle-hover ), k-try-shade( $kendo-panelbar-header-bg, .5 )) !default;
|
|
45486
|
+
/// The text color of the hovered PanelBar header.
|
|
45487
|
+
/// @group panelbar
|
|
45247
45488
|
$kendo-panelbar-header-hover-text: null !default;
|
|
45489
|
+
/// The border color of the hovered PanelBar header.
|
|
45490
|
+
/// @group panelbar
|
|
45248
45491
|
$kendo-panelbar-header-hover-border: null !default;
|
|
45492
|
+
/// The gradient of the hovered PanelBar header.
|
|
45493
|
+
/// @group panelbar
|
|
45249
45494
|
$kendo-panelbar-header-hover-gradient: null !default;
|
|
45250
45495
|
|
|
45496
|
+
/// The background color of the focused PanelBar header.
|
|
45497
|
+
/// @group panelbar
|
|
45251
45498
|
$kendo-panelbar-header-focus-bg: null !default;
|
|
45499
|
+
/// The text color of the focused PanelBar header.
|
|
45500
|
+
/// @group panelbar
|
|
45252
45501
|
$kendo-panelbar-header-focus-text: null !default;
|
|
45502
|
+
/// The border color of the focused PanelBar header.
|
|
45503
|
+
/// @group panelbar
|
|
45253
45504
|
$kendo-panelbar-header-focus-border: null !default;
|
|
45505
|
+
/// The gradient of the focused PanelBar header.
|
|
45506
|
+
/// @group panelbar
|
|
45254
45507
|
$kendo-panelbar-header-focus-gradient: null !default;
|
|
45508
|
+
/// The shadow of the focused PanelBar header.
|
|
45509
|
+
/// @group panelbar
|
|
45255
45510
|
$kendo-panelbar-header-focus-shadow: $kendo-list-item-focus-shadow !default;
|
|
45256
45511
|
|
|
45512
|
+
/// The background color of the focused and hovered PanelBar header.
|
|
45513
|
+
/// @group panelbar
|
|
45257
45514
|
$kendo-panelbar-header-hover-focus-bg: null !default;
|
|
45515
|
+
/// The text color of the focused and hovered PanelBar header.
|
|
45516
|
+
/// @group panelbar
|
|
45258
45517
|
$kendo-panelbar-header-hover-focus-text: null !default;
|
|
45518
|
+
/// The border color of the focused and hovered PanelBar header.
|
|
45519
|
+
/// @group panelbar
|
|
45259
45520
|
$kendo-panelbar-header-hover-focus-border: null !default;
|
|
45521
|
+
/// The gradient of the focused and hovered PanelBar header.
|
|
45522
|
+
/// @group panelbar
|
|
45260
45523
|
$kendo-panelbar-header-hover-focus-gradient: null !default;
|
|
45261
45524
|
|
|
45525
|
+
/// The background color of the selected PanelBar header.
|
|
45526
|
+
/// @group panelbar
|
|
45262
45527
|
$kendo-panelbar-header-selected-bg: $kendo-selected-bg !default;
|
|
45528
|
+
/// The text color of the selected PanelBar header.
|
|
45529
|
+
/// @group panelbar
|
|
45263
45530
|
$kendo-panelbar-header-selected-text: $kendo-selected-text !default;
|
|
45531
|
+
/// The border color of the selected PanelBar header.
|
|
45532
|
+
/// @group panelbar
|
|
45264
45533
|
$kendo-panelbar-header-selected-border: null !default;
|
|
45534
|
+
/// The gradient of the selected PanelBar header.
|
|
45535
|
+
/// @group panelbar
|
|
45265
45536
|
$kendo-panelbar-header-selected-gradient: null !default;
|
|
45266
45537
|
|
|
45538
|
+
/// The background color of the selected and hovered PanelBar header.
|
|
45539
|
+
/// @group panelbar
|
|
45267
45540
|
$kendo-panelbar-header-selected-hover-bg: if($kendo-enable-color-system, k-color( primary-hover ), k-try-shade( $kendo-panelbar-header-selected-bg )) !default;
|
|
45541
|
+
/// The text color of the selected and hovered PanelBar header.
|
|
45542
|
+
/// @group panelbar
|
|
45268
45543
|
$kendo-panelbar-header-selected-hover-text: null !default;
|
|
45544
|
+
/// The border color of the selected and hovered PanelBar header.
|
|
45545
|
+
/// @group panelbar
|
|
45269
45546
|
$kendo-panelbar-header-selected-hover-border: null !default;
|
|
45547
|
+
/// The gradient of the selected and hovered PanelBar header.
|
|
45548
|
+
/// @group panelbar
|
|
45270
45549
|
$kendo-panelbar-header-selected-hover-gradient: null !default;
|
|
45271
45550
|
|
|
45551
|
+
/// The background color of the selected and focused PanelBar header.
|
|
45552
|
+
/// @group panelbar
|
|
45272
45553
|
$kendo-panelbar-header-selected-focus-bg: null !default;
|
|
45554
|
+
/// The text color of the selected and focused PanelBar header.
|
|
45555
|
+
/// @group panelbar
|
|
45273
45556
|
$kendo-panelbar-header-selected-focus-text: null !default;
|
|
45557
|
+
/// The border color of the selected and focused PanelBar header.
|
|
45558
|
+
/// @group panelbar
|
|
45274
45559
|
$kendo-panelbar-header-selected-focus-border: null !default;
|
|
45560
|
+
/// The gradient of the selected and focused PanelBar header.
|
|
45561
|
+
/// @group panelbar
|
|
45275
45562
|
$kendo-panelbar-header-selected-focus-gradient: null !default;
|
|
45276
45563
|
|
|
45564
|
+
/// The background color of the selected, hovered and focused PanelBar header.
|
|
45565
|
+
/// @group panelbar
|
|
45277
45566
|
$kendo-panelbar-header-selected-hover-focus-bg: null !default;
|
|
45567
|
+
/// The text color of the selected, hovered and focused PanelBar header.
|
|
45568
|
+
/// @group panelbar
|
|
45278
45569
|
$kendo-panelbar-header-selected-hover-focus-text: null !default;
|
|
45570
|
+
/// The border color of the selected, hovered and focused PanelBar header.
|
|
45571
|
+
/// @group panelbar
|
|
45279
45572
|
$kendo-panelbar-header-selected-hover-focus-border: null !default;
|
|
45573
|
+
/// The gradient of the selected, hovered and focused PanelBar header.
|
|
45574
|
+
/// @group panelbar
|
|
45280
45575
|
$kendo-panelbar-header-selected-hover-focus-gradient: null !default;
|
|
45281
45576
|
|
|
45577
|
+
/// The background color of the hovered PanelBar items.
|
|
45578
|
+
/// @group panelbar
|
|
45282
45579
|
$kendo-panelbar-item-hover-bg: if($kendo-enable-color-system, k-color( base-hover ), k-try-shade( $kendo-panelbar-bg, 1 )) !default;
|
|
45580
|
+
/// The text color of the hovered PanelBar items.
|
|
45581
|
+
/// @group panelbar
|
|
45283
45582
|
$kendo-panelbar-item-hover-text: null !default;
|
|
45583
|
+
/// The border color of the hovered PanelBar items.
|
|
45584
|
+
/// @group panelbar
|
|
45284
45585
|
$kendo-panelbar-item-hover-border: null !default;
|
|
45586
|
+
/// The gradient of the hovered PanelBar items.
|
|
45587
|
+
/// @group panelbar
|
|
45285
45588
|
$kendo-panelbar-item-hover-gradient: null !default;
|
|
45286
45589
|
|
|
45590
|
+
/// The background color of the focused PanelBar items.
|
|
45591
|
+
/// @group panelbar
|
|
45287
45592
|
$kendo-panelbar-item-focus-bg: null !default;
|
|
45593
|
+
/// The text color of the focused PanelBar items.
|
|
45594
|
+
/// @group panelbar
|
|
45288
45595
|
$kendo-panelbar-item-focus-text: null !default;
|
|
45596
|
+
/// The border color of the focused PanelBar items.
|
|
45597
|
+
/// @group panelbar
|
|
45289
45598
|
$kendo-panelbar-item-focus-border: null !default;
|
|
45599
|
+
/// The gradient of the focused PanelBar items.
|
|
45600
|
+
/// @group panelbar
|
|
45290
45601
|
$kendo-panelbar-item-focus-gradient: null !default;
|
|
45602
|
+
/// The box shadow of the focused PanelBar items.
|
|
45603
|
+
/// @group panelbar
|
|
45291
45604
|
$kendo-panelbar-item-focus-shadow: $kendo-list-item-focus-shadow !default;
|
|
45292
45605
|
|
|
45606
|
+
/// The background color of the focused and hovered PanelBar items.
|
|
45607
|
+
/// @group panelbar
|
|
45293
45608
|
$kendo-panelbar-item-hover-focus-bg: null !default;
|
|
45609
|
+
/// The text color of the focused and hovered PanelBar items.
|
|
45610
|
+
/// @group panelbar
|
|
45294
45611
|
$kendo-panelbar-item-hover-focus-text: null !default;
|
|
45612
|
+
/// The border color of the focused and hovered PanelBar items.
|
|
45613
|
+
/// @group panelbar
|
|
45295
45614
|
$kendo-panelbar-item-hover-focus-border: null !default;
|
|
45615
|
+
/// The gradient of the focused and hovered PanelBar items.
|
|
45616
|
+
/// @group panelbar
|
|
45296
45617
|
$kendo-panelbar-item-hover-focus-gradient: null !default;
|
|
45297
45618
|
|
|
45619
|
+
/// The background color of the selected PanelBar items.
|
|
45620
|
+
/// @group panelbar
|
|
45298
45621
|
$kendo-panelbar-item-selected-bg: $kendo-selected-bg !default;
|
|
45622
|
+
/// The text color of the selected PanelBar items.
|
|
45623
|
+
/// @group panelbar
|
|
45299
45624
|
$kendo-panelbar-item-selected-text: $kendo-selected-text !default;
|
|
45625
|
+
/// The border color of the selected PanelBar items.
|
|
45626
|
+
/// @group panelbar
|
|
45300
45627
|
$kendo-panelbar-item-selected-border: null !default;
|
|
45628
|
+
/// The gradient of the selected PanelBar items.
|
|
45629
|
+
/// @group panelbar
|
|
45301
45630
|
$kendo-panelbar-item-selected-gradient: null !default;
|
|
45302
45631
|
|
|
45632
|
+
/// The background color of the selected and hovered PanelBar items.
|
|
45633
|
+
/// @group panelbar
|
|
45303
45634
|
$kendo-panelbar-item-selected-hover-bg: if($kendo-enable-color-system, k-color( primary-hover ), k-try-shade( $kendo-panelbar-item-selected-bg )) !default;
|
|
45635
|
+
/// The text color of the selected and hovered PanelBar items.
|
|
45636
|
+
/// @group panelbar
|
|
45304
45637
|
$kendo-panelbar-item-selected-hover-text: null !default;
|
|
45638
|
+
/// The border color of the selected and hovered PanelBar items.
|
|
45639
|
+
/// @group panelbar
|
|
45305
45640
|
$kendo-panelbar-item-selected-hover-border: null !default;
|
|
45641
|
+
/// The gradient of the selected and hovered PanelBar items.
|
|
45642
|
+
/// @group panelbar
|
|
45306
45643
|
$kendo-panelbar-item-selected-hover-gradient: null !default;
|
|
45307
45644
|
|
|
45645
|
+
/// The background color of the selected and focused PanelBar items.
|
|
45646
|
+
/// @group panelbar
|
|
45308
45647
|
$kendo-panelbar-item-selected-focus-bg: null !default;
|
|
45648
|
+
/// The text color of the selected and focused PanelBar items.
|
|
45649
|
+
/// @group panelbar
|
|
45309
45650
|
$kendo-panelbar-item-selected-focus-text: null !default;
|
|
45651
|
+
/// The border color of the selected and focused PanelBar items.
|
|
45652
|
+
/// @group panelbar
|
|
45310
45653
|
$kendo-panelbar-item-selected-focus-border: null !default;
|
|
45654
|
+
/// The gradient of the selected and focused PanelBar items.
|
|
45655
|
+
/// @group panelbar
|
|
45311
45656
|
$kendo-panelbar-item-selected-focus-gradient: null !default;
|
|
45312
45657
|
|
|
45658
|
+
/// The background color of the selected, hovered and focused PanelBar items.
|
|
45659
|
+
/// @group panelbar
|
|
45313
45660
|
$kendo-panelbar-item-selected-hover-focus-bg: null !default;
|
|
45661
|
+
/// The text color of the selected, hovered and focused PanelBar items.
|
|
45662
|
+
/// @group panelbar
|
|
45314
45663
|
$kendo-panelbar-item-selected-hover-focus-text: null !default;
|
|
45664
|
+
/// The border color of the selected, hovered and focused PanelBar items.
|
|
45665
|
+
/// @group panelbar
|
|
45315
45666
|
$kendo-panelbar-item-selected-hover-focus-border: null !default;
|
|
45667
|
+
/// The gradient of the selected, hovered and focused PanelBar items.
|
|
45668
|
+
/// @group panelbar
|
|
45316
45669
|
$kendo-panelbar-item-selected-hover-focus-gradient: null !default;
|
|
45317
45670
|
|
|
45671
|
+
/// The background color of the expanded PanelBar header.
|
|
45672
|
+
/// @group panelbar
|
|
45318
45673
|
$kendo-panelbar-header-expanded-bg: null !default;
|
|
45674
|
+
/// The text color of the expanded PanelBar header.
|
|
45675
|
+
/// @group panelbar
|
|
45319
45676
|
$kendo-panelbar-header-expanded-text: null !default;
|
|
45677
|
+
/// The border color of the expanded PanelBar header.
|
|
45678
|
+
/// @group panelbar
|
|
45320
45679
|
$kendo-panelbar-header-expanded-border: null !default;
|
|
45680
|
+
/// The gradient of the expanded PanelBar header.
|
|
45681
|
+
/// @group panelbar
|
|
45321
45682
|
$kendo-panelbar-header-expanded-gradient: null !default;
|
|
45322
45683
|
|
|
45323
45684
|
// #endregion
|
|
@@ -45350,7 +45711,6 @@ $kendo-panelbar-header-expanded-gradient: null !default;
|
|
|
45350
45711
|
|
|
45351
45712
|
|
|
45352
45713
|
// Root
|
|
45353
|
-
> .k-item,
|
|
45354
45714
|
> .k-panelbar-header {
|
|
45355
45715
|
// TODO
|
|
45356
45716
|
border-width: 0;
|
|
@@ -45376,14 +45736,12 @@ $kendo-panelbar-header-expanded-gradient: null !default;
|
|
|
45376
45736
|
transition: $kendo-transition;
|
|
45377
45737
|
}
|
|
45378
45738
|
}
|
|
45379
|
-
> .k-item + .k-item,
|
|
45380
45739
|
> .k-panelbar-header + .k-panelbar-header {
|
|
45381
45740
|
border-top-width: $kendo-panelbar-item-border-width;
|
|
45382
45741
|
}
|
|
45383
45742
|
|
|
45384
45743
|
|
|
45385
45744
|
// Sub
|
|
45386
|
-
.k-group,
|
|
45387
45745
|
.k-panelbar-group {
|
|
45388
45746
|
margin: 0;
|
|
45389
45747
|
padding: 0;
|
|
@@ -45393,7 +45751,6 @@ $kendo-panelbar-header-expanded-gradient: null !default;
|
|
|
45393
45751
|
background-color: transparent;
|
|
45394
45752
|
list-style: none;
|
|
45395
45753
|
}
|
|
45396
|
-
.k-group > .k-item,
|
|
45397
45754
|
.k-panelbar-group > .k-panelbar-item {
|
|
45398
45755
|
display: block;
|
|
45399
45756
|
|
|
@@ -45440,8 +45797,8 @@ $kendo-panelbar-header-expanded-gradient: null !default;
|
|
|
45440
45797
|
.k-panelbar-toggle {
|
|
45441
45798
|
margin-inline-start: auto;
|
|
45442
45799
|
}
|
|
45443
|
-
.k-group .k-panelbar-expand,
|
|
45444
|
-
.k-group .k-panelbar-collapse,
|
|
45800
|
+
.k-panelbar-group .k-panelbar-expand,
|
|
45801
|
+
.k-panelbar-group .k-panelbar-collapse,
|
|
45445
45802
|
.k-panelbar-group .k-panelbar-toggle {
|
|
45446
45803
|
margin-inline-end: calc( #{$kendo-panelbar-header-padding-x} - #{$kendo-panelbar-item-padding-x} );
|
|
45447
45804
|
}
|
|
@@ -45450,7 +45807,6 @@ $kendo-panelbar-header-expanded-gradient: null !default;
|
|
|
45450
45807
|
.k-rtl &,
|
|
45451
45808
|
&.k-rtl,
|
|
45452
45809
|
&[dir = "rtl"] {
|
|
45453
|
-
.k-group > .k-item,
|
|
45454
45810
|
.k-panelbar-group > .k-panelbar-item {
|
|
45455
45811
|
// Hierarchy items
|
|
45456
45812
|
@for $i from 1 through $kendo-panelbar-item-level-count {
|
|
@@ -45495,7 +45851,6 @@ $kendo-panelbar-header-expanded-gradient: null !default;
|
|
|
45495
45851
|
|
|
45496
45852
|
|
|
45497
45853
|
// Root
|
|
45498
|
-
> .k-item,
|
|
45499
45854
|
> .k-panelbar-header {
|
|
45500
45855
|
|
|
45501
45856
|
&.k-expanded.k-level-0 > .k-link {
|
|
@@ -45607,12 +45962,9 @@ $kendo-panelbar-header-expanded-gradient: null !default;
|
|
|
45607
45962
|
|
|
45608
45963
|
|
|
45609
45964
|
// Sub
|
|
45610
|
-
.k-group,
|
|
45611
45965
|
.k-panelbar-group {
|
|
45612
45966
|
|
|
45613
45967
|
// Hover
|
|
45614
|
-
> .k-item > .k-link:hover,
|
|
45615
|
-
> .k-item > .k-link.k-hover,
|
|
45616
45968
|
> .k-panelbar-item > .k-link:hover,
|
|
45617
45969
|
> .k-panelbar-item > .k-link.k-hover {
|
|
45618
45970
|
@include fill(
|
|
@@ -45624,8 +45976,6 @@ $kendo-panelbar-header-expanded-gradient: null !default;
|
|
|
45624
45976
|
}
|
|
45625
45977
|
|
|
45626
45978
|
// Focus
|
|
45627
|
-
> .k-item > .k-link:focus,
|
|
45628
|
-
> .k-item > .k-link.k-focus,
|
|
45629
45979
|
> .k-panelbar-item > .k-link:focus,
|
|
45630
45980
|
> .k-panelbar-item > .k-link.k-focus {
|
|
45631
45981
|
@include fill(
|
|
@@ -45638,8 +45988,6 @@ $kendo-panelbar-header-expanded-gradient: null !default;
|
|
|
45638
45988
|
}
|
|
45639
45989
|
|
|
45640
45990
|
// Focus & Hover
|
|
45641
|
-
> .k-item > .k-link:focus:hover,
|
|
45642
|
-
> .k-item > .k-link.k-focus.k-hover,
|
|
45643
45991
|
> .k-panelbar-item > .k-link:focus:hover,
|
|
45644
45992
|
> .k-panelbar-item > .k-link.k-focus.k-hover {
|
|
45645
45993
|
@include fill(
|
|
@@ -45651,7 +45999,6 @@ $kendo-panelbar-header-expanded-gradient: null !default;
|
|
|
45651
45999
|
}
|
|
45652
46000
|
|
|
45653
46001
|
// Selected
|
|
45654
|
-
> .k-item > .k-link.k-selected,
|
|
45655
46002
|
> .k-panelbar-item > .k-link.k-selected {
|
|
45656
46003
|
@include fill(
|
|
45657
46004
|
$kendo-panelbar-item-selected-text,
|
|
@@ -45662,8 +46009,6 @@ $kendo-panelbar-header-expanded-gradient: null !default;
|
|
|
45662
46009
|
}
|
|
45663
46010
|
|
|
45664
46011
|
// Selected Hover
|
|
45665
|
-
> .k-item > .k-link.k-selected:hover,
|
|
45666
|
-
> .k-item > .k-link.k-selected.k-hover,
|
|
45667
46012
|
> .k-panelbar-item > .k-link.k-selected:hover,
|
|
45668
46013
|
> .k-panelbar-item > .k-link.k-selected.k-hover {
|
|
45669
46014
|
@include fill(
|
|
@@ -45675,8 +46020,6 @@ $kendo-panelbar-header-expanded-gradient: null !default;
|
|
|
45675
46020
|
}
|
|
45676
46021
|
|
|
45677
46022
|
// Selected Focus
|
|
45678
|
-
> .k-item > .k-link.k-selected:focus,
|
|
45679
|
-
> .k-item > .k-link.k-selected.k-focus,
|
|
45680
46023
|
> .k-panelbar-item > .k-link.k-selected:focus,
|
|
45681
46024
|
> .k-panelbar-item > .k-link.k-selected.k-focus {
|
|
45682
46025
|
@include fill(
|
|
@@ -45688,8 +46031,6 @@ $kendo-panelbar-header-expanded-gradient: null !default;
|
|
|
45688
46031
|
}
|
|
45689
46032
|
|
|
45690
46033
|
// Selected Focus & Hover
|
|
45691
|
-
> .k-item > .k-link.k-selected:focus:hover,
|
|
45692
|
-
> .k-item > .k-link.k-selected.k-focus.k-hover,
|
|
45693
46034
|
> .k-panelbar-item > .k-link.k-selected:focus:hover,
|
|
45694
46035
|
> .k-panelbar-item > .k-link.k-selected.k-focus.k-hover {
|
|
45695
46036
|
@include fill(
|