@progress/kendo-theme-classic 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 +73 -231
- package/dist/all.scss +290 -506
- package/dist/meta/sassdoc-data.json +358 -358
- package/dist/meta/sassdoc-raw-data.json +177 -177
- package/dist/meta/variables.json +5 -1
- package/dist/meta/variables.scss +1 -1
- package/lib/swatches/classic-green-dark.json +1 -1
- package/lib/swatches/classic-green.json +1 -1
- package/lib/swatches/classic-lavender-dark.json +1 -1
- package/lib/swatches/classic-lavender.json +1 -1
- package/lib/swatches/classic-main-dark.json +1 -1
- package/lib/swatches/classic-main.json +1 -1
- package/lib/swatches/classic-metro-dark.json +1 -1
- package/lib/swatches/classic-metro.json +1 -1
- package/lib/swatches/classic-moonlight.json +1 -1
- package/lib/swatches/classic-opal-dark.json +1 -1
- package/lib/swatches/classic-opal.json +1 -1
- package/lib/swatches/classic-silver-dark.json +1 -1
- package/lib/swatches/classic-silver.json +1 -1
- package/lib/swatches/classic-uniform.json +1 -1
- package/package.json +5 -5
- package/scss/_variables.scss +1 -2
- package/scss/badge/_variables.scss +2 -2
- package/scss/button/_variables.scss +1 -1
- package/scss/calendar/_variables.scss +2 -2
- package/scss/chip/_variables.scss +1 -1
- package/scss/editor/_variables.scss +1 -1
- package/scss/fab/_variables.scss +4 -4
- package/scss/floating-label/_variables.scss +1 -1
- package/scss/grid/_variables.scss +2 -1
- package/scss/input/_variables.scss +2 -2
- package/scss/list/_variables.scss +3 -3
- package/scss/listbox/_index.scss +0 -1
- package/scss/menu/_variables.scss +1 -1
- package/scss/notification/_variables.scss +0 -1
- package/scss/signature/_variables.scss +1 -1
- package/scss/treeview/_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 {
|
|
@@ -2898,7 +2895,6 @@ $_kendo-data-uris: () !default;
|
|
|
2898
2895
|
/// @require $_kendo-data-uris
|
|
2899
2896
|
@mixin register-data-uri( $name, $content ) {
|
|
2900
2897
|
@if ( k-map-has-key( $_kendo-data-uris, $name ) ) {
|
|
2901
|
-
// sass-lint:disable-block no-warn
|
|
2902
2898
|
@warn "Attempt to redefine data URI of file `#{$name}`.";
|
|
2903
2899
|
}
|
|
2904
2900
|
|
|
@@ -2948,7 +2944,6 @@ $_kendo-data-uris: () !default;
|
|
|
2948
2944
|
}
|
|
2949
2945
|
|
|
2950
2946
|
@mixin checkerboard-gradient( $primary-color: white, $secondary-color: rgba( black, .09 ), $size: 10px ) {
|
|
2951
|
-
// sass-lint:disable-block indentation
|
|
2952
2947
|
$_position: calc( #{$size} / 2 );
|
|
2953
2948
|
|
|
2954
2949
|
background:
|
|
@@ -2998,7 +2993,7 @@ $_kendo-imported-modules: () !default;
|
|
|
2998
2993
|
/// @param {String} $name - The name of the exported module.
|
|
2999
2994
|
/// @require $_kendo-imported-modules
|
|
3000
2995
|
@mixin exports( $name ) {
|
|
3001
|
-
@if (k-list-index( $_kendo-imported-modules, $name ) == null) {
|
|
2996
|
+
@if (k-list-index( $_kendo-imported-modules, $name ) == null) { // stylelint-disable-line
|
|
3002
2997
|
$_kendo-imported-modules: k-list-append( $_kendo-imported-modules, $name ) !global;
|
|
3003
2998
|
@content;
|
|
3004
2999
|
}
|
|
@@ -3663,6 +3658,7 @@ $_kendo-dependencies: (
|
|
|
3663
3658
|
$_deps: () !default;
|
|
3664
3659
|
$_imported: () !default;
|
|
3665
3660
|
|
|
3661
|
+
// stylelint-disable scss/at-if-no-null
|
|
3666
3662
|
@mixin module-register( $name: null, $dependencies: null ) {
|
|
3667
3663
|
@if (k-list-index( $kendo-components, $name) != null) {
|
|
3668
3664
|
$_deps: k-map-merge( $_deps, ( $name: $dependencies ) );
|
|
@@ -3670,7 +3666,6 @@ $_imported: () !default;
|
|
|
3670
3666
|
@if $dependencies {
|
|
3671
3667
|
@each $dep in $dependencies {
|
|
3672
3668
|
@if ( k-list-index( $kendo-components, $dep ) == null ) {
|
|
3673
|
-
// sass-lint:disable-block no-warn
|
|
3674
3669
|
@warn "The module \"#{$name}\" depends on module \"#{$dep}\", but the styles will not be loaded!";
|
|
3675
3670
|
}
|
|
3676
3671
|
}
|
|
@@ -3684,7 +3679,6 @@ $_imported: () !default;
|
|
|
3684
3679
|
@if $dependencies {
|
|
3685
3680
|
@each $dep in $dependencies {
|
|
3686
3681
|
@if ( k-list-index( $_imported, $dep ) == null ) {
|
|
3687
|
-
// sass-lint:disable-block no-warn
|
|
3688
3682
|
@warn "The module \"#{$name}\" depends on module \"#{$dep}\", but the styles have not been loaded yet!";
|
|
3689
3683
|
}
|
|
3690
3684
|
}
|
|
@@ -3699,7 +3693,6 @@ $_imported: () !default;
|
|
|
3699
3693
|
@mixin verify-dependencies() {
|
|
3700
3694
|
@each $component in $kendo-components {
|
|
3701
3695
|
@if (k-map-has-key( $_kendo-dependencies, $component ) == false) {
|
|
3702
|
-
// sass-lint:disable-block no-warn
|
|
3703
3696
|
@error "Module '#{$component}' is not defined.";
|
|
3704
3697
|
}
|
|
3705
3698
|
}
|
|
@@ -3709,11 +3702,11 @@ $_imported: () !default;
|
|
|
3709
3702
|
@mixin verify-rendered() {
|
|
3710
3703
|
@each $component in $kendo-components {
|
|
3711
3704
|
@if (k-list-index( $_imported, $component ) == null) {
|
|
3712
|
-
// sass-lint:disable-block no-warn
|
|
3713
3705
|
@error "Module '#{$component}' has not been rendered.";
|
|
3714
3706
|
}
|
|
3715
3707
|
}
|
|
3716
3708
|
}
|
|
3709
|
+
// stylelint-enable scss/at-if-no-null
|
|
3717
3710
|
|
|
3718
3711
|
// #endregion
|
|
3719
3712
|
|
|
@@ -3750,7 +3743,7 @@ $_imported: () !default;
|
|
|
3750
3743
|
}
|
|
3751
3744
|
|
|
3752
3745
|
// #endregion
|
|
3753
|
-
// #region @import "./_layout"; -> node_modules/@progress/kendo-theme-core/scss/styles/_layout.scss
|
|
3746
|
+
// #region @import "./_layout.scss"; -> node_modules/@progress/kendo-theme-core/scss/styles/_layout.scss
|
|
3754
3747
|
@mixin kendo-core--styles--layout() {
|
|
3755
3748
|
|
|
3756
3749
|
// Basic layout
|
|
@@ -3804,8 +3797,8 @@ $_imported: () !default;
|
|
|
3804
3797
|
border-style: solid;
|
|
3805
3798
|
border-color: inherit;
|
|
3806
3799
|
display: block;
|
|
3807
|
-
flex-grow: 0 !important; //
|
|
3808
|
-
flex-shrink: 0 !important; //
|
|
3800
|
+
flex-grow: 0 !important; // stylelint-disable-line declaration-no-important
|
|
3801
|
+
flex-shrink: 0 !important; // stylelint-disable-line declaration-no-important
|
|
3809
3802
|
align-self: stretch;
|
|
3810
3803
|
}
|
|
3811
3804
|
.k-separator-horizontal,
|
|
@@ -3829,7 +3822,7 @@ $_imported: () !default;
|
|
|
3829
3822
|
|
|
3830
3823
|
// Hidden
|
|
3831
3824
|
.k-hidden {
|
|
3832
|
-
display: none !important; //
|
|
3825
|
+
display: none !important; // stylelint-disable-line declaration-no-important
|
|
3833
3826
|
}
|
|
3834
3827
|
|
|
3835
3828
|
|
|
@@ -3853,14 +3846,14 @@ $_imported: () !default;
|
|
|
3853
3846
|
|
|
3854
3847
|
// Hidden attribute
|
|
3855
3848
|
[hidden] {
|
|
3856
|
-
display: none !important; //
|
|
3849
|
+
display: none !important; // stylelint-disable-line declaration-no-important
|
|
3857
3850
|
}
|
|
3858
3851
|
|
|
3859
3852
|
|
|
3860
3853
|
// Hide script tags
|
|
3861
3854
|
// see https://github.com/telerik/kendo-themes/issues/2360
|
|
3862
3855
|
script {
|
|
3863
|
-
display: none !important; //
|
|
3856
|
+
display: none !important; // stylelint-disable-line declaration-no-important
|
|
3864
3857
|
}
|
|
3865
3858
|
|
|
3866
3859
|
}
|
|
@@ -3903,7 +3896,6 @@ $kendo-auto-bootstrap: true !default;
|
|
|
3903
3896
|
|
|
3904
3897
|
// Spacing
|
|
3905
3898
|
$kendo-spacing: (
|
|
3906
|
-
// sass-lint:disable-block leading-zero
|
|
3907
3899
|
0: 0,
|
|
3908
3900
|
1px: 1px,
|
|
3909
3901
|
0.5: 2px,
|
|
@@ -3960,7 +3952,7 @@ $kendo-icon-padding: k-map-get( $kendo-spacing, 1 ) !default;
|
|
|
3960
3952
|
$kendo-padding-x: 8px !default;
|
|
3961
3953
|
$kendo-padding-y: 4px !default;
|
|
3962
3954
|
$kendo-padding-sm-x: k-map-get( $kendo-spacing, 1 ) !default;
|
|
3963
|
-
$kendo-padding-sm-y: k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
3955
|
+
$kendo-padding-sm-y: k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
3964
3956
|
$kendo-padding-md-x: k-map-get( $kendo-spacing, 2 ) !default;
|
|
3965
3957
|
$kendo-padding-md-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
3966
3958
|
$kendo-padding-lg-x: k-map-get( $kendo-spacing, 3 ) !default;
|
|
@@ -4307,8 +4299,7 @@ $kendo-invalid-shadow: null !default;
|
|
|
4307
4299
|
// PDF export icons fix
|
|
4308
4300
|
.kendo-pdf-hide-pseudo-elements::before,
|
|
4309
4301
|
.kendo-pdf-hide-pseudo-elements::after {
|
|
4310
|
-
//
|
|
4311
|
-
display: none !important;
|
|
4302
|
+
display: none !important; // stylelint-disable-line declaration-no-important
|
|
4312
4303
|
}
|
|
4313
4304
|
}
|
|
4314
4305
|
|
|
@@ -4807,9 +4798,8 @@ $kendo-invalid-shadow: null !default;
|
|
|
4807
4798
|
}
|
|
4808
4799
|
|
|
4809
4800
|
&-exit-active {
|
|
4810
|
-
// sass-lint:disable-block no-important
|
|
4811
4801
|
// override any max-height set to element to allow animation
|
|
4812
|
-
max-height: 0 !important;
|
|
4802
|
+
max-height: 0 !important; // stylelint-disable-line declaration-no-important
|
|
4813
4803
|
transition: max-height 300ms ease-in-out;
|
|
4814
4804
|
}
|
|
4815
4805
|
}
|
|
@@ -4826,9 +4816,8 @@ $kendo-invalid-shadow: null !default;
|
|
|
4826
4816
|
}
|
|
4827
4817
|
|
|
4828
4818
|
&-exit-active {
|
|
4829
|
-
// sass-lint:disable-block no-important
|
|
4830
4819
|
// override any max-height set to element to allow animation
|
|
4831
|
-
max-width: 0 !important;
|
|
4820
|
+
max-width: 0 !important; // stylelint-disable-line declaration-no-important
|
|
4832
4821
|
transition: max-width 300ms ease-in-out;
|
|
4833
4822
|
}
|
|
4834
4823
|
}
|
|
@@ -4840,7 +4829,7 @@ $kendo-invalid-shadow: null !default;
|
|
|
4840
4829
|
|
|
4841
4830
|
.k-fx-end .k-fx-next,
|
|
4842
4831
|
.k-fx-end .k-fx-current {
|
|
4843
|
-
transition: all $fx-duration ease-out;
|
|
4832
|
+
transition: all $fx-duration ease-out;
|
|
4844
4833
|
}
|
|
4845
4834
|
|
|
4846
4835
|
.k-fx {
|
|
@@ -4857,8 +4846,7 @@ $kendo-invalid-shadow: null !default;
|
|
|
4857
4846
|
|
|
4858
4847
|
.k-fx-hidden,
|
|
4859
4848
|
.k-fx-hidden * {
|
|
4860
|
-
//
|
|
4861
|
-
visibility: hidden !important;
|
|
4849
|
+
visibility: hidden !important; // stylelint-disable-line declaration-no-important
|
|
4862
4850
|
}
|
|
4863
4851
|
|
|
4864
4852
|
.k-fx-reverse {
|
|
@@ -4872,8 +4860,8 @@ $kendo-invalid-shadow: null !default;
|
|
|
4872
4860
|
}
|
|
4873
4861
|
|
|
4874
4862
|
// Zoom
|
|
4863
|
+
// stylelint-disable declaration-no-important
|
|
4875
4864
|
.k-fx-zoom {
|
|
4876
|
-
// sass-lint:disable-block no-important
|
|
4877
4865
|
&.k-fx-start .k-fx-next {
|
|
4878
4866
|
transform: scale(0) !important;
|
|
4879
4867
|
}
|
|
@@ -4897,6 +4885,7 @@ $kendo-invalid-shadow: null !default;
|
|
|
4897
4885
|
}
|
|
4898
4886
|
}
|
|
4899
4887
|
}
|
|
4888
|
+
// stylelint-enable declaration-no-important
|
|
4900
4889
|
|
|
4901
4890
|
// Fade
|
|
4902
4891
|
.k-fx-fade {
|
|
@@ -4935,7 +4924,7 @@ $kendo-invalid-shadow: null !default;
|
|
|
4935
4924
|
&.k-fx-end .k-fx-current .km-content,
|
|
4936
4925
|
&.k-fx-end .k-fx-current .km-header,
|
|
4937
4926
|
&.k-fx-end .k-fx-current .km-footer {
|
|
4938
|
-
transition: all $fx-duration ease-out;
|
|
4927
|
+
transition: all $fx-duration ease-out;
|
|
4939
4928
|
}
|
|
4940
4929
|
|
|
4941
4930
|
// left
|
|
@@ -5409,7 +5398,6 @@ $kendo-theme-colors: () !default;
|
|
|
5409
5398
|
$kendo-font-sizes: () !default;
|
|
5410
5399
|
|
|
5411
5400
|
$kendo-spacing: (
|
|
5412
|
-
// sass-lint:disable-block leading-zero
|
|
5413
5401
|
0: 0,
|
|
5414
5402
|
1px: 1px,
|
|
5415
5403
|
0.5: .125rem,
|
|
@@ -5447,7 +5435,6 @@ $kendo-spacing: (
|
|
|
5447
5435
|
) !default;
|
|
5448
5436
|
|
|
5449
5437
|
$kendo-sizing: k-map-merge( $kendo-spacing, (
|
|
5450
|
-
// sass-lint:disable-block indentation
|
|
5451
5438
|
"auto": auto,
|
|
5452
5439
|
"1/2": 50%,
|
|
5453
5440
|
"1/3": 33.333333%,
|
|
@@ -5490,8 +5477,6 @@ $kendo-border-radii: (
|
|
|
5490
5477
|
full: 9999px
|
|
5491
5478
|
) !default;
|
|
5492
5479
|
|
|
5493
|
-
//
|
|
5494
|
-
|
|
5495
5480
|
$kendo-utils: (
|
|
5496
5481
|
|
|
5497
5482
|
// Accessibility
|
|
@@ -5584,7 +5569,6 @@ $kendo-utils: (
|
|
|
5584
5569
|
),
|
|
5585
5570
|
"overscroll": (),
|
|
5586
5571
|
"placement": k-map-merge( $kendo-spacing, (
|
|
5587
|
-
// sass-lint:disable-block indentation
|
|
5588
5572
|
-1: -1px
|
|
5589
5573
|
)),
|
|
5590
5574
|
"position": (
|
|
@@ -5857,14 +5841,13 @@ $kendo-utils: (
|
|
|
5857
5841
|
fr: minmax( 0, 1fr ),
|
|
5858
5842
|
),
|
|
5859
5843
|
"gap": k-map-merge( $kendo-spacing, (
|
|
5860
|
-
// sass-lint:disable-block indentation
|
|
5861
5844
|
// TODO: remove this extension once we fix docs
|
|
5862
5845
|
xs: k-map-get( $kendo-spacing, 1 ),
|
|
5863
5846
|
sm: k-map-get( $kendo-spacing, 2 ),
|
|
5864
5847
|
md: k-map-get( $kendo-spacing, 3 ),
|
|
5865
5848
|
lg: k-map-get( $kendo-spacing, 4 ),
|
|
5866
5849
|
xl: k-map-get( $kendo-spacing, 6 ),
|
|
5867
|
-
thin: k-map-get( $kendo-spacing, 0.5 ),
|
|
5850
|
+
thin: k-map-get( $kendo-spacing, 0.5 ),
|
|
5868
5851
|
hair: k-map-get( $kendo-spacing, 1px )
|
|
5869
5852
|
)),
|
|
5870
5853
|
"align-content": (
|
|
@@ -6001,33 +5984,30 @@ $kendo-utils: (
|
|
|
6001
5984
|
// Spacing
|
|
6002
5985
|
"margin": k-map-merge( $kendo-spacing,
|
|
6003
5986
|
k-map-negate( $kendo-spacing), (
|
|
6004
|
-
// sass-lint:disable-block indentation
|
|
6005
5987
|
// TODO: remove this extension once we fix docs
|
|
6006
5988
|
xs: k-map-get( $kendo-spacing, 1 ),
|
|
6007
5989
|
sm: k-map-get( $kendo-spacing, 2 ),
|
|
6008
5990
|
md: k-map-get( $kendo-spacing, 3 ),
|
|
6009
5991
|
lg: k-map-get( $kendo-spacing, 4 ),
|
|
6010
5992
|
xl: k-map-get( $kendo-spacing, 6 ),
|
|
6011
|
-
thin: k-map-get( $kendo-spacing, 0.5 ),
|
|
5993
|
+
thin: k-map-get( $kendo-spacing, 0.5 ),
|
|
6012
5994
|
hair: k-map-get( $kendo-spacing, 1px ),
|
|
6013
5995
|
auto: auto
|
|
6014
5996
|
)),
|
|
6015
5997
|
"padding": k-map-merge( $kendo-spacing, (
|
|
6016
|
-
// sass-lint:disable-block indentation
|
|
6017
5998
|
// TODO: remove this extension once we fix docs
|
|
6018
5999
|
xs: k-map-get( $kendo-spacing, 1 ),
|
|
6019
6000
|
sm: k-map-get( $kendo-spacing, 2 ),
|
|
6020
6001
|
md: k-map-get( $kendo-spacing, 3 ),
|
|
6021
6002
|
lg: k-map-get( $kendo-spacing, 4 ),
|
|
6022
6003
|
xl: k-map-get( $kendo-spacing, 6 ),
|
|
6023
|
-
thin: k-map-get( $kendo-spacing, 0.5 ),
|
|
6004
|
+
thin: k-map-get( $kendo-spacing, 0.5 ),
|
|
6024
6005
|
hair: k-map-get( $kendo-spacing, 1px )
|
|
6025
6006
|
)),
|
|
6026
6007
|
"space-between": (),
|
|
6027
6008
|
|
|
6028
6009
|
// Sizing
|
|
6029
6010
|
"width": k-map-merge( $kendo-sizing, (
|
|
6030
|
-
// sass-lint:disable-block indentation
|
|
6031
6011
|
screen: 100vw
|
|
6032
6012
|
)),
|
|
6033
6013
|
"min-width": (
|
|
@@ -6048,7 +6028,6 @@ $kendo-utils: (
|
|
|
6048
6028
|
fit: fit-content
|
|
6049
6029
|
),
|
|
6050
6030
|
"height": k-map-merge( $kendo-sizing, (
|
|
6051
|
-
// sass-lint:disable-block indentation
|
|
6052
6031
|
screen: 100vh
|
|
6053
6032
|
)),
|
|
6054
6033
|
"min-height": (
|
|
@@ -6106,7 +6085,6 @@ $kendo-utils: (
|
|
|
6106
6085
|
end
|
|
6107
6086
|
),
|
|
6108
6087
|
"text-color": k-map-merge( $kendo-theme-colors, (
|
|
6109
|
-
// sass-lint:disable-block indentation
|
|
6110
6088
|
"inherit": inherit,
|
|
6111
6089
|
"current": currentColor,
|
|
6112
6090
|
"transparent": transparent,
|
|
@@ -6162,7 +6140,6 @@ $kendo-utils: (
|
|
|
6162
6140
|
text: text
|
|
6163
6141
|
),
|
|
6164
6142
|
"background-color": k-map-merge( $kendo-theme-colors, (
|
|
6165
|
-
// sass-lint:disable-block indentation
|
|
6166
6143
|
"inherit": inherit,
|
|
6167
6144
|
"transparent": transparent,
|
|
6168
6145
|
"black": black,
|
|
@@ -6206,7 +6183,6 @@ $kendo-utils: (
|
|
|
6206
6183
|
none
|
|
6207
6184
|
),
|
|
6208
6185
|
"border-color": k-map-merge( $kendo-theme-colors, (
|
|
6209
|
-
// sass-lint:disable-block indentation
|
|
6210
6186
|
"inherit": inherit,
|
|
6211
6187
|
"current": currentColor,
|
|
6212
6188
|
"transparent": transparent,
|
|
@@ -6233,7 +6209,6 @@ $kendo-utils: (
|
|
|
6233
6209
|
none
|
|
6234
6210
|
),
|
|
6235
6211
|
"outline-color": k-map-merge( $kendo-theme-colors, (
|
|
6236
|
-
// sass-lint:disable-block indentation
|
|
6237
6212
|
"inherit": inherit,
|
|
6238
6213
|
"current": currentColor,
|
|
6239
6214
|
"transparent": transparent,
|
|
@@ -6252,7 +6227,6 @@ $kendo-utils: (
|
|
|
6252
6227
|
"box-shadow": (),
|
|
6253
6228
|
"box-shadow-color": (),
|
|
6254
6229
|
"opacity": (
|
|
6255
|
-
// sass-lint:disable-block leading-zero
|
|
6256
6230
|
0: 0,
|
|
6257
6231
|
5: 0.05,
|
|
6258
6232
|
10: 0.1,
|
|
@@ -6291,7 +6265,6 @@ $kendo-utils: (
|
|
|
6291
6265
|
// Transform
|
|
6292
6266
|
"flip": true,
|
|
6293
6267
|
"scale": (
|
|
6294
|
-
// sass-lint:disable-block leading-zero
|
|
6295
6268
|
0: 0,
|
|
6296
6269
|
0.25: .25,
|
|
6297
6270
|
0.5: .5,
|
|
@@ -6475,7 +6448,7 @@ $kendo-utils: (
|
|
|
6475
6448
|
@if $important {
|
|
6476
6449
|
.\!#{$_selector} {
|
|
6477
6450
|
@each $prop in $_props {
|
|
6478
|
-
#{$prop}: if( $_fn, k-meta-call($_fn, $_val), $_val ) !important; //
|
|
6451
|
+
#{$prop}: if( $_fn, k-meta-call($_fn, $_val), $_val ) !important; // stylelint-disable-line declaration-no-important
|
|
6479
6452
|
}
|
|
6480
6453
|
}
|
|
6481
6454
|
}
|
|
@@ -6806,9 +6779,9 @@ $kendo-utils: (
|
|
|
6806
6779
|
// Legacy aliases
|
|
6807
6780
|
@include generate-utils( display, display, $kendo-utils-display );
|
|
6808
6781
|
.#{$kendo-prefix}d-flex-row { @extend .#{$kendo-prefix}d-flex, .#{$kendo-prefix}flex-row !optional; }
|
|
6809
|
-
.\!#{$kendo-prefix}d-flex-row { @extend .\!#{$kendo-prefix}d-flex, .\!#{$kendo-prefix}flex-row !optional; }
|
|
6782
|
+
.\!#{$kendo-prefix}d-flex-row { @extend .\!#{$kendo-prefix}d-flex, .\!#{$kendo-prefix}flex-row !optional; }
|
|
6810
6783
|
.#{$kendo-prefix}d-flex-col { @extend .#{$kendo-prefix}d-flex, .#{$kendo-prefix}flex-col !optional; }
|
|
6811
|
-
.\!#{$kendo-prefix}d-flex-col { @extend .\!#{$kendo-prefix}d-flex, .\!#{$kendo-prefix}flex-row !optional; }
|
|
6784
|
+
.\!#{$kendo-prefix}d-flex-col { @extend .\!#{$kendo-prefix}d-flex, .\!#{$kendo-prefix}flex-row !optional; }
|
|
6812
6785
|
|
|
6813
6786
|
}
|
|
6814
6787
|
|
|
@@ -7155,7 +7128,7 @@ $kendo-utils: (
|
|
|
7155
7128
|
// placement length utility classes
|
|
7156
7129
|
@each $side in (top, right, bottom, left) {
|
|
7157
7130
|
.#{$kendo-prefix}#{$side},
|
|
7158
|
-
.#{$kendo-prefix}pos-#{$side} { #{$side}: 0; }
|
|
7131
|
+
.#{$kendo-prefix}pos-#{$side} { #{$side}: 0; }
|
|
7159
7132
|
}
|
|
7160
7133
|
|
|
7161
7134
|
// Inset utility classes
|
|
@@ -8160,8 +8133,8 @@ $kendo-utils: (
|
|
|
8160
8133
|
|
|
8161
8134
|
// Legacy aliases
|
|
8162
8135
|
@include generate-utils( colspan, grid-column, $kendo-utils-grid-column-span );
|
|
8163
|
-
.#{$kendo-prefix}colspan-all { @extend .#{$kendo-prefix}colspan-full !optional; }
|
|
8164
|
-
.\!#{$kendo-prefix}colspan-all { @extend .\!#{$kendo-prefix}colspan-full !optional; }
|
|
8136
|
+
.#{$kendo-prefix}colspan-all { @extend .#{$kendo-prefix}colspan-full !optional; }
|
|
8137
|
+
.\!#{$kendo-prefix}colspan-all { @extend .\!#{$kendo-prefix}colspan-full !optional; }
|
|
8165
8138
|
|
|
8166
8139
|
}
|
|
8167
8140
|
|
|
@@ -8204,8 +8177,8 @@ $kendo-utils: (
|
|
|
8204
8177
|
|
|
8205
8178
|
// Legacy aliases
|
|
8206
8179
|
@include generate-utils( rowspan, grid-row, $kendo-utils-grid-row-span );
|
|
8207
|
-
.#{$kendo-prefix}rowspan-all { @extend .#{$kendo-prefix}rowspan-full !optional; }
|
|
8208
|
-
.\!#{$kendo-prefix}rowspan-all { @extend .\!#{$kendo-prefix}rowspan-full !optional; }
|
|
8180
|
+
.#{$kendo-prefix}rowspan-all { @extend .#{$kendo-prefix}rowspan-full !optional; }
|
|
8181
|
+
.\!#{$kendo-prefix}rowspan-all { @extend .\!#{$kendo-prefix}rowspan-full !optional; }
|
|
8209
8182
|
|
|
8210
8183
|
}
|
|
8211
8184
|
|
|
@@ -8354,7 +8327,7 @@ $kendo-utils: (
|
|
|
8354
8327
|
|
|
8355
8328
|
// Custom justify-content classes
|
|
8356
8329
|
.#{$kendo-prefix}justify-content-stretch > * { flex: 1 0 0%; }
|
|
8357
|
-
.\!.#{$kendo-prefix}justify-content-stretch > * { flex: 1 0 0% !important; } //
|
|
8330
|
+
.\!.#{$kendo-prefix}justify-content-stretch > * { flex: 1 0 0% !important; } // stylelint-disable-line declaration-no-important
|
|
8358
8331
|
|
|
8359
8332
|
}
|
|
8360
8333
|
|
|
@@ -10606,9 +10579,9 @@ $kendo-utils: (
|
|
|
10606
10579
|
text-overflow: ellipsis;
|
|
10607
10580
|
}
|
|
10608
10581
|
.\!#{$kendo-prefix}text-truncate {
|
|
10609
|
-
white-space: nowrap !important; //
|
|
10610
|
-
overflow: hidden !important; //
|
|
10611
|
-
text-overflow: ellipsis !important; //
|
|
10582
|
+
white-space: nowrap !important; // stylelint-disable-line declaration-no-important
|
|
10583
|
+
overflow: hidden !important; // stylelint-disable-line declaration-no-important
|
|
10584
|
+
text-overflow: ellipsis !important; // stylelint-disable-line declaration-no-important
|
|
10612
10585
|
}
|
|
10613
10586
|
|
|
10614
10587
|
// Legacy aliases
|
|
@@ -12168,11 +12141,11 @@ $kendo-utils: (
|
|
|
12168
12141
|
$kendo-utils-flip: k-map-get( $kendo-utils, "flip" ) !default;
|
|
12169
12142
|
@if $kendo-utils-flip {
|
|
12170
12143
|
.#{$kendo-prefix}flip-h { transform: scaleX( -1 ); }
|
|
12171
|
-
.\!#{$kendo-prefix}flip-h { transform: scaleX( -1 ) !important; } //
|
|
12144
|
+
.\!#{$kendo-prefix}flip-h { transform: scaleX( -1 ) !important; } // stylelint-disable-line declaration-no-important
|
|
12172
12145
|
.#{$kendo-prefix}flip-v { transform: scaleY( -1 ); }
|
|
12173
|
-
.\!#{$kendo-prefix}flip-v { transform: scaleY( -1 ) !important; } //
|
|
12146
|
+
.\!#{$kendo-prefix}flip-v { transform: scaleY( -1 ) !important; } // stylelint-disable-line declaration-no-important
|
|
12174
12147
|
.#{$kendo-prefix}flip-h.#{$kendo-prefix}flip-v { transform: scale( -1, -1 ); }
|
|
12175
|
-
.\!#{$kendo-prefix}flip-h.\!#{$kendo-prefix}flip-v { transform: scale( -1, -1 ) !important; } //
|
|
12148
|
+
.\!#{$kendo-prefix}flip-h.\!#{$kendo-prefix}flip-v { transform: scale( -1, -1 ) !important; } // stylelint-disable-line declaration-no-important
|
|
12176
12149
|
|
|
12177
12150
|
// Legacy aliases
|
|
12178
12151
|
.#{$kendo-prefix}flip-x { @extend .#{$kendo-prefix}flip-h !optional; }
|
|
@@ -12297,11 +12270,11 @@ $kendo-utils: (
|
|
|
12297
12270
|
/// @group transform
|
|
12298
12271
|
/// @contextType css
|
|
12299
12272
|
|
|
12300
|
-
//
|
|
12273
|
+
// stylelint-disable scss/at-function-pattern
|
|
12301
12274
|
@function __rotate( $val ) {
|
|
12302
12275
|
@return rotate( $val );
|
|
12303
12276
|
}
|
|
12304
|
-
//
|
|
12277
|
+
// stylelint-enable scss/at-function-pattern
|
|
12305
12278
|
|
|
12306
12279
|
@mixin kendo-utils--transform--rotate() {
|
|
12307
12280
|
|
|
@@ -12331,7 +12304,7 @@ $kendo-utils: (
|
|
|
12331
12304
|
/// @group transform
|
|
12332
12305
|
/// @contextType css
|
|
12333
12306
|
|
|
12334
|
-
//
|
|
12307
|
+
// stylelint-disable scss/at-function-pattern
|
|
12335
12308
|
@function __scale( $val ) {
|
|
12336
12309
|
@return scale( $val );
|
|
12337
12310
|
}
|
|
@@ -12341,7 +12314,7 @@ $kendo-utils: (
|
|
|
12341
12314
|
@function __scale-y( $val ) {
|
|
12342
12315
|
@return scaleY( $val );
|
|
12343
12316
|
}
|
|
12344
|
-
//
|
|
12317
|
+
// stylelint-enable scss/at-function-pattern
|
|
12345
12318
|
|
|
12346
12319
|
@mixin kendo-utils--transform--scale() {
|
|
12347
12320
|
|
|
@@ -12379,14 +12352,14 @@ $kendo-utils: (
|
|
|
12379
12352
|
/// @group skew
|
|
12380
12353
|
/// @contextType css
|
|
12381
12354
|
|
|
12382
|
-
//
|
|
12355
|
+
// stylelint-disable scss/at-function-pattern
|
|
12383
12356
|
@function __skew-x( $val ) {
|
|
12384
12357
|
@return skewX( $val );
|
|
12385
12358
|
}
|
|
12386
12359
|
@function __skew-y( $val ) {
|
|
12387
12360
|
@return skewY( $val );
|
|
12388
12361
|
}
|
|
12389
|
-
//
|
|
12362
|
+
// stylelint-enable scss/at-function-pattern
|
|
12390
12363
|
|
|
12391
12364
|
@mixin kendo-utils--transform--skew() {
|
|
12392
12365
|
|
|
@@ -12453,7 +12426,7 @@ $kendo-utils: (
|
|
|
12453
12426
|
/// @group transform
|
|
12454
12427
|
/// @contextType css
|
|
12455
12428
|
|
|
12456
|
-
//
|
|
12429
|
+
// stylelint-disable scss/at-function-pattern
|
|
12457
12430
|
@function __translate( $val ) {
|
|
12458
12431
|
@return translate( $val );
|
|
12459
12432
|
}
|
|
@@ -12463,7 +12436,7 @@ $kendo-utils: (
|
|
|
12463
12436
|
@function __translate-y( $val ) {
|
|
12464
12437
|
@return translateY( $val );
|
|
12465
12438
|
}
|
|
12466
|
-
//
|
|
12439
|
+
// stylelint-enable scss/at-function-pattern
|
|
12467
12440
|
|
|
12468
12441
|
@mixin kendo-utils--transform--translate() {
|
|
12469
12442
|
|
|
@@ -14969,6 +14942,10 @@ $ki-rotate-map: (
|
|
|
14969
14942
|
right: 0;
|
|
14970
14943
|
margin: 0 -.5em -.5em 0;
|
|
14971
14944
|
}
|
|
14945
|
+
.k-svg-icon.k-icon-modifier {
|
|
14946
|
+
width: 1em;
|
|
14947
|
+
height: 1em;
|
|
14948
|
+
}
|
|
14972
14949
|
|
|
14973
14950
|
.k-i-none::before {
|
|
14974
14951
|
content: "";
|
|
@@ -14980,19 +14957,6 @@ $ki-rotate-map: (
|
|
|
14980
14957
|
cursor: pointer;
|
|
14981
14958
|
}
|
|
14982
14959
|
|
|
14983
|
-
// RTL icons
|
|
14984
|
-
.k-rtl,
|
|
14985
|
-
[dir="rtl"] {
|
|
14986
|
-
.k-i-indent-increase,
|
|
14987
|
-
.k-i-indent-decrease,
|
|
14988
|
-
.k-i-caret-alt-right,
|
|
14989
|
-
.k-i-caret-alt-left,
|
|
14990
|
-
.k-svg-i-caret-alt-right,
|
|
14991
|
-
.k-svg-i-caret-alt-left {
|
|
14992
|
-
transform: scaleX(-1);
|
|
14993
|
-
}
|
|
14994
|
-
}
|
|
14995
|
-
|
|
14996
14960
|
.k-sprite {
|
|
14997
14961
|
display: inline-block;
|
|
14998
14962
|
width: 16px;
|
|
@@ -15514,7 +15478,7 @@ $kendo-list-lg-header-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
|
|
|
15514
15478
|
/// The vertical padding of the List header, if no size is set.
|
|
15515
15479
|
/// @group list
|
|
15516
15480
|
$kendo-list-header-padding-y: null !default;
|
|
15517
|
-
$kendo-list-sm-header-padding-y: k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
15481
|
+
$kendo-list-sm-header-padding-y: k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
15518
15482
|
$kendo-list-md-header-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
15519
15483
|
$kendo-list-lg-header-padding-y: k-map-get( $kendo-spacing, 1.5 ) !default;
|
|
15520
15484
|
|
|
@@ -15550,7 +15514,7 @@ $kendo-list-lg-item-padding-x: k-map-get( $kendo-spacing, 3 ) !default;
|
|
|
15550
15514
|
/// The vertical padding of the List items, when no size is set.
|
|
15551
15515
|
/// @group list
|
|
15552
15516
|
$kendo-list-item-padding-y: null !default;
|
|
15553
|
-
$kendo-list-sm-item-padding-y: k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
15517
|
+
$kendo-list-sm-item-padding-y: k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
15554
15518
|
$kendo-list-md-item-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
15555
15519
|
$kendo-list-lg-item-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
|
|
15556
15520
|
|
|
@@ -15578,7 +15542,7 @@ $kendo-list-lg-group-item-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
|
|
|
15578
15542
|
/// The vertical padding of the List group items, when no size is set.
|
|
15579
15543
|
/// @group list
|
|
15580
15544
|
$kendo-list-group-item-padding-y: null !default;
|
|
15581
|
-
$kendo-list-sm-group-item-padding-y: k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
15545
|
+
$kendo-list-sm-group-item-padding-y: k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
15582
15546
|
$kendo-list-md-group-item-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
15583
15547
|
$kendo-list-lg-group-item-padding-y: k-map-get( $kendo-spacing, 1.5 ) !default;
|
|
15584
15548
|
|
|
@@ -16046,7 +16010,7 @@ $kendo-checkbox-ripple-opacity: .25 !default;
|
|
|
16046
16010
|
|
|
16047
16011
|
.k-ripple {
|
|
16048
16012
|
// Hide ripple temporarily
|
|
16049
|
-
visibility: hidden !important; //
|
|
16013
|
+
visibility: hidden !important; // stylelint-disable-line declaration-no-important
|
|
16050
16014
|
}
|
|
16051
16015
|
}
|
|
16052
16016
|
.k-checkbox + .k-label,
|
|
@@ -16060,7 +16024,7 @@ $kendo-checkbox-ripple-opacity: .25 !default;
|
|
|
16060
16024
|
|
|
16061
16025
|
// Empty label
|
|
16062
16026
|
.k-checkbox-label:empty {
|
|
16063
|
-
display: none !important; //
|
|
16027
|
+
display: none !important; // stylelint-disable-line declaration-no-important
|
|
16064
16028
|
}
|
|
16065
16029
|
.k-checkbox-label.k-no-text {
|
|
16066
16030
|
min-width: 1px;
|
|
@@ -16115,7 +16079,7 @@ $kendo-checkbox-ripple-opacity: .25 !default;
|
|
|
16115
16079
|
|
|
16116
16080
|
.k-checkbox:focus,
|
|
16117
16081
|
.k-checkbox.k-focus {
|
|
16118
|
-
box-shadow: none !important; //
|
|
16082
|
+
box-shadow: none !important; // stylelint-disable-line declaration-no-important
|
|
16119
16083
|
}
|
|
16120
16084
|
|
|
16121
16085
|
.k-checkbox:disabled::after,
|
|
@@ -16164,7 +16128,7 @@ $kendo-checkbox-ripple-opacity: .25 !default;
|
|
|
16164
16128
|
// #endregion
|
|
16165
16129
|
// #region @import "./_theme.scss"; -> scss/checkbox/_theme.scss
|
|
16166
16130
|
// #region @import "@progress/kendo-theme-default/scss/checkbox/_theme.scss"; -> node_modules/@progress/kendo-theme-default/scss/checkbox/_theme.scss
|
|
16167
|
-
@mixin kendo-checkbox--theme-base
|
|
16131
|
+
@mixin kendo-checkbox--theme-base() {
|
|
16168
16132
|
|
|
16169
16133
|
// Checkbox
|
|
16170
16134
|
.k-checkbox {
|
|
@@ -16357,7 +16321,7 @@ $kendo-checkbox-ripple-opacity: .25 !default;
|
|
|
16357
16321
|
padding-block: $kendo-list-header-padding-y;
|
|
16358
16322
|
padding-inline: $kendo-list-header-padding-x;
|
|
16359
16323
|
border-width: 0;
|
|
16360
|
-
border-width: $kendo-list-header-border-width;
|
|
16324
|
+
border-width: $kendo-list-header-border-width;
|
|
16361
16325
|
border-style: solid;
|
|
16362
16326
|
font-size: $kendo-list-header-font-size;
|
|
16363
16327
|
line-height: $kendo-list-header-line-height;
|
|
@@ -16442,7 +16406,7 @@ $kendo-checkbox-ripple-opacity: .25 !default;
|
|
|
16442
16406
|
padding-block: $kendo-list-group-item-padding-y;
|
|
16443
16407
|
padding-inline: $kendo-list-group-item-padding-x;
|
|
16444
16408
|
border-width: 0;
|
|
16445
|
-
border-width: $kendo-list-group-item-border-width;
|
|
16409
|
+
border-width: $kendo-list-group-item-border-width;
|
|
16446
16410
|
border-style: solid;
|
|
16447
16411
|
font-size: $kendo-list-group-item-font-size;
|
|
16448
16412
|
line-height: $kendo-list-group-item-line-height;
|
|
@@ -16920,11 +16884,6 @@ $kendo-listgroup-item-border-width: 1px !default;
|
|
|
16920
16884
|
> .k-select {
|
|
16921
16885
|
right: auto;
|
|
16922
16886
|
left: 0;
|
|
16923
|
-
|
|
16924
|
-
.k-icon,
|
|
16925
|
-
.k-svg-icon {
|
|
16926
|
-
transform: scaleX(-1);
|
|
16927
|
-
}
|
|
16928
16887
|
}
|
|
16929
16888
|
}
|
|
16930
16889
|
}
|
|
@@ -16940,11 +16899,6 @@ $kendo-listgroup-item-border-width: 1px !default;
|
|
|
16940
16899
|
margin-left: -$kendo-listgroup-item-padding-x;
|
|
16941
16900
|
border-right-width: 1px;
|
|
16942
16901
|
border-left-width: 0;
|
|
16943
|
-
|
|
16944
|
-
.k-icon,
|
|
16945
|
-
.k-svg-icon {
|
|
16946
|
-
transform: scaleX(-1);
|
|
16947
|
-
}
|
|
16948
16902
|
}
|
|
16949
16903
|
}
|
|
16950
16904
|
}
|
|
@@ -17717,7 +17671,7 @@ $kendo-table-selected-border: null !default;
|
|
|
17717
17671
|
// Table header
|
|
17718
17672
|
.k-table-header {
|
|
17719
17673
|
padding-inline-end: var(--kendo-scrollbar-width);
|
|
17720
|
-
border-width: 0 0 1px
|
|
17674
|
+
border-width: 0 0 1px;
|
|
17721
17675
|
border-style: solid;
|
|
17722
17676
|
box-sizing: border-box;
|
|
17723
17677
|
|
|
@@ -17803,18 +17757,19 @@ $kendo-table-selected-border: null !default;
|
|
|
17803
17757
|
}
|
|
17804
17758
|
}
|
|
17805
17759
|
|
|
17760
|
+
// stylelint-disable declaration-no-important
|
|
17806
17761
|
.k-table-spacer-td {
|
|
17807
|
-
padding: 0 !important;
|
|
17808
|
-
width: 0 !important;
|
|
17809
|
-
border-left-width: 0 !important;
|
|
17810
|
-
border-right-width: 0 !important;
|
|
17762
|
+
padding: 0 !important;
|
|
17763
|
+
width: 0 !important;
|
|
17764
|
+
border-left-width: 0 !important;
|
|
17765
|
+
border-right-width: 0 !important;
|
|
17811
17766
|
}
|
|
17812
17767
|
.k-table-group-td {
|
|
17813
|
-
padding: 0 !important;
|
|
17814
|
-
width: 0 !important;
|
|
17815
|
-
border-left-width: 0 !important;
|
|
17816
|
-
border-right-width: 0 !important;
|
|
17817
|
-
overflow: visible;
|
|
17768
|
+
padding: 0 !important;
|
|
17769
|
+
width: 0 !important;
|
|
17770
|
+
border-left-width: 0 !important;
|
|
17771
|
+
border-right-width: 0 !important;
|
|
17772
|
+
overflow: visible;
|
|
17818
17773
|
|
|
17819
17774
|
> span {
|
|
17820
17775
|
font-size: .75em;
|
|
@@ -17823,6 +17778,7 @@ $kendo-table-selected-border: null !default;
|
|
|
17823
17778
|
right: 0;
|
|
17824
17779
|
}
|
|
17825
17780
|
}
|
|
17781
|
+
// stylelint-enable declaration-no-important
|
|
17826
17782
|
}
|
|
17827
17783
|
|
|
17828
17784
|
|
|
@@ -17848,7 +17804,7 @@ $kendo-table-selected-border: null !default;
|
|
|
17848
17804
|
// Table footer
|
|
17849
17805
|
.k-table-footer {
|
|
17850
17806
|
padding-inline-end: var(--kendo-scrollbar-width);
|
|
17851
|
-
border-width: 1px 0 0
|
|
17807
|
+
border-width: 1px 0 0;
|
|
17852
17808
|
border-style: solid;
|
|
17853
17809
|
box-sizing: border-box;
|
|
17854
17810
|
|
|
@@ -18439,7 +18395,7 @@ $kendo-badge-border-radius: $kendo-border-radius-md !default;
|
|
|
18439
18395
|
$kendo-badge-padding-x: k-map-get( $kendo-spacing, 1 ) !default;
|
|
18440
18396
|
/// The horizontal padding of the small Badge.
|
|
18441
18397
|
/// @group badge
|
|
18442
|
-
$kendo-badge-sm-padding-x: k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
18398
|
+
$kendo-badge-sm-padding-x: k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
18443
18399
|
/// The horizontal padding of the medium Badge.
|
|
18444
18400
|
/// @group badge
|
|
18445
18401
|
$kendo-badge-md-padding-x: k-map-get( $kendo-spacing, 1 ) !default;
|
|
@@ -18452,7 +18408,7 @@ $kendo-badge-lg-padding-x: k-map-get( $kendo-spacing, 1.5 ) !default;
|
|
|
18452
18408
|
$kendo-badge-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
18453
18409
|
/// The vertical padding of the small Badge.
|
|
18454
18410
|
/// @group badge
|
|
18455
|
-
$kendo-badge-sm-padding-y: k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
18411
|
+
$kendo-badge-sm-padding-y: k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
18456
18412
|
/// The vertical padding of the medium Badge.
|
|
18457
18413
|
/// @group badge
|
|
18458
18414
|
$kendo-badge-md-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
@@ -18805,7 +18761,7 @@ $kendo-button-lg-padding-x: k-map-get( $kendo-spacing, 3 ) !default;
|
|
|
18805
18761
|
$kendo-button-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
18806
18762
|
/// The vertical padding of the small Button.
|
|
18807
18763
|
/// @group button
|
|
18808
|
-
$kendo-button-sm-padding-y: k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
18764
|
+
$kendo-button-sm-padding-y: k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
18809
18765
|
/// The vertical padding of the medium Button.
|
|
18810
18766
|
/// @group button
|
|
18811
18767
|
$kendo-button-md-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
@@ -19065,7 +19021,7 @@ $kendo-chip-lg-padding-x: k-map-get( $kendo-spacing, 1 ) !default;
|
|
|
19065
19021
|
$kendo-chip-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
19066
19022
|
/// The vertical padding of the small Chip.
|
|
19067
19023
|
/// @group chip
|
|
19068
|
-
$kendo-chip-sm-padding-y: k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
19024
|
+
$kendo-chip-sm-padding-y: k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
19069
19025
|
/// The vertical padding of the medium Chip.
|
|
19070
19026
|
/// @group chip
|
|
19071
19027
|
$kendo-chip-md-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
@@ -19247,7 +19203,7 @@ $kendo-chip-list-sizes: (
|
|
|
19247
19203
|
}
|
|
19248
19204
|
|
|
19249
19205
|
.k-selected-icon-wrapper {
|
|
19250
|
-
display: none !important; //
|
|
19206
|
+
display: none !important; // stylelint-disable-line declaration-no-important
|
|
19251
19207
|
}
|
|
19252
19208
|
}
|
|
19253
19209
|
|
|
@@ -19391,7 +19347,7 @@ $kendo-chip-list-sizes: (
|
|
|
19391
19347
|
// #endregion
|
|
19392
19348
|
// #region @import "./_theme.scss"; -> scss/chip/_theme.scss
|
|
19393
19349
|
// #region @import "@progress/kendo-theme-default/scss/chip/_theme.scss"; -> node_modules/@progress/kendo-theme-default/scss/chip/_theme.scss
|
|
19394
|
-
@mixin kendo-chip--theme-base
|
|
19350
|
+
@mixin kendo-chip--theme-base() {
|
|
19395
19351
|
|
|
19396
19352
|
// Solid
|
|
19397
19353
|
@each $name, $color in $kendo-chip-theme-colors {
|
|
@@ -19623,8 +19579,7 @@ $kendo-color-preview-transparent-color-image: url("data:image/png;base64,iVBORw0
|
|
|
19623
19579
|
box-sizing: border-box;
|
|
19624
19580
|
border-style: solid;
|
|
19625
19581
|
display: inline-flex;
|
|
19626
|
-
flex-
|
|
19627
|
-
flex-wrap: nowrap;
|
|
19582
|
+
flex-flow: row nowrap;
|
|
19628
19583
|
position: relative;
|
|
19629
19584
|
overflow: hidden;
|
|
19630
19585
|
|
|
@@ -20394,7 +20349,7 @@ $kendo-loading-opacity: .3 !default;
|
|
|
20394
20349
|
content: "";
|
|
20395
20350
|
// See https://github.com/telerik/kendo-themes/issues/1925
|
|
20396
20351
|
border-width: 1px; // TODO: Remove once we drop IE support
|
|
20397
|
-
border-width: clamp( .015em, 1px, 1px );
|
|
20352
|
+
border-width: clamp( .015em, 1px, 1px );
|
|
20398
20353
|
font-size: 4em;
|
|
20399
20354
|
}
|
|
20400
20355
|
|
|
@@ -20458,11 +20413,9 @@ $kendo-loading-opacity: .3 !default;
|
|
|
20458
20413
|
}
|
|
20459
20414
|
|
|
20460
20415
|
.k-loader-container-inner {
|
|
20461
|
-
// sass-lint:disable-block no-important
|
|
20462
|
-
// sass-lint:disable-block class-name-format
|
|
20463
20416
|
.k-text-secondary,
|
|
20464
|
-
.\!k-text-secondary {
|
|
20465
|
-
color: $kendo-loader-secondary-bg !important;
|
|
20417
|
+
.\!k-text-secondary { // stylelint-disable-line
|
|
20418
|
+
color: $kendo-loader-secondary-bg !important; // stylelint-disable-line declaration-no-important
|
|
20466
20419
|
}
|
|
20467
20420
|
}
|
|
20468
20421
|
|
|
@@ -20995,20 +20948,20 @@ $_kendo-module-meta: (
|
|
|
20995
20948
|
|
|
20996
20949
|
// Flat button
|
|
20997
20950
|
.k-button-flat {
|
|
20998
|
-
border-color: transparent !important; //
|
|
20951
|
+
border-color: transparent !important; // stylelint-disable-line declaration-no-important
|
|
20999
20952
|
color: inherit;
|
|
21000
|
-
background: none !important; //
|
|
21001
|
-
box-shadow: none !important; //
|
|
20953
|
+
background: none !important; // stylelint-disable-line declaration-no-important
|
|
20954
|
+
box-shadow: none !important; // stylelint-disable-line declaration-no-important
|
|
21002
20955
|
|
|
21003
20956
|
// Overlay background
|
|
21004
20957
|
&::before {
|
|
21005
|
-
display: block !important; //
|
|
20958
|
+
display: block !important; // stylelint-disable-line declaration-no-important
|
|
21006
20959
|
}
|
|
21007
20960
|
|
|
21008
20961
|
// Focus ring
|
|
21009
20962
|
&::after {
|
|
21010
20963
|
box-shadow: inset 0 0 0 2px currentColor;
|
|
21011
|
-
display: block !important; //
|
|
20964
|
+
display: block !important; // stylelint-disable-line declaration-no-important
|
|
21012
20965
|
}
|
|
21013
20966
|
|
|
21014
20967
|
&:focus::after,
|
|
@@ -21042,10 +20995,10 @@ $_kendo-module-meta: (
|
|
|
21042
20995
|
|
|
21043
20996
|
// Clear button
|
|
21044
20997
|
.k-button-clear {
|
|
21045
|
-
border-color: transparent !important; //
|
|
20998
|
+
border-color: transparent !important; // stylelint-disable-line declaration-no-important
|
|
21046
20999
|
color: inherit;
|
|
21047
|
-
background: none !important; //
|
|
21048
|
-
box-shadow: none !important; //
|
|
21000
|
+
background: none !important; // stylelint-disable-line declaration-no-important
|
|
21001
|
+
box-shadow: none !important; // stylelint-disable-line declaration-no-important
|
|
21049
21002
|
}
|
|
21050
21003
|
|
|
21051
21004
|
|
|
@@ -21069,7 +21022,7 @@ $_kendo-module-meta: (
|
|
|
21069
21022
|
}
|
|
21070
21023
|
|
|
21071
21024
|
|
|
21072
|
-
.k-button {
|
|
21025
|
+
.k-button { // stylelint-disable-line
|
|
21073
21026
|
|
|
21074
21027
|
&::before {
|
|
21075
21028
|
@extend .k-button-overlay !optional;
|
|
@@ -21118,7 +21071,7 @@ $_kendo-module-meta: (
|
|
|
21118
21071
|
|
|
21119
21072
|
|
|
21120
21073
|
// Button focus ring
|
|
21121
|
-
.k-button {
|
|
21074
|
+
.k-button { // stylelint-disable-line
|
|
21122
21075
|
|
|
21123
21076
|
&::after {
|
|
21124
21077
|
@include border-radius( inherit );
|
|
@@ -21615,7 +21568,7 @@ $kendo-menu-popup-lg-item-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
|
|
|
21615
21568
|
/// Vertical padding of the menu item in popup.
|
|
21616
21569
|
/// @group menu
|
|
21617
21570
|
$kendo-menu-popup-item-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
21618
|
-
$kendo-menu-popup-sm-item-padding-y: k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
21571
|
+
$kendo-menu-popup-sm-item-padding-y: k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
21619
21572
|
$kendo-menu-popup-md-item-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
21620
21573
|
$kendo-menu-popup-lg-item-padding-y: k-map-get( $kendo-spacing, 1.5 ) !default;
|
|
21621
21574
|
|
|
@@ -21780,7 +21733,7 @@ $kendo-menu-popup-item-focus-shadow: $kendo-menu-item-focus-shadow !default;
|
|
|
21780
21733
|
flex-direction: row;
|
|
21781
21734
|
|
|
21782
21735
|
> .k-menu-item + .k-menu-item {
|
|
21783
|
-
margin-
|
|
21736
|
+
margin-inline-start: $kendo-menu-item-spacing;
|
|
21784
21737
|
}
|
|
21785
21738
|
|
|
21786
21739
|
> .k-separator {
|
|
@@ -21805,7 +21758,7 @@ $kendo-menu-popup-item-focus-shadow: $kendo-menu-item-focus-shadow !default;
|
|
|
21805
21758
|
> .k-menu-item > .k-menu-link {
|
|
21806
21759
|
padding-block: $kendo-menu-popup-item-padding-y;
|
|
21807
21760
|
padding-inline: $kendo-menu-popup-item-padding-x;
|
|
21808
|
-
padding-
|
|
21761
|
+
padding-inline-end: $kendo-menu-popup-item-padding-end;
|
|
21809
21762
|
}
|
|
21810
21763
|
|
|
21811
21764
|
> .k-menu-item > .k-menu-link > .k-menu-expand-arrow {
|
|
@@ -21958,7 +21911,7 @@ $kendo-menu-popup-item-focus-shadow: $kendo-menu-item-focus-shadow !default;
|
|
|
21958
21911
|
}
|
|
21959
21912
|
.k-animation-container .k-context-menu.k-menu-horizontal {
|
|
21960
21913
|
// kendo-jquery adds `display: block` via js and we need to override it.
|
|
21961
|
-
display: flex !important; //
|
|
21914
|
+
display: flex !important; // stylelint-disable-line declaration-no-important
|
|
21962
21915
|
flex-wrap: nowrap;
|
|
21963
21916
|
}
|
|
21964
21917
|
.k-context-menu-popup {
|
|
@@ -21997,28 +21950,28 @@ $kendo-menu-popup-item-focus-shadow: $kendo-menu-item-focus-shadow !default;
|
|
|
21997
21950
|
|
|
21998
21951
|
&.k-scroll-left {
|
|
21999
21952
|
top: 0;
|
|
22000
|
-
|
|
21953
|
+
inset-inline-start: 0;
|
|
22001
21954
|
height: 100%;
|
|
22002
21955
|
width: 16px;
|
|
22003
21956
|
border-right-width: 1px;
|
|
22004
21957
|
}
|
|
22005
21958
|
&.k-scroll-right {
|
|
22006
21959
|
top: 0;
|
|
22007
|
-
|
|
21960
|
+
inset-inline-end: 0;
|
|
22008
21961
|
height: 100%;
|
|
22009
21962
|
width: 16px;
|
|
22010
21963
|
border-left-width: 1px;
|
|
22011
21964
|
}
|
|
22012
21965
|
&.k-scroll-up {
|
|
22013
21966
|
top: 0;
|
|
22014
|
-
|
|
21967
|
+
inset-inline-start: 0;
|
|
22015
21968
|
width: 100%;
|
|
22016
21969
|
height: 16px;
|
|
22017
21970
|
border-bottom-width: 1px;
|
|
22018
21971
|
}
|
|
22019
21972
|
&.k-scroll-down {
|
|
22020
21973
|
bottom: 0;
|
|
22021
|
-
|
|
21974
|
+
inset-inline-start: 0;
|
|
22022
21975
|
width: 100%;
|
|
22023
21976
|
height: 16px;
|
|
22024
21977
|
border-top-width: 1px;
|
|
@@ -22026,43 +21979,6 @@ $kendo-menu-popup-item-focus-shadow: $kendo-menu-item-focus-shadow !default;
|
|
|
22026
21979
|
}
|
|
22027
21980
|
}
|
|
22028
21981
|
|
|
22029
|
-
|
|
22030
|
-
// RTL
|
|
22031
|
-
.k-rtl,
|
|
22032
|
-
[dir="rtl"] {
|
|
22033
|
-
|
|
22034
|
-
// Orientation -- horizontal
|
|
22035
|
-
.k-menu-horizontal {
|
|
22036
|
-
|
|
22037
|
-
> .k-menu-item + .k-menu-item {
|
|
22038
|
-
margin-right: $kendo-menu-item-spacing;
|
|
22039
|
-
margin-left: 0;
|
|
22040
|
-
}
|
|
22041
|
-
}
|
|
22042
|
-
|
|
22043
|
-
|
|
22044
|
-
// Orientation -- vertical
|
|
22045
|
-
.k-menu-vertical {
|
|
22046
|
-
|
|
22047
|
-
> .k-menu-item > .k-menu-link {
|
|
22048
|
-
padding-right: $kendo-menu-popup-item-padding-x;
|
|
22049
|
-
padding-left: $kendo-menu-popup-item-padding-end;
|
|
22050
|
-
}
|
|
22051
|
-
}
|
|
22052
|
-
|
|
22053
|
-
|
|
22054
|
-
// Sub menu
|
|
22055
|
-
.k-menu-group {
|
|
22056
|
-
|
|
22057
|
-
.k-menu-link {
|
|
22058
|
-
padding-right: $kendo-menu-popup-item-padding-x;
|
|
22059
|
-
padding-left: $kendo-menu-popup-item-padding-end;
|
|
22060
|
-
}
|
|
22061
|
-
|
|
22062
|
-
}
|
|
22063
|
-
|
|
22064
|
-
}
|
|
22065
|
-
|
|
22066
21982
|
}
|
|
22067
21983
|
|
|
22068
21984
|
|
|
@@ -22502,13 +22418,10 @@ $kendo-toolbar-sizes: (
|
|
|
22502
22418
|
height: $kendo-button-lg-calc-size;
|
|
22503
22419
|
}
|
|
22504
22420
|
|
|
22505
|
-
|
|
22506
|
-
|
|
22507
|
-
// sass-lint:disable class-name-format
|
|
22508
22421
|
.k-floating-toolbar,
|
|
22509
|
-
.editorToolbarWindow.k-window-content {
|
|
22510
|
-
padding-block: $kendo-toolbar-md-padding-y !important; //
|
|
22511
|
-
padding-inline: $kendo-toolbar-md-padding-x !important; //
|
|
22422
|
+
.editorToolbarWindow.k-window-content { // stylelint-disable-line
|
|
22423
|
+
padding-block: $kendo-toolbar-md-padding-y !important; // stylelint-disable-line declaration-no-important
|
|
22424
|
+
padding-inline: $kendo-toolbar-md-padding-x !important; // stylelint-disable-line declaration-no-important
|
|
22512
22425
|
border-width: $kendo-toolbar-border-width;
|
|
22513
22426
|
border-style: solid;
|
|
22514
22427
|
display: flex;
|
|
@@ -22524,14 +22437,14 @@ $kendo-toolbar-sizes: (
|
|
|
22524
22437
|
background: none;
|
|
22525
22438
|
}
|
|
22526
22439
|
}
|
|
22527
|
-
.k-editortoolbar-dragHandle {
|
|
22440
|
+
.k-editortoolbar-dragHandle { // stylelint-disable-line
|
|
22528
22441
|
cursor: move;
|
|
22529
22442
|
display: flex;
|
|
22530
22443
|
align-items: center;
|
|
22531
22444
|
align-self: stretch;
|
|
22532
22445
|
flex-shrink: 0;
|
|
22533
22446
|
}
|
|
22534
|
-
|
|
22447
|
+
|
|
22535
22448
|
|
|
22536
22449
|
|
|
22537
22450
|
// Remove once the Overflow Popup uses
|
|
@@ -22650,9 +22563,8 @@ $kendo-toolbar-sizes: (
|
|
|
22650
22563
|
|
|
22651
22564
|
}
|
|
22652
22565
|
|
|
22653
|
-
// sass-lint:disable-block class-name-format
|
|
22654
22566
|
.k-floating-toolbar,
|
|
22655
|
-
.editorToolbarWindow.k-window-content {
|
|
22567
|
+
.editorToolbarWindow.k-window-content { // stylelint-disable-line
|
|
22656
22568
|
@include fill(
|
|
22657
22569
|
$kendo-toolbar-text,
|
|
22658
22570
|
$kendo-toolbar-bg,
|
|
@@ -22947,7 +22859,7 @@ $kendo-input-lg-padding-x: k-map-get( $kendo-spacing, 3 ) !default;
|
|
|
22947
22859
|
$kendo-input-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
22948
22860
|
/// The vertical padding of the small Input components.
|
|
22949
22861
|
/// @group input
|
|
22950
|
-
$kendo-input-sm-padding-y: k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
22862
|
+
$kendo-input-sm-padding-y: k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
22951
22863
|
/// The vertical padding of the medium Input components.
|
|
22952
22864
|
/// @group input
|
|
22953
22865
|
$kendo-input-md-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
@@ -23166,7 +23078,7 @@ $kendo-input-clear-value-hover-opacity: 1 !default;
|
|
|
23166
23078
|
|
|
23167
23079
|
/// The vertical margin of the clear value icon.
|
|
23168
23080
|
/// @group input
|
|
23169
|
-
$kendo-input-values-margin-y: k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
23081
|
+
$kendo-input-values-margin-y: k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
23170
23082
|
/// The horizontal margin of the clear value icon.
|
|
23171
23083
|
/// @group input
|
|
23172
23084
|
$kendo-input-values-margin-x: $kendo-input-values-margin-y !default;
|
|
@@ -23690,8 +23602,8 @@ $kendo-form-sizes: (
|
|
|
23690
23602
|
.k-form {
|
|
23691
23603
|
border: 0;
|
|
23692
23604
|
|
|
23693
|
-
.k-label,
|
|
23694
|
-
kendo-label,
|
|
23605
|
+
.k-form-field > .k-label,
|
|
23606
|
+
.k-form-field > kendo-label,
|
|
23695
23607
|
.k-form-label {
|
|
23696
23608
|
margin-bottom: $kendo-form-label-margin-bottom;
|
|
23697
23609
|
display: flex;
|
|
@@ -24599,7 +24511,7 @@ $_kendo-module-meta: (
|
|
|
24599
24511
|
|
|
24600
24512
|
> .k-input,
|
|
24601
24513
|
> .k-picker {
|
|
24602
|
-
border-width: 0 !important; //
|
|
24514
|
+
border-width: 0 !important; // stylelint-disable-line declaration-no-important
|
|
24603
24515
|
color: inherit;
|
|
24604
24516
|
background: none;
|
|
24605
24517
|
font: inherit;
|
|
@@ -24868,8 +24780,8 @@ $_kendo-module-meta: (
|
|
|
24868
24780
|
box-shadow: none;
|
|
24869
24781
|
|
|
24870
24782
|
> .k-button-icon {
|
|
24871
|
-
min-width: auto !important; //
|
|
24872
|
-
// min-height: auto !important; //
|
|
24783
|
+
min-width: auto !important; // stylelint-disable-line declaration-no-important
|
|
24784
|
+
// min-height: auto !important; // stylelint-disable-line declaration-no-important
|
|
24873
24785
|
}
|
|
24874
24786
|
|
|
24875
24787
|
&:focus {
|
|
@@ -24902,8 +24814,8 @@ $_kendo-module-meta: (
|
|
|
24902
24814
|
.k-button-icon {
|
|
24903
24815
|
margin-block: -1em;
|
|
24904
24816
|
margin-inline: 0;
|
|
24905
|
-
min-width: auto !important; //
|
|
24906
|
-
min-height: auto !important; //
|
|
24817
|
+
min-width: auto !important; // stylelint-disable-line declaration-no-important
|
|
24818
|
+
min-height: auto !important; // stylelint-disable-line declaration-no-important
|
|
24907
24819
|
}
|
|
24908
24820
|
}
|
|
24909
24821
|
.k-spinner-increase .k-icon,
|
|
@@ -24946,14 +24858,14 @@ $_kendo-module-meta: (
|
|
|
24946
24858
|
// Fill mode
|
|
24947
24859
|
.k-input-flat,
|
|
24948
24860
|
.k-picker-flat {
|
|
24949
|
-
@include border-bottom-radius( 0 !important ); //
|
|
24861
|
+
@include border-bottom-radius( 0 !important ); // stylelint-disable-line declaration-no-important
|
|
24950
24862
|
border-width: $kendo-input-border-width 0;
|
|
24951
|
-
border-top-color: transparent !important; //
|
|
24952
|
-
background-image: none !important; //
|
|
24863
|
+
border-top-color: transparent !important; // stylelint-disable-line declaration-no-important
|
|
24864
|
+
background-image: none !important; // stylelint-disable-line declaration-no-important
|
|
24953
24865
|
}
|
|
24954
24866
|
|
|
24955
24867
|
.k-input-outline {
|
|
24956
|
-
background: none !important; //
|
|
24868
|
+
background: none !important; // stylelint-disable-line declaration-no-important
|
|
24957
24869
|
}
|
|
24958
24870
|
|
|
24959
24871
|
|
|
@@ -25006,8 +24918,8 @@ $_kendo-module-meta: (
|
|
|
25006
24918
|
}
|
|
25007
24919
|
|
|
25008
24920
|
&.k-icon-picker .k-input-inner {
|
|
25009
|
-
width: calc( #{$_line-height * 1em} );
|
|
25010
|
-
height: calc( #{$_line-height * 1em} );
|
|
24921
|
+
width: calc( #{ $_line-height * 1em } );
|
|
24922
|
+
height: calc( #{ $_line-height * 1em } );
|
|
25011
24923
|
padding: $_padding-y;
|
|
25012
24924
|
box-sizing: content-box;
|
|
25013
24925
|
}
|
|
@@ -25034,11 +24946,11 @@ $_kendo-module-meta: (
|
|
|
25034
24946
|
|
|
25035
24947
|
|
|
25036
24948
|
// This is needed for the textbox container to capture browser autofill
|
|
25037
|
-
@keyframes autoFillStart {
|
|
24949
|
+
@keyframes autoFillStart { // stylelint-disable-line
|
|
25038
24950
|
from {}
|
|
25039
24951
|
to {}
|
|
25040
24952
|
}
|
|
25041
|
-
@keyframes autoFillEnd {
|
|
24953
|
+
@keyframes autoFillEnd { // stylelint-disable-line
|
|
25042
24954
|
from {}
|
|
25043
24955
|
to {}
|
|
25044
24956
|
}
|
|
@@ -25592,7 +25504,7 @@ $_kendo-module-meta: (
|
|
|
25592
25504
|
/// The transformation scale of the Floating Label.
|
|
25593
25505
|
/// @group floating-label
|
|
25594
25506
|
$kendo-floating-label-scale: 1 !default;
|
|
25595
|
-
///The font size of the Floating Label.
|
|
25507
|
+
/// The font size of the Floating Label.
|
|
25596
25508
|
/// @group floating-label
|
|
25597
25509
|
$kendo-floating-label-font-size: $kendo-input-font-size !default;
|
|
25598
25510
|
/// The maximum width of the Floating Label.
|
|
@@ -26350,9 +26262,6 @@ $_kendo-module-meta: (
|
|
|
26350
26262
|
// #region @import "../icons/_index.scss"; -> scss/icons/_index.scss
|
|
26351
26263
|
// File already imported_once. Skipping output.
|
|
26352
26264
|
// #endregion
|
|
26353
|
-
// #region @import "../list/_index.scss"; -> scss/list/_index.scss
|
|
26354
|
-
// File already imported_once. Skipping output.
|
|
26355
|
-
// #endregion
|
|
26356
26265
|
|
|
26357
26266
|
|
|
26358
26267
|
// Component
|
|
@@ -26483,15 +26392,6 @@ $kendo-listbox-drop-hint-width: 1px !default;
|
|
|
26483
26392
|
.k-ghost {
|
|
26484
26393
|
opacity: .5;
|
|
26485
26394
|
}
|
|
26486
|
-
|
|
26487
|
-
.k-rtl &,
|
|
26488
|
-
&[dir="rtl"],
|
|
26489
|
-
[dir="rtl"] & {
|
|
26490
|
-
|
|
26491
|
-
.k-listbox-actions .k-button-icon {
|
|
26492
|
-
transform: scaleX(-1);
|
|
26493
|
-
}
|
|
26494
|
-
}
|
|
26495
26395
|
}
|
|
26496
26396
|
|
|
26497
26397
|
.k-item {
|
|
@@ -26765,7 +26665,7 @@ $kendo-circular-progressbar-scale-stroke: $kendo-progressbar-bg !default;
|
|
|
26765
26665
|
}
|
|
26766
26666
|
|
|
26767
26667
|
> .k-progressbar-value {
|
|
26768
|
-
width: calc( var( --kendo-progressbar-value, 0 ) * 1% );
|
|
26668
|
+
width: calc( var( --kendo-progressbar-value, 0 ) * 1% );
|
|
26769
26669
|
flex-direction: row;
|
|
26770
26670
|
|
|
26771
26671
|
> .k-progress-status-wrap {
|
|
@@ -26810,13 +26710,13 @@ $kendo-circular-progressbar-scale-stroke: $kendo-progressbar-bg !default;
|
|
|
26810
26710
|
}
|
|
26811
26711
|
|
|
26812
26712
|
> .k-progressbar-value {
|
|
26813
|
-
height: calc( var( --kendo-progressbar-value, 0 ) * 1% );
|
|
26713
|
+
height: calc( var( --kendo-progressbar-value, 0 ) * 1% );
|
|
26814
26714
|
flex-direction: column-reverse;
|
|
26815
26715
|
align-self: flex-end;
|
|
26816
26716
|
align-items: flex-end;
|
|
26817
26717
|
|
|
26818
26718
|
> .k-progress-status-wrap {
|
|
26819
|
-
height: calc( 100% * ( 100 / var( --kendo-progressbar-value, 1 ) ) );
|
|
26719
|
+
height: calc( 100% * ( 100 / var( --kendo-progressbar-value, 1 ) ) );
|
|
26820
26720
|
}
|
|
26821
26721
|
}
|
|
26822
26722
|
|
|
@@ -27330,7 +27230,7 @@ $kendo-radio-ripple-opacity: .25 !default;
|
|
|
27330
27230
|
|
|
27331
27231
|
.k-ripple {
|
|
27332
27232
|
// Hide ripple temporarily
|
|
27333
|
-
visibility: hidden !important; //
|
|
27233
|
+
visibility: hidden !important; // stylelint-disable-line declaration-no-important
|
|
27334
27234
|
}
|
|
27335
27235
|
}
|
|
27336
27236
|
.k-radio + .k-label,
|
|
@@ -27344,7 +27244,7 @@ $kendo-radio-ripple-opacity: .25 !default;
|
|
|
27344
27244
|
|
|
27345
27245
|
// Empty label
|
|
27346
27246
|
.k-radio-label:empty {
|
|
27347
|
-
display: none !important; //
|
|
27247
|
+
display: none !important; // stylelint-disable-line declaration-no-important
|
|
27348
27248
|
}
|
|
27349
27249
|
.k-radio-label.k-no-text {
|
|
27350
27250
|
min-width: 1px;
|
|
@@ -27399,7 +27299,7 @@ $kendo-radio-ripple-opacity: .25 !default;
|
|
|
27399
27299
|
|
|
27400
27300
|
.k-radio:focus,
|
|
27401
27301
|
.k-radio.k-focus {
|
|
27402
|
-
box-shadow: none !important; //
|
|
27302
|
+
box-shadow: none !important; // stylelint-disable-line declaration-no-important
|
|
27403
27303
|
}
|
|
27404
27304
|
|
|
27405
27305
|
.k-radio:disabled::after,
|
|
@@ -27730,16 +27630,6 @@ $kendo-slider-disabled-opacity: null !default;
|
|
|
27730
27630
|
cursor: default;
|
|
27731
27631
|
}
|
|
27732
27632
|
}
|
|
27733
|
-
|
|
27734
|
-
.k-rtl &,
|
|
27735
|
-
&.k-rtl,
|
|
27736
|
-
[dir="rtl"] &,
|
|
27737
|
-
&[dir="rtl"] {
|
|
27738
|
-
.k-slider-selection {
|
|
27739
|
-
left: auto;
|
|
27740
|
-
right: 0;
|
|
27741
|
-
}
|
|
27742
|
-
}
|
|
27743
27633
|
}
|
|
27744
27634
|
|
|
27745
27635
|
|
|
@@ -27822,36 +27712,13 @@ $kendo-slider-disabled-opacity: null !default;
|
|
|
27822
27712
|
|
|
27823
27713
|
.k-slider-selection {
|
|
27824
27714
|
width: calc( (var(--kendo-slider-end, 0) - var(--kendo-slider-start, 0)) * 1% );
|
|
27825
|
-
|
|
27715
|
+
inset-inline-start: calc( var(--kendo-slider-start, 0) * 1% );
|
|
27826
27716
|
}
|
|
27827
27717
|
.k-draghandle-start {
|
|
27828
|
-
|
|
27718
|
+
inset-inline-start: calc( var(--kendo-slider-start, 0) * 1% );
|
|
27829
27719
|
}
|
|
27830
27720
|
.k-draghandle-end {
|
|
27831
|
-
|
|
27832
|
-
}
|
|
27833
|
-
|
|
27834
|
-
[dir="rtl"] & {
|
|
27835
|
-
.k-slider-selection {
|
|
27836
|
-
left: unset;
|
|
27837
|
-
right: calc( var(--kendo-slider-start, 0) * 1% );
|
|
27838
|
-
}
|
|
27839
|
-
.k-draghandle-start {
|
|
27840
|
-
left: unset;
|
|
27841
|
-
right: calc( var(--kendo-slider-start, 0) * 1% );
|
|
27842
|
-
}
|
|
27843
|
-
.k-draghandle-end {
|
|
27844
|
-
left: unset;
|
|
27845
|
-
right: calc( var(--kendo-slider-end, 0) * 1% );
|
|
27846
|
-
}
|
|
27847
|
-
|
|
27848
|
-
.k-draghandle {
|
|
27849
|
-
transform: translate(50%, -50%);
|
|
27850
|
-
}
|
|
27851
|
-
.k-draghandle:focus,
|
|
27852
|
-
.k-draghandle:active {
|
|
27853
|
-
transform: translate(50%, -50%) scale($kendo-slider-draghandle-active-scale);
|
|
27854
|
-
}
|
|
27721
|
+
inset-inline-start: calc( var(--kendo-slider-end, 0) * 1% );
|
|
27855
27722
|
}
|
|
27856
27723
|
}
|
|
27857
27724
|
}
|
|
@@ -27935,7 +27802,7 @@ $kendo-slider-disabled-opacity: null !default;
|
|
|
27935
27802
|
|
|
27936
27803
|
.k-label {
|
|
27937
27804
|
text-align: start;
|
|
27938
|
-
|
|
27805
|
+
inset-inline-start: 120%;
|
|
27939
27806
|
top: 50%;
|
|
27940
27807
|
transform: translateY(-50%);
|
|
27941
27808
|
}
|
|
@@ -27943,23 +27810,8 @@ $kendo-slider-disabled-opacity: null !default;
|
|
|
27943
27810
|
.k-last .k-label { top: 0; }
|
|
27944
27811
|
|
|
27945
27812
|
.k-slider-topleft .k-label {
|
|
27946
|
-
|
|
27947
|
-
|
|
27948
|
-
}
|
|
27949
|
-
|
|
27950
|
-
.k-rtl &,
|
|
27951
|
-
&.k-rtl,
|
|
27952
|
-
[dir="rtl"] &,
|
|
27953
|
-
&[dir="rtl"] {
|
|
27954
|
-
.k-label {
|
|
27955
|
-
left: auto;
|
|
27956
|
-
right: 120%;
|
|
27957
|
-
}
|
|
27958
|
-
|
|
27959
|
-
.k-slider-topleft .k-label {
|
|
27960
|
-
left: 120%;
|
|
27961
|
-
right: auto;
|
|
27962
|
-
}
|
|
27813
|
+
inset-inline-start: auto;
|
|
27814
|
+
inset-inline-end: 120%;
|
|
27963
27815
|
}
|
|
27964
27816
|
|
|
27965
27817
|
}
|
|
@@ -27995,34 +27847,16 @@ $kendo-slider-disabled-opacity: null !default;
|
|
|
27995
27847
|
// labels
|
|
27996
27848
|
|
|
27997
27849
|
.k-label {
|
|
27998
|
-
|
|
27850
|
+
inset-inline-start: 50%;
|
|
27999
27851
|
bottom: -1.2em;
|
|
28000
27852
|
transform: translateX(-50%);
|
|
28001
27853
|
}
|
|
28002
|
-
.k-first .k-label {
|
|
28003
|
-
.k-last .k-label {
|
|
27854
|
+
.k-first .k-label { inset-inline-start: 0; }
|
|
27855
|
+
.k-last .k-label { inset-inline-start: 100%; }
|
|
28004
27856
|
|
|
28005
27857
|
.k-slider-topleft .k-label {
|
|
28006
27858
|
top: -1.2em;
|
|
28007
27859
|
}
|
|
28008
|
-
|
|
28009
|
-
.k-rtl &,
|
|
28010
|
-
&.k-rtl,
|
|
28011
|
-
[dir="rtl"] &,
|
|
28012
|
-
&[dir="rtl"] {
|
|
28013
|
-
.k-slider-track,
|
|
28014
|
-
.k-slider-selection {
|
|
28015
|
-
right: 0;
|
|
28016
|
-
left: auto;
|
|
28017
|
-
}
|
|
28018
|
-
|
|
28019
|
-
.k-button-increase .k-icon,
|
|
28020
|
-
.k-button-increase .k-svg-icon,
|
|
28021
|
-
.k-button-decrease .k-icon,
|
|
28022
|
-
.k-button-decrease .k-svg-icon {
|
|
28023
|
-
transform: scaleX(-1);
|
|
28024
|
-
}
|
|
28025
|
-
}
|
|
28026
27860
|
}
|
|
28027
27861
|
|
|
28028
27862
|
.k-slider-track,
|
|
@@ -28102,7 +27936,7 @@ $kendo-slider-disabled-opacity: null !default;
|
|
|
28102
27936
|
.k-slider-tooltip {
|
|
28103
27937
|
.k-callout-n,
|
|
28104
27938
|
.k-callout-s {
|
|
28105
|
-
margin-
|
|
27939
|
+
margin-inline-start: - k-math-div( $kendo-tooltip-callout-size, 2 );
|
|
28106
27940
|
}
|
|
28107
27941
|
|
|
28108
27942
|
.k-callout-w,
|
|
@@ -28111,20 +27945,50 @@ $kendo-slider-disabled-opacity: null !default;
|
|
|
28111
27945
|
}
|
|
28112
27946
|
}
|
|
28113
27947
|
|
|
27948
|
+
// RTL
|
|
27949
|
+
.k-slider-rtl {
|
|
27950
|
+
&.k-slider-horizontal {
|
|
27951
|
+
|
|
27952
|
+
.k-draghandle {
|
|
27953
|
+
transform: translate(50%, -50%);
|
|
27954
|
+
}
|
|
27955
|
+
|
|
27956
|
+
.k-draghandle:focus,
|
|
27957
|
+
.k-draghandle:active {
|
|
27958
|
+
transform: if( $kendo-slider-draghandle-active-scale, translate(50%, -50%) scale($kendo-slider-draghandle-active-scale), null );
|
|
27959
|
+
}
|
|
27960
|
+
|
|
27961
|
+
.k-label {
|
|
27962
|
+
transform: translateX(50%);
|
|
27963
|
+
}
|
|
27964
|
+
}
|
|
27965
|
+
}
|
|
27966
|
+
|
|
27967
|
+
.k-slider[dir="rtl"],
|
|
27968
|
+
[dir="rtl"] .k-slider,
|
|
27969
|
+
.k-slider.k-rtl,
|
|
27970
|
+
.k-rtl .k-slider {
|
|
27971
|
+
@extend .k-slider-rtl !optional;
|
|
27972
|
+
}
|
|
27973
|
+
|
|
28114
27974
|
|
|
28115
27975
|
// Angular specific
|
|
28116
27976
|
.k-slider kendo-resize-sensor {
|
|
28117
27977
|
position: absolute;
|
|
28118
27978
|
}
|
|
28119
27979
|
.k-slider-horizontal .k-slider-wrap:not(.k-slider-buttons) {
|
|
28120
|
-
padding-
|
|
28121
|
-
padding-
|
|
27980
|
+
padding-inline-start: calc( #{$kendo-slider-draghandle-size} / 2 );
|
|
27981
|
+
padding-inline-end: calc( #{$kendo-slider-draghandle-size} / 2 );
|
|
28122
27982
|
}
|
|
28123
27983
|
.k-slider-vertical .k-slider-wrap:not(.k-slider-buttons) {
|
|
28124
27984
|
padding-top: calc( #{$kendo-slider-draghandle-size} / 2 );
|
|
28125
27985
|
padding-bottom: calc( #{$kendo-slider-draghandle-size} / 2 );
|
|
28126
27986
|
}
|
|
28127
27987
|
|
|
27988
|
+
// Aliases
|
|
27989
|
+
.k-draghandle { @extend .k-slider-thumb !optional; }
|
|
27990
|
+
.k-draghandle-start { @extend .k-slider-thumb-start !optional; }
|
|
27991
|
+
.k-draghandle-end { @extend .k-slider-thumb-end !optional; }
|
|
28128
27992
|
}
|
|
28129
27993
|
|
|
28130
27994
|
|
|
@@ -28414,8 +28278,8 @@ $kendo-infinite-calendar-view-height: ( $kendo-calendar-cell-size * 9 ) !default
|
|
|
28414
28278
|
$kendo-calendar-sm-font-size: $kendo-font-size-md !default;
|
|
28415
28279
|
$kendo-calendar-sm-line-height: $kendo-line-height-md !default;
|
|
28416
28280
|
$kendo-calendar-sm-cell-size: 28px !default;
|
|
28417
|
-
$kendo-calendar-sm-cell-padding-x: k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
28418
|
-
$kendo-calendar-sm-cell-padding-y: k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
28281
|
+
$kendo-calendar-sm-cell-padding-x: k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
28282
|
+
$kendo-calendar-sm-cell-padding-y: k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
28419
28283
|
|
|
28420
28284
|
$kendo-calendar-md-font-size: $kendo-font-size-md !default;
|
|
28421
28285
|
$kendo-calendar-md-line-height: $kendo-line-height-md !default;
|
|
@@ -28950,11 +28814,6 @@ $kendo-calendar-sizes: (
|
|
|
28950
28814
|
.k-calendar.k-rtl,
|
|
28951
28815
|
.k-calendar[dir="rtl"] {
|
|
28952
28816
|
|
|
28953
|
-
.k-calendar-nav-prev,
|
|
28954
|
-
.k-calendar-nav-next {
|
|
28955
|
-
transform: scaleX(-1);
|
|
28956
|
-
}
|
|
28957
|
-
|
|
28958
28817
|
.k-content.k-scrollable,
|
|
28959
28818
|
.k-calendar-content.k-scrollable {
|
|
28960
28819
|
@include hide-scrollbar("left");
|
|
@@ -29136,7 +28995,7 @@ $kendo-calendar-sizes: (
|
|
|
29136
28995
|
|
|
29137
28996
|
|
|
29138
28997
|
// Multiview calendar
|
|
29139
|
-
.k-calendar {
|
|
28998
|
+
.k-calendar { // stylelint-disable-line
|
|
29140
28999
|
|
|
29141
29000
|
$kendo-calendar-range-gap: 1px !default;
|
|
29142
29001
|
$kendo-calendar-range-bg: rgba( $kendo-calendar-cell-selected-bg, .25 );
|
|
@@ -32462,7 +32321,7 @@ $kendo-treeview-lg-item-padding-x: k-map-get( $kendo-spacing, 3 ) !default;
|
|
|
32462
32321
|
$kendo-treeview-item-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
32463
32322
|
/// The vertical padding of the small TreeView items.
|
|
32464
32323
|
/// @group treeview
|
|
32465
|
-
$kendo-treeview-sm-item-padding-y: k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
32324
|
+
$kendo-treeview-sm-item-padding-y: k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
32466
32325
|
/// The vertical padding of the medium TreeView items.
|
|
32467
32326
|
/// @group treeview
|
|
32468
32327
|
$kendo-treeview-md-item-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
@@ -34542,7 +34401,7 @@ $kendo-upload-focus-shadow: 0 0 0 2px rgba( black, .13 ) !default;
|
|
|
34542
34401
|
|
|
34543
34402
|
input {
|
|
34544
34403
|
// font should not depend on outside styles, otherwise upload may break
|
|
34545
|
-
font: 170px monospace !important; //
|
|
34404
|
+
font: 170px monospace !important; // stylelint-disable-line declaration-no-important
|
|
34546
34405
|
margin: 0;
|
|
34547
34406
|
padding: 0;
|
|
34548
34407
|
width: 100%;
|
|
@@ -35051,13 +34910,13 @@ $kendo-fab-lg-padding-y: ( $kendo-fab-padding-y * 1.5 ) !default;
|
|
|
35051
34910
|
|
|
35052
34911
|
/// The horizontal padding of the FAB icon.
|
|
35053
34912
|
/// @group floating-action-button
|
|
35054
|
-
$kendo-fab-icon-padding-x: k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
34913
|
+
$kendo-fab-icon-padding-x: k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
35055
34914
|
/// The vertical padding of the FAB icon.
|
|
35056
34915
|
/// @group floating-action-button
|
|
35057
34916
|
$kendo-fab-icon-padding-y: $kendo-fab-icon-padding-x !default;
|
|
35058
34917
|
/// The spacing of the FAB icon.
|
|
35059
34918
|
/// @group floating-action-button
|
|
35060
|
-
$kendo-fab-icon-spacing: k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
34919
|
+
$kendo-fab-icon-spacing: k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
35061
34920
|
|
|
35062
34921
|
/// The horizontal padding of the FAB items.
|
|
35063
34922
|
/// @group floating-action-button
|
|
@@ -35133,7 +34992,7 @@ $kendo-fab-active-shadow: null !default;
|
|
|
35133
34992
|
$kendo-fab-outline-style: solid !default;
|
|
35134
34993
|
/// The outline width of the FAB.
|
|
35135
34994
|
/// @group floating-action-button
|
|
35136
|
-
$kendo-fab-outline-width: k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
34995
|
+
$kendo-fab-outline-width: k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
35137
34996
|
|
|
35138
34997
|
|
|
35139
34998
|
/// The base text color of the FAB item.
|
|
@@ -35170,7 +35029,7 @@ $kendo-fab-item-active-shadow: $kendo-fab-active-shadow !default;
|
|
|
35170
35029
|
$kendo-fab-item-outline-style: solid !default;
|
|
35171
35030
|
/// The outline width of the FAB item.
|
|
35172
35031
|
/// @group floating-action-button
|
|
35173
|
-
$kendo-fab-item-outline-width: k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
35032
|
+
$kendo-fab-item-outline-width: k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
35174
35033
|
/// The outline color of the FAB item.
|
|
35175
35034
|
/// @group floating-action-button
|
|
35176
35035
|
$kendo-fab-item-outline-color: rgba(0, 0, 0, .08) !default;
|
|
@@ -35644,11 +35503,6 @@ $kendo-adaptive-actionsheet-footer-padding-x: k-map-get( $kendo-spacing, 4 ) !de
|
|
|
35644
35503
|
z-index: 9999;
|
|
35645
35504
|
overflow: hidden;
|
|
35646
35505
|
transform: translateZ(0);
|
|
35647
|
-
}
|
|
35648
|
-
|
|
35649
|
-
|
|
35650
|
-
// Animation container
|
|
35651
|
-
.k-actionsheet-container {
|
|
35652
35506
|
|
|
35653
35507
|
// Overlay
|
|
35654
35508
|
> .k-overlay {
|
|
@@ -36378,7 +36232,7 @@ $_kendo-module-meta: (
|
|
|
36378
36232
|
}
|
|
36379
36233
|
|
|
36380
36234
|
// Resize Handles
|
|
36381
|
-
.k-window {
|
|
36235
|
+
.k-window { // stylelint-disable-line
|
|
36382
36236
|
.k-resize-n { top: 0; }
|
|
36383
36237
|
.k-resize-e { right: 0; }
|
|
36384
36238
|
.k-resize-s { bottom: 0; }
|
|
@@ -36414,11 +36268,9 @@ $_kendo-module-meta: (
|
|
|
36414
36268
|
@include box-shadow( $kendo-window-shadow );
|
|
36415
36269
|
}
|
|
36416
36270
|
|
|
36417
|
-
.k-window
|
|
36418
|
-
|
|
36419
|
-
|
|
36420
|
-
@include focus-indicator( $kendo-window-focus-shadow );
|
|
36421
|
-
}
|
|
36271
|
+
.k-window:focus,
|
|
36272
|
+
.k-window.k-focus {
|
|
36273
|
+
@include focus-indicator( $kendo-window-focus-shadow );
|
|
36422
36274
|
}
|
|
36423
36275
|
|
|
36424
36276
|
|
|
@@ -36749,7 +36601,7 @@ $kendo-drawer-selected-hover-text: $kendo-selected-hover-text !default;
|
|
|
36749
36601
|
display: flex;
|
|
36750
36602
|
flex-direction: column;
|
|
36751
36603
|
flex: 0 0 auto;
|
|
36752
|
-
transition: all 300ms ease-in-out;
|
|
36604
|
+
transition: all 300ms ease-in-out;
|
|
36753
36605
|
overflow: hidden;
|
|
36754
36606
|
-webkit-touch-callout: none;
|
|
36755
36607
|
-webkit-tap-highlight-color: $kendo-color-rgba-transparent;
|
|
@@ -36837,7 +36689,7 @@ $kendo-drawer-selected-hover-text: $kendo-selected-hover-text !default;
|
|
|
36837
36689
|
overflow-x: hidden;
|
|
36838
36690
|
overflow-y: auto;
|
|
36839
36691
|
scrollbar-width: thin; // Scrollbar styles for Mozilla
|
|
36840
|
-
transition: all 300ms ease-in-out;
|
|
36692
|
+
transition: all 300ms ease-in-out;
|
|
36841
36693
|
|
|
36842
36694
|
// Scrollbar styles for Chrome, Safari and Opera
|
|
36843
36695
|
&::-webkit-scrollbar {
|
|
@@ -37158,7 +37010,6 @@ $kendo-notification-border: $kendo-component-border !default;
|
|
|
37158
37010
|
@function notification-theme( $colors ) {
|
|
37159
37011
|
$_theme: ();
|
|
37160
37012
|
|
|
37161
|
-
// sass-lint:disable-block indentation
|
|
37162
37013
|
@each $name, $color in $colors {
|
|
37163
37014
|
$_theme: k-map-merge(( $name: (
|
|
37164
37015
|
color: k-contrast-legacy( $color ),
|
|
@@ -38283,9 +38134,7 @@ $_kendo-module-meta: (
|
|
|
38283
38134
|
}
|
|
38284
38135
|
.k-rpanel-top.k-rpanel-expanded {
|
|
38285
38136
|
max-height: 568px;
|
|
38286
|
-
//
|
|
38287
|
-
overflow: visible !important;
|
|
38288
|
-
// sass-lint:enable no-important
|
|
38137
|
+
overflow: visible !important; // stylelint-disable-line declaration-no-important
|
|
38289
38138
|
}
|
|
38290
38139
|
|
|
38291
38140
|
// Toggle button
|
|
@@ -39243,15 +39092,6 @@ $kendo-pager-sizes: (
|
|
|
39243
39092
|
*::after {
|
|
39244
39093
|
box-sizing: border-box;
|
|
39245
39094
|
}
|
|
39246
|
-
|
|
39247
|
-
.k-rtl &,
|
|
39248
|
-
&[dir="rtl"],
|
|
39249
|
-
[dir="rtl"] & {
|
|
39250
|
-
.k-pager-nav .k-button-icon {
|
|
39251
|
-
transform: scaleX(-1);
|
|
39252
|
-
}
|
|
39253
|
-
}
|
|
39254
|
-
|
|
39255
39095
|
}
|
|
39256
39096
|
|
|
39257
39097
|
|
|
@@ -40094,9 +39934,6 @@ $kendo-stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0m
|
|
|
40094
39934
|
.k-step-success .k-step-label .k-svg-icon {
|
|
40095
39935
|
@include fill( $color: $kendo-stepper-label-success-text );
|
|
40096
39936
|
}
|
|
40097
|
-
.k-step-error .k-step-label {
|
|
40098
|
-
@include fill( $color: $kendo-stepper-label-error-text );
|
|
40099
|
-
}
|
|
40100
39937
|
|
|
40101
39938
|
.k-step-error {
|
|
40102
39939
|
.k-step-label {
|
|
@@ -40430,7 +40267,7 @@ $kendo-tabstrip-content-focus-border: $kendo-component-text !default;
|
|
|
40430
40267
|
// Tabstrip content
|
|
40431
40268
|
.k-tabstrip-content,
|
|
40432
40269
|
.k-tabstrip > .k-content {
|
|
40433
|
-
margin: 0 !important; //
|
|
40270
|
+
margin: 0 !important; // stylelint-disable-line declaration-no-important
|
|
40434
40271
|
padding-block: $kendo-tabstrip-content-padding-y;
|
|
40435
40272
|
padding-inline: $kendo-tabstrip-content-padding-x;
|
|
40436
40273
|
box-sizing: border-box;
|
|
@@ -40529,14 +40366,14 @@ $kendo-tabstrip-content-focus-border: $kendo-component-text !default;
|
|
|
40529
40366
|
.k-item.k-active {
|
|
40530
40367
|
margin-bottom: if( $kendo-tabstrip-border-width, -$kendo-tabstrip-border-width, null );
|
|
40531
40368
|
border-bottom-width: $kendo-tabstrip-border-width;
|
|
40532
|
-
border-bottom-color: transparent !important; //
|
|
40369
|
+
border-bottom-color: transparent !important; // stylelint-disable-line declaration-no-important
|
|
40533
40370
|
}
|
|
40534
40371
|
}
|
|
40535
40372
|
|
|
40536
40373
|
> .k-content,
|
|
40537
40374
|
> .k-tabstrip-content {
|
|
40538
40375
|
@include border-bottom-radius( $kendo-tabstrip-item-border-radius );
|
|
40539
|
-
border-top-width: 0 !important; //
|
|
40376
|
+
border-top-width: 0 !important; // stylelint-disable-line declaration-no-important
|
|
40540
40377
|
}
|
|
40541
40378
|
}
|
|
40542
40379
|
.k-tabstrip-bottom {
|
|
@@ -40552,14 +40389,14 @@ $kendo-tabstrip-content-focus-border: $kendo-component-text !default;
|
|
|
40552
40389
|
.k-item.k-active {
|
|
40553
40390
|
margin-top: if( $kendo-tabstrip-border-width, -$kendo-tabstrip-border-width, null );
|
|
40554
40391
|
border-top-width: $kendo-tabstrip-border-width;
|
|
40555
|
-
border-top-color: transparent !important; //
|
|
40392
|
+
border-top-color: transparent !important; // stylelint-disable-line declaration-no-important
|
|
40556
40393
|
}
|
|
40557
40394
|
}
|
|
40558
40395
|
|
|
40559
40396
|
> .k-content,
|
|
40560
40397
|
> .k-tabstrip-content {
|
|
40561
40398
|
@include border-top-radius( $kendo-tabstrip-item-border-radius );
|
|
40562
|
-
border-bottom-width: 0 !important; //
|
|
40399
|
+
border-bottom-width: 0 !important; // stylelint-disable-line declaration-no-important
|
|
40563
40400
|
}
|
|
40564
40401
|
}
|
|
40565
40402
|
.k-tabstrip-left {
|
|
@@ -40577,14 +40414,14 @@ $kendo-tabstrip-content-focus-border: $kendo-component-text !default;
|
|
|
40577
40414
|
.k-item.k-active {
|
|
40578
40415
|
margin-right: if( $kendo-tabstrip-border-width, -$kendo-tabstrip-border-width, null );
|
|
40579
40416
|
border-right-width: $kendo-tabstrip-border-width;
|
|
40580
|
-
border-right-color: transparent !important; //
|
|
40417
|
+
border-right-color: transparent !important; // stylelint-disable-line declaration-no-important
|
|
40581
40418
|
}
|
|
40582
40419
|
}
|
|
40583
40420
|
|
|
40584
40421
|
> .k-content,
|
|
40585
40422
|
> .k-tabstrip-content {
|
|
40586
40423
|
@include border-right-radius( $kendo-tabstrip-item-border-radius );
|
|
40587
|
-
border-left-width: 0 !important; //
|
|
40424
|
+
border-left-width: 0 !important; // stylelint-disable-line declaration-no-important
|
|
40588
40425
|
}
|
|
40589
40426
|
|
|
40590
40427
|
}
|
|
@@ -40603,7 +40440,7 @@ $kendo-tabstrip-content-focus-border: $kendo-component-text !default;
|
|
|
40603
40440
|
.k-item.k-active {
|
|
40604
40441
|
margin-left: if( $kendo-tabstrip-border-width, -$kendo-tabstrip-border-width, null );
|
|
40605
40442
|
border-left-width: $kendo-tabstrip-border-width;
|
|
40606
|
-
border-left-color: transparent !important; //
|
|
40443
|
+
border-left-color: transparent !important; // stylelint-disable-line declaration-no-important
|
|
40607
40444
|
}
|
|
40608
40445
|
}
|
|
40609
40446
|
|
|
@@ -40679,7 +40516,7 @@ $kendo-tabstrip-content-focus-border: $kendo-component-text !default;
|
|
|
40679
40516
|
// Hide tabstrip indicator when dragging
|
|
40680
40517
|
.k-tabstrip-items-wrapper .k-item.k-tabstrip-dragging {
|
|
40681
40518
|
&::after {
|
|
40682
|
-
display: none !important; //
|
|
40519
|
+
display: none !important; // stylelint-disable-line declaration-no-important
|
|
40683
40520
|
}
|
|
40684
40521
|
}
|
|
40685
40522
|
|
|
@@ -40700,11 +40537,6 @@ $kendo-tabstrip-content-focus-border: $kendo-component-text !default;
|
|
|
40700
40537
|
> .k-tabstrip-content { order: 0; }
|
|
40701
40538
|
}
|
|
40702
40539
|
|
|
40703
|
-
.k-tabstrip-prev .k-button-icon,
|
|
40704
|
-
.k-tabstrip-next .k-button-icon {
|
|
40705
|
-
transform: scaleX(-1);
|
|
40706
|
-
}
|
|
40707
|
-
|
|
40708
40540
|
}
|
|
40709
40541
|
|
|
40710
40542
|
}
|
|
@@ -41023,6 +40855,7 @@ $kendo-wizard-step-focus-border: #656565 !default;
|
|
|
41023
40855
|
.k-wizard-vertical {
|
|
41024
40856
|
|
|
41025
40857
|
.k-wizard-steps {
|
|
40858
|
+
margin-left: $kendo-wizard-content-padding-x;
|
|
41026
40859
|
flex: 1 0 0%;
|
|
41027
40860
|
}
|
|
41028
40861
|
|
|
@@ -41030,9 +40863,6 @@ $kendo-wizard-step-focus-border: #656565 !default;
|
|
|
41030
40863
|
flex: 1 1 0%;
|
|
41031
40864
|
}
|
|
41032
40865
|
|
|
41033
|
-
.k-wizard-steps {
|
|
41034
|
-
margin-left: $kendo-wizard-content-padding-x;
|
|
41035
|
-
}
|
|
41036
40866
|
}
|
|
41037
40867
|
|
|
41038
40868
|
.k-wizard-left {
|
|
@@ -42145,25 +41975,15 @@ $kendo-splitbar-selected-text: $kendo-selected-text !default;
|
|
|
42145
41975
|
.k-pane-flex {
|
|
42146
41976
|
&.k-hidden,
|
|
42147
41977
|
&[hidden] {
|
|
42148
|
-
// sass-lint:disable-block no-important
|
|
42149
41978
|
// hidden panes need to be zero-width to allow pane animation
|
|
42150
|
-
flex: 0 1 0% !important;
|
|
42151
|
-
overflow: hidden !important;
|
|
42152
|
-
display: block !important;
|
|
41979
|
+
flex: 0 1 0% !important; // stylelint-disable-line declaration-no-important
|
|
41980
|
+
overflow: hidden !important; // stylelint-disable-line declaration-no-important
|
|
41981
|
+
display: block !important; // stylelint-disable-line declaration-no-important
|
|
42153
41982
|
}
|
|
42154
41983
|
}
|
|
42155
41984
|
|
|
42156
41985
|
&.k-splitter-horizontal {
|
|
42157
41986
|
flex-direction: row;
|
|
42158
|
-
|
|
42159
|
-
&[dir="rtl"] {
|
|
42160
|
-
> .k-splitbar {
|
|
42161
|
-
> .k-collapse-next,
|
|
42162
|
-
> .k-collapse-prev {
|
|
42163
|
-
transform: scaleX(-1);
|
|
42164
|
-
}
|
|
42165
|
-
}
|
|
42166
|
-
}
|
|
42167
41987
|
}
|
|
42168
41988
|
&.k-splitter-vertical {
|
|
42169
41989
|
flex-direction: column;
|
|
@@ -42606,7 +42426,7 @@ $kendo-adaptive-scheduler-subtle-text: $kendo-subtle-text !default;
|
|
|
42606
42426
|
|
|
42607
42427
|
|
|
42608
42428
|
// Grid specific styles
|
|
42609
|
-
.k-pane-wrapper {
|
|
42429
|
+
.k-pane-wrapper { // stylelint-disable-line
|
|
42610
42430
|
|
|
42611
42431
|
> div.k-pane {
|
|
42612
42432
|
box-shadow: none;
|
|
@@ -42666,7 +42486,7 @@ $kendo-adaptive-scheduler-subtle-text: $kendo-subtle-text !default;
|
|
|
42666
42486
|
|
|
42667
42487
|
|
|
42668
42488
|
// Scheduler specific styles
|
|
42669
|
-
.k-pane-wrapper {
|
|
42489
|
+
.k-pane-wrapper { // stylelint-disable-line
|
|
42670
42490
|
|
|
42671
42491
|
.k-scheduler-edit-form {
|
|
42672
42492
|
|
|
@@ -42893,7 +42713,7 @@ $kendo-adaptive-scheduler-subtle-text: $kendo-subtle-text !default;
|
|
|
42893
42713
|
|
|
42894
42714
|
|
|
42895
42715
|
// Common styles for the Adaptive Layout
|
|
42896
|
-
.k-pane-wrapper {
|
|
42716
|
+
.k-pane-wrapper { // stylelint-disable-line
|
|
42897
42717
|
|
|
42898
42718
|
.k-appbar {
|
|
42899
42719
|
padding: k-map-get( $kendo-spacing, 1 );
|
|
@@ -43008,24 +42828,12 @@ $kendo-adaptive-scheduler-subtle-text: $kendo-subtle-text !default;
|
|
|
43008
42828
|
&[dir="rtl"],
|
|
43009
42829
|
[dir="rtl"] & {
|
|
43010
42830
|
|
|
43011
|
-
.k-header-cancel .k-button-icon,
|
|
43012
|
-
.k-listgroup-item .k-select .k-svg-icon,
|
|
43013
|
-
.k-listgroup-item .k-select .k-icon {
|
|
43014
|
-
transform: scaleX( -1 );
|
|
43015
|
-
}
|
|
43016
|
-
|
|
43017
42831
|
.k-scheduler-mobile {
|
|
43018
42832
|
|
|
43019
42833
|
.k-scheduler-toolbar {
|
|
43020
|
-
|
|
43021
42834
|
> ul > li {
|
|
43022
42835
|
border: 0;
|
|
43023
42836
|
}
|
|
43024
|
-
|
|
43025
|
-
.k-nav-prev,
|
|
43026
|
-
.k-nav-next {
|
|
43027
|
-
transform: scaleX(-1);
|
|
43028
|
-
}
|
|
43029
42837
|
}
|
|
43030
42838
|
|
|
43031
42839
|
.k-task .k-i-reload {
|
|
@@ -43129,7 +42937,7 @@ $kendo-adaptive-scheduler-subtle-text: $kendo-subtle-text !default;
|
|
|
43129
42937
|
.k-clear,
|
|
43130
42938
|
.k-select-all,
|
|
43131
42939
|
.k-scheduler-delete,
|
|
43132
|
-
.k-scheduler-resetSeries { //
|
|
42940
|
+
.k-scheduler-resetSeries { // stylelint-disable-line
|
|
43133
42941
|
color: $kendo-adaptive-menu-clear-text;
|
|
43134
42942
|
}
|
|
43135
42943
|
|
|
@@ -43325,7 +43133,7 @@ $kendo-grid-sm-cell-padding-y: $kendo-grid-sm-padding-y !default;
|
|
|
43325
43133
|
$kendo-grid-sm-filter-cell-padding-x: $kendo-grid-sm-padding-x !default;
|
|
43326
43134
|
$kendo-grid-sm-filter-cell-padding-y: $kendo-grid-sm-filter-cell-padding-x !default;
|
|
43327
43135
|
$kendo-grid-sm-edit-cell-padding-x: $kendo-grid-sm-cell-padding-x !default;
|
|
43328
|
-
$kendo-grid-sm-edit-cell-padding-y: k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
43136
|
+
$kendo-grid-sm-edit-cell-padding-y: k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
43329
43137
|
$kendo-grid-sm-group-dropclue-height: calc( #{$kendo-chip-sm-calc-size} + #{$kendo-grid-group-drop-hint-size}) !default;
|
|
43330
43138
|
$kendo-grid-sm-selection-aggregates-padding-x: $kendo-grid-sm-padding-y !default;
|
|
43331
43139
|
$kendo-grid-sm-selection-aggregates-padding-y: $kendo-grid-sm-padding-y !default;
|
|
@@ -43521,6 +43329,7 @@ $kendo-grid-sticky-hover-bg: $kendo-grid-hover-bg !default;
|
|
|
43521
43329
|
$kendo-grid-sticky-selected-hover-bg: k-try-shade( $kendo-grid-sticky-selected-bg, 1 ) !default;
|
|
43522
43330
|
|
|
43523
43331
|
$kendo-grid-column-menu-width: 230px !default;
|
|
43332
|
+
$kendo-grid-column-menu-max-width: 320px !default;
|
|
43524
43333
|
|
|
43525
43334
|
$kendo-grid-filter-menu-check-all-border-bottom-width: 1px !default;
|
|
43526
43335
|
|
|
@@ -44105,7 +43914,8 @@ $kendo-grid-row-resizer-height: k-map-get( $kendo-spacing, .5 ) !default;
|
|
|
44105
43914
|
}
|
|
44106
43915
|
|
|
44107
43916
|
.k-grid-filter-popup {
|
|
44108
|
-
min-width:
|
|
43917
|
+
min-width: $kendo-grid-column-menu-width;
|
|
43918
|
+
max-width: $kendo-grid-column-menu-max-width;
|
|
44109
43919
|
}
|
|
44110
43920
|
|
|
44111
43921
|
// Standalone column menu
|
|
@@ -44676,17 +44486,18 @@ $kendo-grid-row-resizer-height: k-map-get( $kendo-spacing, .5 ) !default;
|
|
|
44676
44486
|
}
|
|
44677
44487
|
|
|
44678
44488
|
// Remove Grid scrollbar during built-in export
|
|
44489
|
+
// stylelint-disable declaration-no-important
|
|
44679
44490
|
.k-pdf-export-shadow {
|
|
44680
44491
|
.k-grid {
|
|
44681
44492
|
float: left;
|
|
44682
|
-
width: auto !important;
|
|
44493
|
+
width: auto !important;
|
|
44683
44494
|
}
|
|
44684
44495
|
|
|
44685
44496
|
// Remove all sizes and scrolling
|
|
44686
44497
|
.k-grid,
|
|
44687
44498
|
.k-grid-content,
|
|
44688
44499
|
.k-grid-content-locked {
|
|
44689
|
-
height: auto !important;
|
|
44500
|
+
height: auto !important;
|
|
44690
44501
|
overflow: visible;
|
|
44691
44502
|
}
|
|
44692
44503
|
|
|
@@ -44694,21 +44505,23 @@ $kendo-grid-row-resizer-height: k-map-get( $kendo-spacing, .5 ) !default;
|
|
|
44694
44505
|
& + .k-grid-header-wrap,
|
|
44695
44506
|
& + .k-grid-content,
|
|
44696
44507
|
& + .k-grid-footer-wrap {
|
|
44697
|
-
width: auto !important;
|
|
44508
|
+
width: auto !important;
|
|
44698
44509
|
}
|
|
44699
44510
|
}
|
|
44700
44511
|
|
|
44701
44512
|
// Remove empty space reserved above .k-table-the scrollbar
|
|
44702
44513
|
.k-grid-header,
|
|
44703
44514
|
.k-grid[data-role="grid"] .k-grid-footer {
|
|
44704
|
-
padding: 0 !important;
|
|
44515
|
+
padding: 0 !important;
|
|
44705
44516
|
}
|
|
44706
44517
|
}
|
|
44518
|
+
// stylelint-enable declaration-no-important
|
|
44707
44519
|
|
|
44708
44520
|
|
|
44709
44521
|
// Filter menu
|
|
44710
44522
|
.k-filter-menu-popup {
|
|
44711
|
-
width: $kendo-grid-column-menu-width;
|
|
44523
|
+
min-width: $kendo-grid-column-menu-width;
|
|
44524
|
+
max-width: $kendo-grid-column-menu-max-width;
|
|
44712
44525
|
}
|
|
44713
44526
|
.k-filter-menu {
|
|
44714
44527
|
box-sizing: border-box;
|
|
@@ -44752,7 +44565,8 @@ $kendo-grid-row-resizer-height: k-map-get( $kendo-spacing, .5 ) !default;
|
|
|
44752
44565
|
.k-grid-filter-popup.k-popup {
|
|
44753
44566
|
|
|
44754
44567
|
.k-filter-menu-container {
|
|
44755
|
-
width: $kendo-grid-column-menu-width;
|
|
44568
|
+
min-width: $kendo-grid-column-menu-width;
|
|
44569
|
+
max-width: $kendo-grid-column-menu-max-width;
|
|
44756
44570
|
}
|
|
44757
44571
|
}
|
|
44758
44572
|
|
|
@@ -44783,19 +44597,17 @@ $kendo-grid-row-resizer-height: k-map-get( $kendo-spacing, .5 ) !default;
|
|
|
44783
44597
|
|
|
44784
44598
|
// autofitting requires automatic table layout to measure sizes
|
|
44785
44599
|
.k-autofitting {
|
|
44786
|
-
//
|
|
44787
|
-
|
|
44788
|
-
width: auto !important;
|
|
44789
|
-
table-layout: auto !important;
|
|
44600
|
+
width: auto !important; // stylelint-disable-line declaration-no-important
|
|
44601
|
+
table-layout: auto !important; // stylelint-disable-line declaration-no-important
|
|
44790
44602
|
|
|
44791
44603
|
.k-table-th,
|
|
44792
44604
|
td,
|
|
44793
44605
|
.k-table-td {
|
|
44794
|
-
white-space: nowrap !important;
|
|
44606
|
+
white-space: nowrap !important; // stylelint-disable-line declaration-no-important
|
|
44795
44607
|
}
|
|
44796
44608
|
|
|
44797
44609
|
.k-detail-row {
|
|
44798
|
-
display: none !important;
|
|
44610
|
+
display: none !important; // stylelint-disable-line declaration-no-important
|
|
44799
44611
|
}
|
|
44800
44612
|
}
|
|
44801
44613
|
|
|
@@ -44804,13 +44616,13 @@ $kendo-grid-row-resizer-height: k-map-get( $kendo-spacing, .5 ) !default;
|
|
|
44804
44616
|
// Column menu
|
|
44805
44617
|
.k-column-menu-popup,
|
|
44806
44618
|
.k-grid-columnmenu-popup {
|
|
44807
|
-
width: $kendo-grid-column-menu-width;
|
|
44619
|
+
min-width: $kendo-grid-column-menu-width;
|
|
44808
44620
|
box-sizing: border-box;
|
|
44809
44621
|
|
|
44810
44622
|
&.k-popup {
|
|
44811
44623
|
padding-block: $kendo-grid-column-menu-popup-padding-y;
|
|
44812
44624
|
padding-inline: $kendo-grid-column-menu-popup-padding-x;
|
|
44813
|
-
max-width:
|
|
44625
|
+
max-width: $kendo-grid-column-menu-max-width;
|
|
44814
44626
|
}
|
|
44815
44627
|
|
|
44816
44628
|
.k-actions {
|
|
@@ -44932,6 +44744,18 @@ $kendo-grid-row-resizer-height: k-map-get( $kendo-spacing, .5 ) !default;
|
|
|
44932
44744
|
flex: 1 1 auto;
|
|
44933
44745
|
}
|
|
44934
44746
|
|
|
44747
|
+
.k-rtl .k-grid-virtual .k-grid-content,
|
|
44748
|
+
[dir="rtl"] .k-grid-virtual .k-grid-content,
|
|
44749
|
+
.k-rtl.k-grid-virtual .k-grid-content,
|
|
44750
|
+
[dir="rtl"].k-grid-virtual .k-grid-content {
|
|
44751
|
+
|
|
44752
|
+
.k-grid-table-wrap,
|
|
44753
|
+
.k-grid-table,
|
|
44754
|
+
> .k-height-container {
|
|
44755
|
+
float: right;
|
|
44756
|
+
}
|
|
44757
|
+
}
|
|
44758
|
+
|
|
44935
44759
|
}
|
|
44936
44760
|
|
|
44937
44761
|
|
|
@@ -46169,9 +45993,8 @@ $kendo-spreadsheet-drawing-anchor-bg: rgba( $kendo-selected-bg, .25 ) !default;
|
|
|
46169
45993
|
|
|
46170
45994
|
|
|
46171
45995
|
// Spreadsheet view
|
|
46172
|
-
// sass-lint:disable no-important
|
|
46173
45996
|
.k-spreadsheet-view {
|
|
46174
|
-
height: auto !important;
|
|
45997
|
+
height: auto !important; // stylelint-disable-line declaration-no-important
|
|
46175
45998
|
border-color: inherit;
|
|
46176
45999
|
font-size: 12px;
|
|
46177
46000
|
font-family: Arial, Verdana, Sans-serif;
|
|
@@ -46184,7 +46007,7 @@ $kendo-spreadsheet-drawing-anchor-bg: rgba( $kendo-selected-bg, .25 ) !default;
|
|
|
46184
46007
|
pointer-events: auto;
|
|
46185
46008
|
}
|
|
46186
46009
|
}
|
|
46187
|
-
|
|
46010
|
+
|
|
46188
46011
|
.k-spreadsheet-fixed-container {
|
|
46189
46012
|
width: 100%;
|
|
46190
46013
|
height: 100%;
|
|
@@ -46380,9 +46203,8 @@ $kendo-spreadsheet-drawing-anchor-bg: rgba( $kendo-selected-bg, .25 ) !default;
|
|
|
46380
46203
|
}
|
|
46381
46204
|
|
|
46382
46205
|
.k-spreadsheet-active-cell {
|
|
46383
|
-
// sass-lint:disable-block no-important
|
|
46384
46206
|
// always show exact active cell border, regardless of inline cell styles
|
|
46385
|
-
outline-color: transparent !important;
|
|
46207
|
+
outline-color: transparent !important; // stylelint-disable-line declaration-no-important
|
|
46386
46208
|
z-index: 10;
|
|
46387
46209
|
}
|
|
46388
46210
|
|
|
@@ -46777,7 +46599,7 @@ $kendo-spreadsheet-drawing-anchor-bg: rgba( $kendo-selected-bg, .25 ) !default;
|
|
|
46777
46599
|
position: absolute;
|
|
46778
46600
|
transform: translate(-50%, -50%);
|
|
46779
46601
|
|
|
46780
|
-
//
|
|
46602
|
+
// stylelint-disable declaration-block-single-line-max-declarations, selector-class-pattern
|
|
46781
46603
|
&.N { left: 50%; top: 0; cursor: ns-resize; }
|
|
46782
46604
|
&.NE { left: 100%; top: 0; cursor: nesw-resize; }
|
|
46783
46605
|
&.E { left: 100%; top: 50%; cursor: ew-resize; }
|
|
@@ -46786,7 +46608,7 @@ $kendo-spreadsheet-drawing-anchor-bg: rgba( $kendo-selected-bg, .25 ) !default;
|
|
|
46786
46608
|
&.SW { left: 0; top: 100%; cursor: nesw-resize; }
|
|
46787
46609
|
&.W { left: 0; top: 50%; cursor: ew-resize; }
|
|
46788
46610
|
&.NW { left: 0; top: 0; cursor: nwse-resize; }
|
|
46789
|
-
//
|
|
46611
|
+
// stylelint-enable declaration-block-single-line-max-declarations, selector-class-pattern
|
|
46790
46612
|
}
|
|
46791
46613
|
|
|
46792
46614
|
.k-spreadsheet-insert-image-dialog {
|
|
@@ -47742,7 +47564,7 @@ $kendo-pivotgrid-remove-text: null !default;
|
|
|
47742
47564
|
.k-pdf-export-shadow {
|
|
47743
47565
|
|
|
47744
47566
|
.k-pivotgrid {
|
|
47745
|
-
height: auto !important; //
|
|
47567
|
+
height: auto !important; // stylelint-disable-line declaration-no-important
|
|
47746
47568
|
}
|
|
47747
47569
|
|
|
47748
47570
|
.k-pivotgrid-values {
|
|
@@ -49565,7 +49387,7 @@ $kendo-taskboard-drag-placeholder-border: $kendo-component-border !default;
|
|
|
49565
49387
|
border-width: $kendo-taskboard-card-border-width;
|
|
49566
49388
|
|
|
49567
49389
|
&.k-taskboard-card-category {
|
|
49568
|
-
border-
|
|
49390
|
+
border-inline-start-width: $kendo-taskboard-card-category-border-width;
|
|
49569
49391
|
}
|
|
49570
49392
|
|
|
49571
49393
|
.k-card-header
|
|
@@ -49606,20 +49428,6 @@ $kendo-taskboard-drag-placeholder-border: $kendo-component-border !default;
|
|
|
49606
49428
|
position: relative;
|
|
49607
49429
|
}
|
|
49608
49430
|
|
|
49609
|
-
|
|
49610
|
-
|
|
49611
|
-
|
|
49612
|
-
// RTL
|
|
49613
|
-
.k-taskboard-card.k-taskboard-card-category {
|
|
49614
|
-
.k-rtl &,
|
|
49615
|
-
&.k-rtl,
|
|
49616
|
-
[dir="rtl"] &,
|
|
49617
|
-
&[dir="rtl"] {
|
|
49618
|
-
border-left-width: $kendo-taskboard-card-border-width;
|
|
49619
|
-
border-right-width: $kendo-taskboard-card-category-border-width;
|
|
49620
|
-
}
|
|
49621
|
-
}
|
|
49622
|
-
|
|
49623
49431
|
}
|
|
49624
49432
|
|
|
49625
49433
|
|
|
@@ -49865,7 +49673,7 @@ $kendo-editor-resize-handle-border: #000000 !default;
|
|
|
49865
49673
|
$kendo-editor-resize-handle-bg: #ffffff !default;
|
|
49866
49674
|
|
|
49867
49675
|
$kendo-editor-selectednode-outline-width: 2px !default;
|
|
49868
|
-
$kendo-editor-selectednode-outline-color: #
|
|
49676
|
+
$kendo-editor-selectednode-outline-color: #88ccff !default;
|
|
49869
49677
|
|
|
49870
49678
|
// #endregion
|
|
49871
49679
|
// #region @import "./_layout.scss"; -> scss/editor/_layout.scss
|
|
@@ -49989,12 +49797,13 @@ $kendo-editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-li
|
|
|
49989
49797
|
}
|
|
49990
49798
|
}
|
|
49991
49799
|
|
|
49992
|
-
|
|
49800
|
+
// stylelint-disable selector-no-vendor-prefix, selector-class-pattern
|
|
49801
|
+
.ProseMirror-selectednode {
|
|
49993
49802
|
outline-width: $kendo-editor-selectednode-outline-width;
|
|
49994
49803
|
outline-style: solid;
|
|
49995
49804
|
|
|
49996
49805
|
}
|
|
49997
|
-
.ProseMirror-hideselection {
|
|
49806
|
+
.ProseMirror-hideselection {
|
|
49998
49807
|
caret-color: transparent;
|
|
49999
49808
|
|
|
50000
49809
|
*::selection,
|
|
@@ -50002,7 +49811,7 @@ $kendo-editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-li
|
|
|
50002
49811
|
background: transparent;
|
|
50003
49812
|
}
|
|
50004
49813
|
}
|
|
50005
|
-
|
|
49814
|
+
// stylelint-enable selector-no-vendor-prefix, selector-class-pattern
|
|
50006
49815
|
|
|
50007
49816
|
// Toolbar
|
|
50008
49817
|
.k-editor-toolbar {
|
|
@@ -50035,7 +49844,7 @@ $kendo-editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-li
|
|
|
50035
49844
|
display: block;
|
|
50036
49845
|
}
|
|
50037
49846
|
|
|
50038
|
-
> .ProseMirror { //
|
|
49847
|
+
> .ProseMirror { // stylelint-disable-line
|
|
50039
49848
|
padding: $kendo-padding-md-x;
|
|
50040
49849
|
width: 100%;
|
|
50041
49850
|
height: 100%;
|
|
@@ -50060,7 +49869,7 @@ $kendo-editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-li
|
|
|
50060
49869
|
}
|
|
50061
49870
|
|
|
50062
49871
|
&[contenteditable="false"] {
|
|
50063
|
-
cursor: unset !important; //
|
|
49872
|
+
cursor: unset !important; // stylelint-disable-line declaration-no-important
|
|
50064
49873
|
|
|
50065
49874
|
.k-editor-resize-handles-wrapper,
|
|
50066
49875
|
.k-editor-resize-handle,
|
|
@@ -50074,7 +49883,7 @@ $kendo-editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-li
|
|
|
50074
49883
|
pointer-events: none;
|
|
50075
49884
|
}
|
|
50076
49885
|
|
|
50077
|
-
& .ProseMirror-selectednode { //
|
|
49886
|
+
& .ProseMirror-selectednode { // stylelint-disable-line
|
|
50078
49887
|
outline: none;
|
|
50079
49888
|
}
|
|
50080
49889
|
}
|
|
@@ -50119,7 +49928,7 @@ $kendo-editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-li
|
|
|
50119
49928
|
}
|
|
50120
49929
|
|
|
50121
49930
|
// Give selected cells a blue overlay
|
|
50122
|
-
.selectedCell::after { //
|
|
49931
|
+
.selectedCell::after { // stylelint-disable-line
|
|
50123
49932
|
z-index: 2;
|
|
50124
49933
|
position: absolute;
|
|
50125
49934
|
content: "";
|
|
@@ -50582,7 +50391,7 @@ $kendo-editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-li
|
|
|
50582
50391
|
background-color: $kendo-editor-resize-handle-bg;
|
|
50583
50392
|
border-color: $kendo-editor-resize-handle-border;
|
|
50584
50393
|
}
|
|
50585
|
-
.ProseMirror-selectednode { //
|
|
50394
|
+
.ProseMirror-selectednode { // stylelint-disable-line
|
|
50586
50395
|
outline-color: $kendo-editor-selectednode-outline-color;
|
|
50587
50396
|
}
|
|
50588
50397
|
|
|
@@ -50618,7 +50427,7 @@ $kendo-editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-li
|
|
|
50618
50427
|
border-color: #dddddd;
|
|
50619
50428
|
}
|
|
50620
50429
|
|
|
50621
|
-
.selectedCell::after { //
|
|
50430
|
+
.selectedCell::after { // stylelint-disable-line
|
|
50622
50431
|
background-color: rgba(200, 200, 255, .4);
|
|
50623
50432
|
}
|
|
50624
50433
|
}
|
|
@@ -51388,7 +51197,7 @@ $kendo-gantt-validation-tooltip-invalid-border: $kendo-color-error !default;
|
|
|
51388
51197
|
|
|
51389
51198
|
|
|
51390
51199
|
// Responsive gantt toolbar
|
|
51391
|
-
@media (max-width: 480px) {
|
|
51200
|
+
@media (max-width: 480px) { // stylelint-disable-line
|
|
51392
51201
|
|
|
51393
51202
|
.k-gantt-toolbar {
|
|
51394
51203
|
.k-gantt-toggle {
|
|
@@ -51409,7 +51218,7 @@ $kendo-gantt-validation-tooltip-invalid-border: $kendo-color-error !default;
|
|
|
51409
51218
|
|
|
51410
51219
|
}
|
|
51411
51220
|
|
|
51412
|
-
@media (max-width: 1024px) {
|
|
51221
|
+
@media (max-width: 1024px) { // stylelint-disable-line
|
|
51413
51222
|
.k-gantt-views-wrapper .k-gantt-views { display: none; }
|
|
51414
51223
|
.k-gantt-views-wrapper .k-views-dropdown { display: flex; }
|
|
51415
51224
|
}
|
|
@@ -51434,7 +51243,7 @@ $kendo-gantt-validation-tooltip-invalid-border: $kendo-color-error !default;
|
|
|
51434
51243
|
}
|
|
51435
51244
|
.k-grid-header,
|
|
51436
51245
|
.k-grid-footer {
|
|
51437
|
-
padding: 0 !important; //
|
|
51246
|
+
padding: 0 !important; // stylelint-disable-line declaration-no-important
|
|
51438
51247
|
}
|
|
51439
51248
|
.k-grid-header tr {
|
|
51440
51249
|
height: calc( #{$kendo-line-height-em} * 2 + #{$kendo-grid-header-padding-y * 4} + 2px );
|
|
@@ -51943,9 +51752,9 @@ $kendo-gantt-validation-tooltip-invalid-border: $kendo-color-error !default;
|
|
|
51943
51752
|
.k-gantt,
|
|
51944
51753
|
.k-gantt-timeline,
|
|
51945
51754
|
.k-gantt-dependencies {
|
|
51946
|
-
width: auto !important; //
|
|
51947
|
-
height: auto !important; //
|
|
51948
|
-
overflow: visible !important; //
|
|
51755
|
+
width: auto !important; // stylelint-disable-line declaration-no-important
|
|
51756
|
+
height: auto !important; // stylelint-disable-line declaration-no-important
|
|
51757
|
+
overflow: visible !important; // stylelint-disable-line declaration-no-important
|
|
51949
51758
|
}
|
|
51950
51759
|
|
|
51951
51760
|
.k-gantt-treelist .k-treelist {
|
|
@@ -53151,8 +52960,8 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
|
|
|
53151
52960
|
}
|
|
53152
52961
|
}
|
|
53153
52962
|
|
|
53154
|
-
// sass-lint:disable no-important
|
|
53155
52963
|
// remove scrollbars during PDF export
|
|
52964
|
+
// stylelint-disable declaration-no-important
|
|
53156
52965
|
.k-pdf-export-shadow .k-scheduler,
|
|
53157
52966
|
.k-scheduler-pdf-export .k-scheduler-content,
|
|
53158
52967
|
.k-scheduler-pdf-export .k-scheduler-times {
|
|
@@ -53176,7 +52985,7 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
|
|
|
53176
52985
|
width: 100% !important;
|
|
53177
52986
|
}
|
|
53178
52987
|
}
|
|
53179
|
-
//
|
|
52988
|
+
// stylelint-enable declaration-no-important
|
|
53180
52989
|
|
|
53181
52990
|
|
|
53182
52991
|
// TODO: add this class to jQuery rendering
|
|
@@ -53195,9 +53004,7 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
|
|
|
53195
53004
|
|
|
53196
53005
|
|
|
53197
53006
|
// Workweek view
|
|
53198
|
-
//
|
|
53199
|
-
.k-scheduler-workWeekview {}
|
|
53200
|
-
// sass-lint:enable class-name-format
|
|
53007
|
+
.k-scheduler-workWeekview {} // stylelint-disable-line
|
|
53201
53008
|
|
|
53202
53009
|
|
|
53203
53010
|
// Week view
|
|
@@ -53218,14 +53025,12 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
|
|
|
53218
53025
|
min-height: 80px;
|
|
53219
53026
|
}
|
|
53220
53027
|
|
|
53221
|
-
// sass-lint:disable no-important
|
|
53222
53028
|
// hidden cells must have no layout
|
|
53223
53029
|
.k-hidden {
|
|
53224
|
-
padding-left: 0 !important;
|
|
53225
|
-
padding-right: 0 !important;
|
|
53226
|
-
border-right-width: 0 !important;
|
|
53030
|
+
padding-left: 0 !important; // stylelint-disable-line declaration-no-important
|
|
53031
|
+
padding-right: 0 !important; // stylelint-disable-line declaration-no-important
|
|
53032
|
+
border-right-width: 0 !important; // stylelint-disable-line declaration-no-important
|
|
53227
53033
|
}
|
|
53228
|
-
// sass-lint:enable no-important
|
|
53229
53034
|
|
|
53230
53035
|
.k-scheduler-table-auto,
|
|
53231
53036
|
.k-scheduler-table-auto td,
|
|
@@ -53551,13 +53356,6 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
|
|
|
53551
53356
|
|
|
53552
53357
|
.k-scheduler,
|
|
53553
53358
|
&.k-scheduler {
|
|
53554
|
-
.k-i-caret-alt-left,
|
|
53555
|
-
.k-i-caret-alt-right,
|
|
53556
|
-
.k-i-arrow-60-left,
|
|
53557
|
-
.k-i-arrow-60-right,
|
|
53558
|
-
.k-current-time-arrow-right {
|
|
53559
|
-
transform: scaleX(-1);
|
|
53560
|
-
}
|
|
53561
53359
|
|
|
53562
53360
|
.k-scheduler-header-wrap {
|
|
53563
53361
|
border-right-width: 0;
|
|
@@ -53667,7 +53465,7 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
|
|
|
53667
53465
|
}
|
|
53668
53466
|
|
|
53669
53467
|
|
|
53670
|
-
//Scheduler navigation
|
|
53468
|
+
// Scheduler navigation
|
|
53671
53469
|
.k-scheduler-navigation {}
|
|
53672
53470
|
|
|
53673
53471
|
|
|
@@ -53773,9 +53571,7 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
|
|
|
53773
53571
|
|
|
53774
53572
|
|
|
53775
53573
|
// Workweek view
|
|
53776
|
-
//
|
|
53777
|
-
.k-scheduler-workWeekview {}
|
|
53778
|
-
// sass-lint:enable class-name-format
|
|
53574
|
+
.k-scheduler-workWeekview {} // stylelint-disable-line
|
|
53779
53575
|
|
|
53780
53576
|
|
|
53781
53577
|
// Week view
|
|
@@ -54299,8 +54095,8 @@ $kendo-chat-quick-reply-hover-border: $kendo-color-primary !default;
|
|
|
54299
54095
|
box-sizing: border-box;
|
|
54300
54096
|
border-width: 1px 0 0;
|
|
54301
54097
|
border-style: solid;
|
|
54302
|
-
border-color: inherit !important; //
|
|
54303
|
-
border-radius: 0 !important; //
|
|
54098
|
+
border-color: inherit !important; // stylelint-disable-line declaration-no-important
|
|
54099
|
+
border-radius: 0 !important; // stylelint-disable-line declaration-no-important
|
|
54304
54100
|
flex: none;
|
|
54305
54101
|
display: flex;
|
|
54306
54102
|
flex-flow: row nowrap;
|
|
@@ -54807,9 +54603,7 @@ $kendo-media-player-titlebar-gradient: rgba( $kendo-media-player-text, .7 ), rgb
|
|
|
54807
54603
|
}
|
|
54808
54604
|
.k-mediaplayer-toolbar {
|
|
54809
54605
|
border-width: 0;
|
|
54810
|
-
//
|
|
54811
|
-
width: 100% !important;
|
|
54812
|
-
// sass-lint:enable no-important
|
|
54606
|
+
width: 100% !important; // stylelint-disable-line declaration-no-important
|
|
54813
54607
|
box-shadow: none;
|
|
54814
54608
|
|
|
54815
54609
|
|
|
@@ -54840,9 +54634,7 @@ $kendo-media-player-titlebar-gradient: rgba( $kendo-media-player-text, .7 ), rgb
|
|
|
54840
54634
|
transform: translateY( -50% );
|
|
54841
54635
|
}
|
|
54842
54636
|
.k-mediaplayer-seekbar .k-slider-track {
|
|
54843
|
-
//
|
|
54844
|
-
width: 100% !important;
|
|
54845
|
-
// sass-lint:enable no-important
|
|
54637
|
+
width: 100% !important; // stylelint-disable-line declaration-no-important
|
|
54846
54638
|
border-radius: 0;
|
|
54847
54639
|
}
|
|
54848
54640
|
.k-mediaplayer-seekbar .k-slider-selection {
|
|
@@ -54854,10 +54646,8 @@ $kendo-media-player-titlebar-gradient: rgba( $kendo-media-player-text, .7 ), rgb
|
|
|
54854
54646
|
position: fixed;
|
|
54855
54647
|
top: 0;
|
|
54856
54648
|
left: 0;
|
|
54857
|
-
//
|
|
54858
|
-
|
|
54859
|
-
height: 100% !important;
|
|
54860
|
-
// sass-lint:enable no-important
|
|
54649
|
+
width: 100% !important; // stylelint-disable-line declaration-no-important
|
|
54650
|
+
height: 100% !important; // stylelint-disable-line declaration-no-important
|
|
54861
54651
|
}
|
|
54862
54652
|
|
|
54863
54653
|
}
|
|
@@ -55813,7 +55603,7 @@ $kendo-pdf-viewer-icon-text: $kendo-dropzone-icon-text !default;
|
|
|
55813
55603
|
height: 100%;
|
|
55814
55604
|
align-items: center;
|
|
55815
55605
|
justify-content: center;
|
|
55816
|
-
background-color: inherit !important; //
|
|
55606
|
+
background-color: inherit !important; // stylelint-disable-line declaration-no-important
|
|
55817
55607
|
|
|
55818
55608
|
.k-upload,
|
|
55819
55609
|
.k-dropzone,
|
|
@@ -55827,7 +55617,7 @@ $kendo-pdf-viewer-icon-text: $kendo-dropzone-icon-text !default;
|
|
|
55827
55617
|
|
|
55828
55618
|
// Search
|
|
55829
55619
|
.k-pdf-viewer-search-dialog {
|
|
55830
|
-
padding: 0 !important; //
|
|
55620
|
+
padding: 0 !important; // stylelint-disable-line declaration-no-important
|
|
55831
55621
|
}
|
|
55832
55622
|
|
|
55833
55623
|
.k-search-panel {
|
|
@@ -55867,6 +55657,7 @@ $kendo-pdf-viewer-icon-text: $kendo-dropzone-icon-text !default;
|
|
|
55867
55657
|
border-style: solid;
|
|
55868
55658
|
border-radius: $kendo-pdf-viewer-search-panel-border-radius;
|
|
55869
55659
|
z-index: 10;
|
|
55660
|
+
cursor: default;
|
|
55870
55661
|
}
|
|
55871
55662
|
|
|
55872
55663
|
// Alias
|
|
@@ -56451,17 +56242,6 @@ $kendo-scrollview-transition-timing-function: ease-in-out !default;
|
|
|
56451
56242
|
}
|
|
56452
56243
|
}
|
|
56453
56244
|
|
|
56454
|
-
.k-rtl,
|
|
56455
|
-
[dir="rtl"] {
|
|
56456
|
-
.k-scrollview-prev,
|
|
56457
|
-
.k-scrollview-next {
|
|
56458
|
-
.k-icon,
|
|
56459
|
-
.k-svg-icon {
|
|
56460
|
-
transform: scaleX(-1);
|
|
56461
|
-
}
|
|
56462
|
-
}
|
|
56463
|
-
}
|
|
56464
|
-
|
|
56465
56245
|
}
|
|
56466
56246
|
|
|
56467
56247
|
|
|
@@ -56805,6 +56585,7 @@ $kendo-treemap-line-height: $kendo-line-height-md !default;
|
|
|
56805
56585
|
|
|
56806
56586
|
|
|
56807
56587
|
// Exported variables
|
|
56588
|
+
// stylelint-disable selector-class-pattern
|
|
56808
56589
|
.k-var--chart-font {
|
|
56809
56590
|
font-size: $kendo-chart-font-size;
|
|
56810
56591
|
}
|
|
@@ -56821,6 +56602,7 @@ $kendo-treemap-line-height: $kendo-line-height-md !default;
|
|
|
56821
56602
|
.k-var--chart-label-font {
|
|
56822
56603
|
font-size: $kendo-chart-label-font-size;
|
|
56823
56604
|
}
|
|
56605
|
+
// stylelint-enable selector-class-pattern
|
|
56824
56606
|
|
|
56825
56607
|
// Elements
|
|
56826
56608
|
.k-chart,
|
|
@@ -57282,6 +57064,7 @@ $kendo-treemap-line-height: $kendo-line-height-md !default;
|
|
|
57282
57064
|
@mixin kendo-dataviz--theme-base() {
|
|
57283
57065
|
|
|
57284
57066
|
// Exported variables
|
|
57067
|
+
// stylelint-disable selector-class-pattern
|
|
57285
57068
|
.k-var--chart-inactive {
|
|
57286
57069
|
background-color: $kendo-chart-inactive;
|
|
57287
57070
|
}
|
|
@@ -57325,6 +57108,7 @@ $kendo-treemap-line-height: $kendo-line-height-md !default;
|
|
|
57325
57108
|
.k-var--chart-error-bars-background {
|
|
57326
57109
|
background-color: $kendo-chart-error-bars-background;
|
|
57327
57110
|
}
|
|
57111
|
+
// stylelint-enable selector-class-pattern
|
|
57328
57112
|
|
|
57329
57113
|
// Elements
|
|
57330
57114
|
.k-chart,
|
|
@@ -58130,7 +57914,7 @@ $kendo-signature-maximized-width: 750px !default;
|
|
|
58130
57914
|
$kendo-signature-maximized-height: 252px !default;
|
|
58131
57915
|
|
|
58132
57916
|
$kendo-signature-padding-x: k-map-get( $kendo-spacing, 1 ) !default;
|
|
58133
|
-
$kendo-signature-sm-padding-x: k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
57917
|
+
$kendo-signature-sm-padding-x: k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
58134
57918
|
$kendo-signature-md-padding-x: $kendo-signature-padding-x !default;
|
|
58135
57919
|
$kendo-signature-lg-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
|
|
58136
57920
|
|