@progress/kendo-theme-material 6.3.1-dev.0 → 6.4.0-dev.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/all.css +348 -154
- package/dist/all.scss +246 -149
- package/dist/meta/sassdoc-data.json +949 -1057
- package/dist/meta/sassdoc-raw-data.json +469 -519
- package/dist/meta/variables.json +16 -16
- package/lib/swatches/material-aqua-dark.json +1 -1
- package/lib/swatches/material-arctic.json +1 -1
- package/lib/swatches/material-burnt-teal.json +1 -1
- package/lib/swatches/material-dataviz-v4.json +1 -1
- package/lib/swatches/material-eggplant.json +1 -1
- package/lib/swatches/material-lime-dark.json +1 -1
- package/lib/swatches/material-lime.json +1 -1
- package/lib/swatches/material-main-dark.json +1 -1
- package/lib/swatches/material-main.json +1 -1
- package/lib/swatches/material-nova.json +1 -1
- package/lib/swatches/material-pacific-dark.json +1 -1
- package/lib/swatches/material-pacific.json +1 -1
- package/lib/swatches/material-sky-dark.json +1 -1
- package/lib/swatches/material-sky.json +1 -1
- package/lib/swatches/material-smoke.json +1 -1
- package/package.json +5 -5
- package/scss/drawer/_variables.scss +2 -0
- package/scss/fab/_theme.scss +1 -1
- package/scss/fab/_variables.scss +5 -11
- package/scss/input/_variables.scss +0 -3
package/dist/all.scss
CHANGED
|
@@ -7013,6 +7013,22 @@ $kendo-utils: (
|
|
|
7013
7013
|
"black": black,
|
|
7014
7014
|
"white": white
|
|
7015
7015
|
)),
|
|
7016
|
+
"background-position": (
|
|
7017
|
+
center: center,
|
|
7018
|
+
top: top,
|
|
7019
|
+
right: right,
|
|
7020
|
+
bottom: bottom,
|
|
7021
|
+
left: left,
|
|
7022
|
+
top-left: top left,
|
|
7023
|
+
top-right: top right,
|
|
7024
|
+
bottom-left: bottom left,
|
|
7025
|
+
bottom-right: bottom right
|
|
7026
|
+
),
|
|
7027
|
+
"background-size": (
|
|
7028
|
+
auto,
|
|
7029
|
+
cover,
|
|
7030
|
+
contain
|
|
7031
|
+
),
|
|
7016
7032
|
|
|
7017
7033
|
// Border
|
|
7018
7034
|
"border-width": (
|
|
@@ -7422,25 +7438,25 @@ $kendo-utils: (
|
|
|
7422
7438
|
/// This is equivalent to `clear: left;`.
|
|
7423
7439
|
/// @example clear: left;
|
|
7424
7440
|
/// @name .k-clear-left
|
|
7425
|
-
/// @group
|
|
7441
|
+
/// @group clear
|
|
7426
7442
|
/// @contextType css
|
|
7427
7443
|
|
|
7428
7444
|
/// This is equivalent to `clear: right;`.
|
|
7429
7445
|
/// @example clear: right;
|
|
7430
7446
|
/// @name .k-clear-right
|
|
7431
|
-
/// @group
|
|
7447
|
+
/// @group clear
|
|
7432
7448
|
/// @contextType css
|
|
7433
7449
|
|
|
7434
7450
|
/// This is equivalent to `clear: both;`.
|
|
7435
7451
|
/// @example clear: both;
|
|
7436
7452
|
/// @name .k-clear-both
|
|
7437
|
-
/// @group
|
|
7453
|
+
/// @group clear
|
|
7438
7454
|
/// @contextType css
|
|
7439
7455
|
|
|
7440
7456
|
/// This is equivalent to `clear: none;`.
|
|
7441
7457
|
/// @example clear: none;
|
|
7442
7458
|
/// @name .k-clear-none
|
|
7443
|
-
/// @group
|
|
7459
|
+
/// @group clear
|
|
7444
7460
|
/// @contextType css
|
|
7445
7461
|
|
|
7446
7462
|
@mixin kendo-utils--layout--clear() {
|
|
@@ -7885,91 +7901,91 @@ $kendo-utils: (
|
|
|
7885
7901
|
/// This is equivalent to `top: 0;`.
|
|
7886
7902
|
/// @example top: 0;
|
|
7887
7903
|
/// @name .k-top-0
|
|
7888
|
-
/// @group
|
|
7904
|
+
/// @group placement
|
|
7889
7905
|
/// @contextType css
|
|
7890
7906
|
|
|
7891
7907
|
/// This is equivalent to `right: 0;`.
|
|
7892
7908
|
/// @example right: 0;
|
|
7893
7909
|
/// @name .k-right-0
|
|
7894
|
-
/// @group
|
|
7910
|
+
/// @group placement
|
|
7895
7911
|
/// @contextType css
|
|
7896
7912
|
|
|
7897
7913
|
/// This is equivalent to `bottom: 0;`.
|
|
7898
7914
|
/// @example bottom: 0;
|
|
7899
7915
|
/// @name .k-bottom-0
|
|
7900
|
-
/// @group
|
|
7916
|
+
/// @group placement
|
|
7901
7917
|
/// @contextType css
|
|
7902
7918
|
|
|
7903
7919
|
/// This is equivalent to `left: 0;`.
|
|
7904
7920
|
/// @example left: 0;
|
|
7905
7921
|
/// @name .k-left-0
|
|
7906
|
-
/// @group
|
|
7922
|
+
/// @group placement
|
|
7907
7923
|
/// @contextType css
|
|
7908
7924
|
|
|
7909
7925
|
/// This is equivalent to `top: 0;`.
|
|
7910
7926
|
/// @example top: 0;
|
|
7911
7927
|
/// @name .k-pos-top-0
|
|
7912
|
-
/// @group
|
|
7928
|
+
/// @group placement
|
|
7913
7929
|
/// @contextType css
|
|
7914
7930
|
|
|
7915
7931
|
/// This is equivalent to `right: 0;`.
|
|
7916
7932
|
/// @example right: 0;
|
|
7917
7933
|
/// @name .k-pos-right-0
|
|
7918
|
-
/// @group
|
|
7934
|
+
/// @group placement
|
|
7919
7935
|
/// @contextType css
|
|
7920
7936
|
|
|
7921
7937
|
/// This is equivalent to `bottom: 0;`.
|
|
7922
7938
|
/// @example bottom: 0;
|
|
7923
7939
|
/// @name .k-pos-bottom-0
|
|
7924
|
-
/// @group
|
|
7940
|
+
/// @group placement
|
|
7925
7941
|
/// @contextType css
|
|
7926
7942
|
|
|
7927
7943
|
/// This is equivalent to `left: 0;`.
|
|
7928
7944
|
/// @example left: 0;
|
|
7929
7945
|
/// @name .k-pos-left-0
|
|
7930
|
-
/// @group
|
|
7946
|
+
/// @group placement
|
|
7931
7947
|
/// @contextType css
|
|
7932
7948
|
|
|
7933
7949
|
/// This is equivalent to `top: 0; left: 0;`.
|
|
7934
7950
|
/// @example top: 0; left: 0;
|
|
7935
7951
|
/// @name .k-top-left-0
|
|
7936
|
-
/// @group
|
|
7952
|
+
/// @group placement
|
|
7937
7953
|
/// @contextType css
|
|
7938
7954
|
|
|
7939
7955
|
/// This is equivalent to `top: 0; right: 0;`.
|
|
7940
7956
|
/// @example top: 0; right: 0;
|
|
7941
7957
|
/// @name .k-top-right-0
|
|
7942
|
-
/// @group
|
|
7958
|
+
/// @group placement
|
|
7943
7959
|
/// @contextType css
|
|
7944
7960
|
|
|
7945
7961
|
/// This is equivalent to `bottom: 0; left: 0;`.
|
|
7946
7962
|
/// @example bottom: 0; left: 0;
|
|
7947
7963
|
/// @name .k-bottom-left-0
|
|
7948
|
-
/// @group
|
|
7964
|
+
/// @group placement
|
|
7949
7965
|
/// @contextType css
|
|
7950
7966
|
|
|
7951
7967
|
/// This is equivalent to `bottom: 0; right: 0;`.
|
|
7952
7968
|
/// @example bottom: 0; right: 0;
|
|
7953
7969
|
/// @name .k-bottom-right-0
|
|
7954
|
-
/// @group
|
|
7970
|
+
/// @group placement
|
|
7955
7971
|
/// @contextType css
|
|
7956
7972
|
|
|
7957
|
-
/// This is equivalent to `inset: 0;`.
|
|
7973
|
+
/// This is equivalent to `inset: 0;`.
|
|
7958
7974
|
/// @example inset: 0;
|
|
7959
7975
|
/// @name .k-inset-0
|
|
7960
|
-
/// @group
|
|
7976
|
+
/// @group placement
|
|
7961
7977
|
/// @contextType css
|
|
7962
7978
|
|
|
7963
7979
|
/// This is equivalent to `inset-inline: 0;`.
|
|
7964
7980
|
/// @example inset-inline: 0;
|
|
7965
7981
|
/// @name .k-inset-x-0
|
|
7966
|
-
/// @group
|
|
7982
|
+
/// @group placement
|
|
7967
7983
|
/// @contextType css
|
|
7968
7984
|
|
|
7969
7985
|
/// This is equivalent to `inset-block: 0;`.
|
|
7970
7986
|
/// @example inset-block: 0;
|
|
7971
7987
|
/// @name .k-inset-y-0
|
|
7972
|
-
/// @group
|
|
7988
|
+
/// @group placement
|
|
7973
7989
|
/// @contextType css
|
|
7974
7990
|
|
|
7975
7991
|
@mixin kendo-utils--layout--placement() {
|
|
@@ -7981,7 +7997,7 @@ $kendo-utils: (
|
|
|
7981
7997
|
@include generate-utils( left, left, $kendo-utils-placement );
|
|
7982
7998
|
|
|
7983
7999
|
|
|
7984
|
-
//
|
|
8000
|
+
// placement length utility classes
|
|
7985
8001
|
@each $side in (top, right, bottom, left) {
|
|
7986
8002
|
.#{$kendo-prefix}#{$side},
|
|
7987
8003
|
.#{$kendo-prefix}pos-#{$side} { #{$side}: 0; } // sass-lint:disable-line brace-style
|
|
@@ -8874,37 +8890,37 @@ $kendo-utils: (
|
|
|
8874
8890
|
// #region @import "./_grid-auto-flow.scss"; -> node_modules/@progress/kendo-theme-utils/scss/flex-grid/_grid-auto-flow.scss
|
|
8875
8891
|
/// This is equivalent to `grid-auto-flow: row;`.
|
|
8876
8892
|
/// @example grid-auto-flow: row;
|
|
8877
|
-
/// @name .k-grid-
|
|
8893
|
+
/// @name .k-grid-flow-row
|
|
8878
8894
|
/// @group grid-auto-flow
|
|
8879
8895
|
/// @contextType css
|
|
8880
8896
|
|
|
8881
8897
|
/// This is equivalent to `grid-auto-flow: column;`.
|
|
8882
8898
|
/// @example grid-auto-flow: column;
|
|
8883
|
-
/// @name .k-grid-
|
|
8899
|
+
/// @name .k-grid-flow-column
|
|
8884
8900
|
/// @group grid-auto-flow
|
|
8885
8901
|
/// @contextType css
|
|
8886
8902
|
|
|
8887
8903
|
/// This is equivalent to `grid-auto-flow: dense;`.
|
|
8888
8904
|
/// @example grid-auto-flow: dense;
|
|
8889
|
-
/// @name .k-grid-
|
|
8905
|
+
/// @name .k-grid-flow-dense
|
|
8890
8906
|
/// @group grid-auto-flow
|
|
8891
8907
|
/// @contextType css
|
|
8892
8908
|
|
|
8893
8909
|
/// This is equivalent to `grid-auto-flow: row dense;`.
|
|
8894
8910
|
/// @example grid-auto-flow: row dense;
|
|
8895
|
-
/// @name .k-grid-
|
|
8911
|
+
/// @name .k-grid-flow-row-dense
|
|
8896
8912
|
/// @group grid-auto-flow
|
|
8897
8913
|
/// @contextType css
|
|
8898
8914
|
|
|
8899
8915
|
/// This is equivalent to `grid-auto-flow: col dense;`.
|
|
8900
8916
|
/// @example grid-auto-flow: col dense;
|
|
8901
|
-
/// @name .k-grid-
|
|
8917
|
+
/// @name .k-grid-flow-col-dense
|
|
8902
8918
|
/// @group grid-auto-flow
|
|
8903
8919
|
/// @contextType css
|
|
8904
8920
|
|
|
8905
8921
|
/// This is equivalent to `grid-auto-flow: unset;`.
|
|
8906
8922
|
/// @example grid-auto-flow: unset;
|
|
8907
|
-
/// @name .k-grid-
|
|
8923
|
+
/// @name .k-grid-flow-unset
|
|
8908
8924
|
/// @group grid-auto-flow
|
|
8909
8925
|
/// @contextType css
|
|
8910
8926
|
|
|
@@ -10276,7 +10292,7 @@ $kendo-utils: (
|
|
|
10276
10292
|
|
|
10277
10293
|
/// This is equivalent to `padding: 0.75rem;`.
|
|
10278
10294
|
/// @example padding: 0.75rem;
|
|
10279
|
-
/// @name .k-p-
|
|
10295
|
+
/// @name .k-p-md
|
|
10280
10296
|
/// @group padding
|
|
10281
10297
|
/// @contextType css
|
|
10282
10298
|
|
|
@@ -11671,12 +11687,106 @@ $kendo-utils: (
|
|
|
11671
11687
|
|
|
11672
11688
|
}
|
|
11673
11689
|
|
|
11690
|
+
// #endregion
|
|
11691
|
+
// #region @import "./_background-position.scss"; -> node_modules/@progress/kendo-theme-utils/scss/background/_background-position.scss
|
|
11692
|
+
/// This is equivalent to `background-position: center;`.
|
|
11693
|
+
/// @example background-position: center;
|
|
11694
|
+
/// @name .k-bg-center
|
|
11695
|
+
/// @group background-position
|
|
11696
|
+
/// @contextType css
|
|
11697
|
+
|
|
11698
|
+
/// This is equivalent to `background-position: top;`.
|
|
11699
|
+
/// @example background-position: top;
|
|
11700
|
+
/// @name .k-bg-top
|
|
11701
|
+
/// @group background-position
|
|
11702
|
+
/// @contextType css
|
|
11703
|
+
|
|
11704
|
+
/// This is equivalent to `background-position: right;`.
|
|
11705
|
+
/// @example background-position: right;
|
|
11706
|
+
/// @name .k-bg-right
|
|
11707
|
+
/// @group background-position
|
|
11708
|
+
/// @contextType css
|
|
11709
|
+
|
|
11710
|
+
/// This is equivalent to `background-position: bottom;`.
|
|
11711
|
+
/// @example background-position: bottom;
|
|
11712
|
+
/// @name .k-bg-bottom
|
|
11713
|
+
/// @group background-position
|
|
11714
|
+
/// @contextType css
|
|
11715
|
+
|
|
11716
|
+
/// This is equivalent to `background-position: left;`.
|
|
11717
|
+
/// @example background-position: left;
|
|
11718
|
+
/// @name .k-bg-left
|
|
11719
|
+
/// @group background-position
|
|
11720
|
+
/// @contextType css
|
|
11721
|
+
|
|
11722
|
+
/// This is equivalent to `background-position: top left;`.
|
|
11723
|
+
/// @example background-position: top left;
|
|
11724
|
+
/// @name .k-bg-top-left
|
|
11725
|
+
/// @group background-position
|
|
11726
|
+
/// @contextType css
|
|
11727
|
+
|
|
11728
|
+
/// This is equivalent to `background-position: top right;`.
|
|
11729
|
+
/// @example background-position: top right;
|
|
11730
|
+
/// @name .k-bg-top-right
|
|
11731
|
+
/// @group background-position
|
|
11732
|
+
/// @contextType css
|
|
11733
|
+
|
|
11734
|
+
/// This is equivalent to `background-position: bottom left;`.
|
|
11735
|
+
/// @example background-position: bottom left;
|
|
11736
|
+
/// @name .k-bg-bottom-left
|
|
11737
|
+
/// @group background-position
|
|
11738
|
+
/// @contextType css
|
|
11739
|
+
|
|
11740
|
+
/// This is equivalent to `background-position: bottom right;`.
|
|
11741
|
+
/// @example background-position: bottom right;
|
|
11742
|
+
/// @name .k-bg-bottom-right
|
|
11743
|
+
/// @group background-position
|
|
11744
|
+
/// @contextType css
|
|
11745
|
+
|
|
11746
|
+
@mixin kendo-utils--background--background-position() {
|
|
11747
|
+
|
|
11748
|
+
// Background position utility classes
|
|
11749
|
+
$kendo-utils-background-position: k-map-get( $kendo-utils, "background-position" ) !default;
|
|
11750
|
+
@include generate-utils( bg, background-position, $kendo-utils-background-position );
|
|
11751
|
+
|
|
11752
|
+
}
|
|
11753
|
+
|
|
11754
|
+
// #endregion
|
|
11755
|
+
// #region @import "./_background-size.scss"; -> node_modules/@progress/kendo-theme-utils/scss/background/_background-size.scss
|
|
11756
|
+
/// This is equivalent to `background-size: auto;`.
|
|
11757
|
+
/// @example background-size: auto;
|
|
11758
|
+
/// @name .k-bg-auto
|
|
11759
|
+
/// @group background-size
|
|
11760
|
+
/// @contextType css
|
|
11761
|
+
|
|
11762
|
+
/// This is equivalent to `background-size: cover;`.
|
|
11763
|
+
/// @example background-size: cover;
|
|
11764
|
+
/// @name .k-bg-cover
|
|
11765
|
+
/// @group background-size
|
|
11766
|
+
/// @contextType css
|
|
11767
|
+
|
|
11768
|
+
/// This is equivalent to `background-size: contain;`.
|
|
11769
|
+
/// @example background-size: contain;
|
|
11770
|
+
/// @name .k-bg-contain
|
|
11771
|
+
/// @group background-size
|
|
11772
|
+
/// @contextType css
|
|
11773
|
+
|
|
11774
|
+
@mixin kendo-utils--background--background-size() {
|
|
11775
|
+
|
|
11776
|
+
// Background size utility classes
|
|
11777
|
+
$kendo-utils-background-size: k-map-get( $kendo-utils, "background-size" ) !default;
|
|
11778
|
+
@include generate-utils( bg, background-size, $kendo-utils-background-size );
|
|
11779
|
+
|
|
11780
|
+
}
|
|
11781
|
+
|
|
11674
11782
|
// #endregion
|
|
11675
11783
|
|
|
11676
11784
|
|
|
11677
11785
|
@mixin kendo-utils--background() {
|
|
11678
11786
|
@include kendo-utils--background--background-clip();
|
|
11679
11787
|
@include kendo-utils--background--background-color();
|
|
11788
|
+
@include kendo-utils--background--background-position();
|
|
11789
|
+
@include kendo-utils--background--background-size();
|
|
11680
11790
|
}
|
|
11681
11791
|
|
|
11682
11792
|
// #endregion
|
|
@@ -15712,13 +15822,16 @@ $ki-rotate-map: (
|
|
|
15712
15822
|
}
|
|
15713
15823
|
|
|
15714
15824
|
// RTL icons
|
|
15715
|
-
.k-rtl
|
|
15716
|
-
|
|
15717
|
-
|
|
15718
|
-
|
|
15719
|
-
|
|
15720
|
-
|
|
15721
|
-
|
|
15825
|
+
.k-rtl,
|
|
15826
|
+
[dir="rtl"] {
|
|
15827
|
+
.k-i-indent-increase,
|
|
15828
|
+
.k-i-indent-decrease,
|
|
15829
|
+
.k-i-caret-alt-right,
|
|
15830
|
+
.k-i-caret-alt-left,
|
|
15831
|
+
.k-svg-i-caret-alt-right,
|
|
15832
|
+
.k-svg-i-caret-alt-left {
|
|
15833
|
+
transform: scaleX(-1);
|
|
15834
|
+
}
|
|
15722
15835
|
}
|
|
15723
15836
|
|
|
15724
15837
|
.k-sprite {
|
|
@@ -17562,7 +17675,7 @@ $kendo-listgroup-item-border-width: 1px !default;
|
|
|
17562
17675
|
flex: 0 0 auto;
|
|
17563
17676
|
position: absolute;
|
|
17564
17677
|
top: 50%;
|
|
17565
|
-
|
|
17678
|
+
inset-inline-end: 0;
|
|
17566
17679
|
transform: translateY(-50%);
|
|
17567
17680
|
}
|
|
17568
17681
|
}
|
|
@@ -24150,7 +24263,6 @@ $kendo-input-sizes: (
|
|
|
24150
24263
|
padding-y: $kendo-input-sm-padding-y,
|
|
24151
24264
|
font-size: $kendo-input-sm-font-size,
|
|
24152
24265
|
line-height: $kendo-input-sm-line-height,
|
|
24153
|
-
icon-size: calc( #{$kendo-icon-size} + #{$kendo-input-sm-padding-y * 2} ),
|
|
24154
24266
|
button-padding-x: k-map-get( $kendo-spacing, 1 ),
|
|
24155
24267
|
button-padding-y: k-map-get( $kendo-spacing, 1 )
|
|
24156
24268
|
),
|
|
@@ -24159,7 +24271,6 @@ $kendo-input-sizes: (
|
|
|
24159
24271
|
padding-y: $kendo-input-md-padding-y,
|
|
24160
24272
|
font-size: $kendo-input-md-font-size,
|
|
24161
24273
|
line-height: $kendo-input-md-line-height,
|
|
24162
|
-
icon-size: calc( #{$kendo-icon-size} + #{$kendo-input-md-padding-y * 2} ),
|
|
24163
24274
|
button-padding-x: k-map-get( $kendo-spacing, 1 ),
|
|
24164
24275
|
button-padding-y: k-map-get( $kendo-spacing, 1 )
|
|
24165
24276
|
),
|
|
@@ -24168,7 +24279,6 @@ $kendo-input-sizes: (
|
|
|
24168
24279
|
padding-y: $kendo-input-lg-padding-y,
|
|
24169
24280
|
font-size: $kendo-input-lg-font-size,
|
|
24170
24281
|
line-height: $kendo-input-lg-line-height,
|
|
24171
|
-
icon-size: calc( #{$kendo-icon-size} + #{$kendo-input-lg-padding-y * 2} ),
|
|
24172
24282
|
button-padding-x: k-map-get( $kendo-spacing, 1 ),
|
|
24173
24283
|
button-padding-y: k-map-get( $kendo-spacing, 1 )
|
|
24174
24284
|
)
|
|
@@ -25702,8 +25812,8 @@ $_kendo-module-meta: (
|
|
|
25702
25812
|
box-sizing: border-box;
|
|
25703
25813
|
}
|
|
25704
25814
|
|
|
25705
|
-
.k-input,
|
|
25706
|
-
.k-picker {
|
|
25815
|
+
> .k-input,
|
|
25816
|
+
> .k-picker {
|
|
25707
25817
|
border-width: 0 !important; // sass-lint:disable-line no-important
|
|
25708
25818
|
color: inherit;
|
|
25709
25819
|
background: none;
|
|
@@ -25895,6 +26005,7 @@ $_kendo-module-meta: (
|
|
|
25895
26005
|
flex-flow: row nowrap;
|
|
25896
26006
|
align-items: center;
|
|
25897
26007
|
justify-content: center;
|
|
26008
|
+
box-sizing: content-box;
|
|
25898
26009
|
}
|
|
25899
26010
|
|
|
25900
26011
|
// Input with SVG icon
|
|
@@ -26067,7 +26178,6 @@ $_kendo-module-meta: (
|
|
|
26067
26178
|
$_padding-y: k-map-get( $size-props, padding-y );
|
|
26068
26179
|
$_font-size: k-map-get( $size-props, font-size );
|
|
26069
26180
|
$_line-height: k-map-get( $size-props, line-height );
|
|
26070
|
-
$_icon-size: k-map-get( $size-props, icon-size );
|
|
26071
26181
|
$_button-padding-x: k-map-get( $size-props, button-padding-x );
|
|
26072
26182
|
$_button-padding-y: k-map-get( $size-props, button-padding-y );
|
|
26073
26183
|
|
|
@@ -26105,8 +26215,9 @@ $_kendo-module-meta: (
|
|
|
26105
26215
|
.k-input-prefix > .k-svg-icon,
|
|
26106
26216
|
.k-input-suffix > .k-icon,
|
|
26107
26217
|
.k-input-suffix > .k-svg-icon {
|
|
26108
|
-
|
|
26109
|
-
|
|
26218
|
+
padding-block: $_padding-y;
|
|
26219
|
+
padding-inline: $_padding-y;
|
|
26220
|
+
box-sizing: content-box;
|
|
26110
26221
|
}
|
|
26111
26222
|
|
|
26112
26223
|
&.k-icon-picker .k-input-inner {
|
|
@@ -27703,11 +27814,8 @@ $kendo-listbox-drop-hint-width: 2px !default;
|
|
|
27703
27814
|
&[dir="rtl"],
|
|
27704
27815
|
[dir="rtl"] & {
|
|
27705
27816
|
|
|
27706
|
-
|
|
27707
|
-
|
|
27708
|
-
.k-listbox-actions {
|
|
27709
|
-
transform: scaleX(-1);
|
|
27710
|
-
}
|
|
27817
|
+
.k-listbox-actions .k-button-icon {
|
|
27818
|
+
transform: scaleX(-1);
|
|
27711
27819
|
}
|
|
27712
27820
|
}
|
|
27713
27821
|
}
|
|
@@ -36664,12 +36772,12 @@ $kendo-fab-sm-padding-y: k-math-div( $kendo-fab-padding-y, 2 ) !default;
|
|
|
36664
36772
|
$kendo-fab-md-padding-y: $kendo-fab-padding-y !default;
|
|
36665
36773
|
$kendo-fab-lg-padding-y: ( $kendo-fab-padding-y * 1.5 ) !default;
|
|
36666
36774
|
|
|
36667
|
-
/// FAB icon
|
|
36775
|
+
/// Horizontal padding of the FAB icon.
|
|
36668
36776
|
/// @group floating-action-button
|
|
36669
|
-
$kendo-fab-icon-
|
|
36670
|
-
/// FAB icon
|
|
36777
|
+
$kendo-fab-icon-padding-x: k-map-get( $kendo-spacing, 0.5 ) !default; // sass-lint:disable-line leading-zero
|
|
36778
|
+
/// Vertical padding of the FAB icon.
|
|
36671
36779
|
/// @group floating-action-button
|
|
36672
|
-
$kendo-fab-icon-
|
|
36780
|
+
$kendo-fab-icon-padding-y: $kendo-fab-icon-padding-x !default;
|
|
36673
36781
|
/// FAB icon spacing.
|
|
36674
36782
|
/// @group floating-action-button
|
|
36675
36783
|
$kendo-fab-icon-spacing: k-map-get( $kendo-spacing, 1 ) * 1.5 !default;
|
|
@@ -36702,7 +36810,7 @@ $kendo-fab-item-text-line-height: 1.2 !default;
|
|
|
36702
36810
|
|
|
36703
36811
|
/// FAB item icon horizontal padding.
|
|
36704
36812
|
/// @group floating-action-button
|
|
36705
|
-
$kendo-fab-item-icon-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
|
|
36813
|
+
$kendo-fab-item-icon-padding-x: k-map-get( $kendo-spacing, 2 ) + $kendo-fab-icon-padding-x !default;
|
|
36706
36814
|
/// FAB item icon vertical padding.
|
|
36707
36815
|
/// @group floating-action-button
|
|
36708
36816
|
$kendo-fab-item-icon-padding-y: $kendo-fab-item-icon-padding-x !default;
|
|
@@ -36712,12 +36820,6 @@ $kendo-fab-item-icon-border-width: 0 !default;
|
|
|
36712
36820
|
/// Border radius of the FAB item icon.
|
|
36713
36821
|
/// @group floating-action-button
|
|
36714
36822
|
$kendo-fab-item-icon-border-radius: 50% !default;
|
|
36715
|
-
/// Width of the FAB item icon.
|
|
36716
|
-
/// @group floating-action-button
|
|
36717
|
-
$kendo-fab-item-icon-width: 20px !default;
|
|
36718
|
-
/// Height of the FAB item icon.
|
|
36719
|
-
/// @group floating-action-button
|
|
36720
|
-
$kendo-fab-item-icon-height: $kendo-fab-item-icon-width !default;
|
|
36721
36823
|
|
|
36722
36824
|
/// Theme colors map for the FAB.
|
|
36723
36825
|
/// @group floating-action-button
|
|
@@ -36821,8 +36923,9 @@ $kendo-fab-item-active-shadow: $kendo-fab-active-shadow !default;
|
|
|
36821
36923
|
|
|
36822
36924
|
// FAB Icon
|
|
36823
36925
|
.k-fab-icon {
|
|
36824
|
-
|
|
36825
|
-
|
|
36926
|
+
padding-inline: $kendo-fab-icon-padding-x;
|
|
36927
|
+
padding-block: $kendo-fab-icon-padding-y;
|
|
36928
|
+
box-sizing: content-box;
|
|
36826
36929
|
|
|
36827
36930
|
.k-icon-wrapper-host:not(:only-child) &,
|
|
36828
36931
|
&:not(:only-child) {
|
|
@@ -36903,8 +37006,6 @@ $kendo-fab-item-active-shadow: $kendo-fab-active-shadow !default;
|
|
|
36903
37006
|
}
|
|
36904
37007
|
|
|
36905
37008
|
.k-fab-item-icon {
|
|
36906
|
-
width: $kendo-fab-item-icon-width;
|
|
36907
|
-
height: $kendo-fab-item-icon-height;
|
|
36908
37009
|
padding-block: $kendo-fab-item-icon-padding-y;
|
|
36909
37010
|
padding-inline: $kendo-fab-item-icon-padding-x;
|
|
36910
37011
|
border-width: $kendo-fab-item-icon-border-width;
|
|
@@ -37067,7 +37168,7 @@ $kendo-fab-item-active-shadow: $kendo-fab-active-shadow !default;
|
|
|
37067
37168
|
}
|
|
37068
37169
|
|
|
37069
37170
|
// Popup
|
|
37070
|
-
.k-
|
|
37171
|
+
.k-fab-popup {
|
|
37071
37172
|
@include box-shadow( none );
|
|
37072
37173
|
}
|
|
37073
37174
|
|
|
@@ -37190,7 +37291,7 @@ $kendo-fab-item-active-shadow: $kendo-fab-active-shadow !default;
|
|
|
37190
37291
|
}
|
|
37191
37292
|
|
|
37192
37293
|
// Popup
|
|
37193
|
-
.k-
|
|
37294
|
+
.k-fab-popup {
|
|
37194
37295
|
@include box-shadow( none );
|
|
37195
37296
|
}
|
|
37196
37297
|
|
|
@@ -37551,7 +37652,7 @@ $kendo-adaptive-actionsheet-footer-padding-x: k-map-get( $kendo-spacing, 4 ) !de
|
|
|
37551
37652
|
border-width: if( $kendo-actionsheet-border-width, $kendo-actionsheet-border-width, null );
|
|
37552
37653
|
border-top-width: if( $kendo-actionsheet-border-width, 0, null );
|
|
37553
37654
|
top: 0;
|
|
37554
|
-
|
|
37655
|
+
inset-inline-start: 50%;
|
|
37555
37656
|
transform: translateX( -50% );
|
|
37556
37657
|
}
|
|
37557
37658
|
.k-actionsheet-bottom {
|
|
@@ -37559,7 +37660,7 @@ $kendo-adaptive-actionsheet-footer-padding-x: k-map-get( $kendo-spacing, 4 ) !de
|
|
|
37559
37660
|
border-width: if( $kendo-actionsheet-border-width, $kendo-actionsheet-border-width, null );
|
|
37560
37661
|
border-bottom-width: if( $kendo-actionsheet-border-width, 0, null );
|
|
37561
37662
|
bottom: 0;
|
|
37562
|
-
|
|
37663
|
+
inset-inline-start: 50%;
|
|
37563
37664
|
transform: translateX( -50% );
|
|
37564
37665
|
}
|
|
37565
37666
|
.k-actionsheet-left {
|
|
@@ -37718,6 +37819,15 @@ $kendo-adaptive-actionsheet-footer-padding-x: k-map-get( $kendo-spacing, 4 ) !de
|
|
|
37718
37819
|
}
|
|
37719
37820
|
}
|
|
37720
37821
|
|
|
37822
|
+
// RTL
|
|
37823
|
+
.k-rtl,
|
|
37824
|
+
[dir="rtl"] {
|
|
37825
|
+
.k-actionsheet-top,
|
|
37826
|
+
.k-actionsheet-bottom {
|
|
37827
|
+
transform: translateX( 50% );
|
|
37828
|
+
}
|
|
37829
|
+
}
|
|
37830
|
+
|
|
37721
37831
|
}
|
|
37722
37832
|
|
|
37723
37833
|
|
|
@@ -38461,6 +38571,8 @@ $kendo-drawer-item-level-padding-x: $kendo-drawer-item-padding-x !default;
|
|
|
38461
38571
|
$kendo-drawer-item-level-count: 5 !default;
|
|
38462
38572
|
|
|
38463
38573
|
$kendo-drawer-icon-size: $kendo-icon-size !default;
|
|
38574
|
+
$kendo-drawer-icon-padding-x: 0 !default;
|
|
38575
|
+
$kendo-drawer-icon-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
38464
38576
|
|
|
38465
38577
|
$kendo-drawer-mini-initial-width: calc(2 * #{$kendo-drawer-item-padding-x} + #{$kendo-drawer-icon-size}) !default;
|
|
38466
38578
|
|
|
@@ -38635,16 +38747,26 @@ $kendo-drawer-selected-hover-text: $kendo-color-secondary !default;
|
|
|
38635
38747
|
|
|
38636
38748
|
.k-svg-icon,
|
|
38637
38749
|
.k-icon {
|
|
38638
|
-
height: auto;
|
|
38639
|
-
font-size: $kendo-drawer-icon-size;
|
|
38640
|
-
line-height: $kendo-drawer-item-line-height;
|
|
38641
38750
|
flex-shrink: 0;
|
|
38751
|
+
padding-inline: $kendo-drawer-icon-padding-x;
|
|
38752
|
+
padding-block: $kendo-drawer-icon-padding-y;
|
|
38753
|
+
box-sizing: content-box;
|
|
38642
38754
|
|
|
38643
38755
|
&.k-i-none {
|
|
38644
38756
|
margin: 0;
|
|
38645
38757
|
}
|
|
38646
38758
|
}
|
|
38647
38759
|
|
|
38760
|
+
.k-icon {
|
|
38761
|
+
height: auto;
|
|
38762
|
+
font-size: $kendo-drawer-icon-size;
|
|
38763
|
+
}
|
|
38764
|
+
|
|
38765
|
+
.k-svg-icon {
|
|
38766
|
+
width: $kendo-drawer-icon-size;
|
|
38767
|
+
height: $kendo-drawer-icon-size;
|
|
38768
|
+
}
|
|
38769
|
+
|
|
38648
38770
|
.k-item-text {
|
|
38649
38771
|
display: inline-block;
|
|
38650
38772
|
white-space: nowrap;
|
|
@@ -40322,7 +40444,7 @@ $kendo-bottom-nav-flat-border: $kendo-component-border !default;
|
|
|
40322
40444
|
|
|
40323
40445
|
// Solid
|
|
40324
40446
|
@each $name, $color in $kendo-theme-colors {
|
|
40325
|
-
.k-bottom-nav-solid
|
|
40447
|
+
.k-bottom-nav-solid-#{$name} {
|
|
40326
40448
|
@include fill(
|
|
40327
40449
|
$color: k-true-mix( $color, k-contrast-legacy( $color ), 35%),
|
|
40328
40450
|
$bg: $color
|
|
@@ -40337,23 +40459,27 @@ $kendo-bottom-nav-flat-border: $kendo-component-border !default;
|
|
|
40337
40459
|
@include fill( $color: k-contrast-legacy( $color ) );
|
|
40338
40460
|
}
|
|
40339
40461
|
}
|
|
40462
|
+
// TODO: remove when suites update class names
|
|
40463
|
+
.k-bottom-nav-solid.k-bottom-nav-#{$name} {
|
|
40464
|
+
@extend .k-bottom-nav-solid-#{$name} !optional;
|
|
40465
|
+
}
|
|
40340
40466
|
}
|
|
40341
40467
|
|
|
40342
40468
|
// Flat
|
|
40343
|
-
|
|
40344
|
-
|
|
40345
|
-
|
|
40346
|
-
|
|
40347
|
-
|
|
40348
|
-
|
|
40469
|
+
@each $name, $color in $kendo-theme-colors {
|
|
40470
|
+
.k-bottom-nav-flat-#{$name} {
|
|
40471
|
+
@include fill(
|
|
40472
|
+
$kendo-bottom-nav-flat-text,
|
|
40473
|
+
$kendo-bottom-nav-flat-bg,
|
|
40474
|
+
$kendo-bottom-nav-flat-border
|
|
40475
|
+
);
|
|
40349
40476
|
|
|
40350
|
-
|
|
40351
|
-
|
|
40352
|
-
|
|
40353
|
-
|
|
40477
|
+
.k-bottom-nav-item.k-focus,
|
|
40478
|
+
.k-bottom-nav-item:focus {
|
|
40479
|
+
@include fill( $bg: rgba($kendo-bottom-nav-flat-text, .05) );
|
|
40480
|
+
}
|
|
40354
40481
|
|
|
40355
|
-
|
|
40356
|
-
&.k-bottom-nav-#{$name} .k-bottom-nav-item.k-selected {
|
|
40482
|
+
.k-bottom-nav-item.k-selected {
|
|
40357
40483
|
@if $name == "secondary" or $name == "light" {
|
|
40358
40484
|
@include fill( $color: k-try-shade($color, 3) );
|
|
40359
40485
|
} @else {
|
|
@@ -40361,6 +40487,9 @@ $kendo-bottom-nav-flat-border: $kendo-component-border !default;
|
|
|
40361
40487
|
}
|
|
40362
40488
|
}
|
|
40363
40489
|
}
|
|
40490
|
+
.k-bottom-nav-flat.k-bottom-nav-#{$name} {
|
|
40491
|
+
@extend .k-bottom-nav-flat-#{$name} !optional;
|
|
40492
|
+
}
|
|
40364
40493
|
}
|
|
40365
40494
|
|
|
40366
40495
|
}
|
|
@@ -40536,12 +40665,6 @@ $kendo-breadcrumb-focus-shadow: 0 0 2px 1px rgba( black, .06 ) !default;
|
|
|
40536
40665
|
overflow: hidden;
|
|
40537
40666
|
}
|
|
40538
40667
|
|
|
40539
|
-
.k-breadcrumb-container {
|
|
40540
|
-
// TODO: use !k-flex-wrap in rendering
|
|
40541
|
-
&.k-flex-wrap {
|
|
40542
|
-
flex-wrap: wrap;
|
|
40543
|
-
}
|
|
40544
|
-
}
|
|
40545
40668
|
.k-breadcrumb-root-item-container {
|
|
40546
40669
|
align-items: flex-start;
|
|
40547
40670
|
flex-shrink: 0;
|
|
@@ -40553,6 +40676,7 @@ $kendo-breadcrumb-focus-shadow: 0 0 2px 1px rgba( black, .06 ) !default;
|
|
|
40553
40676
|
vertical-align: middle;
|
|
40554
40677
|
display: inline-flex;
|
|
40555
40678
|
flex-direction: row;
|
|
40679
|
+
flex: none;
|
|
40556
40680
|
align-items: center;
|
|
40557
40681
|
overflow: hidden;
|
|
40558
40682
|
}
|
|
@@ -40990,18 +41114,7 @@ $kendo-pager-sizes: (
|
|
|
40990
41114
|
.k-rtl &,
|
|
40991
41115
|
&[dir="rtl"],
|
|
40992
41116
|
[dir="rtl"] & {
|
|
40993
|
-
.k-
|
|
40994
|
-
.k-i-caret-alt-to-right,
|
|
40995
|
-
.k-i-caret-alt-left,
|
|
40996
|
-
.k-i-caret-alt-right,
|
|
40997
|
-
.k-i-arrow-end-left,
|
|
40998
|
-
.k-i-arrow-60-left,
|
|
40999
|
-
.k-i-arrow-60-right,
|
|
41000
|
-
.k-i-arrow-end-right,
|
|
41001
|
-
.k-i-seek-w,
|
|
41002
|
-
.k-i-arrow-w,
|
|
41003
|
-
.k-i-arrow-e,
|
|
41004
|
-
.k-i-seek-e {
|
|
41117
|
+
.k-pager-nav .k-button-icon {
|
|
41005
41118
|
transform: scaleX(-1);
|
|
41006
41119
|
}
|
|
41007
41120
|
}
|
|
@@ -43040,6 +43153,9 @@ $kendo-expander-content-padding-y: k-map-get( $kendo-spacing, 6 ) !default;
|
|
|
43040
43153
|
// Expand / collapse icon
|
|
43041
43154
|
.k-expander-indicator {
|
|
43042
43155
|
margin-left: $kendo-expander-indicator-margin-x;
|
|
43156
|
+
display: flex;
|
|
43157
|
+
justify-content: center;
|
|
43158
|
+
align-items: center;
|
|
43043
43159
|
}
|
|
43044
43160
|
|
|
43045
43161
|
// Expander content
|
|
@@ -44657,15 +44773,11 @@ $kendo-adaptive-scheduler-subtle-text: $kendo-subtle-text !default;
|
|
|
44657
44773
|
.k-task {
|
|
44658
44774
|
display: flex;
|
|
44659
44775
|
align-items: center;
|
|
44776
|
+
gap: .5em;
|
|
44660
44777
|
|
|
44661
44778
|
.k-scheduler-mark {
|
|
44662
44779
|
border-radius: 50%;
|
|
44663
|
-
|
|
44664
|
-
|
|
44665
|
-
.k-i-reload,
|
|
44666
|
-
.k-i-arrow-rotate-cw {
|
|
44667
|
-
font-size: 1em;
|
|
44668
|
-
margin-right: .5em;
|
|
44780
|
+
margin: 0;
|
|
44669
44781
|
}
|
|
44670
44782
|
|
|
44671
44783
|
.k-scheduler-task-text {
|
|
@@ -44812,8 +44924,9 @@ $kendo-adaptive-scheduler-subtle-text: $kendo-subtle-text !default;
|
|
|
44812
44924
|
&[dir="rtl"],
|
|
44813
44925
|
[dir="rtl"] & {
|
|
44814
44926
|
|
|
44815
|
-
.k-header-cancel .k-
|
|
44816
|
-
.k-listgroup-item .k-select .k-
|
|
44927
|
+
.k-header-cancel .k-button-icon,
|
|
44928
|
+
.k-listgroup-item .k-select .k-svg-icon,
|
|
44929
|
+
.k-listgroup-item .k-select .k-icon {
|
|
44817
44930
|
transform: scaleX( -1 );
|
|
44818
44931
|
}
|
|
44819
44932
|
|
|
@@ -45428,6 +45541,7 @@ $kendo-grid-row-resizer-height: k-map-get( $kendo-spacing, .5 ) !default;
|
|
|
45428
45541
|
|
|
45429
45542
|
.k-grid-header,
|
|
45430
45543
|
.k-grid-content,
|
|
45544
|
+
.k-grid-content-locked,
|
|
45431
45545
|
.k-grid-footer {
|
|
45432
45546
|
.k-table {
|
|
45433
45547
|
table-layout: fixed;
|
|
@@ -46695,7 +46809,8 @@ $kendo-grid-row-resizer-height: k-map-get( $kendo-spacing, .5 ) !default;
|
|
|
46695
46809
|
cursor: pointer;
|
|
46696
46810
|
|
|
46697
46811
|
> .k-icon,
|
|
46698
|
-
> .k-svg-icon
|
|
46812
|
+
> .k-svg-icon,
|
|
46813
|
+
> .k-expander-indicator {
|
|
46699
46814
|
margin-inline-end: $kendo-icon-spacing;
|
|
46700
46815
|
}
|
|
46701
46816
|
}
|
|
@@ -48190,7 +48305,8 @@ $kendo-spreadsheet-drawing-anchor-bg: rgba( $kendo-selected-bg, .25 ) !default;
|
|
|
48190
48305
|
align-items: center;
|
|
48191
48306
|
flex: 1;
|
|
48192
48307
|
|
|
48193
|
-
> .k-
|
|
48308
|
+
> .k-icon,
|
|
48309
|
+
> .k-svg-icon {
|
|
48194
48310
|
padding-block: 0;
|
|
48195
48311
|
padding-inline: $kendo-padding-md-y;
|
|
48196
48312
|
box-sizing: content-box;
|
|
@@ -48701,7 +48817,8 @@ $kendo-spreadsheet-drawing-anchor-bg: rgba( $kendo-selected-bg, .25 ) !default;
|
|
|
48701
48817
|
cursor: pointer;
|
|
48702
48818
|
|
|
48703
48819
|
> .k-icon,
|
|
48704
|
-
> .k-svg-icon
|
|
48820
|
+
> .k-svg-icon,
|
|
48821
|
+
> .k-expander-indicator {
|
|
48705
48822
|
margin-right: $kendo-padding-md-y;
|
|
48706
48823
|
}
|
|
48707
48824
|
}
|
|
@@ -52918,24 +53035,6 @@ $kendo-editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-li
|
|
|
52918
53035
|
}
|
|
52919
53036
|
}
|
|
52920
53037
|
|
|
52921
|
-
// Generic widgets
|
|
52922
|
-
.k-numerictextbox {
|
|
52923
|
-
width: 10em;
|
|
52924
|
-
|
|
52925
|
-
& + .k-dropdown-list {
|
|
52926
|
-
width: 5em;
|
|
52927
|
-
}
|
|
52928
|
-
|
|
52929
|
-
& + .k-color-picker,
|
|
52930
|
-
& + .k-dropdown-list {
|
|
52931
|
-
margin-left: k-map-get( $kendo-spacing, 2 );
|
|
52932
|
-
}
|
|
52933
|
-
}
|
|
52934
|
-
|
|
52935
|
-
.k-color-picker {
|
|
52936
|
-
vertical-align: middle;
|
|
52937
|
-
}
|
|
52938
|
-
|
|
52939
53038
|
.k-edit-field > .k-checkbox {
|
|
52940
53039
|
position: relative; // fix scrolling
|
|
52941
53040
|
}
|
|
@@ -55382,24 +55481,11 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
|
|
|
55382
55481
|
// Scheduler navigation
|
|
55383
55482
|
.k-scheduler-navigation {}
|
|
55384
55483
|
|
|
55385
|
-
|
|
55386
|
-
|
|
55387
|
-
|
|
55388
|
-
|
|
55389
|
-
// Views dropdown
|
|
55390
|
-
.k-views-dropdown {
|
|
55391
|
-
width: auto;
|
|
55392
|
-
font: inherit;
|
|
55393
|
-
display: none;
|
|
55394
|
-
}
|
|
55395
|
-
|
|
55396
|
-
@media (max-width: 1024px) {
|
|
55397
|
-
.k-scheduler-views { display: none; }
|
|
55398
|
-
.k-views-dropdown { display: inline-block; }
|
|
55399
|
-
}
|
|
55484
|
+
.k-scheduler-toolbar .k-views-dropdown {
|
|
55485
|
+
width: auto;
|
|
55486
|
+
font: inherit;
|
|
55400
55487
|
}
|
|
55401
55488
|
|
|
55402
|
-
|
|
55403
55489
|
// Scheduler footer
|
|
55404
55490
|
.k-scheduler-footer {
|
|
55405
55491
|
@include box-shadow( none );
|
|
@@ -59263,11 +59349,11 @@ $kendo-scrollview-transition-timing-function: ease-in-out !default;
|
|
|
59263
59349
|
}
|
|
59264
59350
|
|
|
59265
59351
|
.k-scrollview-prev {
|
|
59266
|
-
|
|
59352
|
+
inset-inline-start: 0;
|
|
59267
59353
|
}
|
|
59268
59354
|
|
|
59269
59355
|
.k-scrollview-next {
|
|
59270
|
-
|
|
59356
|
+
inset-inline-end: 0;
|
|
59271
59357
|
}
|
|
59272
59358
|
|
|
59273
59359
|
|
|
@@ -59293,6 +59379,17 @@ $kendo-scrollview-transition-timing-function: ease-in-out !default;
|
|
|
59293
59379
|
}
|
|
59294
59380
|
}
|
|
59295
59381
|
|
|
59382
|
+
.k-rtl,
|
|
59383
|
+
[dir="rtl"] {
|
|
59384
|
+
.k-scrollview-prev,
|
|
59385
|
+
.k-scrollview-next {
|
|
59386
|
+
.k-icon,
|
|
59387
|
+
.k-svg-icon {
|
|
59388
|
+
transform: scaleX(-1);
|
|
59389
|
+
}
|
|
59390
|
+
}
|
|
59391
|
+
}
|
|
59392
|
+
|
|
59296
59393
|
}
|
|
59297
59394
|
|
|
59298
59395
|
|