@progress/kendo-theme-material 6.4.0-dev.2 → 6.4.0-dev.4
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 +80 -242
- package/dist/all.scss +293 -516
- package/dist/meta/sassdoc-data.json +414 -414
- package/dist/meta/sassdoc-raw-data.json +205 -205
- package/dist/meta/variables.json +6 -2
- package/dist/meta/variables.scss +1 -1
- package/lib/swatches/material-aqua-dark.json +1 -1
- package/lib/swatches/material-arctic.json +1 -1
- package/lib/swatches/material-burnt-teal.json +1 -1
- package/lib/swatches/material-dataviz-v4.json +1 -1
- package/lib/swatches/material-eggplant.json +1 -1
- package/lib/swatches/material-lime-dark.json +1 -1
- package/lib/swatches/material-lime.json +1 -1
- package/lib/swatches/material-main-dark.json +1 -1
- package/lib/swatches/material-main.json +1 -1
- package/lib/swatches/material-nova.json +1 -1
- package/lib/swatches/material-pacific-dark.json +1 -1
- package/lib/swatches/material-pacific.json +1 -1
- package/lib/swatches/material-sky-dark.json +1 -1
- package/lib/swatches/material-sky.json +1 -1
- package/lib/swatches/material-smoke.json +1 -1
- package/package.json +5 -5
- package/scss/_variables.scss +1 -2
- package/scss/badge/_variables.scss +2 -2
- package/scss/button/_layout.scss +3 -3
- package/scss/chip/_theme.scss +1 -1
- package/scss/chip/_variables.scss +1 -1
- package/scss/core/color-system/_color-system-material.scss +0 -3
- package/scss/editor/_variables.scss +1 -1
- package/scss/fab/_variables.scss +1 -1
- package/scss/floating-label/_variables.scss +1 -1
- package/scss/grid/_theme.scss +2 -4
- package/scss/grid/_variables.scss +1 -0
- package/scss/input/_layout.scss +3 -6
- package/scss/input/_variables.scss +1 -1
- package/scss/listbox/_index.scss +0 -1
- package/scss/menu/_variables.scss +1 -1
- package/scss/notification/_variables.scss +0 -1
- package/scss/progressbar/_theme.scss +2 -2
- package/scss/scheduler/_layout.scss +3 -2
- package/scss/signature/_variables.scss +1 -1
- package/scss/typography/_variables.scss +1 -1
package/dist/all.scss
CHANGED
|
@@ -10,8 +10,10 @@ $wcag-min-contrast-ratio: 4.5 !default;
|
|
|
10
10
|
// #region @import "@progress/kendo-theme-core/scss/functions/index.import.scss"; -> node_modules/@progress/kendo-theme-core/scss/functions/index.import.scss
|
|
11
11
|
// #region @import "../_variables.scss"; -> node_modules/@progress/kendo-theme-core/scss/_variables.scss
|
|
12
12
|
// Equilateral triangle variables
|
|
13
|
+
// stylelint-disable number-max-precision
|
|
13
14
|
$equilateral-index: 1.7320508076 !default;
|
|
14
15
|
$equilateral-height: .8660254038 !default;
|
|
16
|
+
// stylelint-enable number-max-precision
|
|
15
17
|
|
|
16
18
|
// #endregion
|
|
17
19
|
|
|
@@ -192,15 +194,13 @@ $equilateral-height: .8660254038 !default;
|
|
|
192
194
|
|
|
193
195
|
// Precomputed linear color channel values, for use in contrast calculations.
|
|
194
196
|
// See https://www.w3.org/TR/WCAG20-TECHS/G17.html#G17-tests
|
|
195
|
-
//
|
|
196
197
|
// Algorithm, for c in 0 to 255:
|
|
197
198
|
// f(c) {
|
|
198
199
|
// c = c / 255;
|
|
199
200
|
// return c < 0.03928 ? c / 12.92 : Math.pow((c + 0.055) / 1.055, 2.4);
|
|
200
201
|
// }
|
|
201
|
-
//
|
|
202
202
|
// This lookup table is needed since there is no `pow` in SASS.
|
|
203
|
-
// stylelint-disable
|
|
203
|
+
// stylelint-disable number-max-precision
|
|
204
204
|
$_linear-channel-values: (
|
|
205
205
|
0
|
|
206
206
|
.0003035269835488375
|
|
@@ -459,6 +459,7 @@ $_linear-channel-values: (
|
|
|
459
459
|
.9911020971138298
|
|
460
460
|
1
|
|
461
461
|
);
|
|
462
|
+
// stylelint-enable number-max-precision
|
|
462
463
|
|
|
463
464
|
/// The contrast ratio to reach against white, to determine if color changes from "light" to "dark".
|
|
464
465
|
/// Acceptable values for WCAG 2.0 are 3, 4.5 and 7.
|
|
@@ -503,7 +504,6 @@ $wcag-light: white !default;
|
|
|
503
504
|
/// @link https://www.w3.org/TR/WCAG/#dfn-contrast-ratio
|
|
504
505
|
/// @link https://www.w3.org/TR/WCAG20-TECHS/G17.html#G17-tests
|
|
505
506
|
@function k-color-contrast-ratio( $background, $foreground ) {
|
|
506
|
-
// sass-lint:disable-block variable-name-format
|
|
507
507
|
$backLum: k-color-luminance( $background ) + .05;
|
|
508
508
|
$foreLum: k-color-luminance( $foreground ) + .05;
|
|
509
509
|
|
|
@@ -554,7 +554,6 @@ $wcag-light: white !default;
|
|
|
554
554
|
}
|
|
555
555
|
}
|
|
556
556
|
|
|
557
|
-
// sass-lint:disable-block no-warn
|
|
558
557
|
@warn "Found no color leading to #{$min-ratio}:1 contrast ratio against #{$background}...";
|
|
559
558
|
|
|
560
559
|
@return $max-ratio-color;
|
|
@@ -738,7 +737,7 @@ $kendo-color-level-step: 8% !default;
|
|
|
738
737
|
@return null;
|
|
739
738
|
}
|
|
740
739
|
|
|
741
|
-
@if $_prefix == null {
|
|
740
|
+
@if $_prefix == null { // stylelint-disable-line
|
|
742
741
|
$_prefix: "";
|
|
743
742
|
}
|
|
744
743
|
|
|
@@ -931,7 +930,6 @@ $_kendo-escape-class-name: (
|
|
|
931
930
|
@return $result;
|
|
932
931
|
}
|
|
933
932
|
|
|
934
|
-
// sass-lint:disable-block no-warn
|
|
935
933
|
@warn "No list passed.";
|
|
936
934
|
@return $result;
|
|
937
935
|
}
|
|
@@ -1143,7 +1141,7 @@ $_kendo-escape-class-name: (
|
|
|
1143
1141
|
/// @example scss - Usage
|
|
1144
1142
|
/// @debug k-math-random(); // => 0.123456789
|
|
1145
1143
|
@function k-math-random( $limit: null ) {
|
|
1146
|
-
@if ( $limit == null ) {
|
|
1144
|
+
@if ( $limit == null ) { // stylelint-disable-line
|
|
1147
1145
|
@return random();
|
|
1148
1146
|
}
|
|
1149
1147
|
|
|
@@ -1203,7 +1201,7 @@ $_kendo-escape-class-name: (
|
|
|
1203
1201
|
/// @debug k-map-get( ( "foo": "bar" ), "foo" ); // => "bar"
|
|
1204
1202
|
@function k-map-get( $map, $keys... ) {
|
|
1205
1203
|
@each $key in $keys {
|
|
1206
|
-
$map: map-get( $map, $key );
|
|
1204
|
+
$map: map-get( $map, $key ); // stylelint-disable-line
|
|
1207
1205
|
}
|
|
1208
1206
|
@return $map;
|
|
1209
1207
|
}
|
|
@@ -1239,7 +1237,7 @@ $_kendo-escape-class-name: (
|
|
|
1239
1237
|
/// @debug k-map-merge( ( "foo": "bar" ), ( "baz": "qux" ) ); // => ( "foo": "bar", "baz": "qux" )
|
|
1240
1238
|
@function k-map-merge( $map, $args... ) {
|
|
1241
1239
|
@each $arg in $args {
|
|
1242
|
-
$map: map-merge( $map, $arg );
|
|
1240
|
+
$map: map-merge( $map, $arg ); // stylelint-disable-line
|
|
1243
1241
|
}
|
|
1244
1242
|
@return $map;
|
|
1245
1243
|
}
|
|
@@ -1697,7 +1695,6 @@ $_kendo-escape-class-name: (
|
|
|
1697
1695
|
$outline: $outline-prop;
|
|
1698
1696
|
|
|
1699
1697
|
$result: k-map-merge($result, (
|
|
1700
|
-
// sass-lint:disable-block indentation
|
|
1701
1698
|
#{$prefix}bg: $bg,
|
|
1702
1699
|
#{$prefix}text: $text,
|
|
1703
1700
|
#{$prefix}border: $border,
|
|
@@ -1727,7 +1724,7 @@ $_kendo-escape-class-name: (
|
|
|
1727
1724
|
$src-palette-name: k-map-get( $definition, PALETTE );
|
|
1728
1725
|
$matrix: k-map-remove( $definition, PALETTE );
|
|
1729
1726
|
|
|
1730
|
-
@if ($tc-index == null ) {
|
|
1727
|
+
@if ($tc-index == null ) { // stylelint-disable-line
|
|
1731
1728
|
$tmp-result: k-generate-theme-variant( $variant, $matrix, $src-palette-name );
|
|
1732
1729
|
$result: k-map-merge( $result, $tmp-result);
|
|
1733
1730
|
} @else {
|
|
@@ -3549,7 +3546,6 @@ $material-light-complimentary: (
|
|
|
3549
3546
|
|
|
3550
3547
|
// stylelint-disable-next-line function-comma-newline-after
|
|
3551
3548
|
$result: k-map-merge($base-palette, (
|
|
3552
|
-
// sass-lint:disable-block indentation
|
|
3553
3549
|
main: k-map-get($base-palette, $main),
|
|
3554
3550
|
lighter: k-map-get($base-palette, $lighter),
|
|
3555
3551
|
darker: k-map-get($base-palette, $darker),
|
|
@@ -3562,7 +3558,6 @@ $material-light-complimentary: (
|
|
|
3562
3558
|
@each $hue, $color in $base-palette {
|
|
3563
3559
|
// stylelint-disable-next-line function-comma-newline-after
|
|
3564
3560
|
$result: k-map-merge($result, (
|
|
3565
|
-
// sass-lint:disable-block indentation
|
|
3566
3561
|
"#{$hue}-contrast": material-contrast($base-palette, $hue)
|
|
3567
3562
|
));
|
|
3568
3563
|
}
|
|
@@ -3596,7 +3591,6 @@ $material-light-complimentary: (
|
|
|
3596
3591
|
@function material-theme($kendo-color-primary, $kendo-color-secondary, $theme-type, $warn: material-palette(red)) {
|
|
3597
3592
|
$complimentary: if($theme-type == dark, $material-dark-complimentary, $material-light-complimentary);
|
|
3598
3593
|
@return k-map-merge((
|
|
3599
|
-
// sass-lint:disable-block indentation
|
|
3600
3594
|
primary: $kendo-color-primary,
|
|
3601
3595
|
secondary: $kendo-color-secondary,
|
|
3602
3596
|
warn: $warn
|
|
@@ -3691,7 +3685,6 @@ $_kendo-data-uris: () !default;
|
|
|
3691
3685
|
/// @require $_kendo-data-uris
|
|
3692
3686
|
@mixin register-data-uri( $name, $content ) {
|
|
3693
3687
|
@if ( k-map-has-key( $_kendo-data-uris, $name ) ) {
|
|
3694
|
-
// sass-lint:disable-block no-warn
|
|
3695
3688
|
@warn "Attempt to redefine data URI of file `#{$name}`.";
|
|
3696
3689
|
}
|
|
3697
3690
|
|
|
@@ -3741,7 +3734,6 @@ $_kendo-data-uris: () !default;
|
|
|
3741
3734
|
}
|
|
3742
3735
|
|
|
3743
3736
|
@mixin checkerboard-gradient( $primary-color: white, $secondary-color: rgba( black, .09 ), $size: 10px ) {
|
|
3744
|
-
// sass-lint:disable-block indentation
|
|
3745
3737
|
$_position: calc( #{$size} / 2 );
|
|
3746
3738
|
|
|
3747
3739
|
background:
|
|
@@ -3791,7 +3783,7 @@ $_kendo-imported-modules: () !default;
|
|
|
3791
3783
|
/// @param {String} $name - The name of the exported module.
|
|
3792
3784
|
/// @require $_kendo-imported-modules
|
|
3793
3785
|
@mixin exports( $name ) {
|
|
3794
|
-
@if (k-list-index( $_kendo-imported-modules, $name ) == null) {
|
|
3786
|
+
@if (k-list-index( $_kendo-imported-modules, $name ) == null) { // stylelint-disable-line
|
|
3795
3787
|
$_kendo-imported-modules: k-list-append( $_kendo-imported-modules, $name ) !global;
|
|
3796
3788
|
@content;
|
|
3797
3789
|
}
|
|
@@ -4456,6 +4448,7 @@ $_kendo-dependencies: (
|
|
|
4456
4448
|
$_deps: () !default;
|
|
4457
4449
|
$_imported: () !default;
|
|
4458
4450
|
|
|
4451
|
+
// stylelint-disable scss/at-if-no-null
|
|
4459
4452
|
@mixin module-register( $name: null, $dependencies: null ) {
|
|
4460
4453
|
@if (k-list-index( $kendo-components, $name) != null) {
|
|
4461
4454
|
$_deps: k-map-merge( $_deps, ( $name: $dependencies ) );
|
|
@@ -4463,7 +4456,6 @@ $_imported: () !default;
|
|
|
4463
4456
|
@if $dependencies {
|
|
4464
4457
|
@each $dep in $dependencies {
|
|
4465
4458
|
@if ( k-list-index( $kendo-components, $dep ) == null ) {
|
|
4466
|
-
// sass-lint:disable-block no-warn
|
|
4467
4459
|
@warn "The module \"#{$name}\" depends on module \"#{$dep}\", but the styles will not be loaded!";
|
|
4468
4460
|
}
|
|
4469
4461
|
}
|
|
@@ -4477,7 +4469,6 @@ $_imported: () !default;
|
|
|
4477
4469
|
@if $dependencies {
|
|
4478
4470
|
@each $dep in $dependencies {
|
|
4479
4471
|
@if ( k-list-index( $_imported, $dep ) == null ) {
|
|
4480
|
-
// sass-lint:disable-block no-warn
|
|
4481
4472
|
@warn "The module \"#{$name}\" depends on module \"#{$dep}\", but the styles have not been loaded yet!";
|
|
4482
4473
|
}
|
|
4483
4474
|
}
|
|
@@ -4492,7 +4483,6 @@ $_imported: () !default;
|
|
|
4492
4483
|
@mixin verify-dependencies() {
|
|
4493
4484
|
@each $component in $kendo-components {
|
|
4494
4485
|
@if (k-map-has-key( $_kendo-dependencies, $component ) == false) {
|
|
4495
|
-
// sass-lint:disable-block no-warn
|
|
4496
4486
|
@error "Module '#{$component}' is not defined.";
|
|
4497
4487
|
}
|
|
4498
4488
|
}
|
|
@@ -4502,11 +4492,11 @@ $_imported: () !default;
|
|
|
4502
4492
|
@mixin verify-rendered() {
|
|
4503
4493
|
@each $component in $kendo-components {
|
|
4504
4494
|
@if (k-list-index( $_imported, $component ) == null) {
|
|
4505
|
-
// sass-lint:disable-block no-warn
|
|
4506
4495
|
@error "Module '#{$component}' has not been rendered.";
|
|
4507
4496
|
}
|
|
4508
4497
|
}
|
|
4509
4498
|
}
|
|
4499
|
+
// stylelint-enable scss/at-if-no-null
|
|
4510
4500
|
|
|
4511
4501
|
// #endregion
|
|
4512
4502
|
|
|
@@ -4543,7 +4533,7 @@ $_imported: () !default;
|
|
|
4543
4533
|
}
|
|
4544
4534
|
|
|
4545
4535
|
// #endregion
|
|
4546
|
-
// #region @import "./_layout"; -> node_modules/@progress/kendo-theme-core/scss/styles/_layout.scss
|
|
4536
|
+
// #region @import "./_layout.scss"; -> node_modules/@progress/kendo-theme-core/scss/styles/_layout.scss
|
|
4547
4537
|
@mixin kendo-core--styles--layout() {
|
|
4548
4538
|
|
|
4549
4539
|
// Basic layout
|
|
@@ -4597,8 +4587,8 @@ $_imported: () !default;
|
|
|
4597
4587
|
border-style: solid;
|
|
4598
4588
|
border-color: inherit;
|
|
4599
4589
|
display: block;
|
|
4600
|
-
flex-grow: 0 !important; //
|
|
4601
|
-
flex-shrink: 0 !important; //
|
|
4590
|
+
flex-grow: 0 !important; // stylelint-disable-line declaration-no-important
|
|
4591
|
+
flex-shrink: 0 !important; // stylelint-disable-line declaration-no-important
|
|
4602
4592
|
align-self: stretch;
|
|
4603
4593
|
}
|
|
4604
4594
|
.k-separator-horizontal,
|
|
@@ -4622,7 +4612,7 @@ $_imported: () !default;
|
|
|
4622
4612
|
|
|
4623
4613
|
// Hidden
|
|
4624
4614
|
.k-hidden {
|
|
4625
|
-
display: none !important; //
|
|
4615
|
+
display: none !important; // stylelint-disable-line declaration-no-important
|
|
4626
4616
|
}
|
|
4627
4617
|
|
|
4628
4618
|
|
|
@@ -4646,14 +4636,14 @@ $_imported: () !default;
|
|
|
4646
4636
|
|
|
4647
4637
|
// Hidden attribute
|
|
4648
4638
|
[hidden] {
|
|
4649
|
-
display: none !important; //
|
|
4639
|
+
display: none !important; // stylelint-disable-line declaration-no-important
|
|
4650
4640
|
}
|
|
4651
4641
|
|
|
4652
4642
|
|
|
4653
4643
|
// Hide script tags
|
|
4654
4644
|
// see https://github.com/telerik/kendo-themes/issues/2360
|
|
4655
4645
|
script {
|
|
4656
|
-
display: none !important; //
|
|
4646
|
+
display: none !important; // stylelint-disable-line declaration-no-important
|
|
4657
4647
|
}
|
|
4658
4648
|
|
|
4659
4649
|
}
|
|
@@ -4699,7 +4689,6 @@ $kendo-auto-bootstrap: true !default;
|
|
|
4699
4689
|
|
|
4700
4690
|
// Spacing
|
|
4701
4691
|
$kendo-spacing: (
|
|
4702
|
-
// sass-lint:disable-block leading-zero
|
|
4703
4692
|
0: 0,
|
|
4704
4693
|
1px: 1px,
|
|
4705
4694
|
0.5: 2px,
|
|
@@ -4800,7 +4789,7 @@ $kendo-icon-padding: k-map-get( $kendo-spacing, 1 ) !default;
|
|
|
4800
4789
|
$kendo-padding-x: 16px !default;
|
|
4801
4790
|
$kendo-padding-y: 4px !default;
|
|
4802
4791
|
$kendo-padding-sm-x: k-map-get( $kendo-spacing, 2 ) !default;
|
|
4803
|
-
$kendo-padding-sm-y: k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
4792
|
+
$kendo-padding-sm-y: k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
4804
4793
|
$kendo-padding-md-x: k-map-get( $kendo-spacing, 4 ) !default;
|
|
4805
4794
|
$kendo-padding-md-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
4806
4795
|
$kendo-padding-lg-x: k-map-get( $kendo-spacing, 6 ) !default;
|
|
@@ -5152,8 +5141,7 @@ $kendo-invalid-shadow: null !default;
|
|
|
5152
5141
|
// PDF export icons fix
|
|
5153
5142
|
.kendo-pdf-hide-pseudo-elements::before,
|
|
5154
5143
|
.kendo-pdf-hide-pseudo-elements::after {
|
|
5155
|
-
//
|
|
5156
|
-
display: none !important;
|
|
5144
|
+
display: none !important; // stylelint-disable-line declaration-no-important
|
|
5157
5145
|
}
|
|
5158
5146
|
}
|
|
5159
5147
|
|
|
@@ -5652,9 +5640,8 @@ $kendo-invalid-shadow: null !default;
|
|
|
5652
5640
|
}
|
|
5653
5641
|
|
|
5654
5642
|
&-exit-active {
|
|
5655
|
-
// sass-lint:disable-block no-important
|
|
5656
5643
|
// override any max-height set to element to allow animation
|
|
5657
|
-
max-height: 0 !important;
|
|
5644
|
+
max-height: 0 !important; // stylelint-disable-line declaration-no-important
|
|
5658
5645
|
transition: max-height 300ms ease-in-out;
|
|
5659
5646
|
}
|
|
5660
5647
|
}
|
|
@@ -5671,9 +5658,8 @@ $kendo-invalid-shadow: null !default;
|
|
|
5671
5658
|
}
|
|
5672
5659
|
|
|
5673
5660
|
&-exit-active {
|
|
5674
|
-
// sass-lint:disable-block no-important
|
|
5675
5661
|
// override any max-height set to element to allow animation
|
|
5676
|
-
max-width: 0 !important;
|
|
5662
|
+
max-width: 0 !important; // stylelint-disable-line declaration-no-important
|
|
5677
5663
|
transition: max-width 300ms ease-in-out;
|
|
5678
5664
|
}
|
|
5679
5665
|
}
|
|
@@ -5685,7 +5671,7 @@ $kendo-invalid-shadow: null !default;
|
|
|
5685
5671
|
|
|
5686
5672
|
.k-fx-end .k-fx-next,
|
|
5687
5673
|
.k-fx-end .k-fx-current {
|
|
5688
|
-
transition: all $fx-duration ease-out;
|
|
5674
|
+
transition: all $fx-duration ease-out;
|
|
5689
5675
|
}
|
|
5690
5676
|
|
|
5691
5677
|
.k-fx {
|
|
@@ -5702,8 +5688,7 @@ $kendo-invalid-shadow: null !default;
|
|
|
5702
5688
|
|
|
5703
5689
|
.k-fx-hidden,
|
|
5704
5690
|
.k-fx-hidden * {
|
|
5705
|
-
//
|
|
5706
|
-
visibility: hidden !important;
|
|
5691
|
+
visibility: hidden !important; // stylelint-disable-line declaration-no-important
|
|
5707
5692
|
}
|
|
5708
5693
|
|
|
5709
5694
|
.k-fx-reverse {
|
|
@@ -5717,8 +5702,8 @@ $kendo-invalid-shadow: null !default;
|
|
|
5717
5702
|
}
|
|
5718
5703
|
|
|
5719
5704
|
// Zoom
|
|
5705
|
+
// stylelint-disable declaration-no-important
|
|
5720
5706
|
.k-fx-zoom {
|
|
5721
|
-
// sass-lint:disable-block no-important
|
|
5722
5707
|
&.k-fx-start .k-fx-next {
|
|
5723
5708
|
transform: scale(0) !important;
|
|
5724
5709
|
}
|
|
@@ -5742,6 +5727,7 @@ $kendo-invalid-shadow: null !default;
|
|
|
5742
5727
|
}
|
|
5743
5728
|
}
|
|
5744
5729
|
}
|
|
5730
|
+
// stylelint-enable declaration-no-important
|
|
5745
5731
|
|
|
5746
5732
|
// Fade
|
|
5747
5733
|
.k-fx-fade {
|
|
@@ -5780,7 +5766,7 @@ $kendo-invalid-shadow: null !default;
|
|
|
5780
5766
|
&.k-fx-end .k-fx-current .km-content,
|
|
5781
5767
|
&.k-fx-end .k-fx-current .km-header,
|
|
5782
5768
|
&.k-fx-end .k-fx-current .km-footer {
|
|
5783
|
-
transition: all $fx-duration ease-out;
|
|
5769
|
+
transition: all $fx-duration ease-out;
|
|
5784
5770
|
}
|
|
5785
5771
|
|
|
5786
5772
|
// left
|
|
@@ -6254,7 +6240,6 @@ $kendo-theme-colors: () !default;
|
|
|
6254
6240
|
$kendo-font-sizes: () !default;
|
|
6255
6241
|
|
|
6256
6242
|
$kendo-spacing: (
|
|
6257
|
-
// sass-lint:disable-block leading-zero
|
|
6258
6243
|
0: 0,
|
|
6259
6244
|
1px: 1px,
|
|
6260
6245
|
0.5: .125rem,
|
|
@@ -6292,7 +6277,6 @@ $kendo-spacing: (
|
|
|
6292
6277
|
) !default;
|
|
6293
6278
|
|
|
6294
6279
|
$kendo-sizing: k-map-merge( $kendo-spacing, (
|
|
6295
|
-
// sass-lint:disable-block indentation
|
|
6296
6280
|
"auto": auto,
|
|
6297
6281
|
"1/2": 50%,
|
|
6298
6282
|
"1/3": 33.333333%,
|
|
@@ -6335,8 +6319,6 @@ $kendo-border-radii: (
|
|
|
6335
6319
|
full: 9999px
|
|
6336
6320
|
) !default;
|
|
6337
6321
|
|
|
6338
|
-
//
|
|
6339
|
-
|
|
6340
6322
|
$kendo-utils: (
|
|
6341
6323
|
|
|
6342
6324
|
// Accessibility
|
|
@@ -6429,7 +6411,6 @@ $kendo-utils: (
|
|
|
6429
6411
|
),
|
|
6430
6412
|
"overscroll": (),
|
|
6431
6413
|
"placement": k-map-merge( $kendo-spacing, (
|
|
6432
|
-
// sass-lint:disable-block indentation
|
|
6433
6414
|
-1: -1px
|
|
6434
6415
|
)),
|
|
6435
6416
|
"position": (
|
|
@@ -6702,14 +6683,13 @@ $kendo-utils: (
|
|
|
6702
6683
|
fr: minmax( 0, 1fr ),
|
|
6703
6684
|
),
|
|
6704
6685
|
"gap": k-map-merge( $kendo-spacing, (
|
|
6705
|
-
// sass-lint:disable-block indentation
|
|
6706
6686
|
// TODO: remove this extension once we fix docs
|
|
6707
6687
|
xs: k-map-get( $kendo-spacing, 1 ),
|
|
6708
6688
|
sm: k-map-get( $kendo-spacing, 2 ),
|
|
6709
6689
|
md: k-map-get( $kendo-spacing, 3 ),
|
|
6710
6690
|
lg: k-map-get( $kendo-spacing, 4 ),
|
|
6711
6691
|
xl: k-map-get( $kendo-spacing, 6 ),
|
|
6712
|
-
thin: k-map-get( $kendo-spacing, 0.5 ),
|
|
6692
|
+
thin: k-map-get( $kendo-spacing, 0.5 ),
|
|
6713
6693
|
hair: k-map-get( $kendo-spacing, 1px )
|
|
6714
6694
|
)),
|
|
6715
6695
|
"align-content": (
|
|
@@ -6846,33 +6826,30 @@ $kendo-utils: (
|
|
|
6846
6826
|
// Spacing
|
|
6847
6827
|
"margin": k-map-merge( $kendo-spacing,
|
|
6848
6828
|
k-map-negate( $kendo-spacing), (
|
|
6849
|
-
// sass-lint:disable-block indentation
|
|
6850
6829
|
// TODO: remove this extension once we fix docs
|
|
6851
6830
|
xs: k-map-get( $kendo-spacing, 1 ),
|
|
6852
6831
|
sm: k-map-get( $kendo-spacing, 2 ),
|
|
6853
6832
|
md: k-map-get( $kendo-spacing, 3 ),
|
|
6854
6833
|
lg: k-map-get( $kendo-spacing, 4 ),
|
|
6855
6834
|
xl: k-map-get( $kendo-spacing, 6 ),
|
|
6856
|
-
thin: k-map-get( $kendo-spacing, 0.5 ),
|
|
6835
|
+
thin: k-map-get( $kendo-spacing, 0.5 ),
|
|
6857
6836
|
hair: k-map-get( $kendo-spacing, 1px ),
|
|
6858
6837
|
auto: auto
|
|
6859
6838
|
)),
|
|
6860
6839
|
"padding": k-map-merge( $kendo-spacing, (
|
|
6861
|
-
// sass-lint:disable-block indentation
|
|
6862
6840
|
// TODO: remove this extension once we fix docs
|
|
6863
6841
|
xs: k-map-get( $kendo-spacing, 1 ),
|
|
6864
6842
|
sm: k-map-get( $kendo-spacing, 2 ),
|
|
6865
6843
|
md: k-map-get( $kendo-spacing, 3 ),
|
|
6866
6844
|
lg: k-map-get( $kendo-spacing, 4 ),
|
|
6867
6845
|
xl: k-map-get( $kendo-spacing, 6 ),
|
|
6868
|
-
thin: k-map-get( $kendo-spacing, 0.5 ),
|
|
6846
|
+
thin: k-map-get( $kendo-spacing, 0.5 ),
|
|
6869
6847
|
hair: k-map-get( $kendo-spacing, 1px )
|
|
6870
6848
|
)),
|
|
6871
6849
|
"space-between": (),
|
|
6872
6850
|
|
|
6873
6851
|
// Sizing
|
|
6874
6852
|
"width": k-map-merge( $kendo-sizing, (
|
|
6875
|
-
// sass-lint:disable-block indentation
|
|
6876
6853
|
screen: 100vw
|
|
6877
6854
|
)),
|
|
6878
6855
|
"min-width": (
|
|
@@ -6893,7 +6870,6 @@ $kendo-utils: (
|
|
|
6893
6870
|
fit: fit-content
|
|
6894
6871
|
),
|
|
6895
6872
|
"height": k-map-merge( $kendo-sizing, (
|
|
6896
|
-
// sass-lint:disable-block indentation
|
|
6897
6873
|
screen: 100vh
|
|
6898
6874
|
)),
|
|
6899
6875
|
"min-height": (
|
|
@@ -6951,7 +6927,6 @@ $kendo-utils: (
|
|
|
6951
6927
|
end
|
|
6952
6928
|
),
|
|
6953
6929
|
"text-color": k-map-merge( $kendo-theme-colors, (
|
|
6954
|
-
// sass-lint:disable-block indentation
|
|
6955
6930
|
"inherit": inherit,
|
|
6956
6931
|
"current": currentColor,
|
|
6957
6932
|
"transparent": transparent,
|
|
@@ -7007,7 +6982,6 @@ $kendo-utils: (
|
|
|
7007
6982
|
text: text
|
|
7008
6983
|
),
|
|
7009
6984
|
"background-color": k-map-merge( $kendo-theme-colors, (
|
|
7010
|
-
// sass-lint:disable-block indentation
|
|
7011
6985
|
"inherit": inherit,
|
|
7012
6986
|
"transparent": transparent,
|
|
7013
6987
|
"black": black,
|
|
@@ -7051,7 +7025,6 @@ $kendo-utils: (
|
|
|
7051
7025
|
none
|
|
7052
7026
|
),
|
|
7053
7027
|
"border-color": k-map-merge( $kendo-theme-colors, (
|
|
7054
|
-
// sass-lint:disable-block indentation
|
|
7055
7028
|
"inherit": inherit,
|
|
7056
7029
|
"current": currentColor,
|
|
7057
7030
|
"transparent": transparent,
|
|
@@ -7078,7 +7051,6 @@ $kendo-utils: (
|
|
|
7078
7051
|
none
|
|
7079
7052
|
),
|
|
7080
7053
|
"outline-color": k-map-merge( $kendo-theme-colors, (
|
|
7081
|
-
// sass-lint:disable-block indentation
|
|
7082
7054
|
"inherit": inherit,
|
|
7083
7055
|
"current": currentColor,
|
|
7084
7056
|
"transparent": transparent,
|
|
@@ -7097,7 +7069,6 @@ $kendo-utils: (
|
|
|
7097
7069
|
"box-shadow": (),
|
|
7098
7070
|
"box-shadow-color": (),
|
|
7099
7071
|
"opacity": (
|
|
7100
|
-
// sass-lint:disable-block leading-zero
|
|
7101
7072
|
0: 0,
|
|
7102
7073
|
5: 0.05,
|
|
7103
7074
|
10: 0.1,
|
|
@@ -7136,7 +7107,6 @@ $kendo-utils: (
|
|
|
7136
7107
|
// Transform
|
|
7137
7108
|
"flip": true,
|
|
7138
7109
|
"scale": (
|
|
7139
|
-
// sass-lint:disable-block leading-zero
|
|
7140
7110
|
0: 0,
|
|
7141
7111
|
0.25: .25,
|
|
7142
7112
|
0.5: .5,
|
|
@@ -7320,7 +7290,7 @@ $kendo-utils: (
|
|
|
7320
7290
|
@if $important {
|
|
7321
7291
|
.\!#{$_selector} {
|
|
7322
7292
|
@each $prop in $_props {
|
|
7323
|
-
#{$prop}: if( $_fn, k-meta-call($_fn, $_val), $_val ) !important; //
|
|
7293
|
+
#{$prop}: if( $_fn, k-meta-call($_fn, $_val), $_val ) !important; // stylelint-disable-line declaration-no-important
|
|
7324
7294
|
}
|
|
7325
7295
|
}
|
|
7326
7296
|
}
|
|
@@ -7651,9 +7621,9 @@ $kendo-utils: (
|
|
|
7651
7621
|
// Legacy aliases
|
|
7652
7622
|
@include generate-utils( display, display, $kendo-utils-display );
|
|
7653
7623
|
.#{$kendo-prefix}d-flex-row { @extend .#{$kendo-prefix}d-flex, .#{$kendo-prefix}flex-row !optional; }
|
|
7654
|
-
.\!#{$kendo-prefix}d-flex-row { @extend .\!#{$kendo-prefix}d-flex, .\!#{$kendo-prefix}flex-row !optional; }
|
|
7624
|
+
.\!#{$kendo-prefix}d-flex-row { @extend .\!#{$kendo-prefix}d-flex, .\!#{$kendo-prefix}flex-row !optional; }
|
|
7655
7625
|
.#{$kendo-prefix}d-flex-col { @extend .#{$kendo-prefix}d-flex, .#{$kendo-prefix}flex-col !optional; }
|
|
7656
|
-
.\!#{$kendo-prefix}d-flex-col { @extend .\!#{$kendo-prefix}d-flex, .\!#{$kendo-prefix}flex-row !optional; }
|
|
7626
|
+
.\!#{$kendo-prefix}d-flex-col { @extend .\!#{$kendo-prefix}d-flex, .\!#{$kendo-prefix}flex-row !optional; }
|
|
7657
7627
|
|
|
7658
7628
|
}
|
|
7659
7629
|
|
|
@@ -8000,7 +7970,7 @@ $kendo-utils: (
|
|
|
8000
7970
|
// placement length utility classes
|
|
8001
7971
|
@each $side in (top, right, bottom, left) {
|
|
8002
7972
|
.#{$kendo-prefix}#{$side},
|
|
8003
|
-
.#{$kendo-prefix}pos-#{$side} { #{$side}: 0; }
|
|
7973
|
+
.#{$kendo-prefix}pos-#{$side} { #{$side}: 0; }
|
|
8004
7974
|
}
|
|
8005
7975
|
|
|
8006
7976
|
// Inset utility classes
|
|
@@ -9005,8 +8975,8 @@ $kendo-utils: (
|
|
|
9005
8975
|
|
|
9006
8976
|
// Legacy aliases
|
|
9007
8977
|
@include generate-utils( colspan, grid-column, $kendo-utils-grid-column-span );
|
|
9008
|
-
.#{$kendo-prefix}colspan-all { @extend .#{$kendo-prefix}colspan-full !optional; }
|
|
9009
|
-
.\!#{$kendo-prefix}colspan-all { @extend .\!#{$kendo-prefix}colspan-full !optional; }
|
|
8978
|
+
.#{$kendo-prefix}colspan-all { @extend .#{$kendo-prefix}colspan-full !optional; }
|
|
8979
|
+
.\!#{$kendo-prefix}colspan-all { @extend .\!#{$kendo-prefix}colspan-full !optional; }
|
|
9010
8980
|
|
|
9011
8981
|
}
|
|
9012
8982
|
|
|
@@ -9049,8 +9019,8 @@ $kendo-utils: (
|
|
|
9049
9019
|
|
|
9050
9020
|
// Legacy aliases
|
|
9051
9021
|
@include generate-utils( rowspan, grid-row, $kendo-utils-grid-row-span );
|
|
9052
|
-
.#{$kendo-prefix}rowspan-all { @extend .#{$kendo-prefix}rowspan-full !optional; }
|
|
9053
|
-
.\!#{$kendo-prefix}rowspan-all { @extend .\!#{$kendo-prefix}rowspan-full !optional; }
|
|
9022
|
+
.#{$kendo-prefix}rowspan-all { @extend .#{$kendo-prefix}rowspan-full !optional; }
|
|
9023
|
+
.\!#{$kendo-prefix}rowspan-all { @extend .\!#{$kendo-prefix}rowspan-full !optional; }
|
|
9054
9024
|
|
|
9055
9025
|
}
|
|
9056
9026
|
|
|
@@ -9199,7 +9169,7 @@ $kendo-utils: (
|
|
|
9199
9169
|
|
|
9200
9170
|
// Custom justify-content classes
|
|
9201
9171
|
.#{$kendo-prefix}justify-content-stretch > * { flex: 1 0 0%; }
|
|
9202
|
-
.\!.#{$kendo-prefix}justify-content-stretch > * { flex: 1 0 0% !important; } //
|
|
9172
|
+
.\!.#{$kendo-prefix}justify-content-stretch > * { flex: 1 0 0% !important; } // stylelint-disable-line declaration-no-important
|
|
9203
9173
|
|
|
9204
9174
|
}
|
|
9205
9175
|
|
|
@@ -11451,9 +11421,9 @@ $kendo-utils: (
|
|
|
11451
11421
|
text-overflow: ellipsis;
|
|
11452
11422
|
}
|
|
11453
11423
|
.\!#{$kendo-prefix}text-truncate {
|
|
11454
|
-
white-space: nowrap !important; //
|
|
11455
|
-
overflow: hidden !important; //
|
|
11456
|
-
text-overflow: ellipsis !important; //
|
|
11424
|
+
white-space: nowrap !important; // stylelint-disable-line declaration-no-important
|
|
11425
|
+
overflow: hidden !important; // stylelint-disable-line declaration-no-important
|
|
11426
|
+
text-overflow: ellipsis !important; // stylelint-disable-line declaration-no-important
|
|
11457
11427
|
}
|
|
11458
11428
|
|
|
11459
11429
|
// Legacy aliases
|
|
@@ -13013,11 +12983,11 @@ $kendo-utils: (
|
|
|
13013
12983
|
$kendo-utils-flip: k-map-get( $kendo-utils, "flip" ) !default;
|
|
13014
12984
|
@if $kendo-utils-flip {
|
|
13015
12985
|
.#{$kendo-prefix}flip-h { transform: scaleX( -1 ); }
|
|
13016
|
-
.\!#{$kendo-prefix}flip-h { transform: scaleX( -1 ) !important; } //
|
|
12986
|
+
.\!#{$kendo-prefix}flip-h { transform: scaleX( -1 ) !important; } // stylelint-disable-line declaration-no-important
|
|
13017
12987
|
.#{$kendo-prefix}flip-v { transform: scaleY( -1 ); }
|
|
13018
|
-
.\!#{$kendo-prefix}flip-v { transform: scaleY( -1 ) !important; } //
|
|
12988
|
+
.\!#{$kendo-prefix}flip-v { transform: scaleY( -1 ) !important; } // stylelint-disable-line declaration-no-important
|
|
13019
12989
|
.#{$kendo-prefix}flip-h.#{$kendo-prefix}flip-v { transform: scale( -1, -1 ); }
|
|
13020
|
-
.\!#{$kendo-prefix}flip-h.\!#{$kendo-prefix}flip-v { transform: scale( -1, -1 ) !important; } //
|
|
12990
|
+
.\!#{$kendo-prefix}flip-h.\!#{$kendo-prefix}flip-v { transform: scale( -1, -1 ) !important; } // stylelint-disable-line declaration-no-important
|
|
13021
12991
|
|
|
13022
12992
|
// Legacy aliases
|
|
13023
12993
|
.#{$kendo-prefix}flip-x { @extend .#{$kendo-prefix}flip-h !optional; }
|
|
@@ -13142,11 +13112,11 @@ $kendo-utils: (
|
|
|
13142
13112
|
/// @group transform
|
|
13143
13113
|
/// @contextType css
|
|
13144
13114
|
|
|
13145
|
-
//
|
|
13115
|
+
// stylelint-disable scss/at-function-pattern
|
|
13146
13116
|
@function __rotate( $val ) {
|
|
13147
13117
|
@return rotate( $val );
|
|
13148
13118
|
}
|
|
13149
|
-
//
|
|
13119
|
+
// stylelint-enable scss/at-function-pattern
|
|
13150
13120
|
|
|
13151
13121
|
@mixin kendo-utils--transform--rotate() {
|
|
13152
13122
|
|
|
@@ -13176,7 +13146,7 @@ $kendo-utils: (
|
|
|
13176
13146
|
/// @group transform
|
|
13177
13147
|
/// @contextType css
|
|
13178
13148
|
|
|
13179
|
-
//
|
|
13149
|
+
// stylelint-disable scss/at-function-pattern
|
|
13180
13150
|
@function __scale( $val ) {
|
|
13181
13151
|
@return scale( $val );
|
|
13182
13152
|
}
|
|
@@ -13186,7 +13156,7 @@ $kendo-utils: (
|
|
|
13186
13156
|
@function __scale-y( $val ) {
|
|
13187
13157
|
@return scaleY( $val );
|
|
13188
13158
|
}
|
|
13189
|
-
//
|
|
13159
|
+
// stylelint-enable scss/at-function-pattern
|
|
13190
13160
|
|
|
13191
13161
|
@mixin kendo-utils--transform--scale() {
|
|
13192
13162
|
|
|
@@ -13224,14 +13194,14 @@ $kendo-utils: (
|
|
|
13224
13194
|
/// @group skew
|
|
13225
13195
|
/// @contextType css
|
|
13226
13196
|
|
|
13227
|
-
//
|
|
13197
|
+
// stylelint-disable scss/at-function-pattern
|
|
13228
13198
|
@function __skew-x( $val ) {
|
|
13229
13199
|
@return skewX( $val );
|
|
13230
13200
|
}
|
|
13231
13201
|
@function __skew-y( $val ) {
|
|
13232
13202
|
@return skewY( $val );
|
|
13233
13203
|
}
|
|
13234
|
-
//
|
|
13204
|
+
// stylelint-enable scss/at-function-pattern
|
|
13235
13205
|
|
|
13236
13206
|
@mixin kendo-utils--transform--skew() {
|
|
13237
13207
|
|
|
@@ -13298,7 +13268,7 @@ $kendo-utils: (
|
|
|
13298
13268
|
/// @group transform
|
|
13299
13269
|
/// @contextType css
|
|
13300
13270
|
|
|
13301
|
-
//
|
|
13271
|
+
// stylelint-disable scss/at-function-pattern
|
|
13302
13272
|
@function __translate( $val ) {
|
|
13303
13273
|
@return translate( $val );
|
|
13304
13274
|
}
|
|
@@ -13308,7 +13278,7 @@ $kendo-utils: (
|
|
|
13308
13278
|
@function __translate-y( $val ) {
|
|
13309
13279
|
@return translateY( $val );
|
|
13310
13280
|
}
|
|
13311
|
-
//
|
|
13281
|
+
// stylelint-enable scss/at-function-pattern
|
|
13312
13282
|
|
|
13313
13283
|
@mixin kendo-utils--transform--translate() {
|
|
13314
13284
|
|
|
@@ -14205,7 +14175,7 @@ $kendo-paragraph-font-size: 1rem !default;
|
|
|
14205
14175
|
$kendo-paragraph-font-family: $kendo-font-family !default;
|
|
14206
14176
|
$kendo-paragraph-line-height: $kendo-line-height-lg !default;
|
|
14207
14177
|
$kendo-paragraph-font-weight: $kendo-font-weight-normal !default;
|
|
14208
|
-
$kendo-paragraph-letter-spacing: .
|
|
14178
|
+
$kendo-paragraph-letter-spacing: .0313em !default;
|
|
14209
14179
|
|
|
14210
14180
|
|
|
14211
14181
|
// Code
|
|
@@ -15814,6 +15784,10 @@ $ki-rotate-map: (
|
|
|
15814
15784
|
right: 0;
|
|
15815
15785
|
margin: 0 -.5em -.5em 0;
|
|
15816
15786
|
}
|
|
15787
|
+
.k-svg-icon.k-icon-modifier {
|
|
15788
|
+
width: 1em;
|
|
15789
|
+
height: 1em;
|
|
15790
|
+
}
|
|
15817
15791
|
|
|
15818
15792
|
.k-i-none::before {
|
|
15819
15793
|
content: "";
|
|
@@ -15825,19 +15799,6 @@ $ki-rotate-map: (
|
|
|
15825
15799
|
cursor: pointer;
|
|
15826
15800
|
}
|
|
15827
15801
|
|
|
15828
|
-
// RTL icons
|
|
15829
|
-
.k-rtl,
|
|
15830
|
-
[dir="rtl"] {
|
|
15831
|
-
.k-i-indent-increase,
|
|
15832
|
-
.k-i-indent-decrease,
|
|
15833
|
-
.k-i-caret-alt-right,
|
|
15834
|
-
.k-i-caret-alt-left,
|
|
15835
|
-
.k-svg-i-caret-alt-right,
|
|
15836
|
-
.k-svg-i-caret-alt-left {
|
|
15837
|
-
transform: scaleX(-1);
|
|
15838
|
-
}
|
|
15839
|
-
}
|
|
15840
|
-
|
|
15841
15802
|
.k-sprite {
|
|
15842
15803
|
display: inline-block;
|
|
15843
15804
|
width: 16px;
|
|
@@ -16893,7 +16854,7 @@ $kendo-checkbox-ripple-opacity: .2 !default;
|
|
|
16893
16854
|
|
|
16894
16855
|
.k-ripple {
|
|
16895
16856
|
// Hide ripple temporarily
|
|
16896
|
-
visibility: hidden !important; //
|
|
16857
|
+
visibility: hidden !important; // stylelint-disable-line declaration-no-important
|
|
16897
16858
|
}
|
|
16898
16859
|
}
|
|
16899
16860
|
.k-checkbox + .k-label,
|
|
@@ -16907,7 +16868,7 @@ $kendo-checkbox-ripple-opacity: .2 !default;
|
|
|
16907
16868
|
|
|
16908
16869
|
// Empty label
|
|
16909
16870
|
.k-checkbox-label:empty {
|
|
16910
|
-
display: none !important; //
|
|
16871
|
+
display: none !important; // stylelint-disable-line declaration-no-important
|
|
16911
16872
|
}
|
|
16912
16873
|
.k-checkbox-label.k-no-text {
|
|
16913
16874
|
min-width: 1px;
|
|
@@ -16962,7 +16923,7 @@ $kendo-checkbox-ripple-opacity: .2 !default;
|
|
|
16962
16923
|
|
|
16963
16924
|
.k-checkbox:focus,
|
|
16964
16925
|
.k-checkbox.k-focus {
|
|
16965
|
-
box-shadow: none !important; //
|
|
16926
|
+
box-shadow: none !important; // stylelint-disable-line declaration-no-important
|
|
16966
16927
|
}
|
|
16967
16928
|
|
|
16968
16929
|
.k-checkbox:disabled::after,
|
|
@@ -17011,7 +16972,7 @@ $kendo-checkbox-ripple-opacity: .2 !default;
|
|
|
17011
16972
|
// #endregion
|
|
17012
16973
|
// #region @import "./_theme.scss"; -> scss/checkbox/_theme.scss
|
|
17013
16974
|
// #region @import "@progress/kendo-theme-default/scss/checkbox/_theme.scss"; -> node_modules/@progress/kendo-theme-default/scss/checkbox/_theme.scss
|
|
17014
|
-
@mixin kendo-checkbox--theme-base
|
|
16975
|
+
@mixin kendo-checkbox--theme-base() {
|
|
17015
16976
|
|
|
17016
16977
|
// Checkbox
|
|
17017
16978
|
.k-checkbox {
|
|
@@ -17217,7 +17178,7 @@ $kendo-checkbox-ripple-opacity: .2 !default;
|
|
|
17217
17178
|
padding-block: $kendo-list-header-padding-y;
|
|
17218
17179
|
padding-inline: $kendo-list-header-padding-x;
|
|
17219
17180
|
border-width: 0;
|
|
17220
|
-
border-width: $kendo-list-header-border-width;
|
|
17181
|
+
border-width: $kendo-list-header-border-width;
|
|
17221
17182
|
border-style: solid;
|
|
17222
17183
|
font-size: $kendo-list-header-font-size;
|
|
17223
17184
|
line-height: $kendo-list-header-line-height;
|
|
@@ -17302,7 +17263,7 @@ $kendo-checkbox-ripple-opacity: .2 !default;
|
|
|
17302
17263
|
padding-block: $kendo-list-group-item-padding-y;
|
|
17303
17264
|
padding-inline: $kendo-list-group-item-padding-x;
|
|
17304
17265
|
border-width: 0;
|
|
17305
|
-
border-width: $kendo-list-group-item-border-width;
|
|
17266
|
+
border-width: $kendo-list-group-item-border-width;
|
|
17306
17267
|
border-style: solid;
|
|
17307
17268
|
font-size: $kendo-list-group-item-font-size;
|
|
17308
17269
|
line-height: $kendo-list-group-item-line-height;
|
|
@@ -17780,11 +17741,6 @@ $kendo-listgroup-item-border-width: 1px !default;
|
|
|
17780
17741
|
> .k-select {
|
|
17781
17742
|
right: auto;
|
|
17782
17743
|
left: 0;
|
|
17783
|
-
|
|
17784
|
-
.k-icon,
|
|
17785
|
-
.k-svg-icon {
|
|
17786
|
-
transform: scaleX(-1);
|
|
17787
|
-
}
|
|
17788
17744
|
}
|
|
17789
17745
|
}
|
|
17790
17746
|
}
|
|
@@ -17800,11 +17756,6 @@ $kendo-listgroup-item-border-width: 1px !default;
|
|
|
17800
17756
|
margin-left: -$kendo-listgroup-item-padding-x;
|
|
17801
17757
|
border-right-width: 1px;
|
|
17802
17758
|
border-left-width: 0;
|
|
17803
|
-
|
|
17804
|
-
.k-icon,
|
|
17805
|
-
.k-svg-icon {
|
|
17806
|
-
transform: scaleX(-1);
|
|
17807
|
-
}
|
|
17808
17759
|
}
|
|
17809
17760
|
}
|
|
17810
17761
|
}
|
|
@@ -18577,7 +18528,7 @@ $kendo-table-selected-border: null !default;
|
|
|
18577
18528
|
// Table header
|
|
18578
18529
|
.k-table-header {
|
|
18579
18530
|
padding-inline-end: var(--kendo-scrollbar-width);
|
|
18580
|
-
border-width: 0 0 1px
|
|
18531
|
+
border-width: 0 0 1px;
|
|
18581
18532
|
border-style: solid;
|
|
18582
18533
|
box-sizing: border-box;
|
|
18583
18534
|
|
|
@@ -18663,18 +18614,19 @@ $kendo-table-selected-border: null !default;
|
|
|
18663
18614
|
}
|
|
18664
18615
|
}
|
|
18665
18616
|
|
|
18617
|
+
// stylelint-disable declaration-no-important
|
|
18666
18618
|
.k-table-spacer-td {
|
|
18667
|
-
padding: 0 !important;
|
|
18668
|
-
width: 0 !important;
|
|
18669
|
-
border-left-width: 0 !important;
|
|
18670
|
-
border-right-width: 0 !important;
|
|
18619
|
+
padding: 0 !important;
|
|
18620
|
+
width: 0 !important;
|
|
18621
|
+
border-left-width: 0 !important;
|
|
18622
|
+
border-right-width: 0 !important;
|
|
18671
18623
|
}
|
|
18672
18624
|
.k-table-group-td {
|
|
18673
|
-
padding: 0 !important;
|
|
18674
|
-
width: 0 !important;
|
|
18675
|
-
border-left-width: 0 !important;
|
|
18676
|
-
border-right-width: 0 !important;
|
|
18677
|
-
overflow: visible;
|
|
18625
|
+
padding: 0 !important;
|
|
18626
|
+
width: 0 !important;
|
|
18627
|
+
border-left-width: 0 !important;
|
|
18628
|
+
border-right-width: 0 !important;
|
|
18629
|
+
overflow: visible;
|
|
18678
18630
|
|
|
18679
18631
|
> span {
|
|
18680
18632
|
font-size: .75em;
|
|
@@ -18683,6 +18635,7 @@ $kendo-table-selected-border: null !default;
|
|
|
18683
18635
|
right: 0;
|
|
18684
18636
|
}
|
|
18685
18637
|
}
|
|
18638
|
+
// stylelint-enable declaration-no-important
|
|
18686
18639
|
}
|
|
18687
18640
|
|
|
18688
18641
|
|
|
@@ -18708,7 +18661,7 @@ $kendo-table-selected-border: null !default;
|
|
|
18708
18661
|
// Table footer
|
|
18709
18662
|
.k-table-footer {
|
|
18710
18663
|
padding-inline-end: var(--kendo-scrollbar-width);
|
|
18711
|
-
border-width: 1px 0 0
|
|
18664
|
+
border-width: 1px 0 0;
|
|
18712
18665
|
border-style: solid;
|
|
18713
18666
|
box-sizing: border-box;
|
|
18714
18667
|
|
|
@@ -19323,7 +19276,7 @@ $kendo-badge-border-radius: $kendo-border-radius-md !default;
|
|
|
19323
19276
|
$kendo-badge-padding-x: k-map-get( $kendo-spacing, 1 ) !default;
|
|
19324
19277
|
/// The horizontal padding of the small Badge.
|
|
19325
19278
|
/// @group badge
|
|
19326
|
-
$kendo-badge-sm-padding-x: k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
19279
|
+
$kendo-badge-sm-padding-x: k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
19327
19280
|
/// The horizontal padding of the medium Badge.
|
|
19328
19281
|
/// @group badge
|
|
19329
19282
|
$kendo-badge-md-padding-x: k-map-get( $kendo-spacing, 1 ) !default;
|
|
@@ -19336,7 +19289,7 @@ $kendo-badge-lg-padding-x: k-map-get( $kendo-spacing, 1.5 ) !default;
|
|
|
19336
19289
|
$kendo-badge-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
19337
19290
|
/// The vertical padding of the small Badge.
|
|
19338
19291
|
/// @group badge
|
|
19339
|
-
$kendo-badge-sm-padding-y: k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
19292
|
+
$kendo-badge-sm-padding-y: k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
19340
19293
|
/// The vertical padding of the medium Badge.
|
|
19341
19294
|
/// @group badge
|
|
19342
19295
|
$kendo-badge-md-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
@@ -19949,7 +19902,7 @@ $kendo-chip-lg-padding-x: k-map-get( $kendo-spacing, 1 ) !default;
|
|
|
19949
19902
|
$kendo-chip-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
19950
19903
|
/// The vertical padding of the small Chip.
|
|
19951
19904
|
/// @group chip
|
|
19952
|
-
$kendo-chip-sm-padding-y: k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
19905
|
+
$kendo-chip-sm-padding-y: k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
19953
19906
|
/// The vertical padding of the medium Chip.
|
|
19954
19907
|
/// @group chip
|
|
19955
19908
|
$kendo-chip-md-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
@@ -20131,7 +20084,7 @@ $kendo-chip-list-sizes: (
|
|
|
20131
20084
|
}
|
|
20132
20085
|
|
|
20133
20086
|
.k-selected-icon-wrapper {
|
|
20134
|
-
display: none !important; //
|
|
20087
|
+
display: none !important; // stylelint-disable-line declaration-no-important
|
|
20135
20088
|
}
|
|
20136
20089
|
}
|
|
20137
20090
|
|
|
@@ -20275,7 +20228,7 @@ $kendo-chip-list-sizes: (
|
|
|
20275
20228
|
// #endregion
|
|
20276
20229
|
// #region @import "./_theme.scss"; -> scss/chip/_theme.scss
|
|
20277
20230
|
// #region @import "@progress/kendo-theme-default/scss/chip/_theme.scss"; -> node_modules/@progress/kendo-theme-default/scss/chip/_theme.scss
|
|
20278
|
-
@mixin kendo-chip--theme-base
|
|
20231
|
+
@mixin kendo-chip--theme-base() {
|
|
20279
20232
|
|
|
20280
20233
|
// Solid
|
|
20281
20234
|
@each $name, $color in $kendo-chip-theme-colors {
|
|
@@ -20452,7 +20405,7 @@ $kendo-chip-list-sizes: (
|
|
|
20452
20405
|
@include box-shadow( none );
|
|
20453
20406
|
@include fill( $bg: k-try-tint( $color, 88% ) );
|
|
20454
20407
|
}
|
|
20455
|
-
} @else if($name == "warning") {
|
|
20408
|
+
} @else if ($name == "warning") {
|
|
20456
20409
|
@include fill(
|
|
20457
20410
|
$color: if( $kendo-is-dark-theme, k-try-shade( $color, 50% ), $kendo-chip-outline-text)
|
|
20458
20411
|
);
|
|
@@ -20587,8 +20540,7 @@ $kendo-color-preview-transparent-color-image: url("data:image/png;base64,iVBORw0
|
|
|
20587
20540
|
box-sizing: border-box;
|
|
20588
20541
|
border-style: solid;
|
|
20589
20542
|
display: inline-flex;
|
|
20590
|
-
flex-
|
|
20591
|
-
flex-wrap: nowrap;
|
|
20543
|
+
flex-flow: row nowrap;
|
|
20592
20544
|
position: relative;
|
|
20593
20545
|
overflow: hidden;
|
|
20594
20546
|
|
|
@@ -21358,7 +21310,7 @@ $kendo-loading-opacity: .3 !default;
|
|
|
21358
21310
|
content: "";
|
|
21359
21311
|
// See https://github.com/telerik/kendo-themes/issues/1925
|
|
21360
21312
|
border-width: 1px; // TODO: Remove once we drop IE support
|
|
21361
|
-
border-width: clamp( .015em, 1px, 1px );
|
|
21313
|
+
border-width: clamp( .015em, 1px, 1px );
|
|
21362
21314
|
font-size: 4em;
|
|
21363
21315
|
}
|
|
21364
21316
|
|
|
@@ -21422,11 +21374,9 @@ $kendo-loading-opacity: .3 !default;
|
|
|
21422
21374
|
}
|
|
21423
21375
|
|
|
21424
21376
|
.k-loader-container-inner {
|
|
21425
|
-
// sass-lint:disable-block no-important
|
|
21426
|
-
// sass-lint:disable-block class-name-format
|
|
21427
21377
|
.k-text-secondary,
|
|
21428
|
-
.\!k-text-secondary {
|
|
21429
|
-
color: $kendo-loader-secondary-bg !important;
|
|
21378
|
+
.\!k-text-secondary { // stylelint-disable-line
|
|
21379
|
+
color: $kendo-loader-secondary-bg !important; // stylelint-disable-line declaration-no-important
|
|
21430
21380
|
}
|
|
21431
21381
|
}
|
|
21432
21382
|
|
|
@@ -21959,20 +21909,20 @@ $_kendo-module-meta: (
|
|
|
21959
21909
|
|
|
21960
21910
|
// Flat button
|
|
21961
21911
|
.k-button-flat {
|
|
21962
|
-
border-color: transparent !important; //
|
|
21912
|
+
border-color: transparent !important; // stylelint-disable-line declaration-no-important
|
|
21963
21913
|
color: inherit;
|
|
21964
|
-
background: none !important; //
|
|
21965
|
-
box-shadow: none !important; //
|
|
21914
|
+
background: none !important; // stylelint-disable-line declaration-no-important
|
|
21915
|
+
box-shadow: none !important; // stylelint-disable-line declaration-no-important
|
|
21966
21916
|
|
|
21967
21917
|
// Overlay background
|
|
21968
21918
|
&::before {
|
|
21969
|
-
display: block !important; //
|
|
21919
|
+
display: block !important; // stylelint-disable-line declaration-no-important
|
|
21970
21920
|
}
|
|
21971
21921
|
|
|
21972
21922
|
// Focus ring
|
|
21973
21923
|
&::after {
|
|
21974
21924
|
box-shadow: inset 0 0 0 2px currentColor;
|
|
21975
|
-
display: block !important; //
|
|
21925
|
+
display: block !important; // stylelint-disable-line declaration-no-important
|
|
21976
21926
|
}
|
|
21977
21927
|
|
|
21978
21928
|
&:focus::after,
|
|
@@ -22006,10 +21956,10 @@ $_kendo-module-meta: (
|
|
|
22006
21956
|
|
|
22007
21957
|
// Clear button
|
|
22008
21958
|
.k-button-clear {
|
|
22009
|
-
border-color: transparent !important; //
|
|
21959
|
+
border-color: transparent !important; // stylelint-disable-line declaration-no-important
|
|
22010
21960
|
color: inherit;
|
|
22011
|
-
background: none !important; //
|
|
22012
|
-
box-shadow: none !important; //
|
|
21961
|
+
background: none !important; // stylelint-disable-line declaration-no-important
|
|
21962
|
+
box-shadow: none !important; // stylelint-disable-line declaration-no-important
|
|
22013
21963
|
}
|
|
22014
21964
|
|
|
22015
21965
|
|
|
@@ -22033,7 +21983,7 @@ $_kendo-module-meta: (
|
|
|
22033
21983
|
}
|
|
22034
21984
|
|
|
22035
21985
|
|
|
22036
|
-
.k-button {
|
|
21986
|
+
.k-button { // stylelint-disable-line
|
|
22037
21987
|
|
|
22038
21988
|
&::before {
|
|
22039
21989
|
@extend .k-button-overlay !optional;
|
|
@@ -22082,7 +22032,7 @@ $_kendo-module-meta: (
|
|
|
22082
22032
|
|
|
22083
22033
|
|
|
22084
22034
|
// Button focus ring
|
|
22085
|
-
.k-button {
|
|
22035
|
+
.k-button { // stylelint-disable-line
|
|
22086
22036
|
|
|
22087
22037
|
&::after {
|
|
22088
22038
|
@include border-radius( inherit );
|
|
@@ -22124,7 +22074,7 @@ $_kendo-module-meta: (
|
|
|
22124
22074
|
transition: opacity .4s cubic-bezier( .25, .8, .25, 1 );
|
|
22125
22075
|
}
|
|
22126
22076
|
&::after {
|
|
22127
|
-
display: none !important; //
|
|
22077
|
+
display: none !important; // stylelint-disable-line declaration-no-important
|
|
22128
22078
|
}
|
|
22129
22079
|
|
|
22130
22080
|
&:disabled,
|
|
@@ -22137,8 +22087,8 @@ $_kendo-module-meta: (
|
|
|
22137
22087
|
|
|
22138
22088
|
// Outline button
|
|
22139
22089
|
.k-button-outline {
|
|
22140
|
-
background-color: transparent !important; //
|
|
22141
|
-
box-shadow: none !important; //
|
|
22090
|
+
background-color: transparent !important; // stylelint-disable-line declaration-no-important
|
|
22091
|
+
box-shadow: none !important; // stylelint-disable-line declaration-no-important
|
|
22142
22092
|
}
|
|
22143
22093
|
|
|
22144
22094
|
|
|
@@ -22679,7 +22629,7 @@ $kendo-menu-gradient: null !default;
|
|
|
22679
22629
|
|
|
22680
22630
|
$kendo-menu-item-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
|
|
22681
22631
|
$kendo-menu-item-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
22682
|
-
$kendo-menu-item-spacing: k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
22632
|
+
$kendo-menu-item-spacing: k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
22683
22633
|
$kendo-menu-item-icon-spacing: $kendo-icon-spacing !default;
|
|
22684
22634
|
|
|
22685
22635
|
$kendo-menu-item-bg: rgba( $kendo-menu-text, 0 ) !default;
|
|
@@ -22931,7 +22881,7 @@ $kendo-menu-popup-item-focus-shadow: null !default;
|
|
|
22931
22881
|
flex-direction: row;
|
|
22932
22882
|
|
|
22933
22883
|
> .k-menu-item + .k-menu-item {
|
|
22934
|
-
margin-
|
|
22884
|
+
margin-inline-start: $kendo-menu-item-spacing;
|
|
22935
22885
|
}
|
|
22936
22886
|
|
|
22937
22887
|
> .k-separator {
|
|
@@ -22956,7 +22906,7 @@ $kendo-menu-popup-item-focus-shadow: null !default;
|
|
|
22956
22906
|
> .k-menu-item > .k-menu-link {
|
|
22957
22907
|
padding-block: $kendo-menu-popup-item-padding-y;
|
|
22958
22908
|
padding-inline: $kendo-menu-popup-item-padding-x;
|
|
22959
|
-
padding-
|
|
22909
|
+
padding-inline-end: $kendo-menu-popup-item-padding-end;
|
|
22960
22910
|
}
|
|
22961
22911
|
|
|
22962
22912
|
> .k-menu-item > .k-menu-link > .k-menu-expand-arrow {
|
|
@@ -23109,7 +23059,7 @@ $kendo-menu-popup-item-focus-shadow: null !default;
|
|
|
23109
23059
|
}
|
|
23110
23060
|
.k-animation-container .k-context-menu.k-menu-horizontal {
|
|
23111
23061
|
// kendo-jquery adds `display: block` via js and we need to override it.
|
|
23112
|
-
display: flex !important; //
|
|
23062
|
+
display: flex !important; // stylelint-disable-line declaration-no-important
|
|
23113
23063
|
flex-wrap: nowrap;
|
|
23114
23064
|
}
|
|
23115
23065
|
.k-context-menu-popup {
|
|
@@ -23148,28 +23098,28 @@ $kendo-menu-popup-item-focus-shadow: null !default;
|
|
|
23148
23098
|
|
|
23149
23099
|
&.k-scroll-left {
|
|
23150
23100
|
top: 0;
|
|
23151
|
-
|
|
23101
|
+
inset-inline-start: 0;
|
|
23152
23102
|
height: 100%;
|
|
23153
23103
|
width: 16px;
|
|
23154
23104
|
border-right-width: 1px;
|
|
23155
23105
|
}
|
|
23156
23106
|
&.k-scroll-right {
|
|
23157
23107
|
top: 0;
|
|
23158
|
-
|
|
23108
|
+
inset-inline-end: 0;
|
|
23159
23109
|
height: 100%;
|
|
23160
23110
|
width: 16px;
|
|
23161
23111
|
border-left-width: 1px;
|
|
23162
23112
|
}
|
|
23163
23113
|
&.k-scroll-up {
|
|
23164
23114
|
top: 0;
|
|
23165
|
-
|
|
23115
|
+
inset-inline-start: 0;
|
|
23166
23116
|
width: 100%;
|
|
23167
23117
|
height: 16px;
|
|
23168
23118
|
border-bottom-width: 1px;
|
|
23169
23119
|
}
|
|
23170
23120
|
&.k-scroll-down {
|
|
23171
23121
|
bottom: 0;
|
|
23172
|
-
|
|
23122
|
+
inset-inline-start: 0;
|
|
23173
23123
|
width: 100%;
|
|
23174
23124
|
height: 16px;
|
|
23175
23125
|
border-top-width: 1px;
|
|
@@ -23177,43 +23127,6 @@ $kendo-menu-popup-item-focus-shadow: null !default;
|
|
|
23177
23127
|
}
|
|
23178
23128
|
}
|
|
23179
23129
|
|
|
23180
|
-
|
|
23181
|
-
// RTL
|
|
23182
|
-
.k-rtl,
|
|
23183
|
-
[dir="rtl"] {
|
|
23184
|
-
|
|
23185
|
-
// Orientation -- horizontal
|
|
23186
|
-
.k-menu-horizontal {
|
|
23187
|
-
|
|
23188
|
-
> .k-menu-item + .k-menu-item {
|
|
23189
|
-
margin-right: $kendo-menu-item-spacing;
|
|
23190
|
-
margin-left: 0;
|
|
23191
|
-
}
|
|
23192
|
-
}
|
|
23193
|
-
|
|
23194
|
-
|
|
23195
|
-
// Orientation -- vertical
|
|
23196
|
-
.k-menu-vertical {
|
|
23197
|
-
|
|
23198
|
-
> .k-menu-item > .k-menu-link {
|
|
23199
|
-
padding-right: $kendo-menu-popup-item-padding-x;
|
|
23200
|
-
padding-left: $kendo-menu-popup-item-padding-end;
|
|
23201
|
-
}
|
|
23202
|
-
}
|
|
23203
|
-
|
|
23204
|
-
|
|
23205
|
-
// Sub menu
|
|
23206
|
-
.k-menu-group {
|
|
23207
|
-
|
|
23208
|
-
.k-menu-link {
|
|
23209
|
-
padding-right: $kendo-menu-popup-item-padding-x;
|
|
23210
|
-
padding-left: $kendo-menu-popup-item-padding-end;
|
|
23211
|
-
}
|
|
23212
|
-
|
|
23213
|
-
}
|
|
23214
|
-
|
|
23215
|
-
}
|
|
23216
|
-
|
|
23217
23130
|
}
|
|
23218
23131
|
|
|
23219
23132
|
|
|
@@ -23737,13 +23650,10 @@ $kendo-toolbar-sizes: (
|
|
|
23737
23650
|
height: $kendo-button-lg-calc-size;
|
|
23738
23651
|
}
|
|
23739
23652
|
|
|
23740
|
-
|
|
23741
|
-
|
|
23742
|
-
// sass-lint:disable class-name-format
|
|
23743
23653
|
.k-floating-toolbar,
|
|
23744
|
-
.editorToolbarWindow.k-window-content {
|
|
23745
|
-
padding-block: $kendo-toolbar-md-padding-y !important; //
|
|
23746
|
-
padding-inline: $kendo-toolbar-md-padding-x !important; //
|
|
23654
|
+
.editorToolbarWindow.k-window-content { // stylelint-disable-line
|
|
23655
|
+
padding-block: $kendo-toolbar-md-padding-y !important; // stylelint-disable-line declaration-no-important
|
|
23656
|
+
padding-inline: $kendo-toolbar-md-padding-x !important; // stylelint-disable-line declaration-no-important
|
|
23747
23657
|
border-width: $kendo-toolbar-border-width;
|
|
23748
23658
|
border-style: solid;
|
|
23749
23659
|
display: flex;
|
|
@@ -23759,14 +23669,14 @@ $kendo-toolbar-sizes: (
|
|
|
23759
23669
|
background: none;
|
|
23760
23670
|
}
|
|
23761
23671
|
}
|
|
23762
|
-
.k-editortoolbar-dragHandle {
|
|
23672
|
+
.k-editortoolbar-dragHandle { // stylelint-disable-line
|
|
23763
23673
|
cursor: move;
|
|
23764
23674
|
display: flex;
|
|
23765
23675
|
align-items: center;
|
|
23766
23676
|
align-self: stretch;
|
|
23767
23677
|
flex-shrink: 0;
|
|
23768
23678
|
}
|
|
23769
|
-
|
|
23679
|
+
|
|
23770
23680
|
|
|
23771
23681
|
|
|
23772
23682
|
// Remove once the Overflow Popup uses
|
|
@@ -23928,9 +23838,8 @@ $kendo-toolbar-sizes: (
|
|
|
23928
23838
|
|
|
23929
23839
|
}
|
|
23930
23840
|
|
|
23931
|
-
// sass-lint:disable-block class-name-format
|
|
23932
23841
|
.k-floating-toolbar,
|
|
23933
|
-
.editorToolbarWindow.k-window-content {
|
|
23842
|
+
.editorToolbarWindow.k-window-content { // stylelint-disable-line
|
|
23934
23843
|
@include fill(
|
|
23935
23844
|
$kendo-toolbar-text,
|
|
23936
23845
|
$kendo-toolbar-bg,
|
|
@@ -24502,7 +24411,7 @@ $kendo-input-clear-value-hover-opacity: 1 !default;
|
|
|
24502
24411
|
|
|
24503
24412
|
/// The vertical margin of the clear value icon.
|
|
24504
24413
|
/// @group input
|
|
24505
|
-
$kendo-input-values-margin-y: k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
24414
|
+
$kendo-input-values-margin-y: k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
24506
24415
|
/// The horizontal margin of the clear value icon.
|
|
24507
24416
|
/// @group input
|
|
24508
24417
|
$kendo-input-values-margin-x: $kendo-input-values-margin-y !default;
|
|
@@ -25022,8 +24931,8 @@ $kendo-form-sizes: (
|
|
|
25022
24931
|
.k-form {
|
|
25023
24932
|
border: 0;
|
|
25024
24933
|
|
|
25025
|
-
.k-label,
|
|
25026
|
-
kendo-label,
|
|
24934
|
+
.k-form-field > .k-label,
|
|
24935
|
+
.k-form-field > kendo-label,
|
|
25027
24936
|
.k-form-label {
|
|
25028
24937
|
margin-bottom: $kendo-form-label-margin-bottom;
|
|
25029
24938
|
display: flex;
|
|
@@ -25968,7 +25877,7 @@ $_kendo-module-meta: (
|
|
|
25968
25877
|
|
|
25969
25878
|
> .k-input,
|
|
25970
25879
|
> .k-picker {
|
|
25971
|
-
border-width: 0 !important; //
|
|
25880
|
+
border-width: 0 !important; // stylelint-disable-line declaration-no-important
|
|
25972
25881
|
color: inherit;
|
|
25973
25882
|
background: none;
|
|
25974
25883
|
font: inherit;
|
|
@@ -26237,8 +26146,8 @@ $_kendo-module-meta: (
|
|
|
26237
26146
|
box-shadow: none;
|
|
26238
26147
|
|
|
26239
26148
|
> .k-button-icon {
|
|
26240
|
-
min-width: auto !important; //
|
|
26241
|
-
// min-height: auto !important; //
|
|
26149
|
+
min-width: auto !important; // stylelint-disable-line declaration-no-important
|
|
26150
|
+
// min-height: auto !important; // stylelint-disable-line declaration-no-important
|
|
26242
26151
|
}
|
|
26243
26152
|
|
|
26244
26153
|
&:focus {
|
|
@@ -26271,8 +26180,8 @@ $_kendo-module-meta: (
|
|
|
26271
26180
|
.k-button-icon {
|
|
26272
26181
|
margin-block: -1em;
|
|
26273
26182
|
margin-inline: 0;
|
|
26274
|
-
min-width: auto !important; //
|
|
26275
|
-
min-height: auto !important; //
|
|
26183
|
+
min-width: auto !important; // stylelint-disable-line declaration-no-important
|
|
26184
|
+
min-height: auto !important; // stylelint-disable-line declaration-no-important
|
|
26276
26185
|
}
|
|
26277
26186
|
}
|
|
26278
26187
|
.k-spinner-increase .k-icon,
|
|
@@ -26315,14 +26224,14 @@ $_kendo-module-meta: (
|
|
|
26315
26224
|
// Fill mode
|
|
26316
26225
|
.k-input-flat,
|
|
26317
26226
|
.k-picker-flat {
|
|
26318
|
-
@include border-bottom-radius( 0 !important ); //
|
|
26227
|
+
@include border-bottom-radius( 0 !important ); // stylelint-disable-line declaration-no-important
|
|
26319
26228
|
border-width: $kendo-input-border-width 0;
|
|
26320
|
-
border-top-color: transparent !important; //
|
|
26321
|
-
background-image: none !important; //
|
|
26229
|
+
border-top-color: transparent !important; // stylelint-disable-line declaration-no-important
|
|
26230
|
+
background-image: none !important; // stylelint-disable-line declaration-no-important
|
|
26322
26231
|
}
|
|
26323
26232
|
|
|
26324
26233
|
.k-input-outline {
|
|
26325
|
-
background: none !important; //
|
|
26234
|
+
background: none !important; // stylelint-disable-line declaration-no-important
|
|
26326
26235
|
}
|
|
26327
26236
|
|
|
26328
26237
|
|
|
@@ -26375,8 +26284,8 @@ $_kendo-module-meta: (
|
|
|
26375
26284
|
}
|
|
26376
26285
|
|
|
26377
26286
|
&.k-icon-picker .k-input-inner {
|
|
26378
|
-
width: calc( #{$_line-height * 1em} );
|
|
26379
|
-
height: calc( #{$_line-height * 1em} );
|
|
26287
|
+
width: calc( #{ $_line-height * 1em } );
|
|
26288
|
+
height: calc( #{ $_line-height * 1em } );
|
|
26380
26289
|
padding: $_padding-y;
|
|
26381
26290
|
box-sizing: content-box;
|
|
26382
26291
|
}
|
|
@@ -26403,11 +26312,11 @@ $_kendo-module-meta: (
|
|
|
26403
26312
|
|
|
26404
26313
|
|
|
26405
26314
|
// This is needed for the textbox container to capture browser autofill
|
|
26406
|
-
@keyframes autoFillStart {
|
|
26315
|
+
@keyframes autoFillStart { // stylelint-disable-line
|
|
26407
26316
|
from {}
|
|
26408
26317
|
to {}
|
|
26409
26318
|
}
|
|
26410
|
-
@keyframes autoFillEnd {
|
|
26319
|
+
@keyframes autoFillEnd { // stylelint-disable-line
|
|
26411
26320
|
from {}
|
|
26412
26321
|
to {}
|
|
26413
26322
|
}
|
|
@@ -26445,9 +26354,9 @@ $_kendo-module-meta: (
|
|
|
26445
26354
|
// Fill mode
|
|
26446
26355
|
.k-input-solid,
|
|
26447
26356
|
.k-picker-solid {
|
|
26448
|
-
@include border-bottom-radius( 0 !important ); //
|
|
26357
|
+
@include border-bottom-radius( 0 !important ); // stylelint-disable-line declaration-no-important
|
|
26449
26358
|
border-width: $kendo-input-border-width 0;
|
|
26450
|
-
border-top-color: transparent !important; //
|
|
26359
|
+
border-top-color: transparent !important; // stylelint-disable-line declaration-no-important
|
|
26451
26360
|
|
|
26452
26361
|
.k-input-button,
|
|
26453
26362
|
.k-input-spinner .k-spinner-increase,
|
|
@@ -26513,10 +26422,7 @@ $_kendo-module-meta: (
|
|
|
26513
26422
|
display: block;
|
|
26514
26423
|
position: absolute;
|
|
26515
26424
|
z-index: 2;
|
|
26516
|
-
|
|
26517
|
-
bottom: -1px;
|
|
26518
|
-
left: -1px;
|
|
26519
|
-
right: -1px;
|
|
26425
|
+
inset: -1px;
|
|
26520
26426
|
opacity: 0;
|
|
26521
26427
|
transform: scaleX(0);
|
|
26522
26428
|
transition: opacity .3s, transform .3s;
|
|
@@ -27070,7 +26976,7 @@ $_kendo-module-meta: (
|
|
|
27070
26976
|
/// The transformation scale of the Floating Label.
|
|
27071
26977
|
/// @group floating-label
|
|
27072
26978
|
$kendo-floating-label-scale: 1 !default;
|
|
27073
|
-
///The font size of the Floating Label.
|
|
26979
|
+
/// The font size of the Floating Label.
|
|
27074
26980
|
/// @group floating-label
|
|
27075
26981
|
$kendo-floating-label-font-size: $kendo-input-font-size !default;
|
|
27076
26982
|
/// The maximum width of the Floating Label.
|
|
@@ -27861,9 +27767,6 @@ $_kendo-module-meta: (
|
|
|
27861
27767
|
// #region @import "../icons/_index.scss"; -> scss/icons/_index.scss
|
|
27862
27768
|
// File already imported_once. Skipping output.
|
|
27863
27769
|
// #endregion
|
|
27864
|
-
// #region @import "../list/_index.scss"; -> scss/list/_index.scss
|
|
27865
|
-
// File already imported_once. Skipping output.
|
|
27866
|
-
// #endregion
|
|
27867
27770
|
|
|
27868
27771
|
|
|
27869
27772
|
// Component
|
|
@@ -27994,15 +27897,6 @@ $kendo-listbox-drop-hint-width: 2px !default;
|
|
|
27994
27897
|
.k-ghost {
|
|
27995
27898
|
opacity: .5;
|
|
27996
27899
|
}
|
|
27997
|
-
|
|
27998
|
-
.k-rtl &,
|
|
27999
|
-
&[dir="rtl"],
|
|
28000
|
-
[dir="rtl"] & {
|
|
28001
|
-
|
|
28002
|
-
.k-listbox-actions .k-button-icon {
|
|
28003
|
-
transform: scaleX(-1);
|
|
28004
|
-
}
|
|
28005
|
-
}
|
|
28006
27900
|
}
|
|
28007
27901
|
|
|
28008
27902
|
.k-item {
|
|
@@ -28285,7 +28179,7 @@ $kendo-circular-progressbar-scale-stroke: $kendo-progressbar-bg !default;
|
|
|
28285
28179
|
}
|
|
28286
28180
|
|
|
28287
28181
|
> .k-progressbar-value {
|
|
28288
|
-
width: calc( var( --kendo-progressbar-value, 0 ) * 1% );
|
|
28182
|
+
width: calc( var( --kendo-progressbar-value, 0 ) * 1% );
|
|
28289
28183
|
flex-direction: row;
|
|
28290
28184
|
|
|
28291
28185
|
> .k-progress-status-wrap {
|
|
@@ -28330,13 +28224,13 @@ $kendo-circular-progressbar-scale-stroke: $kendo-progressbar-bg !default;
|
|
|
28330
28224
|
}
|
|
28331
28225
|
|
|
28332
28226
|
> .k-progressbar-value {
|
|
28333
|
-
height: calc( var( --kendo-progressbar-value, 0 ) * 1% );
|
|
28227
|
+
height: calc( var( --kendo-progressbar-value, 0 ) * 1% );
|
|
28334
28228
|
flex-direction: column-reverse;
|
|
28335
28229
|
align-self: flex-end;
|
|
28336
28230
|
align-items: flex-end;
|
|
28337
28231
|
|
|
28338
28232
|
> .k-progress-status-wrap {
|
|
28339
|
-
height: calc( 100% * ( 100 / var( --kendo-progressbar-value, 1 ) ) );
|
|
28233
|
+
height: calc( 100% * ( 100 / var( --kendo-progressbar-value, 1 ) ) );
|
|
28340
28234
|
}
|
|
28341
28235
|
}
|
|
28342
28236
|
|
|
@@ -28573,10 +28467,10 @@ $kendo-circular-progressbar-scale-stroke: $kendo-progressbar-bg !default;
|
|
|
28573
28467
|
|
|
28574
28468
|
// #endregion
|
|
28575
28469
|
|
|
28576
|
-
@function _translate($direction, $value) {
|
|
28470
|
+
@function _translate($direction, $value) { // stylelint-disable-line
|
|
28577
28471
|
@return if($direction == horizontal, translateX($value), translateY($value));
|
|
28578
28472
|
}
|
|
28579
|
-
@function _scale($direction, $value) {
|
|
28473
|
+
@function _scale($direction, $value) { // stylelint-disable-line
|
|
28580
28474
|
@return if($direction == horizontal, scaleX($value), scaleY($value));
|
|
28581
28475
|
}
|
|
28582
28476
|
|
|
@@ -28981,7 +28875,7 @@ $kendo-radio-ripple-opacity: .2 !default;
|
|
|
28981
28875
|
|
|
28982
28876
|
.k-ripple {
|
|
28983
28877
|
// Hide ripple temporarily
|
|
28984
|
-
visibility: hidden !important; //
|
|
28878
|
+
visibility: hidden !important; // stylelint-disable-line declaration-no-important
|
|
28985
28879
|
}
|
|
28986
28880
|
}
|
|
28987
28881
|
.k-radio + .k-label,
|
|
@@ -28995,7 +28889,7 @@ $kendo-radio-ripple-opacity: .2 !default;
|
|
|
28995
28889
|
|
|
28996
28890
|
// Empty label
|
|
28997
28891
|
.k-radio-label:empty {
|
|
28998
|
-
display: none !important; //
|
|
28892
|
+
display: none !important; // stylelint-disable-line declaration-no-important
|
|
28999
28893
|
}
|
|
29000
28894
|
.k-radio-label.k-no-text {
|
|
29001
28895
|
min-width: 1px;
|
|
@@ -29050,7 +28944,7 @@ $kendo-radio-ripple-opacity: .2 !default;
|
|
|
29050
28944
|
|
|
29051
28945
|
.k-radio:focus,
|
|
29052
28946
|
.k-radio.k-focus {
|
|
29053
|
-
box-shadow: none !important; //
|
|
28947
|
+
box-shadow: none !important; // stylelint-disable-line declaration-no-important
|
|
29054
28948
|
}
|
|
29055
28949
|
|
|
29056
28950
|
.k-radio:disabled::after,
|
|
@@ -29395,16 +29289,6 @@ $kendo-slider-disabled-opacity: .65 !default;
|
|
|
29395
29289
|
cursor: default;
|
|
29396
29290
|
}
|
|
29397
29291
|
}
|
|
29398
|
-
|
|
29399
|
-
.k-rtl &,
|
|
29400
|
-
&.k-rtl,
|
|
29401
|
-
[dir="rtl"] &,
|
|
29402
|
-
&[dir="rtl"] {
|
|
29403
|
-
.k-slider-selection {
|
|
29404
|
-
left: auto;
|
|
29405
|
-
right: 0;
|
|
29406
|
-
}
|
|
29407
|
-
}
|
|
29408
29292
|
}
|
|
29409
29293
|
|
|
29410
29294
|
|
|
@@ -29487,36 +29371,13 @@ $kendo-slider-disabled-opacity: .65 !default;
|
|
|
29487
29371
|
|
|
29488
29372
|
.k-slider-selection {
|
|
29489
29373
|
width: calc( (var(--kendo-slider-end, 0) - var(--kendo-slider-start, 0)) * 1% );
|
|
29490
|
-
|
|
29374
|
+
inset-inline-start: calc( var(--kendo-slider-start, 0) * 1% );
|
|
29491
29375
|
}
|
|
29492
29376
|
.k-draghandle-start {
|
|
29493
|
-
|
|
29377
|
+
inset-inline-start: calc( var(--kendo-slider-start, 0) * 1% );
|
|
29494
29378
|
}
|
|
29495
29379
|
.k-draghandle-end {
|
|
29496
|
-
|
|
29497
|
-
}
|
|
29498
|
-
|
|
29499
|
-
[dir="rtl"] & {
|
|
29500
|
-
.k-slider-selection {
|
|
29501
|
-
left: unset;
|
|
29502
|
-
right: calc( var(--kendo-slider-start, 0) * 1% );
|
|
29503
|
-
}
|
|
29504
|
-
.k-draghandle-start {
|
|
29505
|
-
left: unset;
|
|
29506
|
-
right: calc( var(--kendo-slider-start, 0) * 1% );
|
|
29507
|
-
}
|
|
29508
|
-
.k-draghandle-end {
|
|
29509
|
-
left: unset;
|
|
29510
|
-
right: calc( var(--kendo-slider-end, 0) * 1% );
|
|
29511
|
-
}
|
|
29512
|
-
|
|
29513
|
-
.k-draghandle {
|
|
29514
|
-
transform: translate(50%, -50%);
|
|
29515
|
-
}
|
|
29516
|
-
.k-draghandle:focus,
|
|
29517
|
-
.k-draghandle:active {
|
|
29518
|
-
transform: translate(50%, -50%) scale($kendo-slider-draghandle-active-scale);
|
|
29519
|
-
}
|
|
29380
|
+
inset-inline-start: calc( var(--kendo-slider-end, 0) * 1% );
|
|
29520
29381
|
}
|
|
29521
29382
|
}
|
|
29522
29383
|
}
|
|
@@ -29600,7 +29461,7 @@ $kendo-slider-disabled-opacity: .65 !default;
|
|
|
29600
29461
|
|
|
29601
29462
|
.k-label {
|
|
29602
29463
|
text-align: start;
|
|
29603
|
-
|
|
29464
|
+
inset-inline-start: 120%;
|
|
29604
29465
|
top: 50%;
|
|
29605
29466
|
transform: translateY(-50%);
|
|
29606
29467
|
}
|
|
@@ -29608,23 +29469,8 @@ $kendo-slider-disabled-opacity: .65 !default;
|
|
|
29608
29469
|
.k-last .k-label { top: 0; }
|
|
29609
29470
|
|
|
29610
29471
|
.k-slider-topleft .k-label {
|
|
29611
|
-
|
|
29612
|
-
|
|
29613
|
-
}
|
|
29614
|
-
|
|
29615
|
-
.k-rtl &,
|
|
29616
|
-
&.k-rtl,
|
|
29617
|
-
[dir="rtl"] &,
|
|
29618
|
-
&[dir="rtl"] {
|
|
29619
|
-
.k-label {
|
|
29620
|
-
left: auto;
|
|
29621
|
-
right: 120%;
|
|
29622
|
-
}
|
|
29623
|
-
|
|
29624
|
-
.k-slider-topleft .k-label {
|
|
29625
|
-
left: 120%;
|
|
29626
|
-
right: auto;
|
|
29627
|
-
}
|
|
29472
|
+
inset-inline-start: auto;
|
|
29473
|
+
inset-inline-end: 120%;
|
|
29628
29474
|
}
|
|
29629
29475
|
|
|
29630
29476
|
}
|
|
@@ -29660,34 +29506,16 @@ $kendo-slider-disabled-opacity: .65 !default;
|
|
|
29660
29506
|
// labels
|
|
29661
29507
|
|
|
29662
29508
|
.k-label {
|
|
29663
|
-
|
|
29509
|
+
inset-inline-start: 50%;
|
|
29664
29510
|
bottom: -1.2em;
|
|
29665
29511
|
transform: translateX(-50%);
|
|
29666
29512
|
}
|
|
29667
|
-
.k-first .k-label {
|
|
29668
|
-
.k-last .k-label {
|
|
29513
|
+
.k-first .k-label { inset-inline-start: 0; }
|
|
29514
|
+
.k-last .k-label { inset-inline-start: 100%; }
|
|
29669
29515
|
|
|
29670
29516
|
.k-slider-topleft .k-label {
|
|
29671
29517
|
top: -1.2em;
|
|
29672
29518
|
}
|
|
29673
|
-
|
|
29674
|
-
.k-rtl &,
|
|
29675
|
-
&.k-rtl,
|
|
29676
|
-
[dir="rtl"] &,
|
|
29677
|
-
&[dir="rtl"] {
|
|
29678
|
-
.k-slider-track,
|
|
29679
|
-
.k-slider-selection {
|
|
29680
|
-
right: 0;
|
|
29681
|
-
left: auto;
|
|
29682
|
-
}
|
|
29683
|
-
|
|
29684
|
-
.k-button-increase .k-icon,
|
|
29685
|
-
.k-button-increase .k-svg-icon,
|
|
29686
|
-
.k-button-decrease .k-icon,
|
|
29687
|
-
.k-button-decrease .k-svg-icon {
|
|
29688
|
-
transform: scaleX(-1);
|
|
29689
|
-
}
|
|
29690
|
-
}
|
|
29691
29519
|
}
|
|
29692
29520
|
|
|
29693
29521
|
.k-slider-track,
|
|
@@ -29767,7 +29595,7 @@ $kendo-slider-disabled-opacity: .65 !default;
|
|
|
29767
29595
|
.k-slider-tooltip {
|
|
29768
29596
|
.k-callout-n,
|
|
29769
29597
|
.k-callout-s {
|
|
29770
|
-
margin-
|
|
29598
|
+
margin-inline-start: - k-math-div( $kendo-tooltip-callout-size, 2 );
|
|
29771
29599
|
}
|
|
29772
29600
|
|
|
29773
29601
|
.k-callout-w,
|
|
@@ -29776,20 +29604,50 @@ $kendo-slider-disabled-opacity: .65 !default;
|
|
|
29776
29604
|
}
|
|
29777
29605
|
}
|
|
29778
29606
|
|
|
29607
|
+
// RTL
|
|
29608
|
+
.k-slider-rtl {
|
|
29609
|
+
&.k-slider-horizontal {
|
|
29610
|
+
|
|
29611
|
+
.k-draghandle {
|
|
29612
|
+
transform: translate(50%, -50%);
|
|
29613
|
+
}
|
|
29614
|
+
|
|
29615
|
+
.k-draghandle:focus,
|
|
29616
|
+
.k-draghandle:active {
|
|
29617
|
+
transform: if( $kendo-slider-draghandle-active-scale, translate(50%, -50%) scale($kendo-slider-draghandle-active-scale), null );
|
|
29618
|
+
}
|
|
29619
|
+
|
|
29620
|
+
.k-label {
|
|
29621
|
+
transform: translateX(50%);
|
|
29622
|
+
}
|
|
29623
|
+
}
|
|
29624
|
+
}
|
|
29625
|
+
|
|
29626
|
+
.k-slider[dir="rtl"],
|
|
29627
|
+
[dir="rtl"] .k-slider,
|
|
29628
|
+
.k-slider.k-rtl,
|
|
29629
|
+
.k-rtl .k-slider {
|
|
29630
|
+
@extend .k-slider-rtl !optional;
|
|
29631
|
+
}
|
|
29632
|
+
|
|
29779
29633
|
|
|
29780
29634
|
// Angular specific
|
|
29781
29635
|
.k-slider kendo-resize-sensor {
|
|
29782
29636
|
position: absolute;
|
|
29783
29637
|
}
|
|
29784
29638
|
.k-slider-horizontal .k-slider-wrap:not(.k-slider-buttons) {
|
|
29785
|
-
padding-
|
|
29786
|
-
padding-
|
|
29639
|
+
padding-inline-start: calc( #{$kendo-slider-draghandle-size} / 2 );
|
|
29640
|
+
padding-inline-end: calc( #{$kendo-slider-draghandle-size} / 2 );
|
|
29787
29641
|
}
|
|
29788
29642
|
.k-slider-vertical .k-slider-wrap:not(.k-slider-buttons) {
|
|
29789
29643
|
padding-top: calc( #{$kendo-slider-draghandle-size} / 2 );
|
|
29790
29644
|
padding-bottom: calc( #{$kendo-slider-draghandle-size} / 2 );
|
|
29791
29645
|
}
|
|
29792
29646
|
|
|
29647
|
+
// Aliases
|
|
29648
|
+
.k-draghandle { @extend .k-slider-thumb !optional; }
|
|
29649
|
+
.k-draghandle-start { @extend .k-slider-thumb-start !optional; }
|
|
29650
|
+
.k-draghandle-end { @extend .k-slider-thumb-end !optional; }
|
|
29793
29651
|
}
|
|
29794
29652
|
|
|
29795
29653
|
|
|
@@ -30701,11 +30559,6 @@ $kendo-calendar-sizes: (
|
|
|
30701
30559
|
.k-calendar.k-rtl,
|
|
30702
30560
|
.k-calendar[dir="rtl"] {
|
|
30703
30561
|
|
|
30704
|
-
.k-calendar-nav-prev,
|
|
30705
|
-
.k-calendar-nav-next {
|
|
30706
|
-
transform: scaleX(-1);
|
|
30707
|
-
}
|
|
30708
|
-
|
|
30709
30562
|
.k-content.k-scrollable,
|
|
30710
30563
|
.k-calendar-content.k-scrollable {
|
|
30711
30564
|
@include hide-scrollbar("left");
|
|
@@ -30910,7 +30763,7 @@ $kendo-calendar-sizes: (
|
|
|
30910
30763
|
|
|
30911
30764
|
|
|
30912
30765
|
// Multiview calendar
|
|
30913
|
-
.k-calendar {
|
|
30766
|
+
.k-calendar { // stylelint-disable-line
|
|
30914
30767
|
|
|
30915
30768
|
$kendo-calendar-range-gap: 1px !default;
|
|
30916
30769
|
$kendo-calendar-range-bg: rgba( $kendo-calendar-cell-selected-bg, .25 );
|
|
@@ -36457,7 +36310,7 @@ $kendo-upload-focus-shadow: 0 0 0 2px rgba( black, .13 ) !default;
|
|
|
36457
36310
|
|
|
36458
36311
|
input {
|
|
36459
36312
|
// font should not depend on outside styles, otherwise upload may break
|
|
36460
|
-
font: 170px monospace !important; //
|
|
36313
|
+
font: 170px monospace !important; // stylelint-disable-line declaration-no-important
|
|
36461
36314
|
margin: 0;
|
|
36462
36315
|
padding: 0;
|
|
36463
36316
|
width: 100%;
|
|
@@ -36976,7 +36829,7 @@ $kendo-fab-lg-padding-y: ( $kendo-fab-padding-y * 1.5 ) !default;
|
|
|
36976
36829
|
|
|
36977
36830
|
/// The horizontal padding of the FAB icon.
|
|
36978
36831
|
/// @group floating-action-button
|
|
36979
|
-
$kendo-fab-icon-padding-x: k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
36832
|
+
$kendo-fab-icon-padding-x: k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
36980
36833
|
/// The vertical padding of the FAB icon.
|
|
36981
36834
|
/// @group floating-action-button
|
|
36982
36835
|
$kendo-fab-icon-padding-y: $kendo-fab-icon-padding-x !default;
|
|
@@ -37675,11 +37528,6 @@ $kendo-adaptive-actionsheet-footer-padding-x: k-map-get( $kendo-spacing, 4 ) !de
|
|
|
37675
37528
|
z-index: 9999;
|
|
37676
37529
|
overflow: hidden;
|
|
37677
37530
|
transform: translateZ(0);
|
|
37678
|
-
}
|
|
37679
|
-
|
|
37680
|
-
|
|
37681
|
-
// Animation container
|
|
37682
|
-
.k-actionsheet-container {
|
|
37683
37531
|
|
|
37684
37532
|
// Overlay
|
|
37685
37533
|
> .k-overlay {
|
|
@@ -38409,7 +38257,7 @@ $_kendo-module-meta: (
|
|
|
38409
38257
|
}
|
|
38410
38258
|
|
|
38411
38259
|
// Resize Handles
|
|
38412
|
-
.k-window {
|
|
38260
|
+
.k-window { // stylelint-disable-line
|
|
38413
38261
|
.k-resize-n { top: 0; }
|
|
38414
38262
|
.k-resize-e { right: 0; }
|
|
38415
38263
|
.k-resize-s { bottom: 0; }
|
|
@@ -38445,11 +38293,9 @@ $_kendo-module-meta: (
|
|
|
38445
38293
|
@include box-shadow( $kendo-window-shadow );
|
|
38446
38294
|
}
|
|
38447
38295
|
|
|
38448
|
-
.k-window
|
|
38449
|
-
|
|
38450
|
-
|
|
38451
|
-
@include focus-indicator( $kendo-window-focus-shadow );
|
|
38452
|
-
}
|
|
38296
|
+
.k-window:focus,
|
|
38297
|
+
.k-window.k-focus {
|
|
38298
|
+
@include focus-indicator( $kendo-window-focus-shadow );
|
|
38453
38299
|
}
|
|
38454
38300
|
|
|
38455
38301
|
|
|
@@ -38810,7 +38656,7 @@ $kendo-drawer-selected-hover-text: $kendo-color-secondary !default;
|
|
|
38810
38656
|
display: flex;
|
|
38811
38657
|
flex-direction: column;
|
|
38812
38658
|
flex: 0 0 auto;
|
|
38813
|
-
transition: all 300ms ease-in-out;
|
|
38659
|
+
transition: all 300ms ease-in-out;
|
|
38814
38660
|
overflow: hidden;
|
|
38815
38661
|
-webkit-touch-callout: none;
|
|
38816
38662
|
-webkit-tap-highlight-color: $kendo-color-rgba-transparent;
|
|
@@ -38898,7 +38744,7 @@ $kendo-drawer-selected-hover-text: $kendo-color-secondary !default;
|
|
|
38898
38744
|
overflow-x: hidden;
|
|
38899
38745
|
overflow-y: auto;
|
|
38900
38746
|
scrollbar-width: thin; // Scrollbar styles for Mozilla
|
|
38901
|
-
transition: all 300ms ease-in-out;
|
|
38747
|
+
transition: all 300ms ease-in-out;
|
|
38902
38748
|
|
|
38903
38749
|
// Scrollbar styles for Chrome, Safari and Opera
|
|
38904
38750
|
&::-webkit-scrollbar {
|
|
@@ -39232,7 +39078,6 @@ $kendo-notification-border: $kendo-component-border !default;
|
|
|
39232
39078
|
@function notification-theme( $colors ) {
|
|
39233
39079
|
$_theme: ();
|
|
39234
39080
|
|
|
39235
|
-
// sass-lint:disable-block indentation
|
|
39236
39081
|
@each $name, $color in $colors {
|
|
39237
39082
|
$_theme: k-map-merge(( $name: (
|
|
39238
39083
|
color: k-contrast-color( $color ),
|
|
@@ -40352,9 +40197,7 @@ $_kendo-module-meta: (
|
|
|
40352
40197
|
}
|
|
40353
40198
|
.k-rpanel-top.k-rpanel-expanded {
|
|
40354
40199
|
max-height: 568px;
|
|
40355
|
-
//
|
|
40356
|
-
overflow: visible !important;
|
|
40357
|
-
// sass-lint:enable no-important
|
|
40200
|
+
overflow: visible !important; // stylelint-disable-line declaration-no-important
|
|
40358
40201
|
}
|
|
40359
40202
|
|
|
40360
40203
|
// Toggle button
|
|
@@ -41312,15 +41155,6 @@ $kendo-pager-sizes: (
|
|
|
41312
41155
|
*::after {
|
|
41313
41156
|
box-sizing: border-box;
|
|
41314
41157
|
}
|
|
41315
|
-
|
|
41316
|
-
.k-rtl &,
|
|
41317
|
-
&[dir="rtl"],
|
|
41318
|
-
[dir="rtl"] & {
|
|
41319
|
-
.k-pager-nav .k-button-icon {
|
|
41320
|
-
transform: scaleX(-1);
|
|
41321
|
-
}
|
|
41322
|
-
}
|
|
41323
|
-
|
|
41324
41158
|
}
|
|
41325
41159
|
|
|
41326
41160
|
|
|
@@ -42195,9 +42029,6 @@ $kendo-stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0m
|
|
|
42195
42029
|
.k-step-success .k-step-label .k-svg-icon {
|
|
42196
42030
|
@include fill( $color: $kendo-stepper-label-success-text );
|
|
42197
42031
|
}
|
|
42198
|
-
.k-step-error .k-step-label {
|
|
42199
|
-
@include fill( $color: $kendo-stepper-label-error-text );
|
|
42200
|
-
}
|
|
42201
42032
|
|
|
42202
42033
|
.k-step-error {
|
|
42203
42034
|
.k-step-label {
|
|
@@ -42531,7 +42362,7 @@ $kendo-tabstrip-content-focus-border: $kendo-component-text !default;
|
|
|
42531
42362
|
// Tabstrip content
|
|
42532
42363
|
.k-tabstrip-content,
|
|
42533
42364
|
.k-tabstrip > .k-content {
|
|
42534
|
-
margin: 0 !important; //
|
|
42365
|
+
margin: 0 !important; // stylelint-disable-line declaration-no-important
|
|
42535
42366
|
padding-block: $kendo-tabstrip-content-padding-y;
|
|
42536
42367
|
padding-inline: $kendo-tabstrip-content-padding-x;
|
|
42537
42368
|
box-sizing: border-box;
|
|
@@ -42630,14 +42461,14 @@ $kendo-tabstrip-content-focus-border: $kendo-component-text !default;
|
|
|
42630
42461
|
.k-item.k-active {
|
|
42631
42462
|
margin-bottom: if( $kendo-tabstrip-border-width, -$kendo-tabstrip-border-width, null );
|
|
42632
42463
|
border-bottom-width: $kendo-tabstrip-border-width;
|
|
42633
|
-
border-bottom-color: transparent !important; //
|
|
42464
|
+
border-bottom-color: transparent !important; // stylelint-disable-line declaration-no-important
|
|
42634
42465
|
}
|
|
42635
42466
|
}
|
|
42636
42467
|
|
|
42637
42468
|
> .k-content,
|
|
42638
42469
|
> .k-tabstrip-content {
|
|
42639
42470
|
@include border-bottom-radius( $kendo-tabstrip-item-border-radius );
|
|
42640
|
-
border-top-width: 0 !important; //
|
|
42471
|
+
border-top-width: 0 !important; // stylelint-disable-line declaration-no-important
|
|
42641
42472
|
}
|
|
42642
42473
|
}
|
|
42643
42474
|
.k-tabstrip-bottom {
|
|
@@ -42653,14 +42484,14 @@ $kendo-tabstrip-content-focus-border: $kendo-component-text !default;
|
|
|
42653
42484
|
.k-item.k-active {
|
|
42654
42485
|
margin-top: if( $kendo-tabstrip-border-width, -$kendo-tabstrip-border-width, null );
|
|
42655
42486
|
border-top-width: $kendo-tabstrip-border-width;
|
|
42656
|
-
border-top-color: transparent !important; //
|
|
42487
|
+
border-top-color: transparent !important; // stylelint-disable-line declaration-no-important
|
|
42657
42488
|
}
|
|
42658
42489
|
}
|
|
42659
42490
|
|
|
42660
42491
|
> .k-content,
|
|
42661
42492
|
> .k-tabstrip-content {
|
|
42662
42493
|
@include border-top-radius( $kendo-tabstrip-item-border-radius );
|
|
42663
|
-
border-bottom-width: 0 !important; //
|
|
42494
|
+
border-bottom-width: 0 !important; // stylelint-disable-line declaration-no-important
|
|
42664
42495
|
}
|
|
42665
42496
|
}
|
|
42666
42497
|
.k-tabstrip-left {
|
|
@@ -42678,14 +42509,14 @@ $kendo-tabstrip-content-focus-border: $kendo-component-text !default;
|
|
|
42678
42509
|
.k-item.k-active {
|
|
42679
42510
|
margin-right: if( $kendo-tabstrip-border-width, -$kendo-tabstrip-border-width, null );
|
|
42680
42511
|
border-right-width: $kendo-tabstrip-border-width;
|
|
42681
|
-
border-right-color: transparent !important; //
|
|
42512
|
+
border-right-color: transparent !important; // stylelint-disable-line declaration-no-important
|
|
42682
42513
|
}
|
|
42683
42514
|
}
|
|
42684
42515
|
|
|
42685
42516
|
> .k-content,
|
|
42686
42517
|
> .k-tabstrip-content {
|
|
42687
42518
|
@include border-right-radius( $kendo-tabstrip-item-border-radius );
|
|
42688
|
-
border-left-width: 0 !important; //
|
|
42519
|
+
border-left-width: 0 !important; // stylelint-disable-line declaration-no-important
|
|
42689
42520
|
}
|
|
42690
42521
|
|
|
42691
42522
|
}
|
|
@@ -42704,7 +42535,7 @@ $kendo-tabstrip-content-focus-border: $kendo-component-text !default;
|
|
|
42704
42535
|
.k-item.k-active {
|
|
42705
42536
|
margin-left: if( $kendo-tabstrip-border-width, -$kendo-tabstrip-border-width, null );
|
|
42706
42537
|
border-left-width: $kendo-tabstrip-border-width;
|
|
42707
|
-
border-left-color: transparent !important; //
|
|
42538
|
+
border-left-color: transparent !important; // stylelint-disable-line declaration-no-important
|
|
42708
42539
|
}
|
|
42709
42540
|
}
|
|
42710
42541
|
|
|
@@ -42780,7 +42611,7 @@ $kendo-tabstrip-content-focus-border: $kendo-component-text !default;
|
|
|
42780
42611
|
// Hide tabstrip indicator when dragging
|
|
42781
42612
|
.k-tabstrip-items-wrapper .k-item.k-tabstrip-dragging {
|
|
42782
42613
|
&::after {
|
|
42783
|
-
display: none !important; //
|
|
42614
|
+
display: none !important; // stylelint-disable-line declaration-no-important
|
|
42784
42615
|
}
|
|
42785
42616
|
}
|
|
42786
42617
|
|
|
@@ -42801,11 +42632,6 @@ $kendo-tabstrip-content-focus-border: $kendo-component-text !default;
|
|
|
42801
42632
|
> .k-tabstrip-content { order: 0; }
|
|
42802
42633
|
}
|
|
42803
42634
|
|
|
42804
|
-
.k-tabstrip-prev .k-button-icon,
|
|
42805
|
-
.k-tabstrip-next .k-button-icon {
|
|
42806
|
-
transform: scaleX(-1);
|
|
42807
|
-
}
|
|
42808
|
-
|
|
42809
42635
|
}
|
|
42810
42636
|
|
|
42811
42637
|
}
|
|
@@ -43134,6 +42960,7 @@ $kendo-wizard-step-focus-border: #656565 !default;
|
|
|
43134
42960
|
.k-wizard-vertical {
|
|
43135
42961
|
|
|
43136
42962
|
.k-wizard-steps {
|
|
42963
|
+
margin-left: $kendo-wizard-content-padding-x;
|
|
43137
42964
|
flex: 1 0 0%;
|
|
43138
42965
|
}
|
|
43139
42966
|
|
|
@@ -43141,9 +42968,6 @@ $kendo-wizard-step-focus-border: #656565 !default;
|
|
|
43141
42968
|
flex: 1 1 0%;
|
|
43142
42969
|
}
|
|
43143
42970
|
|
|
43144
|
-
.k-wizard-steps {
|
|
43145
|
-
margin-left: $kendo-wizard-content-padding-x;
|
|
43146
|
-
}
|
|
43147
42971
|
}
|
|
43148
42972
|
|
|
43149
42973
|
.k-wizard-left {
|
|
@@ -44256,25 +44080,15 @@ $kendo-splitbar-selected-text: $kendo-color-primary-contrast !default;
|
|
|
44256
44080
|
.k-pane-flex {
|
|
44257
44081
|
&.k-hidden,
|
|
44258
44082
|
&[hidden] {
|
|
44259
|
-
// sass-lint:disable-block no-important
|
|
44260
44083
|
// hidden panes need to be zero-width to allow pane animation
|
|
44261
|
-
flex: 0 1 0% !important;
|
|
44262
|
-
overflow: hidden !important;
|
|
44263
|
-
display: block !important;
|
|
44084
|
+
flex: 0 1 0% !important; // stylelint-disable-line declaration-no-important
|
|
44085
|
+
overflow: hidden !important; // stylelint-disable-line declaration-no-important
|
|
44086
|
+
display: block !important; // stylelint-disable-line declaration-no-important
|
|
44264
44087
|
}
|
|
44265
44088
|
}
|
|
44266
44089
|
|
|
44267
44090
|
&.k-splitter-horizontal {
|
|
44268
44091
|
flex-direction: row;
|
|
44269
|
-
|
|
44270
|
-
&[dir="rtl"] {
|
|
44271
|
-
> .k-splitbar {
|
|
44272
|
-
> .k-collapse-next,
|
|
44273
|
-
> .k-collapse-prev {
|
|
44274
|
-
transform: scaleX(-1);
|
|
44275
|
-
}
|
|
44276
|
-
}
|
|
44277
|
-
}
|
|
44278
44092
|
}
|
|
44279
44093
|
&.k-splitter-vertical {
|
|
44280
44094
|
flex-direction: column;
|
|
@@ -44715,7 +44529,7 @@ $kendo-adaptive-scheduler-subtle-text: $kendo-subtle-text !default;
|
|
|
44715
44529
|
|
|
44716
44530
|
|
|
44717
44531
|
// Grid specific styles
|
|
44718
|
-
.k-pane-wrapper {
|
|
44532
|
+
.k-pane-wrapper { // stylelint-disable-line
|
|
44719
44533
|
|
|
44720
44534
|
> div.k-pane {
|
|
44721
44535
|
box-shadow: none;
|
|
@@ -44775,7 +44589,7 @@ $kendo-adaptive-scheduler-subtle-text: $kendo-subtle-text !default;
|
|
|
44775
44589
|
|
|
44776
44590
|
|
|
44777
44591
|
// Scheduler specific styles
|
|
44778
|
-
.k-pane-wrapper {
|
|
44592
|
+
.k-pane-wrapper { // stylelint-disable-line
|
|
44779
44593
|
|
|
44780
44594
|
.k-scheduler-edit-form {
|
|
44781
44595
|
|
|
@@ -45002,7 +44816,7 @@ $kendo-adaptive-scheduler-subtle-text: $kendo-subtle-text !default;
|
|
|
45002
44816
|
|
|
45003
44817
|
|
|
45004
44818
|
// Common styles for the Adaptive Layout
|
|
45005
|
-
.k-pane-wrapper {
|
|
44819
|
+
.k-pane-wrapper { // stylelint-disable-line
|
|
45006
44820
|
|
|
45007
44821
|
.k-appbar {
|
|
45008
44822
|
padding: k-map-get( $kendo-spacing, 1 );
|
|
@@ -45117,24 +44931,12 @@ $kendo-adaptive-scheduler-subtle-text: $kendo-subtle-text !default;
|
|
|
45117
44931
|
&[dir="rtl"],
|
|
45118
44932
|
[dir="rtl"] & {
|
|
45119
44933
|
|
|
45120
|
-
.k-header-cancel .k-button-icon,
|
|
45121
|
-
.k-listgroup-item .k-select .k-svg-icon,
|
|
45122
|
-
.k-listgroup-item .k-select .k-icon {
|
|
45123
|
-
transform: scaleX( -1 );
|
|
45124
|
-
}
|
|
45125
|
-
|
|
45126
44934
|
.k-scheduler-mobile {
|
|
45127
44935
|
|
|
45128
44936
|
.k-scheduler-toolbar {
|
|
45129
|
-
|
|
45130
44937
|
> ul > li {
|
|
45131
44938
|
border: 0;
|
|
45132
44939
|
}
|
|
45133
|
-
|
|
45134
|
-
.k-nav-prev,
|
|
45135
|
-
.k-nav-next {
|
|
45136
|
-
transform: scaleX(-1);
|
|
45137
|
-
}
|
|
45138
44940
|
}
|
|
45139
44941
|
|
|
45140
44942
|
.k-task .k-i-reload {
|
|
@@ -45238,7 +45040,7 @@ $kendo-adaptive-scheduler-subtle-text: $kendo-subtle-text !default;
|
|
|
45238
45040
|
.k-clear,
|
|
45239
45041
|
.k-select-all,
|
|
45240
45042
|
.k-scheduler-delete,
|
|
45241
|
-
.k-scheduler-resetSeries { //
|
|
45043
|
+
.k-scheduler-resetSeries { // stylelint-disable-line
|
|
45242
45044
|
color: $kendo-adaptive-menu-clear-text;
|
|
45243
45045
|
}
|
|
45244
45046
|
|
|
@@ -45623,6 +45425,7 @@ $kendo-grid-sticky-hover-bg: k-try-shade($kendo-grid-bg, 7%) !default;
|
|
|
45623
45425
|
$kendo-grid-sticky-selected-hover-bg: k-try-shade($kendo-grid-sticky-selected-bg, .87) !default;
|
|
45624
45426
|
|
|
45625
45427
|
$kendo-grid-column-menu-width: 250px !default;
|
|
45428
|
+
$kendo-grid-column-menu-max-width: 320px !default;
|
|
45626
45429
|
|
|
45627
45430
|
$kendo-grid-filter-menu-check-all-border-bottom-width: 0 !default;
|
|
45628
45431
|
|
|
@@ -46209,7 +46012,8 @@ $kendo-grid-row-resizer-height: k-map-get( $kendo-spacing, .5 ) !default;
|
|
|
46209
46012
|
}
|
|
46210
46013
|
|
|
46211
46014
|
.k-grid-filter-popup {
|
|
46212
|
-
min-width:
|
|
46015
|
+
min-width: $kendo-grid-column-menu-width;
|
|
46016
|
+
max-width: $kendo-grid-column-menu-max-width;
|
|
46213
46017
|
}
|
|
46214
46018
|
|
|
46215
46019
|
// Standalone column menu
|
|
@@ -46780,17 +46584,18 @@ $kendo-grid-row-resizer-height: k-map-get( $kendo-spacing, .5 ) !default;
|
|
|
46780
46584
|
}
|
|
46781
46585
|
|
|
46782
46586
|
// Remove Grid scrollbar during built-in export
|
|
46587
|
+
// stylelint-disable declaration-no-important
|
|
46783
46588
|
.k-pdf-export-shadow {
|
|
46784
46589
|
.k-grid {
|
|
46785
46590
|
float: left;
|
|
46786
|
-
width: auto !important;
|
|
46591
|
+
width: auto !important;
|
|
46787
46592
|
}
|
|
46788
46593
|
|
|
46789
46594
|
// Remove all sizes and scrolling
|
|
46790
46595
|
.k-grid,
|
|
46791
46596
|
.k-grid-content,
|
|
46792
46597
|
.k-grid-content-locked {
|
|
46793
|
-
height: auto !important;
|
|
46598
|
+
height: auto !important;
|
|
46794
46599
|
overflow: visible;
|
|
46795
46600
|
}
|
|
46796
46601
|
|
|
@@ -46798,21 +46603,23 @@ $kendo-grid-row-resizer-height: k-map-get( $kendo-spacing, .5 ) !default;
|
|
|
46798
46603
|
& + .k-grid-header-wrap,
|
|
46799
46604
|
& + .k-grid-content,
|
|
46800
46605
|
& + .k-grid-footer-wrap {
|
|
46801
|
-
width: auto !important;
|
|
46606
|
+
width: auto !important;
|
|
46802
46607
|
}
|
|
46803
46608
|
}
|
|
46804
46609
|
|
|
46805
46610
|
// Remove empty space reserved above .k-table-the scrollbar
|
|
46806
46611
|
.k-grid-header,
|
|
46807
46612
|
.k-grid[data-role="grid"] .k-grid-footer {
|
|
46808
|
-
padding: 0 !important;
|
|
46613
|
+
padding: 0 !important;
|
|
46809
46614
|
}
|
|
46810
46615
|
}
|
|
46616
|
+
// stylelint-enable declaration-no-important
|
|
46811
46617
|
|
|
46812
46618
|
|
|
46813
46619
|
// Filter menu
|
|
46814
46620
|
.k-filter-menu-popup {
|
|
46815
|
-
width: $kendo-grid-column-menu-width;
|
|
46621
|
+
min-width: $kendo-grid-column-menu-width;
|
|
46622
|
+
max-width: $kendo-grid-column-menu-max-width;
|
|
46816
46623
|
}
|
|
46817
46624
|
.k-filter-menu {
|
|
46818
46625
|
box-sizing: border-box;
|
|
@@ -46856,7 +46663,8 @@ $kendo-grid-row-resizer-height: k-map-get( $kendo-spacing, .5 ) !default;
|
|
|
46856
46663
|
.k-grid-filter-popup.k-popup {
|
|
46857
46664
|
|
|
46858
46665
|
.k-filter-menu-container {
|
|
46859
|
-
width: $kendo-grid-column-menu-width;
|
|
46666
|
+
min-width: $kendo-grid-column-menu-width;
|
|
46667
|
+
max-width: $kendo-grid-column-menu-max-width;
|
|
46860
46668
|
}
|
|
46861
46669
|
}
|
|
46862
46670
|
|
|
@@ -46887,19 +46695,17 @@ $kendo-grid-row-resizer-height: k-map-get( $kendo-spacing, .5 ) !default;
|
|
|
46887
46695
|
|
|
46888
46696
|
// autofitting requires automatic table layout to measure sizes
|
|
46889
46697
|
.k-autofitting {
|
|
46890
|
-
//
|
|
46891
|
-
|
|
46892
|
-
width: auto !important;
|
|
46893
|
-
table-layout: auto !important;
|
|
46698
|
+
width: auto !important; // stylelint-disable-line declaration-no-important
|
|
46699
|
+
table-layout: auto !important; // stylelint-disable-line declaration-no-important
|
|
46894
46700
|
|
|
46895
46701
|
.k-table-th,
|
|
46896
46702
|
td,
|
|
46897
46703
|
.k-table-td {
|
|
46898
|
-
white-space: nowrap !important;
|
|
46704
|
+
white-space: nowrap !important; // stylelint-disable-line declaration-no-important
|
|
46899
46705
|
}
|
|
46900
46706
|
|
|
46901
46707
|
.k-detail-row {
|
|
46902
|
-
display: none !important;
|
|
46708
|
+
display: none !important; // stylelint-disable-line declaration-no-important
|
|
46903
46709
|
}
|
|
46904
46710
|
}
|
|
46905
46711
|
|
|
@@ -46908,13 +46714,13 @@ $kendo-grid-row-resizer-height: k-map-get( $kendo-spacing, .5 ) !default;
|
|
|
46908
46714
|
// Column menu
|
|
46909
46715
|
.k-column-menu-popup,
|
|
46910
46716
|
.k-grid-columnmenu-popup {
|
|
46911
|
-
width: $kendo-grid-column-menu-width;
|
|
46717
|
+
min-width: $kendo-grid-column-menu-width;
|
|
46912
46718
|
box-sizing: border-box;
|
|
46913
46719
|
|
|
46914
46720
|
&.k-popup {
|
|
46915
46721
|
padding-block: $kendo-grid-column-menu-popup-padding-y;
|
|
46916
46722
|
padding-inline: $kendo-grid-column-menu-popup-padding-x;
|
|
46917
|
-
max-width:
|
|
46723
|
+
max-width: $kendo-grid-column-menu-max-width;
|
|
46918
46724
|
}
|
|
46919
46725
|
|
|
46920
46726
|
.k-actions {
|
|
@@ -47036,6 +46842,18 @@ $kendo-grid-row-resizer-height: k-map-get( $kendo-spacing, .5 ) !default;
|
|
|
47036
46842
|
flex: 1 1 auto;
|
|
47037
46843
|
}
|
|
47038
46844
|
|
|
46845
|
+
.k-rtl .k-grid-virtual .k-grid-content,
|
|
46846
|
+
[dir="rtl"] .k-grid-virtual .k-grid-content,
|
|
46847
|
+
.k-rtl.k-grid-virtual .k-grid-content,
|
|
46848
|
+
[dir="rtl"].k-grid-virtual .k-grid-content {
|
|
46849
|
+
|
|
46850
|
+
.k-grid-table-wrap,
|
|
46851
|
+
.k-grid-table,
|
|
46852
|
+
> .k-height-container {
|
|
46853
|
+
float: right;
|
|
46854
|
+
}
|
|
46855
|
+
}
|
|
46856
|
+
|
|
47039
46857
|
}
|
|
47040
46858
|
|
|
47041
46859
|
|
|
@@ -47832,15 +47650,13 @@ $kendo-grid-row-resizer-height: k-map-get( $kendo-spacing, .5 ) !default;
|
|
|
47832
47650
|
}
|
|
47833
47651
|
|
|
47834
47652
|
.k-table-thead > .k-table-row:not(:only-child) > .k-table-th {
|
|
47653
|
+
border-inline-start-color: $kendo-grid-border;
|
|
47654
|
+
|
|
47835
47655
|
&.k-grid-header-sticky {
|
|
47836
47656
|
border-inline-color: $kendo-grid-sticky-header-border;
|
|
47837
47657
|
}
|
|
47838
47658
|
}
|
|
47839
47659
|
|
|
47840
|
-
.k-table-thead > .k-table-row:not(:only-child) > .k-table-th {
|
|
47841
|
-
border-inline-start-color: $kendo-grid-border;
|
|
47842
|
-
}
|
|
47843
|
-
|
|
47844
47660
|
.k-grid-header-locked .k-table-thead .k-table-row .k-table-th {
|
|
47845
47661
|
border-inline-color: $kendo-grid-sticky-header-border;
|
|
47846
47662
|
}
|
|
@@ -48628,9 +48444,8 @@ $kendo-spreadsheet-drawing-anchor-bg: rgba( $kendo-selected-bg, .25 ) !default;
|
|
|
48628
48444
|
|
|
48629
48445
|
|
|
48630
48446
|
// Spreadsheet view
|
|
48631
|
-
// sass-lint:disable no-important
|
|
48632
48447
|
.k-spreadsheet-view {
|
|
48633
|
-
height: auto !important;
|
|
48448
|
+
height: auto !important; // stylelint-disable-line declaration-no-important
|
|
48634
48449
|
border-color: inherit;
|
|
48635
48450
|
font-size: 12px;
|
|
48636
48451
|
font-family: Arial, Verdana, Sans-serif;
|
|
@@ -48643,7 +48458,7 @@ $kendo-spreadsheet-drawing-anchor-bg: rgba( $kendo-selected-bg, .25 ) !default;
|
|
|
48643
48458
|
pointer-events: auto;
|
|
48644
48459
|
}
|
|
48645
48460
|
}
|
|
48646
|
-
|
|
48461
|
+
|
|
48647
48462
|
.k-spreadsheet-fixed-container {
|
|
48648
48463
|
width: 100%;
|
|
48649
48464
|
height: 100%;
|
|
@@ -48839,9 +48654,8 @@ $kendo-spreadsheet-drawing-anchor-bg: rgba( $kendo-selected-bg, .25 ) !default;
|
|
|
48839
48654
|
}
|
|
48840
48655
|
|
|
48841
48656
|
.k-spreadsheet-active-cell {
|
|
48842
|
-
// sass-lint:disable-block no-important
|
|
48843
48657
|
// always show exact active cell border, regardless of inline cell styles
|
|
48844
|
-
outline-color: transparent !important;
|
|
48658
|
+
outline-color: transparent !important; // stylelint-disable-line declaration-no-important
|
|
48845
48659
|
z-index: 10;
|
|
48846
48660
|
}
|
|
48847
48661
|
|
|
@@ -49236,7 +49050,7 @@ $kendo-spreadsheet-drawing-anchor-bg: rgba( $kendo-selected-bg, .25 ) !default;
|
|
|
49236
49050
|
position: absolute;
|
|
49237
49051
|
transform: translate(-50%, -50%);
|
|
49238
49052
|
|
|
49239
|
-
//
|
|
49053
|
+
// stylelint-disable declaration-block-single-line-max-declarations, selector-class-pattern
|
|
49240
49054
|
&.N { left: 50%; top: 0; cursor: ns-resize; }
|
|
49241
49055
|
&.NE { left: 100%; top: 0; cursor: nesw-resize; }
|
|
49242
49056
|
&.E { left: 100%; top: 50%; cursor: ew-resize; }
|
|
@@ -49245,7 +49059,7 @@ $kendo-spreadsheet-drawing-anchor-bg: rgba( $kendo-selected-bg, .25 ) !default;
|
|
|
49245
49059
|
&.SW { left: 0; top: 100%; cursor: nesw-resize; }
|
|
49246
49060
|
&.W { left: 0; top: 50%; cursor: ew-resize; }
|
|
49247
49061
|
&.NW { left: 0; top: 0; cursor: nwse-resize; }
|
|
49248
|
-
//
|
|
49062
|
+
// stylelint-enable declaration-block-single-line-max-declarations, selector-class-pattern
|
|
49249
49063
|
}
|
|
49250
49064
|
|
|
49251
49065
|
.k-spreadsheet-insert-image-dialog {
|
|
@@ -50511,7 +50325,7 @@ $kendo-pivotgrid-remove-text: $kendo-pivotgrid-button-bg !default;
|
|
|
50511
50325
|
.k-pdf-export-shadow {
|
|
50512
50326
|
|
|
50513
50327
|
.k-pivotgrid {
|
|
50514
|
-
height: auto !important; //
|
|
50328
|
+
height: auto !important; // stylelint-disable-line declaration-no-important
|
|
50515
50329
|
}
|
|
50516
50330
|
|
|
50517
50331
|
.k-pivotgrid-values {
|
|
@@ -52401,7 +52215,7 @@ $kendo-taskboard-drag-placeholder-border: $kendo-component-border !default;
|
|
|
52401
52215
|
border-width: $kendo-taskboard-card-border-width;
|
|
52402
52216
|
|
|
52403
52217
|
&.k-taskboard-card-category {
|
|
52404
|
-
border-
|
|
52218
|
+
border-inline-start-width: $kendo-taskboard-card-category-border-width;
|
|
52405
52219
|
}
|
|
52406
52220
|
|
|
52407
52221
|
.k-card-header
|
|
@@ -52442,20 +52256,6 @@ $kendo-taskboard-drag-placeholder-border: $kendo-component-border !default;
|
|
|
52442
52256
|
position: relative;
|
|
52443
52257
|
}
|
|
52444
52258
|
|
|
52445
|
-
|
|
52446
|
-
|
|
52447
|
-
|
|
52448
|
-
// RTL
|
|
52449
|
-
.k-taskboard-card.k-taskboard-card-category {
|
|
52450
|
-
.k-rtl &,
|
|
52451
|
-
&.k-rtl,
|
|
52452
|
-
[dir="rtl"] &,
|
|
52453
|
-
&[dir="rtl"] {
|
|
52454
|
-
border-left-width: $kendo-taskboard-card-border-width;
|
|
52455
|
-
border-right-width: $kendo-taskboard-card-category-border-width;
|
|
52456
|
-
}
|
|
52457
|
-
}
|
|
52458
|
-
|
|
52459
52259
|
}
|
|
52460
52260
|
|
|
52461
52261
|
|
|
@@ -52701,7 +52501,7 @@ $kendo-editor-resize-handle-border: #000000 !default;
|
|
|
52701
52501
|
$kendo-editor-resize-handle-bg: #ffffff !default;
|
|
52702
52502
|
|
|
52703
52503
|
$kendo-editor-selectednode-outline-width: 2px !default;
|
|
52704
|
-
$kendo-editor-selectednode-outline-color: #
|
|
52504
|
+
$kendo-editor-selectednode-outline-color: #88ccff !default;
|
|
52705
52505
|
|
|
52706
52506
|
// #endregion
|
|
52707
52507
|
// #region @import "./_layout.scss"; -> scss/editor/_layout.scss
|
|
@@ -52825,12 +52625,13 @@ $kendo-editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-li
|
|
|
52825
52625
|
}
|
|
52826
52626
|
}
|
|
52827
52627
|
|
|
52828
|
-
|
|
52628
|
+
// stylelint-disable selector-no-vendor-prefix, selector-class-pattern
|
|
52629
|
+
.ProseMirror-selectednode {
|
|
52829
52630
|
outline-width: $kendo-editor-selectednode-outline-width;
|
|
52830
52631
|
outline-style: solid;
|
|
52831
52632
|
|
|
52832
52633
|
}
|
|
52833
|
-
.ProseMirror-hideselection {
|
|
52634
|
+
.ProseMirror-hideselection {
|
|
52834
52635
|
caret-color: transparent;
|
|
52835
52636
|
|
|
52836
52637
|
*::selection,
|
|
@@ -52838,7 +52639,7 @@ $kendo-editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-li
|
|
|
52838
52639
|
background: transparent;
|
|
52839
52640
|
}
|
|
52840
52641
|
}
|
|
52841
|
-
|
|
52642
|
+
// stylelint-enable selector-no-vendor-prefix, selector-class-pattern
|
|
52842
52643
|
|
|
52843
52644
|
// Toolbar
|
|
52844
52645
|
.k-editor-toolbar {
|
|
@@ -52871,7 +52672,7 @@ $kendo-editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-li
|
|
|
52871
52672
|
display: block;
|
|
52872
52673
|
}
|
|
52873
52674
|
|
|
52874
|
-
> .ProseMirror { //
|
|
52675
|
+
> .ProseMirror { // stylelint-disable-line
|
|
52875
52676
|
padding: $kendo-padding-md-x;
|
|
52876
52677
|
width: 100%;
|
|
52877
52678
|
height: 100%;
|
|
@@ -52896,7 +52697,7 @@ $kendo-editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-li
|
|
|
52896
52697
|
}
|
|
52897
52698
|
|
|
52898
52699
|
&[contenteditable="false"] {
|
|
52899
|
-
cursor: unset !important; //
|
|
52700
|
+
cursor: unset !important; // stylelint-disable-line declaration-no-important
|
|
52900
52701
|
|
|
52901
52702
|
.k-editor-resize-handles-wrapper,
|
|
52902
52703
|
.k-editor-resize-handle,
|
|
@@ -52910,7 +52711,7 @@ $kendo-editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-li
|
|
|
52910
52711
|
pointer-events: none;
|
|
52911
52712
|
}
|
|
52912
52713
|
|
|
52913
|
-
& .ProseMirror-selectednode { //
|
|
52714
|
+
& .ProseMirror-selectednode { // stylelint-disable-line
|
|
52914
52715
|
outline: none;
|
|
52915
52716
|
}
|
|
52916
52717
|
}
|
|
@@ -52955,7 +52756,7 @@ $kendo-editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-li
|
|
|
52955
52756
|
}
|
|
52956
52757
|
|
|
52957
52758
|
// Give selected cells a blue overlay
|
|
52958
|
-
.selectedCell::after { //
|
|
52759
|
+
.selectedCell::after { // stylelint-disable-line
|
|
52959
52760
|
z-index: 2;
|
|
52960
52761
|
position: absolute;
|
|
52961
52762
|
content: "";
|
|
@@ -53438,7 +53239,7 @@ $kendo-editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-li
|
|
|
53438
53239
|
background-color: $kendo-editor-resize-handle-bg;
|
|
53439
53240
|
border-color: $kendo-editor-resize-handle-border;
|
|
53440
53241
|
}
|
|
53441
|
-
.ProseMirror-selectednode { //
|
|
53242
|
+
.ProseMirror-selectednode { // stylelint-disable-line
|
|
53442
53243
|
outline-color: $kendo-editor-selectednode-outline-color;
|
|
53443
53244
|
}
|
|
53444
53245
|
|
|
@@ -53474,7 +53275,7 @@ $kendo-editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-li
|
|
|
53474
53275
|
border-color: #dddddd;
|
|
53475
53276
|
}
|
|
53476
53277
|
|
|
53477
|
-
.selectedCell::after { //
|
|
53278
|
+
.selectedCell::after { // stylelint-disable-line
|
|
53478
53279
|
background-color: rgba(200, 200, 255, .4);
|
|
53479
53280
|
}
|
|
53480
53281
|
}
|
|
@@ -54244,7 +54045,7 @@ $kendo-gantt-validation-tooltip-invalid-border: $kendo-color-error !default;
|
|
|
54244
54045
|
|
|
54245
54046
|
|
|
54246
54047
|
// Responsive gantt toolbar
|
|
54247
|
-
@media (max-width: 480px) {
|
|
54048
|
+
@media (max-width: 480px) { // stylelint-disable-line
|
|
54248
54049
|
|
|
54249
54050
|
.k-gantt-toolbar {
|
|
54250
54051
|
.k-gantt-toggle {
|
|
@@ -54265,7 +54066,7 @@ $kendo-gantt-validation-tooltip-invalid-border: $kendo-color-error !default;
|
|
|
54265
54066
|
|
|
54266
54067
|
}
|
|
54267
54068
|
|
|
54268
|
-
@media (max-width: 1024px) {
|
|
54069
|
+
@media (max-width: 1024px) { // stylelint-disable-line
|
|
54269
54070
|
.k-gantt-views-wrapper .k-gantt-views { display: none; }
|
|
54270
54071
|
.k-gantt-views-wrapper .k-views-dropdown { display: flex; }
|
|
54271
54072
|
}
|
|
@@ -54290,7 +54091,7 @@ $kendo-gantt-validation-tooltip-invalid-border: $kendo-color-error !default;
|
|
|
54290
54091
|
}
|
|
54291
54092
|
.k-grid-header,
|
|
54292
54093
|
.k-grid-footer {
|
|
54293
|
-
padding: 0 !important; //
|
|
54094
|
+
padding: 0 !important; // stylelint-disable-line declaration-no-important
|
|
54294
54095
|
}
|
|
54295
54096
|
.k-grid-header tr {
|
|
54296
54097
|
height: calc( #{$kendo-line-height-em} * 2 + #{$kendo-grid-header-padding-y * 4} + 2px );
|
|
@@ -54799,9 +54600,9 @@ $kendo-gantt-validation-tooltip-invalid-border: $kendo-color-error !default;
|
|
|
54799
54600
|
.k-gantt,
|
|
54800
54601
|
.k-gantt-timeline,
|
|
54801
54602
|
.k-gantt-dependencies {
|
|
54802
|
-
width: auto !important; //
|
|
54803
|
-
height: auto !important; //
|
|
54804
|
-
overflow: visible !important; //
|
|
54603
|
+
width: auto !important; // stylelint-disable-line declaration-no-important
|
|
54604
|
+
height: auto !important; // stylelint-disable-line declaration-no-important
|
|
54605
|
+
overflow: visible !important; // stylelint-disable-line declaration-no-important
|
|
54805
54606
|
}
|
|
54806
54607
|
|
|
54807
54608
|
.k-gantt-treelist .k-treelist {
|
|
@@ -56036,8 +55837,8 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
|
|
|
56036
55837
|
}
|
|
56037
55838
|
}
|
|
56038
55839
|
|
|
56039
|
-
// sass-lint:disable no-important
|
|
56040
55840
|
// remove scrollbars during PDF export
|
|
55841
|
+
// stylelint-disable declaration-no-important
|
|
56041
55842
|
.k-pdf-export-shadow .k-scheduler,
|
|
56042
55843
|
.k-scheduler-pdf-export .k-scheduler-content,
|
|
56043
55844
|
.k-scheduler-pdf-export .k-scheduler-times {
|
|
@@ -56061,7 +55862,7 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
|
|
|
56061
55862
|
width: 100% !important;
|
|
56062
55863
|
}
|
|
56063
55864
|
}
|
|
56064
|
-
//
|
|
55865
|
+
// stylelint-enable declaration-no-important
|
|
56065
55866
|
|
|
56066
55867
|
|
|
56067
55868
|
// TODO: add this class to jQuery rendering
|
|
@@ -56080,9 +55881,7 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
|
|
|
56080
55881
|
|
|
56081
55882
|
|
|
56082
55883
|
// Workweek view
|
|
56083
|
-
//
|
|
56084
|
-
.k-scheduler-workWeekview {}
|
|
56085
|
-
// sass-lint:enable class-name-format
|
|
55884
|
+
.k-scheduler-workWeekview {} // stylelint-disable-line
|
|
56086
55885
|
|
|
56087
55886
|
|
|
56088
55887
|
// Week view
|
|
@@ -56103,14 +55902,12 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
|
|
|
56103
55902
|
min-height: 80px;
|
|
56104
55903
|
}
|
|
56105
55904
|
|
|
56106
|
-
// sass-lint:disable no-important
|
|
56107
55905
|
// hidden cells must have no layout
|
|
56108
55906
|
.k-hidden {
|
|
56109
|
-
padding-left: 0 !important;
|
|
56110
|
-
padding-right: 0 !important;
|
|
56111
|
-
border-right-width: 0 !important;
|
|
55907
|
+
padding-left: 0 !important; // stylelint-disable-line declaration-no-important
|
|
55908
|
+
padding-right: 0 !important; // stylelint-disable-line declaration-no-important
|
|
55909
|
+
border-right-width: 0 !important; // stylelint-disable-line declaration-no-important
|
|
56112
55910
|
}
|
|
56113
|
-
// sass-lint:enable no-important
|
|
56114
55911
|
|
|
56115
55912
|
.k-scheduler-table-auto,
|
|
56116
55913
|
.k-scheduler-table-auto td,
|
|
@@ -56436,13 +56233,6 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
|
|
|
56436
56233
|
|
|
56437
56234
|
.k-scheduler,
|
|
56438
56235
|
&.k-scheduler {
|
|
56439
|
-
.k-i-caret-alt-left,
|
|
56440
|
-
.k-i-caret-alt-right,
|
|
56441
|
-
.k-i-arrow-60-left,
|
|
56442
|
-
.k-i-arrow-60-right,
|
|
56443
|
-
.k-current-time-arrow-right {
|
|
56444
|
-
transform: scaleX(-1);
|
|
56445
|
-
}
|
|
56446
56236
|
|
|
56447
56237
|
.k-scheduler-header-wrap {
|
|
56448
56238
|
border-right-width: 0;
|
|
@@ -56535,9 +56325,9 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
|
|
|
56535
56325
|
}
|
|
56536
56326
|
}
|
|
56537
56327
|
|
|
56328
|
+
// Angular fix for stronger selector and smaller padding
|
|
56538
56329
|
.k-event-template {
|
|
56539
|
-
|
|
56540
|
-
& {
|
|
56330
|
+
& { // stylelint-disable-line
|
|
56541
56331
|
padding-block: $kendo-padding-sm-y;
|
|
56542
56332
|
padding-inline: $kendo-padding-sm-x;
|
|
56543
56333
|
}
|
|
@@ -56550,6 +56340,7 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
|
|
|
56550
56340
|
|
|
56551
56341
|
$handle-size: 2px;
|
|
56552
56342
|
$handle-half-size: k-math-div( $handle-size, 2 );
|
|
56343
|
+
|
|
56553
56344
|
.k-event {
|
|
56554
56345
|
.k-event-delete {
|
|
56555
56346
|
border-radius: 50%;
|
|
@@ -56708,7 +56499,7 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
|
|
|
56708
56499
|
}
|
|
56709
56500
|
|
|
56710
56501
|
|
|
56711
|
-
//Scheduler navigation
|
|
56502
|
+
// Scheduler navigation
|
|
56712
56503
|
.k-scheduler-navigation {}
|
|
56713
56504
|
|
|
56714
56505
|
|
|
@@ -56814,9 +56605,7 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
|
|
|
56814
56605
|
|
|
56815
56606
|
|
|
56816
56607
|
// Workweek view
|
|
56817
|
-
//
|
|
56818
|
-
.k-scheduler-workWeekview {}
|
|
56819
|
-
// sass-lint:enable class-name-format
|
|
56608
|
+
.k-scheduler-workWeekview {} // stylelint-disable-line
|
|
56820
56609
|
|
|
56821
56610
|
|
|
56822
56611
|
// Week view
|
|
@@ -57364,8 +57153,8 @@ $kendo-chat-quick-reply-hover-border: $kendo-color-primary !default;
|
|
|
57364
57153
|
box-sizing: border-box;
|
|
57365
57154
|
border-width: 1px 0 0;
|
|
57366
57155
|
border-style: solid;
|
|
57367
|
-
border-color: inherit !important; //
|
|
57368
|
-
border-radius: 0 !important; //
|
|
57156
|
+
border-color: inherit !important; // stylelint-disable-line declaration-no-important
|
|
57157
|
+
border-radius: 0 !important; // stylelint-disable-line declaration-no-important
|
|
57369
57158
|
flex: none;
|
|
57370
57159
|
display: flex;
|
|
57371
57160
|
flex-flow: row nowrap;
|
|
@@ -57872,9 +57661,7 @@ $kendo-media-player-titlebar-gradient: rgba( $kendo-media-player-text, .7 ), rgb
|
|
|
57872
57661
|
}
|
|
57873
57662
|
.k-mediaplayer-toolbar {
|
|
57874
57663
|
border-width: 0;
|
|
57875
|
-
//
|
|
57876
|
-
width: 100% !important;
|
|
57877
|
-
// sass-lint:enable no-important
|
|
57664
|
+
width: 100% !important; // stylelint-disable-line declaration-no-important
|
|
57878
57665
|
box-shadow: none;
|
|
57879
57666
|
|
|
57880
57667
|
|
|
@@ -57905,9 +57692,7 @@ $kendo-media-player-titlebar-gradient: rgba( $kendo-media-player-text, .7 ), rgb
|
|
|
57905
57692
|
transform: translateY( -50% );
|
|
57906
57693
|
}
|
|
57907
57694
|
.k-mediaplayer-seekbar .k-slider-track {
|
|
57908
|
-
//
|
|
57909
|
-
width: 100% !important;
|
|
57910
|
-
// sass-lint:enable no-important
|
|
57695
|
+
width: 100% !important; // stylelint-disable-line declaration-no-important
|
|
57911
57696
|
border-radius: 0;
|
|
57912
57697
|
}
|
|
57913
57698
|
.k-mediaplayer-seekbar .k-slider-selection {
|
|
@@ -57919,10 +57704,8 @@ $kendo-media-player-titlebar-gradient: rgba( $kendo-media-player-text, .7 ), rgb
|
|
|
57919
57704
|
position: fixed;
|
|
57920
57705
|
top: 0;
|
|
57921
57706
|
left: 0;
|
|
57922
|
-
//
|
|
57923
|
-
|
|
57924
|
-
height: 100% !important;
|
|
57925
|
-
// sass-lint:enable no-important
|
|
57707
|
+
width: 100% !important; // stylelint-disable-line declaration-no-important
|
|
57708
|
+
height: 100% !important; // stylelint-disable-line declaration-no-important
|
|
57926
57709
|
}
|
|
57927
57710
|
|
|
57928
57711
|
}
|
|
@@ -58897,7 +58680,7 @@ $kendo-pdf-viewer-icon-text: $kendo-dropzone-icon-text !default;
|
|
|
58897
58680
|
height: 100%;
|
|
58898
58681
|
align-items: center;
|
|
58899
58682
|
justify-content: center;
|
|
58900
|
-
background-color: inherit !important; //
|
|
58683
|
+
background-color: inherit !important; // stylelint-disable-line declaration-no-important
|
|
58901
58684
|
|
|
58902
58685
|
.k-upload,
|
|
58903
58686
|
.k-dropzone,
|
|
@@ -58911,7 +58694,7 @@ $kendo-pdf-viewer-icon-text: $kendo-dropzone-icon-text !default;
|
|
|
58911
58694
|
|
|
58912
58695
|
// Search
|
|
58913
58696
|
.k-pdf-viewer-search-dialog {
|
|
58914
|
-
padding: 0 !important; //
|
|
58697
|
+
padding: 0 !important; // stylelint-disable-line declaration-no-important
|
|
58915
58698
|
}
|
|
58916
58699
|
|
|
58917
58700
|
.k-search-panel {
|
|
@@ -58951,6 +58734,7 @@ $kendo-pdf-viewer-icon-text: $kendo-dropzone-icon-text !default;
|
|
|
58951
58734
|
border-style: solid;
|
|
58952
58735
|
border-radius: $kendo-pdf-viewer-search-panel-border-radius;
|
|
58953
58736
|
z-index: 10;
|
|
58737
|
+
cursor: default;
|
|
58954
58738
|
}
|
|
58955
58739
|
|
|
58956
58740
|
// Alias
|
|
@@ -59535,17 +59319,6 @@ $kendo-scrollview-transition-timing-function: ease-in-out !default;
|
|
|
59535
59319
|
}
|
|
59536
59320
|
}
|
|
59537
59321
|
|
|
59538
|
-
.k-rtl,
|
|
59539
|
-
[dir="rtl"] {
|
|
59540
|
-
.k-scrollview-prev,
|
|
59541
|
-
.k-scrollview-next {
|
|
59542
|
-
.k-icon,
|
|
59543
|
-
.k-svg-icon {
|
|
59544
|
-
transform: scaleX(-1);
|
|
59545
|
-
}
|
|
59546
|
-
}
|
|
59547
|
-
}
|
|
59548
|
-
|
|
59549
59322
|
}
|
|
59550
59323
|
|
|
59551
59324
|
|
|
@@ -59889,6 +59662,7 @@ $kendo-treemap-line-height: $kendo-line-height-md !default;
|
|
|
59889
59662
|
|
|
59890
59663
|
|
|
59891
59664
|
// Exported variables
|
|
59665
|
+
// stylelint-disable selector-class-pattern
|
|
59892
59666
|
.k-var--chart-font {
|
|
59893
59667
|
font-size: $kendo-chart-font-size;
|
|
59894
59668
|
}
|
|
@@ -59905,6 +59679,7 @@ $kendo-treemap-line-height: $kendo-line-height-md !default;
|
|
|
59905
59679
|
.k-var--chart-label-font {
|
|
59906
59680
|
font-size: $kendo-chart-label-font-size;
|
|
59907
59681
|
}
|
|
59682
|
+
// stylelint-enable selector-class-pattern
|
|
59908
59683
|
|
|
59909
59684
|
// Elements
|
|
59910
59685
|
.k-chart,
|
|
@@ -60366,6 +60141,7 @@ $kendo-treemap-line-height: $kendo-line-height-md !default;
|
|
|
60366
60141
|
@mixin kendo-dataviz--theme-base() {
|
|
60367
60142
|
|
|
60368
60143
|
// Exported variables
|
|
60144
|
+
// stylelint-disable selector-class-pattern
|
|
60369
60145
|
.k-var--chart-inactive {
|
|
60370
60146
|
background-color: $kendo-chart-inactive;
|
|
60371
60147
|
}
|
|
@@ -60409,6 +60185,7 @@ $kendo-treemap-line-height: $kendo-line-height-md !default;
|
|
|
60409
60185
|
.k-var--chart-error-bars-background {
|
|
60410
60186
|
background-color: $kendo-chart-error-bars-background;
|
|
60411
60187
|
}
|
|
60188
|
+
// stylelint-enable selector-class-pattern
|
|
60412
60189
|
|
|
60413
60190
|
// Elements
|
|
60414
60191
|
.k-chart,
|
|
@@ -61214,7 +60991,7 @@ $kendo-signature-maximized-width: 750px !default;
|
|
|
61214
60991
|
$kendo-signature-maximized-height: 252px !default;
|
|
61215
60992
|
|
|
61216
60993
|
$kendo-signature-padding-x: k-map-get( $kendo-spacing, 1 ) !default;
|
|
61217
|
-
$kendo-signature-sm-padding-x: k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
60994
|
+
$kendo-signature-sm-padding-x: k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
61218
60995
|
$kendo-signature-md-padding-x: k-map-get( $kendo-spacing, 1 ) !default;
|
|
61219
60996
|
$kendo-signature-lg-padding-x: k-map-get( $kendo-spacing, 1.5 ) !default;
|
|
61220
60997
|
|