@progress/kendo-theme-default 5.4.2-dev.3 → 5.4.2-dev.6
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 +86 -39
- package/dist/all.scss +179 -84
- package/lib/swatches/default-blue.json +1 -1
- package/lib/swatches/default-dataviz-v4.json +1 -1
- package/lib/swatches/default-green.json +1 -1
- package/lib/swatches/default-main-dark.json +1 -1
- package/lib/swatches/default-main.json +1 -1
- package/lib/swatches/default-nordic.json +1 -1
- package/lib/swatches/default-ocean-blue.json +1 -1
- package/lib/swatches/default-orange.json +1 -1
- package/lib/swatches/default-purple.json +1 -1
- package/lib/swatches/default-turquoise.json +1 -1
- package/lib/swatches/default-urban.json +1 -1
- package/package.json +2 -2
- package/scss/colorgradient/_layout.scss +3 -0
- package/scss/core/mixins/_index.scss +0 -2
- package/scss/drawer/_layout.scss +15 -0
- package/scss/drawer/_variables.scss +3 -0
- package/scss/input/_layout.scss +1 -13
- package/scss/input/_theme.scss +123 -15
- package/scss/input/_variables.scss +22 -19
- package/scss/panelbar/_layout.scss +1 -1
- package/scss/panelbar/_variables.scss +1 -0
- package/scss/slider/_layout.scss +10 -0
- package/scss/core/mixins/_input-ripple.scss +0 -32
package/dist/all.scss
CHANGED
|
@@ -885,42 +885,6 @@ $_kendo-imported-modules: ();
|
|
|
885
885
|
|
|
886
886
|
// #endregion
|
|
887
887
|
|
|
888
|
-
// Other
|
|
889
|
-
// #region @import "_input-ripple.scss"; -> packages/default/scss/core/mixins/_input-ripple.scss
|
|
890
|
-
@mixin input-ripple() {
|
|
891
|
-
$height: 2 * $kendo-input-border-width;
|
|
892
|
-
|
|
893
|
-
&::after {
|
|
894
|
-
display: block;
|
|
895
|
-
z-index: 2;
|
|
896
|
-
content: "";
|
|
897
|
-
position: absolute;
|
|
898
|
-
bottom: calc( 1px - #{$height} );
|
|
899
|
-
left: 0;
|
|
900
|
-
right: 0;
|
|
901
|
-
height: $height;
|
|
902
|
-
margin: auto;
|
|
903
|
-
opacity: 0;
|
|
904
|
-
transform: scaleX(.5);
|
|
905
|
-
transition: transform .3s;
|
|
906
|
-
background-color: $primary;
|
|
907
|
-
}
|
|
908
|
-
|
|
909
|
-
&.k-state-focused::after ,
|
|
910
|
-
&.k-focus::after {
|
|
911
|
-
opacity: 1;
|
|
912
|
-
transform: scaleX(1);
|
|
913
|
-
}
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
&.k-state-invalid::after ,
|
|
917
|
-
&.k-invalid::after {
|
|
918
|
-
background-color: $error;
|
|
919
|
-
transition: none;
|
|
920
|
-
}
|
|
921
|
-
}
|
|
922
|
-
|
|
923
|
-
// #endregion
|
|
924
888
|
|
|
925
889
|
// #endregion
|
|
926
890
|
// #region @import "../_variables.scss"; -> packages/default/scss/_variables.scss
|
|
@@ -8892,7 +8856,7 @@ $kendo-input-disabled-gradient: null !default;
|
|
|
8892
8856
|
$kendo-input-disabled-shadow: null !default;
|
|
8893
8857
|
|
|
8894
8858
|
$kendo-input-outline-bg: null !default;
|
|
8895
|
-
$kendo-input-outline-text:
|
|
8859
|
+
$kendo-input-outline-text: $kendo-input-text !default;
|
|
8896
8860
|
$kendo-input-outline-border: rgba( $kendo-button-text, .5) !default;
|
|
8897
8861
|
|
|
8898
8862
|
$kendo-input-outline-hover-bg: null !default;
|
|
@@ -8901,18 +8865,21 @@ $kendo-input-outline-hover-border: rgba( $kendo-button-text, .8) !default;
|
|
|
8901
8865
|
|
|
8902
8866
|
$kendo-input-outline-focus-bg: null !default;
|
|
8903
8867
|
$kendo-input-outline-focus-text: null !default;
|
|
8904
|
-
$kendo-input-outline-focus-border:
|
|
8868
|
+
$kendo-input-outline-focus-border: null !default;
|
|
8905
8869
|
$kendo-input-outline-focus-shadow: $kendo-input-focus-shadow !default;
|
|
8906
8870
|
|
|
8907
|
-
$kendo-input-flat-bg:
|
|
8871
|
+
$kendo-input-flat-bg: null !default;
|
|
8908
8872
|
$kendo-input-flat-text: $kendo-input-text !default;
|
|
8909
8873
|
$kendo-input-flat-border: $kendo-input-border !default;
|
|
8910
8874
|
|
|
8875
|
+
$kendo-input-flat-hover-bg: null !default;
|
|
8876
|
+
$kendo-input-flat-hover-text: null !default;
|
|
8877
|
+
$kendo-input-flat-hover-border: $kendo-input-hover-border !default;
|
|
8878
|
+
|
|
8911
8879
|
$kendo-input-flat-focus-bg: null !default;
|
|
8912
8880
|
$kendo-input-flat-focus-text: null !default;
|
|
8913
8881
|
$kendo-input-flat-focus-border: null !default;
|
|
8914
|
-
|
|
8915
|
-
$kendo-input-flat-border-radius: $kendo-border-radius $kendo-border-radius 0px 0px !default;
|
|
8882
|
+
$kendo-input-flat-focus-shadow: $kendo-input-focus-shadow !default;
|
|
8916
8883
|
|
|
8917
8884
|
$kendo-picker-bg: $kendo-button-bg !default;
|
|
8918
8885
|
$kendo-picker-text: $kendo-button-text !default;
|
|
@@ -8938,24 +8905,24 @@ $kendo-picker-disabled-border: null !default;
|
|
|
8938
8905
|
$kendo-picker-disabled-gradient: null !default;
|
|
8939
8906
|
$kendo-picker-disabled-shadow: null !default;
|
|
8940
8907
|
|
|
8941
|
-
$kendo-picker-outline-bg:
|
|
8942
|
-
$kendo-picker-outline-text:
|
|
8943
|
-
$kendo-picker-outline-border: $kendo-
|
|
8908
|
+
$kendo-picker-outline-bg: null !default;
|
|
8909
|
+
$kendo-picker-outline-text: $kendo-button-text !default;
|
|
8910
|
+
$kendo-picker-outline-border: rgba( $kendo-picker-outline-text, .5) !default;
|
|
8944
8911
|
|
|
8945
|
-
$kendo-picker-outline-hover-bg: $kendo-
|
|
8946
|
-
$kendo-picker-outline-hover-text: $
|
|
8947
|
-
$kendo-picker-outline-hover-border:
|
|
8912
|
+
$kendo-picker-outline-hover-bg: $kendo-picker-outline-text !default;
|
|
8913
|
+
$kendo-picker-outline-hover-text: contrast-wcag( $kendo-picker-outline-hover-bg ) !default;
|
|
8914
|
+
$kendo-picker-outline-hover-border: $kendo-picker-outline-hover-bg !default;
|
|
8948
8915
|
|
|
8949
|
-
$kendo-picker-outline-focus-bg:
|
|
8950
|
-
$kendo-picker-outline-focus-text:
|
|
8951
|
-
$kendo-picker-outline-focus-border:
|
|
8916
|
+
$kendo-picker-outline-focus-bg: null !default;
|
|
8917
|
+
$kendo-picker-outline-focus-text: null !default;
|
|
8918
|
+
$kendo-picker-outline-focus-border: null !default;
|
|
8952
8919
|
$kendo-picker-outline-focus-shadow: $kendo-picker-focus-shadow !default;
|
|
8953
8920
|
|
|
8954
|
-
$kendo-picker-outline-hover-focus-bg:
|
|
8955
|
-
$kendo-picker-outline-hover-focus-text:
|
|
8956
|
-
$kendo-picker-outline-hover-focus-border:
|
|
8921
|
+
$kendo-picker-outline-hover-focus-bg: null !default;
|
|
8922
|
+
$kendo-picker-outline-hover-focus-text: null !default;
|
|
8923
|
+
$kendo-picker-outline-hover-focus-border: null !default;
|
|
8957
8924
|
|
|
8958
|
-
$kendo-picker-flat-bg:
|
|
8925
|
+
$kendo-picker-flat-bg: null !default;
|
|
8959
8926
|
$kendo-picker-flat-text: $kendo-button-text !default;
|
|
8960
8927
|
$kendo-picker-flat-border: $kendo-button-border !default;
|
|
8961
8928
|
|
|
@@ -8966,7 +8933,7 @@ $kendo-picker-flat-hover-border: rgba( $kendo-button-border, .16 ) !default;
|
|
|
8966
8933
|
$kendo-picker-flat-focus-bg: null !default;
|
|
8967
8934
|
$kendo-picker-flat-focus-text: null !default;
|
|
8968
8935
|
$kendo-picker-flat-focus-border: null !default;
|
|
8969
|
-
$kendo-picker-flat-focus-shadow:
|
|
8936
|
+
$kendo-picker-flat-focus-shadow: $kendo-picker-focus-shadow !default;
|
|
8970
8937
|
|
|
8971
8938
|
$kendo-picker-flat-hover-focus-bg: null !default;
|
|
8972
8939
|
$kendo-picker-flat-hover-focus-text: null !default;
|
|
@@ -9345,28 +9312,16 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
9345
9312
|
// Fill mode
|
|
9346
9313
|
.k-input-flat,
|
|
9347
9314
|
.k-picker-flat {
|
|
9348
|
-
@include border-radius( 0 !important ); // sass-lint:disable-line no-important
|
|
9315
|
+
@include border-bottom-radius( 0 !important ); // sass-lint:disable-line no-important
|
|
9349
9316
|
border-width: $kendo-input-border-width 0;
|
|
9350
9317
|
border-top-color: transparent !important; // sass-lint:disable-line no-important
|
|
9351
9318
|
background-image: none !important; // sass-lint:disable-line no-important
|
|
9352
|
-
|
|
9353
|
-
&:focus,
|
|
9354
|
-
&.k-focus {
|
|
9355
|
-
@include border-radius( $kendo-input-flat-border-radius !important ); // sass-lint:disable-line no-important
|
|
9356
|
-
}
|
|
9357
|
-
&:focus-within {
|
|
9358
|
-
@include border-radius( $kendo-input-flat-border-radius !important ); // sass-lint:disable-line no-important
|
|
9359
|
-
}
|
|
9360
9319
|
}
|
|
9361
9320
|
|
|
9362
9321
|
.k-input-outline {
|
|
9363
9322
|
background: none !important; // sass-lint:disable-line no-important
|
|
9364
9323
|
}
|
|
9365
9324
|
|
|
9366
|
-
.k-picker.k-picker-flat {
|
|
9367
|
-
@include border-radius( $kendo-input-flat-border-radius !important ); // sass-lint:disable-line no-important
|
|
9368
|
-
}
|
|
9369
|
-
|
|
9370
9325
|
|
|
9371
9326
|
// Sizing
|
|
9372
9327
|
@each $size, $size-props in $kendo-input-sizes {
|
|
@@ -9476,7 +9431,7 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
9476
9431
|
@include exports( "input/theme" ) {
|
|
9477
9432
|
|
|
9478
9433
|
// Solid input
|
|
9479
|
-
.k-input {
|
|
9434
|
+
.k-input-solid {
|
|
9480
9435
|
@include fill(
|
|
9481
9436
|
$kendo-input-text,
|
|
9482
9437
|
$kendo-input-bg,
|
|
@@ -9513,7 +9468,7 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
9513
9468
|
@include box-shadow( $kendo-input-focus-shadow );
|
|
9514
9469
|
}
|
|
9515
9470
|
|
|
9516
|
-
//Disabled
|
|
9471
|
+
// Disabled
|
|
9517
9472
|
&:disabled,
|
|
9518
9473
|
&[disabled],
|
|
9519
9474
|
&.k-disabled {
|
|
@@ -9530,7 +9485,7 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
9530
9485
|
&.k-invalid,
|
|
9531
9486
|
&.ng-invalid.ng-touched,
|
|
9532
9487
|
&.ng-invalid.ng-dirty {
|
|
9533
|
-
@include fill( $border: $invalid-border );
|
|
9488
|
+
@include fill( $border: $kendo-input-invalid-border );
|
|
9534
9489
|
|
|
9535
9490
|
.k-input-validation-icon {
|
|
9536
9491
|
color: $invalid-text;
|
|
@@ -9538,10 +9493,10 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
9538
9493
|
|
|
9539
9494
|
&:focus,
|
|
9540
9495
|
&.k-focus {
|
|
9541
|
-
@include box-shadow($invalid-shadow);
|
|
9496
|
+
@include box-shadow( $kendo-input-invalid-shadow );
|
|
9542
9497
|
}
|
|
9543
9498
|
&:focus-within {
|
|
9544
|
-
@include box-shadow($invalid-shadow);
|
|
9499
|
+
@include box-shadow( $kendo-input-invalid-shadow );
|
|
9545
9500
|
}
|
|
9546
9501
|
}
|
|
9547
9502
|
|
|
@@ -9549,7 +9504,7 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
9549
9504
|
|
|
9550
9505
|
|
|
9551
9506
|
// Solid picker
|
|
9552
|
-
.k-picker {
|
|
9507
|
+
.k-picker-solid {
|
|
9553
9508
|
@include fill(
|
|
9554
9509
|
$kendo-picker-text,
|
|
9555
9510
|
$kendo-picker-bg,
|
|
@@ -9590,7 +9545,7 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
9590
9545
|
@include box-shadow( $kendo-picker-focus-shadow );
|
|
9591
9546
|
}
|
|
9592
9547
|
|
|
9593
|
-
//Disabled
|
|
9548
|
+
// Disabled
|
|
9594
9549
|
&:disabled,
|
|
9595
9550
|
&[disabled],
|
|
9596
9551
|
&.k-disabled {
|
|
@@ -9623,7 +9578,8 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
9623
9578
|
}
|
|
9624
9579
|
}
|
|
9625
9580
|
|
|
9626
|
-
|
|
9581
|
+
|
|
9582
|
+
// Outline input
|
|
9627
9583
|
.k-input-outline {
|
|
9628
9584
|
@include fill (
|
|
9629
9585
|
$kendo-input-outline-text,
|
|
@@ -9644,6 +9600,7 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
9644
9600
|
}
|
|
9645
9601
|
}
|
|
9646
9602
|
|
|
9603
|
+
// Hover
|
|
9647
9604
|
&:hover,
|
|
9648
9605
|
&.k-hover {
|
|
9649
9606
|
@include fill (
|
|
@@ -9653,6 +9610,7 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
9653
9610
|
);
|
|
9654
9611
|
}
|
|
9655
9612
|
|
|
9613
|
+
// Focus
|
|
9656
9614
|
&:focus,
|
|
9657
9615
|
&.k-focus {
|
|
9658
9616
|
@include fill (
|
|
@@ -9662,12 +9620,33 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
9662
9620
|
);
|
|
9663
9621
|
@include box-shadow ( $kendo-input-outline-focus-shadow );
|
|
9664
9622
|
}
|
|
9623
|
+
&:focus-within {
|
|
9624
|
+
@include fill (
|
|
9625
|
+
$kendo-input-outline-focus-text,
|
|
9626
|
+
$kendo-input-outline-focus-bg,
|
|
9627
|
+
$kendo-input-outline-focus-border
|
|
9628
|
+
);
|
|
9629
|
+
@include box-shadow ( $kendo-input-outline-focus-shadow );
|
|
9630
|
+
}
|
|
9631
|
+
|
|
9632
|
+
// Disabled
|
|
9633
|
+
&:disabled,
|
|
9634
|
+
&[disabled],
|
|
9635
|
+
&.k-disabled {
|
|
9636
|
+
@include fill(
|
|
9637
|
+
$kendo-input-disabled-text,
|
|
9638
|
+
$kendo-input-disabled-bg,
|
|
9639
|
+
$kendo-input-disabled-border,
|
|
9640
|
+
$kendo-input-disabled-gradient
|
|
9641
|
+
);
|
|
9642
|
+
@include box-shadow( $kendo-input-disabled-shadow );
|
|
9643
|
+
}
|
|
9665
9644
|
|
|
9666
9645
|
// Invalid
|
|
9667
9646
|
&.k-invalid,
|
|
9668
9647
|
&.ng-invalid.ng-touched,
|
|
9669
9648
|
&.ng-invalid.ng-dirty {
|
|
9670
|
-
@include fill( $border: $invalid-border );
|
|
9649
|
+
@include fill( $border: $kendo-input-invalid-border );
|
|
9671
9650
|
|
|
9672
9651
|
.k-input-validation-icon {
|
|
9673
9652
|
color: $invalid-text;
|
|
@@ -9675,15 +9654,17 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
9675
9654
|
|
|
9676
9655
|
&:focus,
|
|
9677
9656
|
&.k-focus {
|
|
9678
|
-
@include box-shadow($invalid-shadow);
|
|
9657
|
+
@include box-shadow( $kendo-input-invalid-shadow );
|
|
9679
9658
|
}
|
|
9680
9659
|
&:focus-within {
|
|
9681
|
-
@include box-shadow($invalid-shadow);
|
|
9660
|
+
@include box-shadow( $kendo-input-invalid-shadow );
|
|
9682
9661
|
}
|
|
9683
9662
|
}
|
|
9684
9663
|
|
|
9685
9664
|
}
|
|
9686
9665
|
|
|
9666
|
+
|
|
9667
|
+
// Outline picker
|
|
9687
9668
|
.k-picker-outline {
|
|
9688
9669
|
@include fill (
|
|
9689
9670
|
$kendo-picker-outline-text,
|
|
@@ -9691,6 +9672,7 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
9691
9672
|
$kendo-picker-outline-border
|
|
9692
9673
|
);
|
|
9693
9674
|
|
|
9675
|
+
// Hover
|
|
9694
9676
|
&:hover,
|
|
9695
9677
|
&.k-hover {
|
|
9696
9678
|
@include fill (
|
|
@@ -9700,6 +9682,7 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
9700
9682
|
);
|
|
9701
9683
|
}
|
|
9702
9684
|
|
|
9685
|
+
// Focus
|
|
9703
9686
|
&:focus,
|
|
9704
9687
|
&.k-focus {
|
|
9705
9688
|
@include fill (
|
|
@@ -9709,6 +9692,14 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
9709
9692
|
);
|
|
9710
9693
|
@include box-shadow ( $kendo-picker-outline-focus-shadow );
|
|
9711
9694
|
}
|
|
9695
|
+
&:focus-within {
|
|
9696
|
+
@include fill (
|
|
9697
|
+
$kendo-picker-outline-focus-text,
|
|
9698
|
+
$kendo-picker-outline-focus-bg,
|
|
9699
|
+
$kendo-picker-outline-focus-border
|
|
9700
|
+
);
|
|
9701
|
+
@include box-shadow ( $kendo-picker-outline-focus-shadow );
|
|
9702
|
+
}
|
|
9712
9703
|
|
|
9713
9704
|
&:focus:hover,
|
|
9714
9705
|
&:focus.k-hover,
|
|
@@ -9721,11 +9712,24 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
9721
9712
|
);
|
|
9722
9713
|
}
|
|
9723
9714
|
|
|
9715
|
+
// Disabled
|
|
9716
|
+
&:disabled,
|
|
9717
|
+
&[disabled],
|
|
9718
|
+
&.k-disabled {
|
|
9719
|
+
@include fill(
|
|
9720
|
+
$kendo-picker-disabled-text,
|
|
9721
|
+
$kendo-picker-disabled-bg,
|
|
9722
|
+
$kendo-picker-disabled-border,
|
|
9723
|
+
$kendo-picker-disabled-gradient
|
|
9724
|
+
);
|
|
9725
|
+
@include box-shadow( $kendo-picker-disabled-shadow );
|
|
9726
|
+
}
|
|
9727
|
+
|
|
9724
9728
|
// Invalid
|
|
9725
9729
|
&.k-invalid,
|
|
9726
9730
|
&.ng-invalid.ng-touched,
|
|
9727
9731
|
&.ng-invalid.ng-dirty {
|
|
9728
|
-
@include fill( $border: $invalid-border );
|
|
9732
|
+
@include fill( $border: $kendo-input-invalid-border );
|
|
9729
9733
|
|
|
9730
9734
|
.k-input-validation-icon {
|
|
9731
9735
|
color: $invalid-text;
|
|
@@ -9733,15 +9737,16 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
9733
9737
|
|
|
9734
9738
|
&:focus,
|
|
9735
9739
|
&.k-focus {
|
|
9736
|
-
@include box-shadow($invalid-shadow);
|
|
9740
|
+
@include box-shadow( $kendo-input-invalid-shadow );
|
|
9737
9741
|
}
|
|
9738
9742
|
&:focus-within {
|
|
9739
|
-
@include box-shadow($invalid-shadow);
|
|
9743
|
+
@include box-shadow( $kendo-input-invalid-shadow );
|
|
9740
9744
|
}
|
|
9741
9745
|
}
|
|
9742
9746
|
}
|
|
9743
9747
|
|
|
9744
|
-
|
|
9748
|
+
|
|
9749
|
+
// Flat input
|
|
9745
9750
|
.k-input-flat {
|
|
9746
9751
|
@include fill (
|
|
9747
9752
|
$kendo-input-flat-text,
|
|
@@ -9749,6 +9754,17 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
9749
9754
|
$kendo-input-flat-border
|
|
9750
9755
|
);
|
|
9751
9756
|
|
|
9757
|
+
// Hover
|
|
9758
|
+
&:hover,
|
|
9759
|
+
&.k-hover {
|
|
9760
|
+
@include fill (
|
|
9761
|
+
$kendo-input-flat-hover-text,
|
|
9762
|
+
$kendo-input-flat-hover-bg,
|
|
9763
|
+
$kendo-input-flat-hover-border
|
|
9764
|
+
);
|
|
9765
|
+
}
|
|
9766
|
+
|
|
9767
|
+
// Focus
|
|
9752
9768
|
&:focus,
|
|
9753
9769
|
&.k-focus {
|
|
9754
9770
|
@include fill (
|
|
@@ -9756,6 +9772,28 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
9756
9772
|
$kendo-input-flat-focus-bg,
|
|
9757
9773
|
$kendo-input-flat-focus-border
|
|
9758
9774
|
);
|
|
9775
|
+
@include box-shadow( $kendo-input-flat-focus-shadow );
|
|
9776
|
+
}
|
|
9777
|
+
&:focus-within {
|
|
9778
|
+
@include fill (
|
|
9779
|
+
$kendo-input-flat-focus-text,
|
|
9780
|
+
$kendo-input-flat-focus-bg,
|
|
9781
|
+
$kendo-input-flat-focus-border
|
|
9782
|
+
);
|
|
9783
|
+
@include box-shadow( $kendo-input-flat-focus-shadow );
|
|
9784
|
+
}
|
|
9785
|
+
|
|
9786
|
+
// Disabled
|
|
9787
|
+
&:disabled,
|
|
9788
|
+
&[disabled],
|
|
9789
|
+
&.k-disabled {
|
|
9790
|
+
@include fill(
|
|
9791
|
+
$kendo-input-disabled-text,
|
|
9792
|
+
$kendo-input-disabled-bg,
|
|
9793
|
+
$kendo-input-disabled-border,
|
|
9794
|
+
$kendo-input-disabled-gradient
|
|
9795
|
+
);
|
|
9796
|
+
@include box-shadow( $kendo-input-disabled-shadow );
|
|
9759
9797
|
}
|
|
9760
9798
|
|
|
9761
9799
|
// Invalid
|
|
@@ -9778,6 +9816,8 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
9778
9816
|
}
|
|
9779
9817
|
}
|
|
9780
9818
|
|
|
9819
|
+
|
|
9820
|
+
// Flat picker
|
|
9781
9821
|
.k-picker-flat {
|
|
9782
9822
|
@include fill (
|
|
9783
9823
|
$kendo-picker-flat-text,
|
|
@@ -9785,6 +9825,7 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
9785
9825
|
$kendo-picker-flat-border
|
|
9786
9826
|
);
|
|
9787
9827
|
|
|
9828
|
+
// Hover
|
|
9788
9829
|
&:hover,
|
|
9789
9830
|
&.k-hover {
|
|
9790
9831
|
@include fill (
|
|
@@ -9794,6 +9835,7 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
9794
9835
|
);
|
|
9795
9836
|
}
|
|
9796
9837
|
|
|
9838
|
+
// Focus
|
|
9797
9839
|
&:focus,
|
|
9798
9840
|
&.k-focus {
|
|
9799
9841
|
@include fill (
|
|
@@ -9803,6 +9845,14 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
9803
9845
|
);
|
|
9804
9846
|
@include box-shadow( $kendo-picker-flat-focus-shadow );
|
|
9805
9847
|
}
|
|
9848
|
+
&:focus-within {
|
|
9849
|
+
@include fill (
|
|
9850
|
+
$kendo-picker-flat-focus-text,
|
|
9851
|
+
$kendo-picker-flat-focus-bg,
|
|
9852
|
+
$kendo-picker-flat-focus-border
|
|
9853
|
+
);
|
|
9854
|
+
@include box-shadow( $kendo-picker-flat-focus-shadow );
|
|
9855
|
+
}
|
|
9806
9856
|
|
|
9807
9857
|
&:focus:hover,
|
|
9808
9858
|
&:focus.k-hover,
|
|
@@ -9815,6 +9865,19 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
9815
9865
|
);
|
|
9816
9866
|
}
|
|
9817
9867
|
|
|
9868
|
+
// Disabled
|
|
9869
|
+
&:disabled,
|
|
9870
|
+
&[disabled],
|
|
9871
|
+
&.k-disabled {
|
|
9872
|
+
@include fill(
|
|
9873
|
+
$kendo-picker-disabled-text,
|
|
9874
|
+
$kendo-picker-disabled-bg,
|
|
9875
|
+
$kendo-picker-disabled-border,
|
|
9876
|
+
$kendo-picker-disabled-gradient
|
|
9877
|
+
);
|
|
9878
|
+
@include box-shadow( $kendo-picker-disabled-shadow );
|
|
9879
|
+
}
|
|
9880
|
+
|
|
9818
9881
|
// Invalid
|
|
9819
9882
|
&.k-invalid,
|
|
9820
9883
|
&.ng-invalid.ng-touched,
|
|
@@ -15833,6 +15896,16 @@ $slider-disabled-opacity: null !default;
|
|
|
15833
15896
|
flex: 0 0 1px;
|
|
15834
15897
|
}
|
|
15835
15898
|
|
|
15899
|
+
.k-tick-horizontal {
|
|
15900
|
+
width: 1px;
|
|
15901
|
+
min-height: 100%;
|
|
15902
|
+
}
|
|
15903
|
+
|
|
15904
|
+
.k-tick-vertical {
|
|
15905
|
+
width: 100%;
|
|
15906
|
+
min-height: 1px;
|
|
15907
|
+
}
|
|
15908
|
+
|
|
15836
15909
|
.k-draghandle {
|
|
15837
15910
|
position: absolute;
|
|
15838
15911
|
}
|
|
@@ -18061,6 +18134,9 @@ $colorgradient-contrast-spacer: ( $colorgradient-spacer / 1.5 ) !default;
|
|
|
18061
18134
|
}
|
|
18062
18135
|
|
|
18063
18136
|
.k-input-inner {
|
|
18137
|
+
padding-inline-start: 2px;
|
|
18138
|
+
padding-inline-end: 2px;
|
|
18139
|
+
text-align: center;
|
|
18064
18140
|
text-overflow: clip;
|
|
18065
18141
|
}
|
|
18066
18142
|
}
|
|
@@ -22433,6 +22509,9 @@ $drawer-font-size: $font-size !default;
|
|
|
22433
22509
|
$drawer-line-height: $line-height !default;
|
|
22434
22510
|
$drawer-content-padding-x: $padding-x !default;
|
|
22435
22511
|
$drawer-content-padding-y: $padding-y !default;
|
|
22512
|
+
$drawer-item-level-padding-x: map-get( $spacing, 4 ) !default;
|
|
22513
|
+
|
|
22514
|
+
$drawer-item-level-count: 5 !default;
|
|
22436
22515
|
|
|
22437
22516
|
$drawer-scrollbar-width: 7px !default;
|
|
22438
22517
|
$drawer-scrollbar-color: rgba(156, 156, 156, .7) !default;
|
|
@@ -22474,6 +22553,7 @@ $drawer-selected-hover-text: $selected-hover-text !default;
|
|
|
22474
22553
|
}
|
|
22475
22554
|
.k-drawer {
|
|
22476
22555
|
height: 100%;
|
|
22556
|
+
max-width: 100%;
|
|
22477
22557
|
border-width: 0;
|
|
22478
22558
|
border-style: solid;
|
|
22479
22559
|
box-sizing: border-box;
|
|
@@ -22626,6 +22706,20 @@ $drawer-selected-hover-text: $selected-hover-text !default;
|
|
|
22626
22706
|
padding: 0 $drawer-item-padding-x;
|
|
22627
22707
|
display: inline-block;
|
|
22628
22708
|
white-space: nowrap;
|
|
22709
|
+
overflow: hidden;
|
|
22710
|
+
text-overflow: ellipsis;
|
|
22711
|
+
}
|
|
22712
|
+
|
|
22713
|
+
.k-drawer-toggle {
|
|
22714
|
+
margin-inline-start: auto;
|
|
22715
|
+
cursor: pointer;
|
|
22716
|
+
}
|
|
22717
|
+
|
|
22718
|
+
// Hierarchy items
|
|
22719
|
+
@for $i from 1 through $drawer-item-level-count {
|
|
22720
|
+
&.k-level-#{$i} {
|
|
22721
|
+
padding-inline-start: ( $drawer-item-level-padding-x * $i );
|
|
22722
|
+
}
|
|
22629
22723
|
}
|
|
22630
22724
|
}
|
|
22631
22725
|
.k-drawer-separator {
|
|
@@ -26520,6 +26614,7 @@ $panelbar-font-family: $font-family !default;
|
|
|
26520
26614
|
$panelbar-font-size: $font-size !default;
|
|
26521
26615
|
$panelbar-line-height: $line-height !default;
|
|
26522
26616
|
$panelbar-border-width: 1px !default;
|
|
26617
|
+
$panelbar-border-style: solid !default;
|
|
26523
26618
|
$panelbar-item-border-width: 1px !default;
|
|
26524
26619
|
$panelbar-item-border-style: solid !default;
|
|
26525
26620
|
|
|
@@ -26626,7 +26721,7 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
26626
26721
|
margin: 0;
|
|
26627
26722
|
padding: 0;
|
|
26628
26723
|
border-width: $panelbar-border-width;
|
|
26629
|
-
border-style:
|
|
26724
|
+
border-style: $panelbar-border-style;
|
|
26630
26725
|
box-sizing: border-box;
|
|
26631
26726
|
outline: 0;
|
|
26632
26727
|
font-family: $panelbar-font-family;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-theme-default",
|
|
3
3
|
"description": "SASS resources for the default Kendo UI theme",
|
|
4
|
-
"version": "5.4.2-dev.
|
|
4
|
+
"version": "5.4.2-dev.6",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -47,5 +47,5 @@
|
|
|
47
47
|
"prepublishOnly": "node ../../scripts/themes-prepublish.js",
|
|
48
48
|
"postpublish": "echo 'no postpublish for default theme'"
|
|
49
49
|
},
|
|
50
|
-
"gitHead": "
|
|
50
|
+
"gitHead": "71e608352b1307f0c198c462241a9c8dc00d4542"
|
|
51
51
|
}
|