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