@progress/kendo-theme-bootstrap 6.4.0-dev.3 → 6.4.0-dev.5
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 +142 -280
- package/dist/all.scss +309 -537
- package/dist/meta/sassdoc-data.json +522 -522
- package/dist/meta/sassdoc-raw-data.json +253 -253
- package/dist/meta/variables.json +9 -1
- package/dist/meta/variables.scss +1 -1
- package/lib/swatches/bootstrap-3-dark.json +1 -1
- package/lib/swatches/bootstrap-3.json +1 -1
- package/lib/swatches/bootstrap-4-dark.json +1 -1
- package/lib/swatches/bootstrap-4.json +1 -1
- package/lib/swatches/bootstrap-dataviz-v4.json +1 -1
- package/lib/swatches/bootstrap-main-dark.json +1 -1
- package/lib/swatches/bootstrap-main.json +1 -1
- package/lib/swatches/bootstrap-nordic.json +1 -1
- package/lib/swatches/bootstrap-turquoise-dark.json +1 -1
- package/lib/swatches/bootstrap-turquoise.json +1 -1
- package/lib/swatches/bootstrap-urban.json +1 -1
- package/lib/swatches/bootstrap-vintage.json +1 -1
- package/package.json +5 -5
- package/scss/_variables.scss +0 -1
- package/scss/button/_variables.scss +1 -1
- package/scss/checkbox/_variables.scss +1 -1
- package/scss/chip/_variables.scss +1 -1
- package/scss/editor/_variables.scss +1 -1
- package/scss/fab/_theme.scss +2 -6
- package/scss/fab/_variables.scss +1 -1
- package/scss/floating-label/_variables.scss +1 -1
- package/scss/grid/_theme.scss +1 -9
- package/scss/grid/_variables.scss +1 -0
- package/scss/input/_variables.scss +3 -3
- package/scss/list/_variables.scss +1 -1
- package/scss/listbox/_index.scss +0 -1
- package/scss/loader/_layout.scss +2 -2
- package/scss/menu/_variables.scss +1 -1
- package/scss/notification/_variables.scss +0 -1
- package/scss/scheduler/_layout.scss +2 -2
- package/scss/signature/_variables.scss +1 -1
- package/scss/slider/_variables.scss +1 -1
- package/scss/spreadsheet/_theme.scss +0 -1
- package/scss/spreadsheet/_variables.scss +2 -0
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
|
}
|
|
@@ -5870,7 +5863,6 @@ $kendo-auto-bootstrap: true !default;
|
|
|
5870
5863
|
|
|
5871
5864
|
// Spacing
|
|
5872
5865
|
$kendo-spacing: (
|
|
5873
|
-
// sass-lint:disable-block leading-zero
|
|
5874
5866
|
0: 0,
|
|
5875
5867
|
1px: 1px,
|
|
5876
5868
|
0.5: .125rem,
|
|
@@ -6277,8 +6269,7 @@ $kendo-invalid-shadow: 0 0 0 .25rem rgba( $kendo-invalid-border, .25 ) !default;
|
|
|
6277
6269
|
// PDF export icons fix
|
|
6278
6270
|
.kendo-pdf-hide-pseudo-elements::before,
|
|
6279
6271
|
.kendo-pdf-hide-pseudo-elements::after {
|
|
6280
|
-
//
|
|
6281
|
-
display: none !important;
|
|
6272
|
+
display: none !important; // stylelint-disable-line declaration-no-important
|
|
6282
6273
|
}
|
|
6283
6274
|
}
|
|
6284
6275
|
|
|
@@ -6777,9 +6768,8 @@ $kendo-invalid-shadow: 0 0 0 .25rem rgba( $kendo-invalid-border, .25 ) !default;
|
|
|
6777
6768
|
}
|
|
6778
6769
|
|
|
6779
6770
|
&-exit-active {
|
|
6780
|
-
// sass-lint:disable-block no-important
|
|
6781
6771
|
// override any max-height set to element to allow animation
|
|
6782
|
-
max-height: 0 !important;
|
|
6772
|
+
max-height: 0 !important; // stylelint-disable-line declaration-no-important
|
|
6783
6773
|
transition: max-height 300ms ease-in-out;
|
|
6784
6774
|
}
|
|
6785
6775
|
}
|
|
@@ -6796,9 +6786,8 @@ $kendo-invalid-shadow: 0 0 0 .25rem rgba( $kendo-invalid-border, .25 ) !default;
|
|
|
6796
6786
|
}
|
|
6797
6787
|
|
|
6798
6788
|
&-exit-active {
|
|
6799
|
-
// sass-lint:disable-block no-important
|
|
6800
6789
|
// override any max-height set to element to allow animation
|
|
6801
|
-
max-width: 0 !important;
|
|
6790
|
+
max-width: 0 !important; // stylelint-disable-line declaration-no-important
|
|
6802
6791
|
transition: max-width 300ms ease-in-out;
|
|
6803
6792
|
}
|
|
6804
6793
|
}
|
|
@@ -6810,7 +6799,7 @@ $kendo-invalid-shadow: 0 0 0 .25rem rgba( $kendo-invalid-border, .25 ) !default;
|
|
|
6810
6799
|
|
|
6811
6800
|
.k-fx-end .k-fx-next,
|
|
6812
6801
|
.k-fx-end .k-fx-current {
|
|
6813
|
-
transition: all $fx-duration ease-out;
|
|
6802
|
+
transition: all $fx-duration ease-out;
|
|
6814
6803
|
}
|
|
6815
6804
|
|
|
6816
6805
|
.k-fx {
|
|
@@ -6827,8 +6816,7 @@ $kendo-invalid-shadow: 0 0 0 .25rem rgba( $kendo-invalid-border, .25 ) !default;
|
|
|
6827
6816
|
|
|
6828
6817
|
.k-fx-hidden,
|
|
6829
6818
|
.k-fx-hidden * {
|
|
6830
|
-
//
|
|
6831
|
-
visibility: hidden !important;
|
|
6819
|
+
visibility: hidden !important; // stylelint-disable-line declaration-no-important
|
|
6832
6820
|
}
|
|
6833
6821
|
|
|
6834
6822
|
.k-fx-reverse {
|
|
@@ -6842,8 +6830,8 @@ $kendo-invalid-shadow: 0 0 0 .25rem rgba( $kendo-invalid-border, .25 ) !default;
|
|
|
6842
6830
|
}
|
|
6843
6831
|
|
|
6844
6832
|
// Zoom
|
|
6833
|
+
// stylelint-disable declaration-no-important
|
|
6845
6834
|
.k-fx-zoom {
|
|
6846
|
-
// sass-lint:disable-block no-important
|
|
6847
6835
|
&.k-fx-start .k-fx-next {
|
|
6848
6836
|
transform: scale(0) !important;
|
|
6849
6837
|
}
|
|
@@ -6867,6 +6855,7 @@ $kendo-invalid-shadow: 0 0 0 .25rem rgba( $kendo-invalid-border, .25 ) !default;
|
|
|
6867
6855
|
}
|
|
6868
6856
|
}
|
|
6869
6857
|
}
|
|
6858
|
+
// stylelint-enable declaration-no-important
|
|
6870
6859
|
|
|
6871
6860
|
// Fade
|
|
6872
6861
|
.k-fx-fade {
|
|
@@ -6905,7 +6894,7 @@ $kendo-invalid-shadow: 0 0 0 .25rem rgba( $kendo-invalid-border, .25 ) !default;
|
|
|
6905
6894
|
&.k-fx-end .k-fx-current .km-content,
|
|
6906
6895
|
&.k-fx-end .k-fx-current .km-header,
|
|
6907
6896
|
&.k-fx-end .k-fx-current .km-footer {
|
|
6908
|
-
transition: all $fx-duration ease-out;
|
|
6897
|
+
transition: all $fx-duration ease-out;
|
|
6909
6898
|
}
|
|
6910
6899
|
|
|
6911
6900
|
// left
|
|
@@ -7379,7 +7368,6 @@ $kendo-theme-colors: () !default;
|
|
|
7379
7368
|
$kendo-font-sizes: () !default;
|
|
7380
7369
|
|
|
7381
7370
|
$kendo-spacing: (
|
|
7382
|
-
// sass-lint:disable-block leading-zero
|
|
7383
7371
|
0: 0,
|
|
7384
7372
|
1px: 1px,
|
|
7385
7373
|
0.5: .125rem,
|
|
@@ -7417,7 +7405,6 @@ $kendo-spacing: (
|
|
|
7417
7405
|
) !default;
|
|
7418
7406
|
|
|
7419
7407
|
$kendo-sizing: k-map-merge( $kendo-spacing, (
|
|
7420
|
-
// sass-lint:disable-block indentation
|
|
7421
7408
|
"auto": auto,
|
|
7422
7409
|
"1/2": 50%,
|
|
7423
7410
|
"1/3": 33.333333%,
|
|
@@ -7460,8 +7447,6 @@ $kendo-border-radii: (
|
|
|
7460
7447
|
full: 9999px
|
|
7461
7448
|
) !default;
|
|
7462
7449
|
|
|
7463
|
-
//
|
|
7464
|
-
|
|
7465
7450
|
$kendo-utils: (
|
|
7466
7451
|
|
|
7467
7452
|
// Accessibility
|
|
@@ -7554,7 +7539,6 @@ $kendo-utils: (
|
|
|
7554
7539
|
),
|
|
7555
7540
|
"overscroll": (),
|
|
7556
7541
|
"placement": k-map-merge( $kendo-spacing, (
|
|
7557
|
-
// sass-lint:disable-block indentation
|
|
7558
7542
|
-1: -1px
|
|
7559
7543
|
)),
|
|
7560
7544
|
"position": (
|
|
@@ -7827,14 +7811,13 @@ $kendo-utils: (
|
|
|
7827
7811
|
fr: minmax( 0, 1fr ),
|
|
7828
7812
|
),
|
|
7829
7813
|
"gap": k-map-merge( $kendo-spacing, (
|
|
7830
|
-
// sass-lint:disable-block indentation
|
|
7831
7814
|
// TODO: remove this extension once we fix docs
|
|
7832
7815
|
xs: k-map-get( $kendo-spacing, 1 ),
|
|
7833
7816
|
sm: k-map-get( $kendo-spacing, 2 ),
|
|
7834
7817
|
md: k-map-get( $kendo-spacing, 3 ),
|
|
7835
7818
|
lg: k-map-get( $kendo-spacing, 4 ),
|
|
7836
7819
|
xl: k-map-get( $kendo-spacing, 6 ),
|
|
7837
|
-
thin: k-map-get( $kendo-spacing, 0.5 ),
|
|
7820
|
+
thin: k-map-get( $kendo-spacing, 0.5 ),
|
|
7838
7821
|
hair: k-map-get( $kendo-spacing, 1px )
|
|
7839
7822
|
)),
|
|
7840
7823
|
"align-content": (
|
|
@@ -7971,33 +7954,30 @@ $kendo-utils: (
|
|
|
7971
7954
|
// Spacing
|
|
7972
7955
|
"margin": k-map-merge( $kendo-spacing,
|
|
7973
7956
|
k-map-negate( $kendo-spacing), (
|
|
7974
|
-
// sass-lint:disable-block indentation
|
|
7975
7957
|
// TODO: remove this extension once we fix docs
|
|
7976
7958
|
xs: k-map-get( $kendo-spacing, 1 ),
|
|
7977
7959
|
sm: k-map-get( $kendo-spacing, 2 ),
|
|
7978
7960
|
md: k-map-get( $kendo-spacing, 3 ),
|
|
7979
7961
|
lg: k-map-get( $kendo-spacing, 4 ),
|
|
7980
7962
|
xl: k-map-get( $kendo-spacing, 6 ),
|
|
7981
|
-
thin: k-map-get( $kendo-spacing, 0.5 ),
|
|
7963
|
+
thin: k-map-get( $kendo-spacing, 0.5 ),
|
|
7982
7964
|
hair: k-map-get( $kendo-spacing, 1px ),
|
|
7983
7965
|
auto: auto
|
|
7984
7966
|
)),
|
|
7985
7967
|
"padding": k-map-merge( $kendo-spacing, (
|
|
7986
|
-
// sass-lint:disable-block indentation
|
|
7987
7968
|
// TODO: remove this extension once we fix docs
|
|
7988
7969
|
xs: k-map-get( $kendo-spacing, 1 ),
|
|
7989
7970
|
sm: k-map-get( $kendo-spacing, 2 ),
|
|
7990
7971
|
md: k-map-get( $kendo-spacing, 3 ),
|
|
7991
7972
|
lg: k-map-get( $kendo-spacing, 4 ),
|
|
7992
7973
|
xl: k-map-get( $kendo-spacing, 6 ),
|
|
7993
|
-
thin: k-map-get( $kendo-spacing, 0.5 ),
|
|
7974
|
+
thin: k-map-get( $kendo-spacing, 0.5 ),
|
|
7994
7975
|
hair: k-map-get( $kendo-spacing, 1px )
|
|
7995
7976
|
)),
|
|
7996
7977
|
"space-between": (),
|
|
7997
7978
|
|
|
7998
7979
|
// Sizing
|
|
7999
7980
|
"width": k-map-merge( $kendo-sizing, (
|
|
8000
|
-
// sass-lint:disable-block indentation
|
|
8001
7981
|
screen: 100vw
|
|
8002
7982
|
)),
|
|
8003
7983
|
"min-width": (
|
|
@@ -8018,7 +7998,6 @@ $kendo-utils: (
|
|
|
8018
7998
|
fit: fit-content
|
|
8019
7999
|
),
|
|
8020
8000
|
"height": k-map-merge( $kendo-sizing, (
|
|
8021
|
-
// sass-lint:disable-block indentation
|
|
8022
8001
|
screen: 100vh
|
|
8023
8002
|
)),
|
|
8024
8003
|
"min-height": (
|
|
@@ -8076,7 +8055,6 @@ $kendo-utils: (
|
|
|
8076
8055
|
end
|
|
8077
8056
|
),
|
|
8078
8057
|
"text-color": k-map-merge( $kendo-theme-colors, (
|
|
8079
|
-
// sass-lint:disable-block indentation
|
|
8080
8058
|
"inherit": inherit,
|
|
8081
8059
|
"current": currentColor,
|
|
8082
8060
|
"transparent": transparent,
|
|
@@ -8132,7 +8110,6 @@ $kendo-utils: (
|
|
|
8132
8110
|
text: text
|
|
8133
8111
|
),
|
|
8134
8112
|
"background-color": k-map-merge( $kendo-theme-colors, (
|
|
8135
|
-
// sass-lint:disable-block indentation
|
|
8136
8113
|
"inherit": inherit,
|
|
8137
8114
|
"transparent": transparent,
|
|
8138
8115
|
"black": black,
|
|
@@ -8176,7 +8153,6 @@ $kendo-utils: (
|
|
|
8176
8153
|
none
|
|
8177
8154
|
),
|
|
8178
8155
|
"border-color": k-map-merge( $kendo-theme-colors, (
|
|
8179
|
-
// sass-lint:disable-block indentation
|
|
8180
8156
|
"inherit": inherit,
|
|
8181
8157
|
"current": currentColor,
|
|
8182
8158
|
"transparent": transparent,
|
|
@@ -8203,7 +8179,6 @@ $kendo-utils: (
|
|
|
8203
8179
|
none
|
|
8204
8180
|
),
|
|
8205
8181
|
"outline-color": k-map-merge( $kendo-theme-colors, (
|
|
8206
|
-
// sass-lint:disable-block indentation
|
|
8207
8182
|
"inherit": inherit,
|
|
8208
8183
|
"current": currentColor,
|
|
8209
8184
|
"transparent": transparent,
|
|
@@ -8222,7 +8197,6 @@ $kendo-utils: (
|
|
|
8222
8197
|
"box-shadow": (),
|
|
8223
8198
|
"box-shadow-color": (),
|
|
8224
8199
|
"opacity": (
|
|
8225
|
-
// sass-lint:disable-block leading-zero
|
|
8226
8200
|
0: 0,
|
|
8227
8201
|
5: 0.05,
|
|
8228
8202
|
10: 0.1,
|
|
@@ -8261,7 +8235,6 @@ $kendo-utils: (
|
|
|
8261
8235
|
// Transform
|
|
8262
8236
|
"flip": true,
|
|
8263
8237
|
"scale": (
|
|
8264
|
-
// sass-lint:disable-block leading-zero
|
|
8265
8238
|
0: 0,
|
|
8266
8239
|
0.25: .25,
|
|
8267
8240
|
0.5: .5,
|
|
@@ -8445,7 +8418,7 @@ $kendo-utils: (
|
|
|
8445
8418
|
@if $important {
|
|
8446
8419
|
.\!#{$_selector} {
|
|
8447
8420
|
@each $prop in $_props {
|
|
8448
|
-
#{$prop}: if( $_fn, k-meta-call($_fn, $_val), $_val ) !important; //
|
|
8421
|
+
#{$prop}: if( $_fn, k-meta-call($_fn, $_val), $_val ) !important; // stylelint-disable-line declaration-no-important
|
|
8449
8422
|
}
|
|
8450
8423
|
}
|
|
8451
8424
|
}
|
|
@@ -8776,9 +8749,9 @@ $kendo-utils: (
|
|
|
8776
8749
|
// Legacy aliases
|
|
8777
8750
|
@include generate-utils( display, display, $kendo-utils-display );
|
|
8778
8751
|
.#{$kendo-prefix}d-flex-row { @extend .#{$kendo-prefix}d-flex, .#{$kendo-prefix}flex-row !optional; }
|
|
8779
|
-
.\!#{$kendo-prefix}d-flex-row { @extend .\!#{$kendo-prefix}d-flex, .\!#{$kendo-prefix}flex-row !optional; }
|
|
8752
|
+
.\!#{$kendo-prefix}d-flex-row { @extend .\!#{$kendo-prefix}d-flex, .\!#{$kendo-prefix}flex-row !optional; }
|
|
8780
8753
|
.#{$kendo-prefix}d-flex-col { @extend .#{$kendo-prefix}d-flex, .#{$kendo-prefix}flex-col !optional; }
|
|
8781
|
-
.\!#{$kendo-prefix}d-flex-col { @extend .\!#{$kendo-prefix}d-flex, .\!#{$kendo-prefix}flex-row !optional; }
|
|
8754
|
+
.\!#{$kendo-prefix}d-flex-col { @extend .\!#{$kendo-prefix}d-flex, .\!#{$kendo-prefix}flex-row !optional; }
|
|
8782
8755
|
|
|
8783
8756
|
}
|
|
8784
8757
|
|
|
@@ -9125,7 +9098,7 @@ $kendo-utils: (
|
|
|
9125
9098
|
// placement length utility classes
|
|
9126
9099
|
@each $side in (top, right, bottom, left) {
|
|
9127
9100
|
.#{$kendo-prefix}#{$side},
|
|
9128
|
-
.#{$kendo-prefix}pos-#{$side} { #{$side}: 0; }
|
|
9101
|
+
.#{$kendo-prefix}pos-#{$side} { #{$side}: 0; }
|
|
9129
9102
|
}
|
|
9130
9103
|
|
|
9131
9104
|
// Inset utility classes
|
|
@@ -10130,8 +10103,8 @@ $kendo-utils: (
|
|
|
10130
10103
|
|
|
10131
10104
|
// Legacy aliases
|
|
10132
10105
|
@include generate-utils( colspan, grid-column, $kendo-utils-grid-column-span );
|
|
10133
|
-
.#{$kendo-prefix}colspan-all { @extend .#{$kendo-prefix}colspan-full !optional; }
|
|
10134
|
-
.\!#{$kendo-prefix}colspan-all { @extend .\!#{$kendo-prefix}colspan-full !optional; }
|
|
10106
|
+
.#{$kendo-prefix}colspan-all { @extend .#{$kendo-prefix}colspan-full !optional; }
|
|
10107
|
+
.\!#{$kendo-prefix}colspan-all { @extend .\!#{$kendo-prefix}colspan-full !optional; }
|
|
10135
10108
|
|
|
10136
10109
|
}
|
|
10137
10110
|
|
|
@@ -10174,8 +10147,8 @@ $kendo-utils: (
|
|
|
10174
10147
|
|
|
10175
10148
|
// Legacy aliases
|
|
10176
10149
|
@include generate-utils( rowspan, grid-row, $kendo-utils-grid-row-span );
|
|
10177
|
-
.#{$kendo-prefix}rowspan-all { @extend .#{$kendo-prefix}rowspan-full !optional; }
|
|
10178
|
-
.\!#{$kendo-prefix}rowspan-all { @extend .\!#{$kendo-prefix}rowspan-full !optional; }
|
|
10150
|
+
.#{$kendo-prefix}rowspan-all { @extend .#{$kendo-prefix}rowspan-full !optional; }
|
|
10151
|
+
.\!#{$kendo-prefix}rowspan-all { @extend .\!#{$kendo-prefix}rowspan-full !optional; }
|
|
10179
10152
|
|
|
10180
10153
|
}
|
|
10181
10154
|
|
|
@@ -10324,7 +10297,7 @@ $kendo-utils: (
|
|
|
10324
10297
|
|
|
10325
10298
|
// Custom justify-content classes
|
|
10326
10299
|
.#{$kendo-prefix}justify-content-stretch > * { flex: 1 0 0%; }
|
|
10327
|
-
.\!.#{$kendo-prefix}justify-content-stretch > * { flex: 1 0 0% !important; } //
|
|
10300
|
+
.\!.#{$kendo-prefix}justify-content-stretch > * { flex: 1 0 0% !important; } // stylelint-disable-line declaration-no-important
|
|
10328
10301
|
|
|
10329
10302
|
}
|
|
10330
10303
|
|
|
@@ -12576,9 +12549,9 @@ $kendo-utils: (
|
|
|
12576
12549
|
text-overflow: ellipsis;
|
|
12577
12550
|
}
|
|
12578
12551
|
.\!#{$kendo-prefix}text-truncate {
|
|
12579
|
-
white-space: nowrap !important; //
|
|
12580
|
-
overflow: hidden !important; //
|
|
12581
|
-
text-overflow: ellipsis !important; //
|
|
12552
|
+
white-space: nowrap !important; // stylelint-disable-line declaration-no-important
|
|
12553
|
+
overflow: hidden !important; // stylelint-disable-line declaration-no-important
|
|
12554
|
+
text-overflow: ellipsis !important; // stylelint-disable-line declaration-no-important
|
|
12582
12555
|
}
|
|
12583
12556
|
|
|
12584
12557
|
// Legacy aliases
|
|
@@ -14138,11 +14111,11 @@ $kendo-utils: (
|
|
|
14138
14111
|
$kendo-utils-flip: k-map-get( $kendo-utils, "flip" ) !default;
|
|
14139
14112
|
@if $kendo-utils-flip {
|
|
14140
14113
|
.#{$kendo-prefix}flip-h { transform: scaleX( -1 ); }
|
|
14141
|
-
.\!#{$kendo-prefix}flip-h { transform: scaleX( -1 ) !important; } //
|
|
14114
|
+
.\!#{$kendo-prefix}flip-h { transform: scaleX( -1 ) !important; } // stylelint-disable-line declaration-no-important
|
|
14142
14115
|
.#{$kendo-prefix}flip-v { transform: scaleY( -1 ); }
|
|
14143
|
-
.\!#{$kendo-prefix}flip-v { transform: scaleY( -1 ) !important; } //
|
|
14116
|
+
.\!#{$kendo-prefix}flip-v { transform: scaleY( -1 ) !important; } // stylelint-disable-line declaration-no-important
|
|
14144
14117
|
.#{$kendo-prefix}flip-h.#{$kendo-prefix}flip-v { transform: scale( -1, -1 ); }
|
|
14145
|
-
.\!#{$kendo-prefix}flip-h.\!#{$kendo-prefix}flip-v { transform: scale( -1, -1 ) !important; } //
|
|
14118
|
+
.\!#{$kendo-prefix}flip-h.\!#{$kendo-prefix}flip-v { transform: scale( -1, -1 ) !important; } // stylelint-disable-line declaration-no-important
|
|
14146
14119
|
|
|
14147
14120
|
// Legacy aliases
|
|
14148
14121
|
.#{$kendo-prefix}flip-x { @extend .#{$kendo-prefix}flip-h !optional; }
|
|
@@ -14267,11 +14240,11 @@ $kendo-utils: (
|
|
|
14267
14240
|
/// @group transform
|
|
14268
14241
|
/// @contextType css
|
|
14269
14242
|
|
|
14270
|
-
//
|
|
14243
|
+
// stylelint-disable scss/at-function-pattern
|
|
14271
14244
|
@function __rotate( $val ) {
|
|
14272
14245
|
@return rotate( $val );
|
|
14273
14246
|
}
|
|
14274
|
-
//
|
|
14247
|
+
// stylelint-enable scss/at-function-pattern
|
|
14275
14248
|
|
|
14276
14249
|
@mixin kendo-utils--transform--rotate() {
|
|
14277
14250
|
|
|
@@ -14301,7 +14274,7 @@ $kendo-utils: (
|
|
|
14301
14274
|
/// @group transform
|
|
14302
14275
|
/// @contextType css
|
|
14303
14276
|
|
|
14304
|
-
//
|
|
14277
|
+
// stylelint-disable scss/at-function-pattern
|
|
14305
14278
|
@function __scale( $val ) {
|
|
14306
14279
|
@return scale( $val );
|
|
14307
14280
|
}
|
|
@@ -14311,7 +14284,7 @@ $kendo-utils: (
|
|
|
14311
14284
|
@function __scale-y( $val ) {
|
|
14312
14285
|
@return scaleY( $val );
|
|
14313
14286
|
}
|
|
14314
|
-
//
|
|
14287
|
+
// stylelint-enable scss/at-function-pattern
|
|
14315
14288
|
|
|
14316
14289
|
@mixin kendo-utils--transform--scale() {
|
|
14317
14290
|
|
|
@@ -14349,14 +14322,14 @@ $kendo-utils: (
|
|
|
14349
14322
|
/// @group skew
|
|
14350
14323
|
/// @contextType css
|
|
14351
14324
|
|
|
14352
|
-
//
|
|
14325
|
+
// stylelint-disable scss/at-function-pattern
|
|
14353
14326
|
@function __skew-x( $val ) {
|
|
14354
14327
|
@return skewX( $val );
|
|
14355
14328
|
}
|
|
14356
14329
|
@function __skew-y( $val ) {
|
|
14357
14330
|
@return skewY( $val );
|
|
14358
14331
|
}
|
|
14359
|
-
//
|
|
14332
|
+
// stylelint-enable scss/at-function-pattern
|
|
14360
14333
|
|
|
14361
14334
|
@mixin kendo-utils--transform--skew() {
|
|
14362
14335
|
|
|
@@ -14423,7 +14396,7 @@ $kendo-utils: (
|
|
|
14423
14396
|
/// @group transform
|
|
14424
14397
|
/// @contextType css
|
|
14425
14398
|
|
|
14426
|
-
//
|
|
14399
|
+
// stylelint-disable scss/at-function-pattern
|
|
14427
14400
|
@function __translate( $val ) {
|
|
14428
14401
|
@return translate( $val );
|
|
14429
14402
|
}
|
|
@@ -14433,7 +14406,7 @@ $kendo-utils: (
|
|
|
14433
14406
|
@function __translate-y( $val ) {
|
|
14434
14407
|
@return translateY( $val );
|
|
14435
14408
|
}
|
|
14436
|
-
//
|
|
14409
|
+
// stylelint-enable scss/at-function-pattern
|
|
14437
14410
|
|
|
14438
14411
|
@mixin kendo-utils--transform--translate() {
|
|
14439
14412
|
|
|
@@ -15208,7 +15181,7 @@ $kendo-utils: (
|
|
|
15208
15181
|
@mixin kendo-utils--svg--stroke() {
|
|
15209
15182
|
|
|
15210
15183
|
// stroke utility classes
|
|
15211
|
-
$kendo-utils-stroke: k-map-get( $kendo-utils, "
|
|
15184
|
+
$kendo-utils-stroke: k-map-get( $kendo-utils, "fill-stroke" ) !default;
|
|
15212
15185
|
@include generate-utils( stroke, stroke, $kendo-utils-stroke );
|
|
15213
15186
|
|
|
15214
15187
|
}
|
|
@@ -16939,6 +16912,10 @@ $ki-rotate-map: (
|
|
|
16939
16912
|
right: 0;
|
|
16940
16913
|
margin: 0 -.5em -.5em 0;
|
|
16941
16914
|
}
|
|
16915
|
+
.k-svg-icon.k-icon-modifier {
|
|
16916
|
+
width: 1em;
|
|
16917
|
+
height: 1em;
|
|
16918
|
+
}
|
|
16942
16919
|
|
|
16943
16920
|
.k-i-none::before {
|
|
16944
16921
|
content: "";
|
|
@@ -16950,19 +16927,6 @@ $ki-rotate-map: (
|
|
|
16950
16927
|
cursor: pointer;
|
|
16951
16928
|
}
|
|
16952
16929
|
|
|
16953
|
-
// RTL icons
|
|
16954
|
-
.k-rtl,
|
|
16955
|
-
[dir="rtl"] {
|
|
16956
|
-
.k-i-indent-increase,
|
|
16957
|
-
.k-i-indent-decrease,
|
|
16958
|
-
.k-i-caret-alt-right,
|
|
16959
|
-
.k-i-caret-alt-left,
|
|
16960
|
-
.k-svg-i-caret-alt-right,
|
|
16961
|
-
.k-svg-i-caret-alt-left {
|
|
16962
|
-
transform: scaleX(-1);
|
|
16963
|
-
}
|
|
16964
|
-
}
|
|
16965
|
-
|
|
16966
16930
|
.k-sprite {
|
|
16967
16931
|
display: inline-block;
|
|
16968
16932
|
width: 16px;
|
|
@@ -17548,7 +17512,7 @@ $kendo-list-lg-group-item-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
|
|
|
17548
17512
|
/// The vertical padding of the List group items, when no size is set.
|
|
17549
17513
|
/// @group list
|
|
17550
17514
|
$kendo-list-group-item-padding-y: null !default;
|
|
17551
|
-
$kendo-list-sm-group-item-padding-y: k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
17515
|
+
$kendo-list-sm-group-item-padding-y: k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
17552
17516
|
$kendo-list-md-group-item-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
17553
17517
|
$kendo-list-lg-group-item-padding-y: k-map-get( $kendo-spacing, 1.5 ) !default;
|
|
17554
17518
|
|
|
@@ -17718,7 +17682,7 @@ $kendo-checkbox-border-width: 1px !default;
|
|
|
17718
17682
|
/// The size of a small CheckBox.
|
|
17719
17683
|
/// @group checkbox
|
|
17720
17684
|
$kendo-checkbox-sm-size: k-map-get( $kendo-spacing, 3 ) !default;
|
|
17721
|
-
///The size of a medium CheckBox.
|
|
17685
|
+
/// The size of a medium CheckBox.
|
|
17722
17686
|
/// @group checkbox
|
|
17723
17687
|
$kendo-checkbox-md-size: k-map-get( $kendo-spacing, 4 ) !default;
|
|
17724
17688
|
/// The size of a large CheckBox.
|
|
@@ -18016,7 +17980,7 @@ $kendo-checkbox-ripple-opacity: .25 !default;
|
|
|
18016
17980
|
|
|
18017
17981
|
.k-ripple {
|
|
18018
17982
|
// Hide ripple temporarily
|
|
18019
|
-
visibility: hidden !important; //
|
|
17983
|
+
visibility: hidden !important; // stylelint-disable-line declaration-no-important
|
|
18020
17984
|
}
|
|
18021
17985
|
}
|
|
18022
17986
|
.k-checkbox + .k-label,
|
|
@@ -18030,7 +17994,7 @@ $kendo-checkbox-ripple-opacity: .25 !default;
|
|
|
18030
17994
|
|
|
18031
17995
|
// Empty label
|
|
18032
17996
|
.k-checkbox-label:empty {
|
|
18033
|
-
display: none !important; //
|
|
17997
|
+
display: none !important; // stylelint-disable-line declaration-no-important
|
|
18034
17998
|
}
|
|
18035
17999
|
.k-checkbox-label.k-no-text {
|
|
18036
18000
|
min-width: 1px;
|
|
@@ -18085,7 +18049,7 @@ $kendo-checkbox-ripple-opacity: .25 !default;
|
|
|
18085
18049
|
|
|
18086
18050
|
.k-checkbox:focus,
|
|
18087
18051
|
.k-checkbox.k-focus {
|
|
18088
|
-
box-shadow: none !important; //
|
|
18052
|
+
box-shadow: none !important; // stylelint-disable-line declaration-no-important
|
|
18089
18053
|
}
|
|
18090
18054
|
|
|
18091
18055
|
.k-checkbox:disabled::after,
|
|
@@ -18147,7 +18111,7 @@ $kendo-checkbox-ripple-opacity: .25 !default;
|
|
|
18147
18111
|
// #endregion
|
|
18148
18112
|
// #region @import "./_theme.scss"; -> scss/checkbox/_theme.scss
|
|
18149
18113
|
// #region @import "@progress/kendo-theme-default/scss/checkbox/_theme.scss"; -> node_modules/@progress/kendo-theme-default/scss/checkbox/_theme.scss
|
|
18150
|
-
@mixin kendo-checkbox--theme-base
|
|
18114
|
+
@mixin kendo-checkbox--theme-base() {
|
|
18151
18115
|
|
|
18152
18116
|
// Checkbox
|
|
18153
18117
|
.k-checkbox {
|
|
@@ -18340,7 +18304,7 @@ $kendo-checkbox-ripple-opacity: .25 !default;
|
|
|
18340
18304
|
padding-block: $kendo-list-header-padding-y;
|
|
18341
18305
|
padding-inline: $kendo-list-header-padding-x;
|
|
18342
18306
|
border-width: 0;
|
|
18343
|
-
border-width: $kendo-list-header-border-width;
|
|
18307
|
+
border-width: $kendo-list-header-border-width;
|
|
18344
18308
|
border-style: solid;
|
|
18345
18309
|
font-size: $kendo-list-header-font-size;
|
|
18346
18310
|
line-height: $kendo-list-header-line-height;
|
|
@@ -18425,7 +18389,7 @@ $kendo-checkbox-ripple-opacity: .25 !default;
|
|
|
18425
18389
|
padding-block: $kendo-list-group-item-padding-y;
|
|
18426
18390
|
padding-inline: $kendo-list-group-item-padding-x;
|
|
18427
18391
|
border-width: 0;
|
|
18428
|
-
border-width: $kendo-list-group-item-border-width;
|
|
18392
|
+
border-width: $kendo-list-group-item-border-width;
|
|
18429
18393
|
border-style: solid;
|
|
18430
18394
|
font-size: $kendo-list-group-item-font-size;
|
|
18431
18395
|
line-height: $kendo-list-group-item-line-height;
|
|
@@ -18903,11 +18867,6 @@ $kendo-listgroup-item-border-width: $kendo-listgroup-border-width !default;
|
|
|
18903
18867
|
> .k-select {
|
|
18904
18868
|
right: auto;
|
|
18905
18869
|
left: 0;
|
|
18906
|
-
|
|
18907
|
-
.k-icon,
|
|
18908
|
-
.k-svg-icon {
|
|
18909
|
-
transform: scaleX(-1);
|
|
18910
|
-
}
|
|
18911
18870
|
}
|
|
18912
18871
|
}
|
|
18913
18872
|
}
|
|
@@ -18923,11 +18882,6 @@ $kendo-listgroup-item-border-width: $kendo-listgroup-border-width !default;
|
|
|
18923
18882
|
margin-left: -$kendo-listgroup-item-padding-x;
|
|
18924
18883
|
border-right-width: 1px;
|
|
18925
18884
|
border-left-width: 0;
|
|
18926
|
-
|
|
18927
|
-
.k-icon,
|
|
18928
|
-
.k-svg-icon {
|
|
18929
|
-
transform: scaleX(-1);
|
|
18930
|
-
}
|
|
18931
18885
|
}
|
|
18932
18886
|
}
|
|
18933
18887
|
}
|
|
@@ -19706,7 +19660,7 @@ $kendo-table-selected-border: null !default;
|
|
|
19706
19660
|
// Table header
|
|
19707
19661
|
.k-table-header {
|
|
19708
19662
|
padding-inline-end: var(--kendo-scrollbar-width);
|
|
19709
|
-
border-width: 0 0 1px
|
|
19663
|
+
border-width: 0 0 1px;
|
|
19710
19664
|
border-style: solid;
|
|
19711
19665
|
box-sizing: border-box;
|
|
19712
19666
|
|
|
@@ -19792,18 +19746,19 @@ $kendo-table-selected-border: null !default;
|
|
|
19792
19746
|
}
|
|
19793
19747
|
}
|
|
19794
19748
|
|
|
19749
|
+
// stylelint-disable declaration-no-important
|
|
19795
19750
|
.k-table-spacer-td {
|
|
19796
|
-
padding: 0 !important;
|
|
19797
|
-
width: 0 !important;
|
|
19798
|
-
border-left-width: 0 !important;
|
|
19799
|
-
border-right-width: 0 !important;
|
|
19751
|
+
padding: 0 !important;
|
|
19752
|
+
width: 0 !important;
|
|
19753
|
+
border-left-width: 0 !important;
|
|
19754
|
+
border-right-width: 0 !important;
|
|
19800
19755
|
}
|
|
19801
19756
|
.k-table-group-td {
|
|
19802
|
-
padding: 0 !important;
|
|
19803
|
-
width: 0 !important;
|
|
19804
|
-
border-left-width: 0 !important;
|
|
19805
|
-
border-right-width: 0 !important;
|
|
19806
|
-
overflow: visible;
|
|
19757
|
+
padding: 0 !important;
|
|
19758
|
+
width: 0 !important;
|
|
19759
|
+
border-left-width: 0 !important;
|
|
19760
|
+
border-right-width: 0 !important;
|
|
19761
|
+
overflow: visible;
|
|
19807
19762
|
|
|
19808
19763
|
> span {
|
|
19809
19764
|
font-size: .75em;
|
|
@@ -19812,6 +19767,7 @@ $kendo-table-selected-border: null !default;
|
|
|
19812
19767
|
right: 0;
|
|
19813
19768
|
}
|
|
19814
19769
|
}
|
|
19770
|
+
// stylelint-enable declaration-no-important
|
|
19815
19771
|
}
|
|
19816
19772
|
|
|
19817
19773
|
|
|
@@ -19837,7 +19793,7 @@ $kendo-table-selected-border: null !default;
|
|
|
19837
19793
|
// Table footer
|
|
19838
19794
|
.k-table-footer {
|
|
19839
19795
|
padding-inline-end: var(--kendo-scrollbar-width);
|
|
19840
|
-
border-width: 1px 0 0
|
|
19796
|
+
border-width: 1px 0 0;
|
|
19841
19797
|
border-style: solid;
|
|
19842
19798
|
box-sizing: border-box;
|
|
19843
19799
|
|
|
@@ -20829,7 +20785,7 @@ $kendo-button-sm-line-height: k-math-div( 20, 14 ) !default;
|
|
|
20829
20785
|
/// @group button
|
|
20830
20786
|
$kendo-button-md-line-height: $kendo-line-height-md !default;
|
|
20831
20787
|
/// The line height used along with the $kendo-font-size variable of the large Button.
|
|
20832
|
-
|
|
20788
|
+
/// @group button
|
|
20833
20789
|
$kendo-button-lg-line-height: $kendo-line-height-md !default;
|
|
20834
20790
|
|
|
20835
20791
|
/// The calculated height of the Button.
|
|
@@ -21054,7 +21010,7 @@ $kendo-chip-lg-padding-x: k-map-get( $kendo-spacing, 1 ) !default;
|
|
|
21054
21010
|
$kendo-chip-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
21055
21011
|
/// The vertical padding of the small Chip.
|
|
21056
21012
|
/// @group chip
|
|
21057
|
-
$kendo-chip-sm-padding-y: k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
21013
|
+
$kendo-chip-sm-padding-y: k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
21058
21014
|
/// The vertical padding of the medium Chip.
|
|
21059
21015
|
/// @group chip
|
|
21060
21016
|
$kendo-chip-md-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
@@ -21236,7 +21192,7 @@ $kendo-chip-list-sizes: (
|
|
|
21236
21192
|
}
|
|
21237
21193
|
|
|
21238
21194
|
.k-selected-icon-wrapper {
|
|
21239
|
-
display: none !important; //
|
|
21195
|
+
display: none !important; // stylelint-disable-line declaration-no-important
|
|
21240
21196
|
}
|
|
21241
21197
|
}
|
|
21242
21198
|
|
|
@@ -21380,7 +21336,7 @@ $kendo-chip-list-sizes: (
|
|
|
21380
21336
|
// #endregion
|
|
21381
21337
|
// #region @import "./_theme.scss"; -> scss/chip/_theme.scss
|
|
21382
21338
|
// #region @import "@progress/kendo-theme-default/scss/chip/_theme.scss"; -> node_modules/@progress/kendo-theme-default/scss/chip/_theme.scss
|
|
21383
|
-
@mixin kendo-chip--theme-base
|
|
21339
|
+
@mixin kendo-chip--theme-base() {
|
|
21384
21340
|
|
|
21385
21341
|
// Solid
|
|
21386
21342
|
@each $name, $color in $kendo-chip-theme-colors {
|
|
@@ -21635,8 +21591,7 @@ $kendo-color-preview-transparent-color-image: url("data:image/png;base64,iVBORw0
|
|
|
21635
21591
|
box-sizing: border-box;
|
|
21636
21592
|
border-style: solid;
|
|
21637
21593
|
display: inline-flex;
|
|
21638
|
-
flex-
|
|
21639
|
-
flex-wrap: nowrap;
|
|
21594
|
+
flex-flow: row nowrap;
|
|
21640
21595
|
position: relative;
|
|
21641
21596
|
overflow: hidden;
|
|
21642
21597
|
|
|
@@ -22406,7 +22361,7 @@ $kendo-loading-opacity: .3 !default;
|
|
|
22406
22361
|
content: "";
|
|
22407
22362
|
// See https://github.com/telerik/kendo-themes/issues/1925
|
|
22408
22363
|
border-width: 1px; // TODO: Remove once we drop IE support
|
|
22409
|
-
border-width: clamp( .015em, 1px, 1px );
|
|
22364
|
+
border-width: clamp( .015em, 1px, 1px );
|
|
22410
22365
|
font-size: 4em;
|
|
22411
22366
|
}
|
|
22412
22367
|
|
|
@@ -22454,11 +22409,11 @@ $kendo-loading-opacity: .3 !default;
|
|
|
22454
22409
|
|
|
22455
22410
|
&::before {
|
|
22456
22411
|
border-color: currentColor;
|
|
22457
|
-
border-right-color: transparent !important; //
|
|
22412
|
+
border-right-color: transparent !important; // stylelint-disable-line declaration-no-important
|
|
22458
22413
|
}
|
|
22459
22414
|
|
|
22460
22415
|
&::after {
|
|
22461
|
-
display: none !important; //
|
|
22416
|
+
display: none !important; // stylelint-disable-line declaration-no-important
|
|
22462
22417
|
}
|
|
22463
22418
|
}
|
|
22464
22419
|
|
|
@@ -22489,11 +22444,9 @@ $kendo-loading-opacity: .3 !default;
|
|
|
22489
22444
|
}
|
|
22490
22445
|
|
|
22491
22446
|
.k-loader-container-inner {
|
|
22492
|
-
// sass-lint:disable-block no-important
|
|
22493
|
-
// sass-lint:disable-block class-name-format
|
|
22494
22447
|
.k-text-secondary,
|
|
22495
|
-
.\!k-text-secondary {
|
|
22496
|
-
color: $kendo-loader-secondary-bg !important;
|
|
22448
|
+
.\!k-text-secondary { // stylelint-disable-line
|
|
22449
|
+
color: $kendo-loader-secondary-bg !important; // stylelint-disable-line declaration-no-important
|
|
22497
22450
|
}
|
|
22498
22451
|
}
|
|
22499
22452
|
|
|
@@ -23026,20 +22979,20 @@ $_kendo-module-meta: (
|
|
|
23026
22979
|
|
|
23027
22980
|
// Flat button
|
|
23028
22981
|
.k-button-flat {
|
|
23029
|
-
border-color: transparent !important; //
|
|
22982
|
+
border-color: transparent !important; // stylelint-disable-line declaration-no-important
|
|
23030
22983
|
color: inherit;
|
|
23031
|
-
background: none !important; //
|
|
23032
|
-
box-shadow: none !important; //
|
|
22984
|
+
background: none !important; // stylelint-disable-line declaration-no-important
|
|
22985
|
+
box-shadow: none !important; // stylelint-disable-line declaration-no-important
|
|
23033
22986
|
|
|
23034
22987
|
// Overlay background
|
|
23035
22988
|
&::before {
|
|
23036
|
-
display: block !important; //
|
|
22989
|
+
display: block !important; // stylelint-disable-line declaration-no-important
|
|
23037
22990
|
}
|
|
23038
22991
|
|
|
23039
22992
|
// Focus ring
|
|
23040
22993
|
&::after {
|
|
23041
22994
|
box-shadow: inset 0 0 0 2px currentColor;
|
|
23042
|
-
display: block !important; //
|
|
22995
|
+
display: block !important; // stylelint-disable-line declaration-no-important
|
|
23043
22996
|
}
|
|
23044
22997
|
|
|
23045
22998
|
&:focus::after,
|
|
@@ -23073,10 +23026,10 @@ $_kendo-module-meta: (
|
|
|
23073
23026
|
|
|
23074
23027
|
// Clear button
|
|
23075
23028
|
.k-button-clear {
|
|
23076
|
-
border-color: transparent !important; //
|
|
23029
|
+
border-color: transparent !important; // stylelint-disable-line declaration-no-important
|
|
23077
23030
|
color: inherit;
|
|
23078
|
-
background: none !important; //
|
|
23079
|
-
box-shadow: none !important; //
|
|
23031
|
+
background: none !important; // stylelint-disable-line declaration-no-important
|
|
23032
|
+
box-shadow: none !important; // stylelint-disable-line declaration-no-important
|
|
23080
23033
|
}
|
|
23081
23034
|
|
|
23082
23035
|
|
|
@@ -23100,7 +23053,7 @@ $_kendo-module-meta: (
|
|
|
23100
23053
|
}
|
|
23101
23054
|
|
|
23102
23055
|
|
|
23103
|
-
.k-button {
|
|
23056
|
+
.k-button { // stylelint-disable-line
|
|
23104
23057
|
|
|
23105
23058
|
&::before {
|
|
23106
23059
|
@extend .k-button-overlay !optional;
|
|
@@ -23149,7 +23102,7 @@ $_kendo-module-meta: (
|
|
|
23149
23102
|
|
|
23150
23103
|
|
|
23151
23104
|
// Button focus ring
|
|
23152
|
-
.k-button {
|
|
23105
|
+
.k-button { // stylelint-disable-line
|
|
23153
23106
|
|
|
23154
23107
|
&::after {
|
|
23155
23108
|
@include border-radius( inherit );
|
|
@@ -23643,7 +23596,7 @@ $kendo-menu-popup-lg-item-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
|
|
|
23643
23596
|
/// Vertical padding of the menu item in popup.
|
|
23644
23597
|
/// @group menu
|
|
23645
23598
|
$kendo-menu-popup-item-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
23646
|
-
$kendo-menu-popup-sm-item-padding-y: k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
23599
|
+
$kendo-menu-popup-sm-item-padding-y: k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
23647
23600
|
$kendo-menu-popup-md-item-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
23648
23601
|
$kendo-menu-popup-lg-item-padding-y: k-map-get( $kendo-spacing, 1.5 ) !default;
|
|
23649
23602
|
|
|
@@ -23808,7 +23761,7 @@ $kendo-menu-popup-item-focus-shadow: $kendo-menu-item-focus-shadow !default;
|
|
|
23808
23761
|
flex-direction: row;
|
|
23809
23762
|
|
|
23810
23763
|
> .k-menu-item + .k-menu-item {
|
|
23811
|
-
margin-
|
|
23764
|
+
margin-inline-start: $kendo-menu-item-spacing;
|
|
23812
23765
|
}
|
|
23813
23766
|
|
|
23814
23767
|
> .k-separator {
|
|
@@ -23833,7 +23786,7 @@ $kendo-menu-popup-item-focus-shadow: $kendo-menu-item-focus-shadow !default;
|
|
|
23833
23786
|
> .k-menu-item > .k-menu-link {
|
|
23834
23787
|
padding-block: $kendo-menu-popup-item-padding-y;
|
|
23835
23788
|
padding-inline: $kendo-menu-popup-item-padding-x;
|
|
23836
|
-
padding-
|
|
23789
|
+
padding-inline-end: $kendo-menu-popup-item-padding-end;
|
|
23837
23790
|
}
|
|
23838
23791
|
|
|
23839
23792
|
> .k-menu-item > .k-menu-link > .k-menu-expand-arrow {
|
|
@@ -23986,7 +23939,7 @@ $kendo-menu-popup-item-focus-shadow: $kendo-menu-item-focus-shadow !default;
|
|
|
23986
23939
|
}
|
|
23987
23940
|
.k-animation-container .k-context-menu.k-menu-horizontal {
|
|
23988
23941
|
// kendo-jquery adds `display: block` via js and we need to override it.
|
|
23989
|
-
display: flex !important; //
|
|
23942
|
+
display: flex !important; // stylelint-disable-line declaration-no-important
|
|
23990
23943
|
flex-wrap: nowrap;
|
|
23991
23944
|
}
|
|
23992
23945
|
.k-context-menu-popup {
|
|
@@ -24025,28 +23978,28 @@ $kendo-menu-popup-item-focus-shadow: $kendo-menu-item-focus-shadow !default;
|
|
|
24025
23978
|
|
|
24026
23979
|
&.k-scroll-left {
|
|
24027
23980
|
top: 0;
|
|
24028
|
-
|
|
23981
|
+
inset-inline-start: 0;
|
|
24029
23982
|
height: 100%;
|
|
24030
23983
|
width: 16px;
|
|
24031
23984
|
border-right-width: 1px;
|
|
24032
23985
|
}
|
|
24033
23986
|
&.k-scroll-right {
|
|
24034
23987
|
top: 0;
|
|
24035
|
-
|
|
23988
|
+
inset-inline-end: 0;
|
|
24036
23989
|
height: 100%;
|
|
24037
23990
|
width: 16px;
|
|
24038
23991
|
border-left-width: 1px;
|
|
24039
23992
|
}
|
|
24040
23993
|
&.k-scroll-up {
|
|
24041
23994
|
top: 0;
|
|
24042
|
-
|
|
23995
|
+
inset-inline-start: 0;
|
|
24043
23996
|
width: 100%;
|
|
24044
23997
|
height: 16px;
|
|
24045
23998
|
border-bottom-width: 1px;
|
|
24046
23999
|
}
|
|
24047
24000
|
&.k-scroll-down {
|
|
24048
24001
|
bottom: 0;
|
|
24049
|
-
|
|
24002
|
+
inset-inline-start: 0;
|
|
24050
24003
|
width: 100%;
|
|
24051
24004
|
height: 16px;
|
|
24052
24005
|
border-top-width: 1px;
|
|
@@ -24054,43 +24007,6 @@ $kendo-menu-popup-item-focus-shadow: $kendo-menu-item-focus-shadow !default;
|
|
|
24054
24007
|
}
|
|
24055
24008
|
}
|
|
24056
24009
|
|
|
24057
|
-
|
|
24058
|
-
// RTL
|
|
24059
|
-
.k-rtl,
|
|
24060
|
-
[dir="rtl"] {
|
|
24061
|
-
|
|
24062
|
-
// Orientation -- horizontal
|
|
24063
|
-
.k-menu-horizontal {
|
|
24064
|
-
|
|
24065
|
-
> .k-menu-item + .k-menu-item {
|
|
24066
|
-
margin-right: $kendo-menu-item-spacing;
|
|
24067
|
-
margin-left: 0;
|
|
24068
|
-
}
|
|
24069
|
-
}
|
|
24070
|
-
|
|
24071
|
-
|
|
24072
|
-
// Orientation -- vertical
|
|
24073
|
-
.k-menu-vertical {
|
|
24074
|
-
|
|
24075
|
-
> .k-menu-item > .k-menu-link {
|
|
24076
|
-
padding-right: $kendo-menu-popup-item-padding-x;
|
|
24077
|
-
padding-left: $kendo-menu-popup-item-padding-end;
|
|
24078
|
-
}
|
|
24079
|
-
}
|
|
24080
|
-
|
|
24081
|
-
|
|
24082
|
-
// Sub menu
|
|
24083
|
-
.k-menu-group {
|
|
24084
|
-
|
|
24085
|
-
.k-menu-link {
|
|
24086
|
-
padding-right: $kendo-menu-popup-item-padding-x;
|
|
24087
|
-
padding-left: $kendo-menu-popup-item-padding-end;
|
|
24088
|
-
}
|
|
24089
|
-
|
|
24090
|
-
}
|
|
24091
|
-
|
|
24092
|
-
}
|
|
24093
|
-
|
|
24094
24010
|
}
|
|
24095
24011
|
|
|
24096
24012
|
|
|
@@ -24563,13 +24479,10 @@ $kendo-toolbar-sizes: (
|
|
|
24563
24479
|
height: $kendo-button-lg-calc-size;
|
|
24564
24480
|
}
|
|
24565
24481
|
|
|
24566
|
-
|
|
24567
|
-
|
|
24568
|
-
// sass-lint:disable class-name-format
|
|
24569
24482
|
.k-floating-toolbar,
|
|
24570
|
-
.editorToolbarWindow.k-window-content {
|
|
24571
|
-
padding-block: $kendo-toolbar-md-padding-y !important; //
|
|
24572
|
-
padding-inline: $kendo-toolbar-md-padding-x !important; //
|
|
24483
|
+
.editorToolbarWindow.k-window-content { // stylelint-disable-line
|
|
24484
|
+
padding-block: $kendo-toolbar-md-padding-y !important; // stylelint-disable-line declaration-no-important
|
|
24485
|
+
padding-inline: $kendo-toolbar-md-padding-x !important; // stylelint-disable-line declaration-no-important
|
|
24573
24486
|
border-width: $kendo-toolbar-border-width;
|
|
24574
24487
|
border-style: solid;
|
|
24575
24488
|
display: flex;
|
|
@@ -24585,14 +24498,14 @@ $kendo-toolbar-sizes: (
|
|
|
24585
24498
|
background: none;
|
|
24586
24499
|
}
|
|
24587
24500
|
}
|
|
24588
|
-
.k-editortoolbar-dragHandle {
|
|
24501
|
+
.k-editortoolbar-dragHandle { // stylelint-disable-line
|
|
24589
24502
|
cursor: move;
|
|
24590
24503
|
display: flex;
|
|
24591
24504
|
align-items: center;
|
|
24592
24505
|
align-self: stretch;
|
|
24593
24506
|
flex-shrink: 0;
|
|
24594
24507
|
}
|
|
24595
|
-
|
|
24508
|
+
|
|
24596
24509
|
|
|
24597
24510
|
|
|
24598
24511
|
// Remove once the Overflow Popup uses
|
|
@@ -24711,9 +24624,8 @@ $kendo-toolbar-sizes: (
|
|
|
24711
24624
|
|
|
24712
24625
|
}
|
|
24713
24626
|
|
|
24714
|
-
// sass-lint:disable-block class-name-format
|
|
24715
24627
|
.k-floating-toolbar,
|
|
24716
|
-
.editorToolbarWindow.k-window-content {
|
|
24628
|
+
.editorToolbarWindow.k-window-content { // stylelint-disable-line
|
|
24717
24629
|
@include fill(
|
|
24718
24630
|
$kendo-toolbar-text,
|
|
24719
24631
|
$kendo-toolbar-bg,
|
|
@@ -25222,10 +25134,10 @@ $kendo-input-clear-value-hover-text: null !default;
|
|
|
25222
25134
|
/// @group input
|
|
25223
25135
|
$kendo-input-clear-value-hover-opacity: 1 !default;
|
|
25224
25136
|
|
|
25225
|
-
///The vertical margin of the clear value icon.
|
|
25137
|
+
/// The vertical margin of the clear value icon.
|
|
25226
25138
|
/// @group input
|
|
25227
|
-
$kendo-input-values-margin-y: k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
25228
|
-
///The horizontal margin of the clear value icon.
|
|
25139
|
+
$kendo-input-values-margin-y: k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
25140
|
+
/// The horizontal margin of the clear value icon.
|
|
25229
25141
|
/// @group input
|
|
25230
25142
|
$kendo-input-values-margin-x: $kendo-input-values-margin-y !default;
|
|
25231
25143
|
|
|
@@ -25744,8 +25656,8 @@ $kendo-form-sizes: (
|
|
|
25744
25656
|
.k-form {
|
|
25745
25657
|
border: 0;
|
|
25746
25658
|
|
|
25747
|
-
.k-label,
|
|
25748
|
-
kendo-label,
|
|
25659
|
+
.k-form-field > .k-label,
|
|
25660
|
+
.k-form-field > kendo-label,
|
|
25749
25661
|
.k-form-label {
|
|
25750
25662
|
margin-bottom: $kendo-form-label-margin-bottom;
|
|
25751
25663
|
display: flex;
|
|
@@ -26697,7 +26609,7 @@ $_kendo-module-meta: (
|
|
|
26697
26609
|
|
|
26698
26610
|
> .k-input,
|
|
26699
26611
|
> .k-picker {
|
|
26700
|
-
border-width: 0 !important; //
|
|
26612
|
+
border-width: 0 !important; // stylelint-disable-line declaration-no-important
|
|
26701
26613
|
color: inherit;
|
|
26702
26614
|
background: none;
|
|
26703
26615
|
font: inherit;
|
|
@@ -26966,8 +26878,8 @@ $_kendo-module-meta: (
|
|
|
26966
26878
|
box-shadow: none;
|
|
26967
26879
|
|
|
26968
26880
|
> .k-button-icon {
|
|
26969
|
-
min-width: auto !important; //
|
|
26970
|
-
// min-height: auto !important; //
|
|
26881
|
+
min-width: auto !important; // stylelint-disable-line declaration-no-important
|
|
26882
|
+
// min-height: auto !important; // stylelint-disable-line declaration-no-important
|
|
26971
26883
|
}
|
|
26972
26884
|
|
|
26973
26885
|
&:focus {
|
|
@@ -27000,8 +26912,8 @@ $_kendo-module-meta: (
|
|
|
27000
26912
|
.k-button-icon {
|
|
27001
26913
|
margin-block: -1em;
|
|
27002
26914
|
margin-inline: 0;
|
|
27003
|
-
min-width: auto !important; //
|
|
27004
|
-
min-height: auto !important; //
|
|
26915
|
+
min-width: auto !important; // stylelint-disable-line declaration-no-important
|
|
26916
|
+
min-height: auto !important; // stylelint-disable-line declaration-no-important
|
|
27005
26917
|
}
|
|
27006
26918
|
}
|
|
27007
26919
|
.k-spinner-increase .k-icon,
|
|
@@ -27044,14 +26956,14 @@ $_kendo-module-meta: (
|
|
|
27044
26956
|
// Fill mode
|
|
27045
26957
|
.k-input-flat,
|
|
27046
26958
|
.k-picker-flat {
|
|
27047
|
-
@include border-bottom-radius( 0 !important ); //
|
|
26959
|
+
@include border-bottom-radius( 0 !important ); // stylelint-disable-line declaration-no-important
|
|
27048
26960
|
border-width: $kendo-input-border-width 0;
|
|
27049
|
-
border-top-color: transparent !important; //
|
|
27050
|
-
background-image: none !important; //
|
|
26961
|
+
border-top-color: transparent !important; // stylelint-disable-line declaration-no-important
|
|
26962
|
+
background-image: none !important; // stylelint-disable-line declaration-no-important
|
|
27051
26963
|
}
|
|
27052
26964
|
|
|
27053
26965
|
.k-input-outline {
|
|
27054
|
-
background: none !important; //
|
|
26966
|
+
background: none !important; // stylelint-disable-line declaration-no-important
|
|
27055
26967
|
}
|
|
27056
26968
|
|
|
27057
26969
|
|
|
@@ -27104,8 +27016,8 @@ $_kendo-module-meta: (
|
|
|
27104
27016
|
}
|
|
27105
27017
|
|
|
27106
27018
|
&.k-icon-picker .k-input-inner {
|
|
27107
|
-
width: calc( #{$_line-height * 1em} );
|
|
27108
|
-
height: calc( #{$_line-height * 1em} );
|
|
27019
|
+
width: calc( #{ $_line-height * 1em } );
|
|
27020
|
+
height: calc( #{ $_line-height * 1em } );
|
|
27109
27021
|
padding: $_padding-y;
|
|
27110
27022
|
box-sizing: content-box;
|
|
27111
27023
|
}
|
|
@@ -27132,11 +27044,11 @@ $_kendo-module-meta: (
|
|
|
27132
27044
|
|
|
27133
27045
|
|
|
27134
27046
|
// This is needed for the textbox container to capture browser autofill
|
|
27135
|
-
@keyframes autoFillStart {
|
|
27047
|
+
@keyframes autoFillStart { // stylelint-disable-line
|
|
27136
27048
|
from {}
|
|
27137
27049
|
to {}
|
|
27138
27050
|
}
|
|
27139
|
-
@keyframes autoFillEnd {
|
|
27051
|
+
@keyframes autoFillEnd { // stylelint-disable-line
|
|
27140
27052
|
from {}
|
|
27141
27053
|
to {}
|
|
27142
27054
|
}
|
|
@@ -27696,7 +27608,7 @@ $_kendo-module-meta: (
|
|
|
27696
27608
|
/// The transformation scale of the Floating Label.
|
|
27697
27609
|
/// @group floating-label
|
|
27698
27610
|
$kendo-floating-label-scale: 1 !default;
|
|
27699
|
-
///The font size of the Floating Label.
|
|
27611
|
+
/// The font size of the Floating Label.
|
|
27700
27612
|
/// @group floating-label
|
|
27701
27613
|
$kendo-floating-label-font-size: $kendo-input-font-size !default;
|
|
27702
27614
|
/// The maximum width of the Floating Label.
|
|
@@ -28454,9 +28366,6 @@ $_kendo-module-meta: (
|
|
|
28454
28366
|
// #region @import "../icons/_index.scss"; -> scss/icons/_index.scss
|
|
28455
28367
|
// File already imported_once. Skipping output.
|
|
28456
28368
|
// #endregion
|
|
28457
|
-
// #region @import "../list/_index.scss"; -> scss/list/_index.scss
|
|
28458
|
-
// File already imported_once. Skipping output.
|
|
28459
|
-
// #endregion
|
|
28460
28369
|
|
|
28461
28370
|
|
|
28462
28371
|
// Component
|
|
@@ -28587,15 +28496,6 @@ $kendo-listbox-drop-hint-width: 1px !default;
|
|
|
28587
28496
|
.k-ghost {
|
|
28588
28497
|
opacity: .5;
|
|
28589
28498
|
}
|
|
28590
|
-
|
|
28591
|
-
.k-rtl &,
|
|
28592
|
-
&[dir="rtl"],
|
|
28593
|
-
[dir="rtl"] & {
|
|
28594
|
-
|
|
28595
|
-
.k-listbox-actions .k-button-icon {
|
|
28596
|
-
transform: scaleX(-1);
|
|
28597
|
-
}
|
|
28598
|
-
}
|
|
28599
28499
|
}
|
|
28600
28500
|
|
|
28601
28501
|
.k-item {
|
|
@@ -28869,7 +28769,7 @@ $kendo-circular-progressbar-scale-stroke: $kendo-progressbar-bg !default;
|
|
|
28869
28769
|
}
|
|
28870
28770
|
|
|
28871
28771
|
> .k-progressbar-value {
|
|
28872
|
-
width: calc( var( --kendo-progressbar-value, 0 ) * 1% );
|
|
28772
|
+
width: calc( var( --kendo-progressbar-value, 0 ) * 1% );
|
|
28873
28773
|
flex-direction: row;
|
|
28874
28774
|
|
|
28875
28775
|
> .k-progress-status-wrap {
|
|
@@ -28914,13 +28814,13 @@ $kendo-circular-progressbar-scale-stroke: $kendo-progressbar-bg !default;
|
|
|
28914
28814
|
}
|
|
28915
28815
|
|
|
28916
28816
|
> .k-progressbar-value {
|
|
28917
|
-
height: calc( var( --kendo-progressbar-value, 0 ) * 1% );
|
|
28817
|
+
height: calc( var( --kendo-progressbar-value, 0 ) * 1% );
|
|
28918
28818
|
flex-direction: column-reverse;
|
|
28919
28819
|
align-self: flex-end;
|
|
28920
28820
|
align-items: flex-end;
|
|
28921
28821
|
|
|
28922
28822
|
> .k-progress-status-wrap {
|
|
28923
|
-
height: calc( 100% * ( 100 / var( --kendo-progressbar-value, 1 ) ) );
|
|
28823
|
+
height: calc( 100% * ( 100 / var( --kendo-progressbar-value, 1 ) ) );
|
|
28924
28824
|
}
|
|
28925
28825
|
}
|
|
28926
28826
|
|
|
@@ -29433,7 +29333,7 @@ $kendo-radio-ripple-opacity: .25 !default;
|
|
|
29433
29333
|
|
|
29434
29334
|
.k-ripple {
|
|
29435
29335
|
// Hide ripple temporarily
|
|
29436
|
-
visibility: hidden !important; //
|
|
29336
|
+
visibility: hidden !important; // stylelint-disable-line declaration-no-important
|
|
29437
29337
|
}
|
|
29438
29338
|
}
|
|
29439
29339
|
.k-radio + .k-label,
|
|
@@ -29447,7 +29347,7 @@ $kendo-radio-ripple-opacity: .25 !default;
|
|
|
29447
29347
|
|
|
29448
29348
|
// Empty label
|
|
29449
29349
|
.k-radio-label:empty {
|
|
29450
|
-
display: none !important; //
|
|
29350
|
+
display: none !important; // stylelint-disable-line declaration-no-important
|
|
29451
29351
|
}
|
|
29452
29352
|
.k-radio-label.k-no-text {
|
|
29453
29353
|
min-width: 1px;
|
|
@@ -29502,7 +29402,7 @@ $kendo-radio-ripple-opacity: .25 !default;
|
|
|
29502
29402
|
|
|
29503
29403
|
.k-radio:focus,
|
|
29504
29404
|
.k-radio.k-focus {
|
|
29505
|
-
box-shadow: none !important; //
|
|
29405
|
+
box-shadow: none !important; // stylelint-disable-line declaration-no-important
|
|
29506
29406
|
}
|
|
29507
29407
|
|
|
29508
29408
|
.k-radio:disabled::after,
|
|
@@ -29772,7 +29672,7 @@ $kendo-slider-draghandle-pressed-text: k-contrast-color( $kendo-color-primary )
|
|
|
29772
29672
|
$kendo-slider-draghandle-pressed-border: k-try-darken( $kendo-color-primary, 12.5% ) !default;
|
|
29773
29673
|
$kendo-slider-draghandle-pressed-gradient: null !default;
|
|
29774
29674
|
|
|
29775
|
-
$kendo-slider-draghandle-focus-shadow:
|
|
29675
|
+
$kendo-slider-draghandle-focus-shadow: 0 0 0 3px rgba( $kendo-color-primary, .5 ) !default;
|
|
29776
29676
|
|
|
29777
29677
|
$kendo-slider-transition-speed: .3s !default;
|
|
29778
29678
|
$kendo-slider-transition-function: ease-out !default;
|
|
@@ -29839,16 +29739,6 @@ $kendo-slider-disabled-opacity: null !default;
|
|
|
29839
29739
|
cursor: default;
|
|
29840
29740
|
}
|
|
29841
29741
|
}
|
|
29842
|
-
|
|
29843
|
-
.k-rtl &,
|
|
29844
|
-
&.k-rtl,
|
|
29845
|
-
[dir="rtl"] &,
|
|
29846
|
-
&[dir="rtl"] {
|
|
29847
|
-
.k-slider-selection {
|
|
29848
|
-
left: auto;
|
|
29849
|
-
right: 0;
|
|
29850
|
-
}
|
|
29851
|
-
}
|
|
29852
29742
|
}
|
|
29853
29743
|
|
|
29854
29744
|
|
|
@@ -29931,36 +29821,13 @@ $kendo-slider-disabled-opacity: null !default;
|
|
|
29931
29821
|
|
|
29932
29822
|
.k-slider-selection {
|
|
29933
29823
|
width: calc( (var(--kendo-slider-end, 0) - var(--kendo-slider-start, 0)) * 1% );
|
|
29934
|
-
|
|
29824
|
+
inset-inline-start: calc( var(--kendo-slider-start, 0) * 1% );
|
|
29935
29825
|
}
|
|
29936
29826
|
.k-draghandle-start {
|
|
29937
|
-
|
|
29827
|
+
inset-inline-start: calc( var(--kendo-slider-start, 0) * 1% );
|
|
29938
29828
|
}
|
|
29939
29829
|
.k-draghandle-end {
|
|
29940
|
-
|
|
29941
|
-
}
|
|
29942
|
-
|
|
29943
|
-
[dir="rtl"] & {
|
|
29944
|
-
.k-slider-selection {
|
|
29945
|
-
left: unset;
|
|
29946
|
-
right: calc( var(--kendo-slider-start, 0) * 1% );
|
|
29947
|
-
}
|
|
29948
|
-
.k-draghandle-start {
|
|
29949
|
-
left: unset;
|
|
29950
|
-
right: calc( var(--kendo-slider-start, 0) * 1% );
|
|
29951
|
-
}
|
|
29952
|
-
.k-draghandle-end {
|
|
29953
|
-
left: unset;
|
|
29954
|
-
right: calc( var(--kendo-slider-end, 0) * 1% );
|
|
29955
|
-
}
|
|
29956
|
-
|
|
29957
|
-
.k-draghandle {
|
|
29958
|
-
transform: translate(50%, -50%);
|
|
29959
|
-
}
|
|
29960
|
-
.k-draghandle:focus,
|
|
29961
|
-
.k-draghandle:active {
|
|
29962
|
-
transform: translate(50%, -50%) scale($kendo-slider-draghandle-active-scale);
|
|
29963
|
-
}
|
|
29830
|
+
inset-inline-start: calc( var(--kendo-slider-end, 0) * 1% );
|
|
29964
29831
|
}
|
|
29965
29832
|
}
|
|
29966
29833
|
}
|
|
@@ -30044,7 +29911,7 @@ $kendo-slider-disabled-opacity: null !default;
|
|
|
30044
29911
|
|
|
30045
29912
|
.k-label {
|
|
30046
29913
|
text-align: start;
|
|
30047
|
-
|
|
29914
|
+
inset-inline-start: 120%;
|
|
30048
29915
|
top: 50%;
|
|
30049
29916
|
transform: translateY(-50%);
|
|
30050
29917
|
}
|
|
@@ -30052,23 +29919,8 @@ $kendo-slider-disabled-opacity: null !default;
|
|
|
30052
29919
|
.k-last .k-label { top: 0; }
|
|
30053
29920
|
|
|
30054
29921
|
.k-slider-topleft .k-label {
|
|
30055
|
-
|
|
30056
|
-
|
|
30057
|
-
}
|
|
30058
|
-
|
|
30059
|
-
.k-rtl &,
|
|
30060
|
-
&.k-rtl,
|
|
30061
|
-
[dir="rtl"] &,
|
|
30062
|
-
&[dir="rtl"] {
|
|
30063
|
-
.k-label {
|
|
30064
|
-
left: auto;
|
|
30065
|
-
right: 120%;
|
|
30066
|
-
}
|
|
30067
|
-
|
|
30068
|
-
.k-slider-topleft .k-label {
|
|
30069
|
-
left: 120%;
|
|
30070
|
-
right: auto;
|
|
30071
|
-
}
|
|
29922
|
+
inset-inline-start: auto;
|
|
29923
|
+
inset-inline-end: 120%;
|
|
30072
29924
|
}
|
|
30073
29925
|
|
|
30074
29926
|
}
|
|
@@ -30104,34 +29956,16 @@ $kendo-slider-disabled-opacity: null !default;
|
|
|
30104
29956
|
// labels
|
|
30105
29957
|
|
|
30106
29958
|
.k-label {
|
|
30107
|
-
|
|
29959
|
+
inset-inline-start: 50%;
|
|
30108
29960
|
bottom: -1.2em;
|
|
30109
29961
|
transform: translateX(-50%);
|
|
30110
29962
|
}
|
|
30111
|
-
.k-first .k-label {
|
|
30112
|
-
.k-last .k-label {
|
|
29963
|
+
.k-first .k-label { inset-inline-start: 0; }
|
|
29964
|
+
.k-last .k-label { inset-inline-start: 100%; }
|
|
30113
29965
|
|
|
30114
29966
|
.k-slider-topleft .k-label {
|
|
30115
29967
|
top: -1.2em;
|
|
30116
29968
|
}
|
|
30117
|
-
|
|
30118
|
-
.k-rtl &,
|
|
30119
|
-
&.k-rtl,
|
|
30120
|
-
[dir="rtl"] &,
|
|
30121
|
-
&[dir="rtl"] {
|
|
30122
|
-
.k-slider-track,
|
|
30123
|
-
.k-slider-selection {
|
|
30124
|
-
right: 0;
|
|
30125
|
-
left: auto;
|
|
30126
|
-
}
|
|
30127
|
-
|
|
30128
|
-
.k-button-increase .k-icon,
|
|
30129
|
-
.k-button-increase .k-svg-icon,
|
|
30130
|
-
.k-button-decrease .k-icon,
|
|
30131
|
-
.k-button-decrease .k-svg-icon {
|
|
30132
|
-
transform: scaleX(-1);
|
|
30133
|
-
}
|
|
30134
|
-
}
|
|
30135
29969
|
}
|
|
30136
29970
|
|
|
30137
29971
|
.k-slider-track,
|
|
@@ -30211,7 +30045,7 @@ $kendo-slider-disabled-opacity: null !default;
|
|
|
30211
30045
|
.k-slider-tooltip {
|
|
30212
30046
|
.k-callout-n,
|
|
30213
30047
|
.k-callout-s {
|
|
30214
|
-
margin-
|
|
30048
|
+
margin-inline-start: - k-math-div( $kendo-tooltip-callout-size, 2 );
|
|
30215
30049
|
}
|
|
30216
30050
|
|
|
30217
30051
|
.k-callout-w,
|
|
@@ -30220,20 +30054,50 @@ $kendo-slider-disabled-opacity: null !default;
|
|
|
30220
30054
|
}
|
|
30221
30055
|
}
|
|
30222
30056
|
|
|
30057
|
+
// RTL
|
|
30058
|
+
.k-slider-rtl {
|
|
30059
|
+
&.k-slider-horizontal {
|
|
30060
|
+
|
|
30061
|
+
.k-draghandle {
|
|
30062
|
+
transform: translate(50%, -50%);
|
|
30063
|
+
}
|
|
30064
|
+
|
|
30065
|
+
.k-draghandle:focus,
|
|
30066
|
+
.k-draghandle:active {
|
|
30067
|
+
transform: if( $kendo-slider-draghandle-active-scale, translate(50%, -50%) scale($kendo-slider-draghandle-active-scale), null );
|
|
30068
|
+
}
|
|
30069
|
+
|
|
30070
|
+
.k-label {
|
|
30071
|
+
transform: translateX(50%);
|
|
30072
|
+
}
|
|
30073
|
+
}
|
|
30074
|
+
}
|
|
30075
|
+
|
|
30076
|
+
.k-slider[dir="rtl"],
|
|
30077
|
+
[dir="rtl"] .k-slider,
|
|
30078
|
+
.k-slider.k-rtl,
|
|
30079
|
+
.k-rtl .k-slider {
|
|
30080
|
+
@extend .k-slider-rtl !optional;
|
|
30081
|
+
}
|
|
30082
|
+
|
|
30223
30083
|
|
|
30224
30084
|
// Angular specific
|
|
30225
30085
|
.k-slider kendo-resize-sensor {
|
|
30226
30086
|
position: absolute;
|
|
30227
30087
|
}
|
|
30228
30088
|
.k-slider-horizontal .k-slider-wrap:not(.k-slider-buttons) {
|
|
30229
|
-
padding-
|
|
30230
|
-
padding-
|
|
30089
|
+
padding-inline-start: calc( #{$kendo-slider-draghandle-size} / 2 );
|
|
30090
|
+
padding-inline-end: calc( #{$kendo-slider-draghandle-size} / 2 );
|
|
30231
30091
|
}
|
|
30232
30092
|
.k-slider-vertical .k-slider-wrap:not(.k-slider-buttons) {
|
|
30233
30093
|
padding-top: calc( #{$kendo-slider-draghandle-size} / 2 );
|
|
30234
30094
|
padding-bottom: calc( #{$kendo-slider-draghandle-size} / 2 );
|
|
30235
30095
|
}
|
|
30236
30096
|
|
|
30097
|
+
// Aliases
|
|
30098
|
+
.k-draghandle { @extend .k-slider-thumb !optional; }
|
|
30099
|
+
.k-draghandle-start { @extend .k-slider-thumb-start !optional; }
|
|
30100
|
+
.k-draghandle-end { @extend .k-slider-thumb-end !optional; }
|
|
30237
30101
|
}
|
|
30238
30102
|
|
|
30239
30103
|
|
|
@@ -31059,11 +30923,6 @@ $kendo-calendar-sizes: (
|
|
|
31059
30923
|
.k-calendar.k-rtl,
|
|
31060
30924
|
.k-calendar[dir="rtl"] {
|
|
31061
30925
|
|
|
31062
|
-
.k-calendar-nav-prev,
|
|
31063
|
-
.k-calendar-nav-next {
|
|
31064
|
-
transform: scaleX(-1);
|
|
31065
|
-
}
|
|
31066
|
-
|
|
31067
30926
|
.k-content.k-scrollable,
|
|
31068
30927
|
.k-calendar-content.k-scrollable {
|
|
31069
30928
|
@include hide-scrollbar("left");
|
|
@@ -31245,7 +31104,7 @@ $kendo-calendar-sizes: (
|
|
|
31245
31104
|
|
|
31246
31105
|
|
|
31247
31106
|
// Multiview calendar
|
|
31248
|
-
.k-calendar {
|
|
31107
|
+
.k-calendar { // stylelint-disable-line
|
|
31249
31108
|
|
|
31250
31109
|
$kendo-calendar-range-gap: 1px !default;
|
|
31251
31110
|
$kendo-calendar-range-bg: rgba( $kendo-calendar-cell-selected-bg, .25 );
|
|
@@ -36668,7 +36527,7 @@ $kendo-upload-focus-shadow: 0 0 0 2px rgba(0, 0, 0, .13) !default;
|
|
|
36668
36527
|
|
|
36669
36528
|
input {
|
|
36670
36529
|
// font should not depend on outside styles, otherwise upload may break
|
|
36671
|
-
font: 170px monospace !important; //
|
|
36530
|
+
font: 170px monospace !important; // stylelint-disable-line declaration-no-important
|
|
36672
36531
|
margin: 0;
|
|
36673
36532
|
padding: 0;
|
|
36674
36533
|
width: 100%;
|
|
@@ -37182,7 +37041,7 @@ $kendo-fab-icon-padding-x: k-map-get( $kendo-spacing, 1 ) !default;
|
|
|
37182
37041
|
$kendo-fab-icon-padding-y: $kendo-fab-icon-padding-x !default;
|
|
37183
37042
|
/// The spacing of the FAB icon.
|
|
37184
37043
|
/// @group floating-action-button
|
|
37185
|
-
$kendo-fab-icon-spacing: k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
37044
|
+
$kendo-fab-icon-spacing: k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
37186
37045
|
|
|
37187
37046
|
/// The horizontal padding of the FAB items.
|
|
37188
37047
|
/// @group floating-action-button
|
|
@@ -37621,9 +37480,7 @@ $kendo-fab-item-outline-color: $kendo-button-bg !default;
|
|
|
37621
37480
|
@each $name, $color in $kendo-fab-theme-colors {
|
|
37622
37481
|
.k-fab-solid-#{$name}:focus,
|
|
37623
37482
|
.k-fab-solid-#{$name}.k-focus {
|
|
37624
|
-
outline
|
|
37625
|
-
outline-width: $kendo-fab-outline-width;
|
|
37626
|
-
outline-color: rgba( $color, .5 );
|
|
37483
|
+
outline: $kendo-fab-outline-width $kendo-fab-outline-style rgba( $color, .5 );
|
|
37627
37484
|
}
|
|
37628
37485
|
}
|
|
37629
37486
|
|
|
@@ -37686,9 +37543,7 @@ $kendo-fab-item-outline-color: $kendo-button-bg !default;
|
|
|
37686
37543
|
.k-fab-item.k-focus .k-fab-item-text,
|
|
37687
37544
|
.k-fab-item:focus .k-fab-item-icon,
|
|
37688
37545
|
.k-fab-item.k-focus .k-fab-item-icon {
|
|
37689
|
-
outline
|
|
37690
|
-
outline-width: $kendo-fab-item-outline-width;
|
|
37691
|
-
outline-color: rgba( $kendo-fab-item-icon-border, .5 );
|
|
37546
|
+
outline: $kendo-fab-item-outline-width $kendo-fab-item-outline-style rgba( $kendo-fab-item-icon-border, .5 );
|
|
37692
37547
|
}
|
|
37693
37548
|
|
|
37694
37549
|
// Active state
|
|
@@ -37892,11 +37747,6 @@ $kendo-adaptive-actionsheet-footer-padding-x: k-map-get( $kendo-spacing, 4 ) !de
|
|
|
37892
37747
|
z-index: 9999;
|
|
37893
37748
|
overflow: hidden;
|
|
37894
37749
|
transform: translateZ(0);
|
|
37895
|
-
}
|
|
37896
|
-
|
|
37897
|
-
|
|
37898
|
-
// Animation container
|
|
37899
|
-
.k-actionsheet-container {
|
|
37900
37750
|
|
|
37901
37751
|
// Overlay
|
|
37902
37752
|
> .k-overlay {
|
|
@@ -38626,7 +38476,7 @@ $_kendo-module-meta: (
|
|
|
38626
38476
|
}
|
|
38627
38477
|
|
|
38628
38478
|
// Resize Handles
|
|
38629
|
-
.k-window {
|
|
38479
|
+
.k-window { // stylelint-disable-line
|
|
38630
38480
|
.k-resize-n { top: 0; }
|
|
38631
38481
|
.k-resize-e { right: 0; }
|
|
38632
38482
|
.k-resize-s { bottom: 0; }
|
|
@@ -38662,11 +38512,9 @@ $_kendo-module-meta: (
|
|
|
38662
38512
|
@include box-shadow( $kendo-window-shadow );
|
|
38663
38513
|
}
|
|
38664
38514
|
|
|
38665
|
-
.k-window
|
|
38666
|
-
|
|
38667
|
-
|
|
38668
|
-
@include focus-indicator( $kendo-window-focus-shadow );
|
|
38669
|
-
}
|
|
38515
|
+
.k-window:focus,
|
|
38516
|
+
.k-window.k-focus {
|
|
38517
|
+
@include focus-indicator( $kendo-window-focus-shadow );
|
|
38670
38518
|
}
|
|
38671
38519
|
|
|
38672
38520
|
|
|
@@ -38997,7 +38845,7 @@ $kendo-drawer-selected-hover-text: $kendo-selected-text !default;
|
|
|
38997
38845
|
display: flex;
|
|
38998
38846
|
flex-direction: column;
|
|
38999
38847
|
flex: 0 0 auto;
|
|
39000
|
-
transition: all 300ms ease-in-out;
|
|
38848
|
+
transition: all 300ms ease-in-out;
|
|
39001
38849
|
overflow: hidden;
|
|
39002
38850
|
-webkit-touch-callout: none;
|
|
39003
38851
|
-webkit-tap-highlight-color: $kendo-color-rgba-transparent;
|
|
@@ -39085,7 +38933,7 @@ $kendo-drawer-selected-hover-text: $kendo-selected-text !default;
|
|
|
39085
38933
|
overflow-x: hidden;
|
|
39086
38934
|
overflow-y: auto;
|
|
39087
38935
|
scrollbar-width: thin; // Scrollbar styles for Mozilla
|
|
39088
|
-
transition: all 300ms ease-in-out;
|
|
38936
|
+
transition: all 300ms ease-in-out;
|
|
39089
38937
|
|
|
39090
38938
|
// Scrollbar styles for Chrome, Safari and Opera
|
|
39091
38939
|
&::-webkit-scrollbar {
|
|
@@ -39406,7 +39254,6 @@ $kendo-notification-border: $kendo-component-border !default;
|
|
|
39406
39254
|
@function notification-theme( $colors ) {
|
|
39407
39255
|
$_theme: ();
|
|
39408
39256
|
|
|
39409
|
-
// sass-lint:disable-block indentation
|
|
39410
39257
|
@each $name, $color in $colors {
|
|
39411
39258
|
$_theme: k-map-merge(( $name: (
|
|
39412
39259
|
color: k-color-shade( $color, 6 ),
|
|
@@ -40531,9 +40378,7 @@ $_kendo-module-meta: (
|
|
|
40531
40378
|
}
|
|
40532
40379
|
.k-rpanel-top.k-rpanel-expanded {
|
|
40533
40380
|
max-height: 568px;
|
|
40534
|
-
//
|
|
40535
|
-
overflow: visible !important;
|
|
40536
|
-
// sass-lint:enable no-important
|
|
40381
|
+
overflow: visible !important; // stylelint-disable-line declaration-no-important
|
|
40537
40382
|
}
|
|
40538
40383
|
|
|
40539
40384
|
// Toggle button
|
|
@@ -41507,15 +41352,6 @@ $kendo-pager-sizes: (
|
|
|
41507
41352
|
*::after {
|
|
41508
41353
|
box-sizing: border-box;
|
|
41509
41354
|
}
|
|
41510
|
-
|
|
41511
|
-
.k-rtl &,
|
|
41512
|
-
&[dir="rtl"],
|
|
41513
|
-
[dir="rtl"] & {
|
|
41514
|
-
.k-pager-nav .k-button-icon {
|
|
41515
|
-
transform: scaleX(-1);
|
|
41516
|
-
}
|
|
41517
|
-
}
|
|
41518
|
-
|
|
41519
41355
|
}
|
|
41520
41356
|
|
|
41521
41357
|
|
|
@@ -42370,9 +42206,6 @@ $kendo-stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0m
|
|
|
42370
42206
|
.k-step-success .k-step-label .k-svg-icon {
|
|
42371
42207
|
@include fill( $color: $kendo-stepper-label-success-text );
|
|
42372
42208
|
}
|
|
42373
|
-
.k-step-error .k-step-label {
|
|
42374
|
-
@include fill( $color: $kendo-stepper-label-error-text );
|
|
42375
|
-
}
|
|
42376
42209
|
|
|
42377
42210
|
.k-step-error {
|
|
42378
42211
|
.k-step-label {
|
|
@@ -42707,7 +42540,7 @@ $kendo-tabstrip-content-focus-border: $kendo-component-text !default;
|
|
|
42707
42540
|
// Tabstrip content
|
|
42708
42541
|
.k-tabstrip-content,
|
|
42709
42542
|
.k-tabstrip > .k-content {
|
|
42710
|
-
margin: 0 !important; //
|
|
42543
|
+
margin: 0 !important; // stylelint-disable-line declaration-no-important
|
|
42711
42544
|
padding-block: $kendo-tabstrip-content-padding-y;
|
|
42712
42545
|
padding-inline: $kendo-tabstrip-content-padding-x;
|
|
42713
42546
|
box-sizing: border-box;
|
|
@@ -42806,14 +42639,14 @@ $kendo-tabstrip-content-focus-border: $kendo-component-text !default;
|
|
|
42806
42639
|
.k-item.k-active {
|
|
42807
42640
|
margin-bottom: if( $kendo-tabstrip-border-width, -$kendo-tabstrip-border-width, null );
|
|
42808
42641
|
border-bottom-width: $kendo-tabstrip-border-width;
|
|
42809
|
-
border-bottom-color: transparent !important; //
|
|
42642
|
+
border-bottom-color: transparent !important; // stylelint-disable-line declaration-no-important
|
|
42810
42643
|
}
|
|
42811
42644
|
}
|
|
42812
42645
|
|
|
42813
42646
|
> .k-content,
|
|
42814
42647
|
> .k-tabstrip-content {
|
|
42815
42648
|
@include border-bottom-radius( $kendo-tabstrip-item-border-radius );
|
|
42816
|
-
border-top-width: 0 !important; //
|
|
42649
|
+
border-top-width: 0 !important; // stylelint-disable-line declaration-no-important
|
|
42817
42650
|
}
|
|
42818
42651
|
}
|
|
42819
42652
|
.k-tabstrip-bottom {
|
|
@@ -42829,14 +42662,14 @@ $kendo-tabstrip-content-focus-border: $kendo-component-text !default;
|
|
|
42829
42662
|
.k-item.k-active {
|
|
42830
42663
|
margin-top: if( $kendo-tabstrip-border-width, -$kendo-tabstrip-border-width, null );
|
|
42831
42664
|
border-top-width: $kendo-tabstrip-border-width;
|
|
42832
|
-
border-top-color: transparent !important; //
|
|
42665
|
+
border-top-color: transparent !important; // stylelint-disable-line declaration-no-important
|
|
42833
42666
|
}
|
|
42834
42667
|
}
|
|
42835
42668
|
|
|
42836
42669
|
> .k-content,
|
|
42837
42670
|
> .k-tabstrip-content {
|
|
42838
42671
|
@include border-top-radius( $kendo-tabstrip-item-border-radius );
|
|
42839
|
-
border-bottom-width: 0 !important; //
|
|
42672
|
+
border-bottom-width: 0 !important; // stylelint-disable-line declaration-no-important
|
|
42840
42673
|
}
|
|
42841
42674
|
}
|
|
42842
42675
|
.k-tabstrip-left {
|
|
@@ -42854,14 +42687,14 @@ $kendo-tabstrip-content-focus-border: $kendo-component-text !default;
|
|
|
42854
42687
|
.k-item.k-active {
|
|
42855
42688
|
margin-right: if( $kendo-tabstrip-border-width, -$kendo-tabstrip-border-width, null );
|
|
42856
42689
|
border-right-width: $kendo-tabstrip-border-width;
|
|
42857
|
-
border-right-color: transparent !important; //
|
|
42690
|
+
border-right-color: transparent !important; // stylelint-disable-line declaration-no-important
|
|
42858
42691
|
}
|
|
42859
42692
|
}
|
|
42860
42693
|
|
|
42861
42694
|
> .k-content,
|
|
42862
42695
|
> .k-tabstrip-content {
|
|
42863
42696
|
@include border-right-radius( $kendo-tabstrip-item-border-radius );
|
|
42864
|
-
border-left-width: 0 !important; //
|
|
42697
|
+
border-left-width: 0 !important; // stylelint-disable-line declaration-no-important
|
|
42865
42698
|
}
|
|
42866
42699
|
|
|
42867
42700
|
}
|
|
@@ -42880,7 +42713,7 @@ $kendo-tabstrip-content-focus-border: $kendo-component-text !default;
|
|
|
42880
42713
|
.k-item.k-active {
|
|
42881
42714
|
margin-left: if( $kendo-tabstrip-border-width, -$kendo-tabstrip-border-width, null );
|
|
42882
42715
|
border-left-width: $kendo-tabstrip-border-width;
|
|
42883
|
-
border-left-color: transparent !important; //
|
|
42716
|
+
border-left-color: transparent !important; // stylelint-disable-line declaration-no-important
|
|
42884
42717
|
}
|
|
42885
42718
|
}
|
|
42886
42719
|
|
|
@@ -42956,7 +42789,7 @@ $kendo-tabstrip-content-focus-border: $kendo-component-text !default;
|
|
|
42956
42789
|
// Hide tabstrip indicator when dragging
|
|
42957
42790
|
.k-tabstrip-items-wrapper .k-item.k-tabstrip-dragging {
|
|
42958
42791
|
&::after {
|
|
42959
|
-
display: none !important; //
|
|
42792
|
+
display: none !important; // stylelint-disable-line declaration-no-important
|
|
42960
42793
|
}
|
|
42961
42794
|
}
|
|
42962
42795
|
|
|
@@ -42977,11 +42810,6 @@ $kendo-tabstrip-content-focus-border: $kendo-component-text !default;
|
|
|
42977
42810
|
> .k-tabstrip-content { order: 0; }
|
|
42978
42811
|
}
|
|
42979
42812
|
|
|
42980
|
-
.k-tabstrip-prev .k-button-icon,
|
|
42981
|
-
.k-tabstrip-next .k-button-icon {
|
|
42982
|
-
transform: scaleX(-1);
|
|
42983
|
-
}
|
|
42984
|
-
|
|
42985
42813
|
}
|
|
42986
42814
|
|
|
42987
42815
|
}
|
|
@@ -43300,6 +43128,7 @@ $kendo-wizard-step-focus-border: #656565 !default;
|
|
|
43300
43128
|
.k-wizard-vertical {
|
|
43301
43129
|
|
|
43302
43130
|
.k-wizard-steps {
|
|
43131
|
+
margin-left: $kendo-wizard-content-padding-x;
|
|
43303
43132
|
flex: 1 0 0%;
|
|
43304
43133
|
}
|
|
43305
43134
|
|
|
@@ -43307,9 +43136,6 @@ $kendo-wizard-step-focus-border: #656565 !default;
|
|
|
43307
43136
|
flex: 1 1 0%;
|
|
43308
43137
|
}
|
|
43309
43138
|
|
|
43310
|
-
.k-wizard-steps {
|
|
43311
|
-
margin-left: $kendo-wizard-content-padding-x;
|
|
43312
|
-
}
|
|
43313
43139
|
}
|
|
43314
43140
|
|
|
43315
43141
|
.k-wizard-left {
|
|
@@ -44421,25 +44247,15 @@ $kendo-splitbar-selected-text: $kendo-selected-text !default;
|
|
|
44421
44247
|
.k-pane-flex {
|
|
44422
44248
|
&.k-hidden,
|
|
44423
44249
|
&[hidden] {
|
|
44424
|
-
// sass-lint:disable-block no-important
|
|
44425
44250
|
// hidden panes need to be zero-width to allow pane animation
|
|
44426
|
-
flex: 0 1 0% !important;
|
|
44427
|
-
overflow: hidden !important;
|
|
44428
|
-
display: block !important;
|
|
44251
|
+
flex: 0 1 0% !important; // stylelint-disable-line declaration-no-important
|
|
44252
|
+
overflow: hidden !important; // stylelint-disable-line declaration-no-important
|
|
44253
|
+
display: block !important; // stylelint-disable-line declaration-no-important
|
|
44429
44254
|
}
|
|
44430
44255
|
}
|
|
44431
44256
|
|
|
44432
44257
|
&.k-splitter-horizontal {
|
|
44433
44258
|
flex-direction: row;
|
|
44434
|
-
|
|
44435
|
-
&[dir="rtl"] {
|
|
44436
|
-
> .k-splitbar {
|
|
44437
|
-
> .k-collapse-next,
|
|
44438
|
-
> .k-collapse-prev {
|
|
44439
|
-
transform: scaleX(-1);
|
|
44440
|
-
}
|
|
44441
|
-
}
|
|
44442
|
-
}
|
|
44443
44259
|
}
|
|
44444
44260
|
&.k-splitter-vertical {
|
|
44445
44261
|
flex-direction: column;
|
|
@@ -44880,7 +44696,7 @@ $kendo-adaptive-scheduler-subtle-text: $kendo-subtle-text !default;
|
|
|
44880
44696
|
|
|
44881
44697
|
|
|
44882
44698
|
// Grid specific styles
|
|
44883
|
-
.k-pane-wrapper {
|
|
44699
|
+
.k-pane-wrapper { // stylelint-disable-line
|
|
44884
44700
|
|
|
44885
44701
|
> div.k-pane {
|
|
44886
44702
|
box-shadow: none;
|
|
@@ -44940,7 +44756,7 @@ $kendo-adaptive-scheduler-subtle-text: $kendo-subtle-text !default;
|
|
|
44940
44756
|
|
|
44941
44757
|
|
|
44942
44758
|
// Scheduler specific styles
|
|
44943
|
-
.k-pane-wrapper {
|
|
44759
|
+
.k-pane-wrapper { // stylelint-disable-line
|
|
44944
44760
|
|
|
44945
44761
|
.k-scheduler-edit-form {
|
|
44946
44762
|
|
|
@@ -45167,7 +44983,7 @@ $kendo-adaptive-scheduler-subtle-text: $kendo-subtle-text !default;
|
|
|
45167
44983
|
|
|
45168
44984
|
|
|
45169
44985
|
// Common styles for the Adaptive Layout
|
|
45170
|
-
.k-pane-wrapper {
|
|
44986
|
+
.k-pane-wrapper { // stylelint-disable-line
|
|
45171
44987
|
|
|
45172
44988
|
.k-appbar {
|
|
45173
44989
|
padding: k-map-get( $kendo-spacing, 1 );
|
|
@@ -45282,24 +45098,12 @@ $kendo-adaptive-scheduler-subtle-text: $kendo-subtle-text !default;
|
|
|
45282
45098
|
&[dir="rtl"],
|
|
45283
45099
|
[dir="rtl"] & {
|
|
45284
45100
|
|
|
45285
|
-
.k-header-cancel .k-button-icon,
|
|
45286
|
-
.k-listgroup-item .k-select .k-svg-icon,
|
|
45287
|
-
.k-listgroup-item .k-select .k-icon {
|
|
45288
|
-
transform: scaleX( -1 );
|
|
45289
|
-
}
|
|
45290
|
-
|
|
45291
45101
|
.k-scheduler-mobile {
|
|
45292
45102
|
|
|
45293
45103
|
.k-scheduler-toolbar {
|
|
45294
|
-
|
|
45295
45104
|
> ul > li {
|
|
45296
45105
|
border: 0;
|
|
45297
45106
|
}
|
|
45298
|
-
|
|
45299
|
-
.k-nav-prev,
|
|
45300
|
-
.k-nav-next {
|
|
45301
|
-
transform: scaleX(-1);
|
|
45302
|
-
}
|
|
45303
45107
|
}
|
|
45304
45108
|
|
|
45305
45109
|
.k-task .k-i-reload {
|
|
@@ -45403,7 +45207,7 @@ $kendo-adaptive-scheduler-subtle-text: $kendo-subtle-text !default;
|
|
|
45403
45207
|
.k-clear,
|
|
45404
45208
|
.k-select-all,
|
|
45405
45209
|
.k-scheduler-delete,
|
|
45406
|
-
.k-scheduler-resetSeries { //
|
|
45210
|
+
.k-scheduler-resetSeries { // stylelint-disable-line
|
|
45407
45211
|
color: $kendo-adaptive-menu-clear-text;
|
|
45408
45212
|
}
|
|
45409
45213
|
|
|
@@ -45789,6 +45593,7 @@ $kendo-grid-sticky-hover-bg: k-try-shade( $kendo-grid-bg ) !default;
|
|
|
45789
45593
|
$kendo-grid-sticky-selected-hover-bg: k-color-shade( $kendo-grid-sticky-selected-bg, .7 ) !default;
|
|
45790
45594
|
|
|
45791
45595
|
$kendo-grid-column-menu-width: 250px !default;
|
|
45596
|
+
$kendo-grid-column-menu-max-width: 320px !default;
|
|
45792
45597
|
|
|
45793
45598
|
$kendo-grid-filter-menu-check-all-border-bottom-width: 1px !default;
|
|
45794
45599
|
|
|
@@ -46373,7 +46178,8 @@ $kendo-grid-row-resizer-height: k-map-get( $kendo-spacing, .5 ) !default;
|
|
|
46373
46178
|
}
|
|
46374
46179
|
|
|
46375
46180
|
.k-grid-filter-popup {
|
|
46376
|
-
min-width:
|
|
46181
|
+
min-width: $kendo-grid-column-menu-width;
|
|
46182
|
+
max-width: $kendo-grid-column-menu-max-width;
|
|
46377
46183
|
}
|
|
46378
46184
|
|
|
46379
46185
|
// Standalone column menu
|
|
@@ -46944,17 +46750,18 @@ $kendo-grid-row-resizer-height: k-map-get( $kendo-spacing, .5 ) !default;
|
|
|
46944
46750
|
}
|
|
46945
46751
|
|
|
46946
46752
|
// Remove Grid scrollbar during built-in export
|
|
46753
|
+
// stylelint-disable declaration-no-important
|
|
46947
46754
|
.k-pdf-export-shadow {
|
|
46948
46755
|
.k-grid {
|
|
46949
46756
|
float: left;
|
|
46950
|
-
width: auto !important;
|
|
46757
|
+
width: auto !important;
|
|
46951
46758
|
}
|
|
46952
46759
|
|
|
46953
46760
|
// Remove all sizes and scrolling
|
|
46954
46761
|
.k-grid,
|
|
46955
46762
|
.k-grid-content,
|
|
46956
46763
|
.k-grid-content-locked {
|
|
46957
|
-
height: auto !important;
|
|
46764
|
+
height: auto !important;
|
|
46958
46765
|
overflow: visible;
|
|
46959
46766
|
}
|
|
46960
46767
|
|
|
@@ -46962,21 +46769,23 @@ $kendo-grid-row-resizer-height: k-map-get( $kendo-spacing, .5 ) !default;
|
|
|
46962
46769
|
& + .k-grid-header-wrap,
|
|
46963
46770
|
& + .k-grid-content,
|
|
46964
46771
|
& + .k-grid-footer-wrap {
|
|
46965
|
-
width: auto !important;
|
|
46772
|
+
width: auto !important;
|
|
46966
46773
|
}
|
|
46967
46774
|
}
|
|
46968
46775
|
|
|
46969
46776
|
// Remove empty space reserved above .k-table-the scrollbar
|
|
46970
46777
|
.k-grid-header,
|
|
46971
46778
|
.k-grid[data-role="grid"] .k-grid-footer {
|
|
46972
|
-
padding: 0 !important;
|
|
46779
|
+
padding: 0 !important;
|
|
46973
46780
|
}
|
|
46974
46781
|
}
|
|
46782
|
+
// stylelint-enable declaration-no-important
|
|
46975
46783
|
|
|
46976
46784
|
|
|
46977
46785
|
// Filter menu
|
|
46978
46786
|
.k-filter-menu-popup {
|
|
46979
|
-
width: $kendo-grid-column-menu-width;
|
|
46787
|
+
min-width: $kendo-grid-column-menu-width;
|
|
46788
|
+
max-width: $kendo-grid-column-menu-max-width;
|
|
46980
46789
|
}
|
|
46981
46790
|
.k-filter-menu {
|
|
46982
46791
|
box-sizing: border-box;
|
|
@@ -47020,7 +46829,8 @@ $kendo-grid-row-resizer-height: k-map-get( $kendo-spacing, .5 ) !default;
|
|
|
47020
46829
|
.k-grid-filter-popup.k-popup {
|
|
47021
46830
|
|
|
47022
46831
|
.k-filter-menu-container {
|
|
47023
|
-
width: $kendo-grid-column-menu-width;
|
|
46832
|
+
min-width: $kendo-grid-column-menu-width;
|
|
46833
|
+
max-width: $kendo-grid-column-menu-max-width;
|
|
47024
46834
|
}
|
|
47025
46835
|
}
|
|
47026
46836
|
|
|
@@ -47051,19 +46861,17 @@ $kendo-grid-row-resizer-height: k-map-get( $kendo-spacing, .5 ) !default;
|
|
|
47051
46861
|
|
|
47052
46862
|
// autofitting requires automatic table layout to measure sizes
|
|
47053
46863
|
.k-autofitting {
|
|
47054
|
-
//
|
|
47055
|
-
|
|
47056
|
-
width: auto !important;
|
|
47057
|
-
table-layout: auto !important;
|
|
46864
|
+
width: auto !important; // stylelint-disable-line declaration-no-important
|
|
46865
|
+
table-layout: auto !important; // stylelint-disable-line declaration-no-important
|
|
47058
46866
|
|
|
47059
46867
|
.k-table-th,
|
|
47060
46868
|
td,
|
|
47061
46869
|
.k-table-td {
|
|
47062
|
-
white-space: nowrap !important;
|
|
46870
|
+
white-space: nowrap !important; // stylelint-disable-line declaration-no-important
|
|
47063
46871
|
}
|
|
47064
46872
|
|
|
47065
46873
|
.k-detail-row {
|
|
47066
|
-
display: none !important;
|
|
46874
|
+
display: none !important; // stylelint-disable-line declaration-no-important
|
|
47067
46875
|
}
|
|
47068
46876
|
}
|
|
47069
46877
|
|
|
@@ -47072,13 +46880,13 @@ $kendo-grid-row-resizer-height: k-map-get( $kendo-spacing, .5 ) !default;
|
|
|
47072
46880
|
// Column menu
|
|
47073
46881
|
.k-column-menu-popup,
|
|
47074
46882
|
.k-grid-columnmenu-popup {
|
|
47075
|
-
width: $kendo-grid-column-menu-width;
|
|
46883
|
+
min-width: $kendo-grid-column-menu-width;
|
|
47076
46884
|
box-sizing: border-box;
|
|
47077
46885
|
|
|
47078
46886
|
&.k-popup {
|
|
47079
46887
|
padding-block: $kendo-grid-column-menu-popup-padding-y;
|
|
47080
46888
|
padding-inline: $kendo-grid-column-menu-popup-padding-x;
|
|
47081
|
-
max-width:
|
|
46889
|
+
max-width: $kendo-grid-column-menu-max-width;
|
|
47082
46890
|
}
|
|
47083
46891
|
|
|
47084
46892
|
.k-actions {
|
|
@@ -47200,6 +47008,18 @@ $kendo-grid-row-resizer-height: k-map-get( $kendo-spacing, .5 ) !default;
|
|
|
47200
47008
|
flex: 1 1 auto;
|
|
47201
47009
|
}
|
|
47202
47010
|
|
|
47011
|
+
.k-rtl .k-grid-virtual .k-grid-content,
|
|
47012
|
+
[dir="rtl"] .k-grid-virtual .k-grid-content,
|
|
47013
|
+
.k-rtl.k-grid-virtual .k-grid-content,
|
|
47014
|
+
[dir="rtl"].k-grid-virtual .k-grid-content {
|
|
47015
|
+
|
|
47016
|
+
.k-grid-table-wrap,
|
|
47017
|
+
.k-grid-table,
|
|
47018
|
+
> .k-height-container {
|
|
47019
|
+
float: right;
|
|
47020
|
+
}
|
|
47021
|
+
}
|
|
47022
|
+
|
|
47203
47023
|
}
|
|
47204
47024
|
|
|
47205
47025
|
|
|
@@ -47895,14 +47715,6 @@ $kendo-grid-row-resizer-height: k-map-get( $kendo-spacing, .5 ) !default;
|
|
|
47895
47715
|
}
|
|
47896
47716
|
}
|
|
47897
47717
|
|
|
47898
|
-
// Grid footer
|
|
47899
|
-
.k-grid-footer {
|
|
47900
|
-
.k-grid-footer-sticky {
|
|
47901
|
-
@include fill(
|
|
47902
|
-
$bg: $kendo-grid-sticky-footer-bg
|
|
47903
|
-
);
|
|
47904
|
-
}
|
|
47905
|
-
}
|
|
47906
47718
|
|
|
47907
47719
|
// Selection Aggregates
|
|
47908
47720
|
.k-selection-aggregates {
|
|
@@ -48195,7 +48007,7 @@ $kendo-grid-row-resizer-height: k-map-get( $kendo-spacing, .5 ) !default;
|
|
|
48195
48007
|
border-color: $kendo-grid-border;
|
|
48196
48008
|
}
|
|
48197
48009
|
|
|
48198
|
-
//Row resize indicator
|
|
48010
|
+
// Row resize indicator
|
|
48199
48011
|
.k-resizer-wrap {
|
|
48200
48012
|
|
|
48201
48013
|
&.k-hover .k-row-resizer {
|
|
@@ -48657,6 +48469,8 @@ $kendo-spreadsheet-drawing-outline-width: 2px !default;
|
|
|
48657
48469
|
|
|
48658
48470
|
$kendo-spreadsheet-drawing-anchor-bg: rgba( $kendo-selected-bg, .25 ) !default;
|
|
48659
48471
|
|
|
48472
|
+
$kendo-spreadsheet-dropzone-spacing-y: k-map-get( $kendo-spacing, 4 ) !default;
|
|
48473
|
+
|
|
48660
48474
|
// #endregion
|
|
48661
48475
|
// #region @import "./_layout.scss"; -> scss/spreadsheet/_layout.scss
|
|
48662
48476
|
// #region @import "@progress/kendo-theme-default/scss/spreadsheet/_layout.scss"; -> node_modules/@progress/kendo-theme-default/scss/spreadsheet/_layout.scss
|
|
@@ -48691,6 +48505,7 @@ $kendo-spreadsheet-drawing-anchor-bg: rgba( $kendo-selected-bg, .25 ) !default;
|
|
|
48691
48505
|
transform: translateY( -100% );
|
|
48692
48506
|
}
|
|
48693
48507
|
|
|
48508
|
+
|
|
48694
48509
|
}
|
|
48695
48510
|
|
|
48696
48511
|
|
|
@@ -48772,9 +48587,6 @@ $kendo-spreadsheet-drawing-anchor-bg: rgba( $kendo-selected-bg, .25 ) !default;
|
|
|
48772
48587
|
}
|
|
48773
48588
|
.k-spreadsheet-name-editor {
|
|
48774
48589
|
width: 10em;
|
|
48775
|
-
border-width: 0 1px 0 0;
|
|
48776
|
-
border-style: solid;
|
|
48777
|
-
border-color: inherit;
|
|
48778
48590
|
}
|
|
48779
48591
|
.k-spreadsheet-formula-bar {
|
|
48780
48592
|
border-color: inherit;
|
|
@@ -48782,6 +48594,7 @@ $kendo-spreadsheet-drawing-anchor-bg: rgba( $kendo-selected-bg, .25 ) !default;
|
|
|
48782
48594
|
flex-direction: row;
|
|
48783
48595
|
align-items: center;
|
|
48784
48596
|
flex: 1;
|
|
48597
|
+
gap: $kendo-padding-md-y;
|
|
48785
48598
|
|
|
48786
48599
|
> .k-icon,
|
|
48787
48600
|
> .k-svg-icon {
|
|
@@ -48913,9 +48726,8 @@ $kendo-spreadsheet-drawing-anchor-bg: rgba( $kendo-selected-bg, .25 ) !default;
|
|
|
48913
48726
|
|
|
48914
48727
|
|
|
48915
48728
|
// Spreadsheet view
|
|
48916
|
-
// sass-lint:disable no-important
|
|
48917
48729
|
.k-spreadsheet-view {
|
|
48918
|
-
height: auto !important;
|
|
48730
|
+
height: auto !important; // stylelint-disable-line declaration-no-important
|
|
48919
48731
|
border-color: inherit;
|
|
48920
48732
|
font-size: 12px;
|
|
48921
48733
|
font-family: Arial, Verdana, Sans-serif;
|
|
@@ -48928,7 +48740,7 @@ $kendo-spreadsheet-drawing-anchor-bg: rgba( $kendo-selected-bg, .25 ) !default;
|
|
|
48928
48740
|
pointer-events: auto;
|
|
48929
48741
|
}
|
|
48930
48742
|
}
|
|
48931
|
-
|
|
48743
|
+
|
|
48932
48744
|
.k-spreadsheet-fixed-container {
|
|
48933
48745
|
width: 100%;
|
|
48934
48746
|
height: 100%;
|
|
@@ -49124,9 +48936,8 @@ $kendo-spreadsheet-drawing-anchor-bg: rgba( $kendo-selected-bg, .25 ) !default;
|
|
|
49124
48936
|
}
|
|
49125
48937
|
|
|
49126
48938
|
.k-spreadsheet-active-cell {
|
|
49127
|
-
// sass-lint:disable-block no-important
|
|
49128
48939
|
// always show exact active cell border, regardless of inline cell styles
|
|
49129
|
-
outline-color: transparent !important;
|
|
48940
|
+
outline-color: transparent !important; // stylelint-disable-line declaration-no-important
|
|
49130
48941
|
z-index: 10;
|
|
49131
48942
|
}
|
|
49132
48943
|
|
|
@@ -49340,14 +49151,11 @@ $kendo-spreadsheet-drawing-anchor-bg: rgba( $kendo-selected-bg, .25 ) !default;
|
|
|
49340
49151
|
.k-reset-color { border-bottom-width: 1px; }
|
|
49341
49152
|
.k-custom-color { border-top-width: 1px; }
|
|
49342
49153
|
.k-spreadsheet-border-type-palette {
|
|
49343
|
-
|
|
49344
|
-
|
|
49345
|
-
|
|
49346
|
-
|
|
49347
|
-
align-content: space-around;
|
|
49348
|
-
justify-content: space-around;
|
|
49154
|
+
padding: k-map-get( $kendo-spacing, 2 );
|
|
49155
|
+
display: grid;
|
|
49156
|
+
grid-template-columns: repeat(5, max-content);
|
|
49157
|
+
gap: k-map-get( $kendo-spacing, 2 );
|
|
49349
49158
|
}
|
|
49350
|
-
|
|
49351
49159
|
}
|
|
49352
49160
|
|
|
49353
49161
|
.k-spreadsheet-format-popup {
|
|
@@ -49358,7 +49166,6 @@ $kendo-spreadsheet-drawing-anchor-bg: rgba( $kendo-selected-bg, .25 ) !default;
|
|
|
49358
49166
|
opacity: .7;
|
|
49359
49167
|
}
|
|
49360
49168
|
|
|
49361
|
-
|
|
49362
49169
|
.k-spreadsheet-clipboard,
|
|
49363
49170
|
.k-spreadsheet-clipboard-paste {
|
|
49364
49171
|
margin: 0;
|
|
@@ -49376,7 +49183,10 @@ $kendo-spreadsheet-drawing-anchor-bg: rgba( $kendo-selected-bg, .25 ) !default;
|
|
|
49376
49183
|
|
|
49377
49184
|
|
|
49378
49185
|
// Spreadsheet window
|
|
49379
|
-
.k-spreadsheet-window {
|
|
49186
|
+
.k-spreadsheet-window .k-external-dropzone {
|
|
49187
|
+
margin-block-end: $kendo-spreadsheet-dropzone-spacing-y;
|
|
49188
|
+
}
|
|
49189
|
+
|
|
49380
49190
|
.k-spreadsheet-window .k-edit-form-container {
|
|
49381
49191
|
width: auto;
|
|
49382
49192
|
min-width: 0;
|
|
@@ -49521,7 +49331,7 @@ $kendo-spreadsheet-drawing-anchor-bg: rgba( $kendo-selected-bg, .25 ) !default;
|
|
|
49521
49331
|
position: absolute;
|
|
49522
49332
|
transform: translate(-50%, -50%);
|
|
49523
49333
|
|
|
49524
|
-
//
|
|
49334
|
+
// stylelint-disable declaration-block-single-line-max-declarations, selector-class-pattern
|
|
49525
49335
|
&.N { left: 50%; top: 0; cursor: ns-resize; }
|
|
49526
49336
|
&.NE { left: 100%; top: 0; cursor: nesw-resize; }
|
|
49527
49337
|
&.E { left: 100%; top: 50%; cursor: ew-resize; }
|
|
@@ -49530,7 +49340,7 @@ $kendo-spreadsheet-drawing-anchor-bg: rgba( $kendo-selected-bg, .25 ) !default;
|
|
|
49530
49340
|
&.SW { left: 0; top: 100%; cursor: nesw-resize; }
|
|
49531
49341
|
&.W { left: 0; top: 50%; cursor: ew-resize; }
|
|
49532
49342
|
&.NW { left: 0; top: 0; cursor: nwse-resize; }
|
|
49533
|
-
//
|
|
49343
|
+
// stylelint-enable declaration-block-single-line-max-declarations, selector-class-pattern
|
|
49534
49344
|
}
|
|
49535
49345
|
|
|
49536
49346
|
.k-spreadsheet-insert-image-dialog {
|
|
@@ -49788,7 +49598,6 @@ $kendo-spreadsheet-drawing-anchor-bg: rgba( $kendo-selected-bg, .25 ) !default;
|
|
|
49788
49598
|
$kendo-list-item-selected-bg
|
|
49789
49599
|
);
|
|
49790
49600
|
}
|
|
49791
|
-
|
|
49792
49601
|
}
|
|
49793
49602
|
|
|
49794
49603
|
|
|
@@ -50069,7 +49878,6 @@ $kendo-spreadsheet-drawing-anchor-bg: rgba( $kendo-selected-bg, .25 ) !default;
|
|
|
50069
49878
|
$kendo-list-item-selected-bg
|
|
50070
49879
|
);
|
|
50071
49880
|
}
|
|
50072
|
-
|
|
50073
49881
|
}
|
|
50074
49882
|
|
|
50075
49883
|
|
|
@@ -50733,7 +50541,7 @@ $kendo-pivotgrid-remove-text: null !default;
|
|
|
50733
50541
|
.k-pdf-export-shadow {
|
|
50734
50542
|
|
|
50735
50543
|
.k-pivotgrid {
|
|
50736
|
-
height: auto !important; //
|
|
50544
|
+
height: auto !important; // stylelint-disable-line declaration-no-important
|
|
50737
50545
|
}
|
|
50738
50546
|
|
|
50739
50547
|
.k-pivotgrid-values {
|
|
@@ -52590,7 +52398,7 @@ $kendo-taskboard-drag-placeholder-border: $kendo-component-border !default;
|
|
|
52590
52398
|
border-width: $kendo-taskboard-card-border-width;
|
|
52591
52399
|
|
|
52592
52400
|
&.k-taskboard-card-category {
|
|
52593
|
-
border-
|
|
52401
|
+
border-inline-start-width: $kendo-taskboard-card-category-border-width;
|
|
52594
52402
|
}
|
|
52595
52403
|
|
|
52596
52404
|
.k-card-header
|
|
@@ -52631,20 +52439,6 @@ $kendo-taskboard-drag-placeholder-border: $kendo-component-border !default;
|
|
|
52631
52439
|
position: relative;
|
|
52632
52440
|
}
|
|
52633
52441
|
|
|
52634
|
-
|
|
52635
|
-
|
|
52636
|
-
|
|
52637
|
-
// RTL
|
|
52638
|
-
.k-taskboard-card.k-taskboard-card-category {
|
|
52639
|
-
.k-rtl &,
|
|
52640
|
-
&.k-rtl,
|
|
52641
|
-
[dir="rtl"] &,
|
|
52642
|
-
&[dir="rtl"] {
|
|
52643
|
-
border-left-width: $kendo-taskboard-card-border-width;
|
|
52644
|
-
border-right-width: $kendo-taskboard-card-category-border-width;
|
|
52645
|
-
}
|
|
52646
|
-
}
|
|
52647
|
-
|
|
52648
52442
|
}
|
|
52649
52443
|
|
|
52650
52444
|
|
|
@@ -52890,7 +52684,7 @@ $kendo-editor-resize-handle-border: #000000 !default;
|
|
|
52890
52684
|
$kendo-editor-resize-handle-bg: #ffffff !default;
|
|
52891
52685
|
|
|
52892
52686
|
$kendo-editor-selectednode-outline-width: 2px !default;
|
|
52893
|
-
$kendo-editor-selectednode-outline-color: #
|
|
52687
|
+
$kendo-editor-selectednode-outline-color: #88ccff !default;
|
|
52894
52688
|
|
|
52895
52689
|
// #endregion
|
|
52896
52690
|
// #region @import "./_layout.scss"; -> scss/editor/_layout.scss
|
|
@@ -53014,12 +52808,13 @@ $kendo-editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-li
|
|
|
53014
52808
|
}
|
|
53015
52809
|
}
|
|
53016
52810
|
|
|
53017
|
-
|
|
52811
|
+
// stylelint-disable selector-no-vendor-prefix, selector-class-pattern
|
|
52812
|
+
.ProseMirror-selectednode {
|
|
53018
52813
|
outline-width: $kendo-editor-selectednode-outline-width;
|
|
53019
52814
|
outline-style: solid;
|
|
53020
52815
|
|
|
53021
52816
|
}
|
|
53022
|
-
.ProseMirror-hideselection {
|
|
52817
|
+
.ProseMirror-hideselection {
|
|
53023
52818
|
caret-color: transparent;
|
|
53024
52819
|
|
|
53025
52820
|
*::selection,
|
|
@@ -53027,7 +52822,7 @@ $kendo-editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-li
|
|
|
53027
52822
|
background: transparent;
|
|
53028
52823
|
}
|
|
53029
52824
|
}
|
|
53030
|
-
|
|
52825
|
+
// stylelint-enable selector-no-vendor-prefix, selector-class-pattern
|
|
53031
52826
|
|
|
53032
52827
|
// Toolbar
|
|
53033
52828
|
.k-editor-toolbar {
|
|
@@ -53060,7 +52855,7 @@ $kendo-editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-li
|
|
|
53060
52855
|
display: block;
|
|
53061
52856
|
}
|
|
53062
52857
|
|
|
53063
|
-
> .ProseMirror { //
|
|
52858
|
+
> .ProseMirror { // stylelint-disable-line
|
|
53064
52859
|
padding: $kendo-padding-md-x;
|
|
53065
52860
|
width: 100%;
|
|
53066
52861
|
height: 100%;
|
|
@@ -53085,7 +52880,7 @@ $kendo-editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-li
|
|
|
53085
52880
|
}
|
|
53086
52881
|
|
|
53087
52882
|
&[contenteditable="false"] {
|
|
53088
|
-
cursor: unset !important; //
|
|
52883
|
+
cursor: unset !important; // stylelint-disable-line declaration-no-important
|
|
53089
52884
|
|
|
53090
52885
|
.k-editor-resize-handles-wrapper,
|
|
53091
52886
|
.k-editor-resize-handle,
|
|
@@ -53099,7 +52894,7 @@ $kendo-editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-li
|
|
|
53099
52894
|
pointer-events: none;
|
|
53100
52895
|
}
|
|
53101
52896
|
|
|
53102
|
-
& .ProseMirror-selectednode { //
|
|
52897
|
+
& .ProseMirror-selectednode { // stylelint-disable-line
|
|
53103
52898
|
outline: none;
|
|
53104
52899
|
}
|
|
53105
52900
|
}
|
|
@@ -53144,7 +52939,7 @@ $kendo-editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-li
|
|
|
53144
52939
|
}
|
|
53145
52940
|
|
|
53146
52941
|
// Give selected cells a blue overlay
|
|
53147
|
-
.selectedCell::after { //
|
|
52942
|
+
.selectedCell::after { // stylelint-disable-line
|
|
53148
52943
|
z-index: 2;
|
|
53149
52944
|
position: absolute;
|
|
53150
52945
|
content: "";
|
|
@@ -53607,7 +53402,7 @@ $kendo-editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-li
|
|
|
53607
53402
|
background-color: $kendo-editor-resize-handle-bg;
|
|
53608
53403
|
border-color: $kendo-editor-resize-handle-border;
|
|
53609
53404
|
}
|
|
53610
|
-
.ProseMirror-selectednode { //
|
|
53405
|
+
.ProseMirror-selectednode { // stylelint-disable-line
|
|
53611
53406
|
outline-color: $kendo-editor-selectednode-outline-color;
|
|
53612
53407
|
}
|
|
53613
53408
|
|
|
@@ -53643,7 +53438,7 @@ $kendo-editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-li
|
|
|
53643
53438
|
border-color: #dddddd;
|
|
53644
53439
|
}
|
|
53645
53440
|
|
|
53646
|
-
.selectedCell::after { //
|
|
53441
|
+
.selectedCell::after { // stylelint-disable-line
|
|
53647
53442
|
background-color: rgba(200, 200, 255, .4);
|
|
53648
53443
|
}
|
|
53649
53444
|
}
|
|
@@ -54413,7 +54208,7 @@ $kendo-gantt-validation-tooltip-invalid-border: $kendo-color-error !default;
|
|
|
54413
54208
|
|
|
54414
54209
|
|
|
54415
54210
|
// Responsive gantt toolbar
|
|
54416
|
-
@media (max-width: 480px) {
|
|
54211
|
+
@media (max-width: 480px) { // stylelint-disable-line
|
|
54417
54212
|
|
|
54418
54213
|
.k-gantt-toolbar {
|
|
54419
54214
|
.k-gantt-toggle {
|
|
@@ -54434,7 +54229,7 @@ $kendo-gantt-validation-tooltip-invalid-border: $kendo-color-error !default;
|
|
|
54434
54229
|
|
|
54435
54230
|
}
|
|
54436
54231
|
|
|
54437
|
-
@media (max-width: 1024px) {
|
|
54232
|
+
@media (max-width: 1024px) { // stylelint-disable-line
|
|
54438
54233
|
.k-gantt-views-wrapper .k-gantt-views { display: none; }
|
|
54439
54234
|
.k-gantt-views-wrapper .k-views-dropdown { display: flex; }
|
|
54440
54235
|
}
|
|
@@ -54459,7 +54254,7 @@ $kendo-gantt-validation-tooltip-invalid-border: $kendo-color-error !default;
|
|
|
54459
54254
|
}
|
|
54460
54255
|
.k-grid-header,
|
|
54461
54256
|
.k-grid-footer {
|
|
54462
|
-
padding: 0 !important; //
|
|
54257
|
+
padding: 0 !important; // stylelint-disable-line declaration-no-important
|
|
54463
54258
|
}
|
|
54464
54259
|
.k-grid-header tr {
|
|
54465
54260
|
height: calc( #{$kendo-line-height-em} * 2 + #{$kendo-grid-header-padding-y * 4} + 2px );
|
|
@@ -54968,9 +54763,9 @@ $kendo-gantt-validation-tooltip-invalid-border: $kendo-color-error !default;
|
|
|
54968
54763
|
.k-gantt,
|
|
54969
54764
|
.k-gantt-timeline,
|
|
54970
54765
|
.k-gantt-dependencies {
|
|
54971
|
-
width: auto !important; //
|
|
54972
|
-
height: auto !important; //
|
|
54973
|
-
overflow: visible !important; //
|
|
54766
|
+
width: auto !important; // stylelint-disable-line declaration-no-important
|
|
54767
|
+
height: auto !important; // stylelint-disable-line declaration-no-important
|
|
54768
|
+
overflow: visible !important; // stylelint-disable-line declaration-no-important
|
|
54974
54769
|
}
|
|
54975
54770
|
|
|
54976
54771
|
.k-gantt-treelist .k-treelist {
|
|
@@ -56174,8 +55969,8 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
|
|
|
56174
55969
|
}
|
|
56175
55970
|
}
|
|
56176
55971
|
|
|
56177
|
-
// sass-lint:disable no-important
|
|
56178
55972
|
// remove scrollbars during PDF export
|
|
55973
|
+
// stylelint-disable declaration-no-important
|
|
56179
55974
|
.k-pdf-export-shadow .k-scheduler,
|
|
56180
55975
|
.k-scheduler-pdf-export .k-scheduler-content,
|
|
56181
55976
|
.k-scheduler-pdf-export .k-scheduler-times {
|
|
@@ -56199,7 +55994,7 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
|
|
|
56199
55994
|
width: 100% !important;
|
|
56200
55995
|
}
|
|
56201
55996
|
}
|
|
56202
|
-
//
|
|
55997
|
+
// stylelint-enable declaration-no-important
|
|
56203
55998
|
|
|
56204
55999
|
|
|
56205
56000
|
// TODO: add this class to jQuery rendering
|
|
@@ -56218,9 +56013,7 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
|
|
|
56218
56013
|
|
|
56219
56014
|
|
|
56220
56015
|
// Workweek view
|
|
56221
|
-
//
|
|
56222
|
-
.k-scheduler-workWeekview {}
|
|
56223
|
-
// sass-lint:enable class-name-format
|
|
56016
|
+
.k-scheduler-workWeekview {} // stylelint-disable-line
|
|
56224
56017
|
|
|
56225
56018
|
|
|
56226
56019
|
// Week view
|
|
@@ -56241,14 +56034,12 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
|
|
|
56241
56034
|
min-height: 80px;
|
|
56242
56035
|
}
|
|
56243
56036
|
|
|
56244
|
-
// sass-lint:disable no-important
|
|
56245
56037
|
// hidden cells must have no layout
|
|
56246
56038
|
.k-hidden {
|
|
56247
|
-
padding-left: 0 !important;
|
|
56248
|
-
padding-right: 0 !important;
|
|
56249
|
-
border-right-width: 0 !important;
|
|
56039
|
+
padding-left: 0 !important; // stylelint-disable-line declaration-no-important
|
|
56040
|
+
padding-right: 0 !important; // stylelint-disable-line declaration-no-important
|
|
56041
|
+
border-right-width: 0 !important; // stylelint-disable-line declaration-no-important
|
|
56250
56042
|
}
|
|
56251
|
-
// sass-lint:enable no-important
|
|
56252
56043
|
|
|
56253
56044
|
.k-scheduler-table-auto,
|
|
56254
56045
|
.k-scheduler-table-auto td,
|
|
@@ -56574,13 +56365,6 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
|
|
|
56574
56365
|
|
|
56575
56366
|
.k-scheduler,
|
|
56576
56367
|
&.k-scheduler {
|
|
56577
|
-
.k-i-caret-alt-left,
|
|
56578
|
-
.k-i-caret-alt-right,
|
|
56579
|
-
.k-i-arrow-60-left,
|
|
56580
|
-
.k-i-arrow-60-right,
|
|
56581
|
-
.k-current-time-arrow-right {
|
|
56582
|
-
transform: scaleX(-1);
|
|
56583
|
-
}
|
|
56584
56368
|
|
|
56585
56369
|
.k-scheduler-header-wrap {
|
|
56586
56370
|
border-right-width: 0;
|
|
@@ -56644,9 +56428,9 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
|
|
|
56644
56428
|
}
|
|
56645
56429
|
}
|
|
56646
56430
|
|
|
56431
|
+
// Angular fix for stronger selector and smaller padding
|
|
56647
56432
|
.k-event-template {
|
|
56648
|
-
|
|
56649
|
-
& {
|
|
56433
|
+
& { // stylelint-disable-line
|
|
56650
56434
|
padding-block: $kendo-padding-sm-y;
|
|
56651
56435
|
padding-inline: $kendo-padding-sm-x;
|
|
56652
56436
|
font-size: $kendo-font-size-sm;
|
|
@@ -56722,7 +56506,7 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
|
|
|
56722
56506
|
}
|
|
56723
56507
|
|
|
56724
56508
|
|
|
56725
|
-
//Scheduler navigation
|
|
56509
|
+
// Scheduler navigation
|
|
56726
56510
|
.k-scheduler-navigation {}
|
|
56727
56511
|
|
|
56728
56512
|
|
|
@@ -56794,12 +56578,14 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
|
|
|
56794
56578
|
);
|
|
56795
56579
|
@include box-shadow( $kendo-scheduler-event-selected-shadow );
|
|
56796
56580
|
}
|
|
56797
|
-
|
|
56798
|
-
|
|
56799
|
-
|
|
56800
|
-
|
|
56801
|
-
|
|
56802
|
-
|
|
56581
|
+
|
|
56582
|
+
&.k-event-inverse {
|
|
56583
|
+
color: k-contrast-legacy( $kendo-scheduler-event-text );
|
|
56584
|
+
}
|
|
56585
|
+
|
|
56586
|
+
&.k-event-ongoing {
|
|
56587
|
+
@include box-shadow( $kendo-scheduler-event-ongoing-shadow );
|
|
56588
|
+
}
|
|
56803
56589
|
}
|
|
56804
56590
|
|
|
56805
56591
|
|
|
@@ -56828,9 +56614,7 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
|
|
|
56828
56614
|
|
|
56829
56615
|
|
|
56830
56616
|
// Workweek view
|
|
56831
|
-
//
|
|
56832
|
-
.k-scheduler-workWeekview {}
|
|
56833
|
-
// sass-lint:enable class-name-format
|
|
56617
|
+
.k-scheduler-workWeekview {} // stylelint-disable-line
|
|
56834
56618
|
|
|
56835
56619
|
|
|
56836
56620
|
// Week view
|
|
@@ -57354,8 +57138,8 @@ $kendo-chat-quick-reply-hover-border: $kendo-color-primary !default;
|
|
|
57354
57138
|
box-sizing: border-box;
|
|
57355
57139
|
border-width: 1px 0 0;
|
|
57356
57140
|
border-style: solid;
|
|
57357
|
-
border-color: inherit !important; //
|
|
57358
|
-
border-radius: 0 !important; //
|
|
57141
|
+
border-color: inherit !important; // stylelint-disable-line declaration-no-important
|
|
57142
|
+
border-radius: 0 !important; // stylelint-disable-line declaration-no-important
|
|
57359
57143
|
flex: none;
|
|
57360
57144
|
display: flex;
|
|
57361
57145
|
flex-flow: row nowrap;
|
|
@@ -57862,9 +57646,7 @@ $kendo-media-player-titlebar-gradient: rgba( $kendo-media-player-text, .7 ), rgb
|
|
|
57862
57646
|
}
|
|
57863
57647
|
.k-mediaplayer-toolbar {
|
|
57864
57648
|
border-width: 0;
|
|
57865
|
-
//
|
|
57866
|
-
width: 100% !important;
|
|
57867
|
-
// sass-lint:enable no-important
|
|
57649
|
+
width: 100% !important; // stylelint-disable-line declaration-no-important
|
|
57868
57650
|
box-shadow: none;
|
|
57869
57651
|
|
|
57870
57652
|
|
|
@@ -57895,9 +57677,7 @@ $kendo-media-player-titlebar-gradient: rgba( $kendo-media-player-text, .7 ), rgb
|
|
|
57895
57677
|
transform: translateY( -50% );
|
|
57896
57678
|
}
|
|
57897
57679
|
.k-mediaplayer-seekbar .k-slider-track {
|
|
57898
|
-
//
|
|
57899
|
-
width: 100% !important;
|
|
57900
|
-
// sass-lint:enable no-important
|
|
57680
|
+
width: 100% !important; // stylelint-disable-line declaration-no-important
|
|
57901
57681
|
border-radius: 0;
|
|
57902
57682
|
}
|
|
57903
57683
|
.k-mediaplayer-seekbar .k-slider-selection {
|
|
@@ -57909,10 +57689,8 @@ $kendo-media-player-titlebar-gradient: rgba( $kendo-media-player-text, .7 ), rgb
|
|
|
57909
57689
|
position: fixed;
|
|
57910
57690
|
top: 0;
|
|
57911
57691
|
left: 0;
|
|
57912
|
-
//
|
|
57913
|
-
|
|
57914
|
-
height: 100% !important;
|
|
57915
|
-
// sass-lint:enable no-important
|
|
57692
|
+
width: 100% !important; // stylelint-disable-line declaration-no-important
|
|
57693
|
+
height: 100% !important; // stylelint-disable-line declaration-no-important
|
|
57916
57694
|
}
|
|
57917
57695
|
|
|
57918
57696
|
}
|
|
@@ -58874,7 +58652,7 @@ $kendo-pdf-viewer-icon-text: $kendo-dropzone-icon-text !default;
|
|
|
58874
58652
|
height: 100%;
|
|
58875
58653
|
align-items: center;
|
|
58876
58654
|
justify-content: center;
|
|
58877
|
-
background-color: inherit !important; //
|
|
58655
|
+
background-color: inherit !important; // stylelint-disable-line declaration-no-important
|
|
58878
58656
|
|
|
58879
58657
|
.k-upload,
|
|
58880
58658
|
.k-dropzone,
|
|
@@ -58888,7 +58666,7 @@ $kendo-pdf-viewer-icon-text: $kendo-dropzone-icon-text !default;
|
|
|
58888
58666
|
|
|
58889
58667
|
// Search
|
|
58890
58668
|
.k-pdf-viewer-search-dialog {
|
|
58891
|
-
padding: 0 !important; //
|
|
58669
|
+
padding: 0 !important; // stylelint-disable-line declaration-no-important
|
|
58892
58670
|
}
|
|
58893
58671
|
|
|
58894
58672
|
.k-search-panel {
|
|
@@ -58928,6 +58706,7 @@ $kendo-pdf-viewer-icon-text: $kendo-dropzone-icon-text !default;
|
|
|
58928
58706
|
border-style: solid;
|
|
58929
58707
|
border-radius: $kendo-pdf-viewer-search-panel-border-radius;
|
|
58930
58708
|
z-index: 10;
|
|
58709
|
+
cursor: default;
|
|
58931
58710
|
}
|
|
58932
58711
|
|
|
58933
58712
|
// Alias
|
|
@@ -59512,17 +59291,6 @@ $kendo-scrollview-transition-timing-function: ease-in-out !default;
|
|
|
59512
59291
|
}
|
|
59513
59292
|
}
|
|
59514
59293
|
|
|
59515
|
-
.k-rtl,
|
|
59516
|
-
[dir="rtl"] {
|
|
59517
|
-
.k-scrollview-prev,
|
|
59518
|
-
.k-scrollview-next {
|
|
59519
|
-
.k-icon,
|
|
59520
|
-
.k-svg-icon {
|
|
59521
|
-
transform: scaleX(-1);
|
|
59522
|
-
}
|
|
59523
|
-
}
|
|
59524
|
-
}
|
|
59525
|
-
|
|
59526
59294
|
}
|
|
59527
59295
|
|
|
59528
59296
|
|
|
@@ -59956,6 +59724,7 @@ $kendo-treemap-line-height: $kendo-line-height-md !default;
|
|
|
59956
59724
|
|
|
59957
59725
|
|
|
59958
59726
|
// Exported variables
|
|
59727
|
+
// stylelint-disable selector-class-pattern
|
|
59959
59728
|
.k-var--chart-font {
|
|
59960
59729
|
font-size: $kendo-chart-font-size;
|
|
59961
59730
|
}
|
|
@@ -59972,6 +59741,7 @@ $kendo-treemap-line-height: $kendo-line-height-md !default;
|
|
|
59972
59741
|
.k-var--chart-label-font {
|
|
59973
59742
|
font-size: $kendo-chart-label-font-size;
|
|
59974
59743
|
}
|
|
59744
|
+
// stylelint-enable selector-class-pattern
|
|
59975
59745
|
|
|
59976
59746
|
// Elements
|
|
59977
59747
|
.k-chart,
|
|
@@ -60433,6 +60203,7 @@ $kendo-treemap-line-height: $kendo-line-height-md !default;
|
|
|
60433
60203
|
@mixin kendo-dataviz--theme-base() {
|
|
60434
60204
|
|
|
60435
60205
|
// Exported variables
|
|
60206
|
+
// stylelint-disable selector-class-pattern
|
|
60436
60207
|
.k-var--chart-inactive {
|
|
60437
60208
|
background-color: $kendo-chart-inactive;
|
|
60438
60209
|
}
|
|
@@ -60476,6 +60247,7 @@ $kendo-treemap-line-height: $kendo-line-height-md !default;
|
|
|
60476
60247
|
.k-var--chart-error-bars-background {
|
|
60477
60248
|
background-color: $kendo-chart-error-bars-background;
|
|
60478
60249
|
}
|
|
60250
|
+
// stylelint-enable selector-class-pattern
|
|
60479
60251
|
|
|
60480
60252
|
// Elements
|
|
60481
60253
|
.k-chart,
|
|
@@ -61286,7 +61058,7 @@ $kendo-signature-md-padding-x: $kendo-signature-padding-x !default;
|
|
|
61286
61058
|
$kendo-signature-lg-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
|
|
61287
61059
|
|
|
61288
61060
|
$kendo-signature-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
61289
|
-
$kendo-signature-sm-padding-y: k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
61061
|
+
$kendo-signature-sm-padding-y: k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
61290
61062
|
$kendo-signature-md-padding-y: $kendo-signature-padding-y !default;
|
|
61291
61063
|
$kendo-signature-lg-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
|
|
61292
61064
|
|