@progress/kendo-theme-default 5.3.2-dev.2 → 5.3.2-dev.3
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 +158 -33
- package/dist/all.scss +331 -20
- 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/_variables.scss +1 -1
- package/scss/calendar/_theme.scss +21 -9
- package/scss/card/_theme.scss +11 -1
- package/scss/grid/_layout.scss +1 -0
- package/scss/input/_layout.scss +12 -6
- package/scss/input/_theme.scss +212 -0
- package/scss/input/_variables.scss +58 -1
- package/scss/orgchart/_theme.scss +2 -0
- package/scss/panelbar/_layout.scss +2 -2
- package/scss/panelbar/_variables.scss +2 -0
- package/scss/taskboard/_layout.scss +2 -0
- package/scss/taskboard/_theme.scss +6 -0
- package/scss/tilelayout/_theme.scss +1 -0
package/dist/all.scss
CHANGED
|
@@ -1344,7 +1344,7 @@ $placeholder-bg: rgba(0, 0, 0, .1) !default;
|
|
|
1344
1344
|
// Validator
|
|
1345
1345
|
$invalid-bg: null !default;
|
|
1346
1346
|
$invalid-text: $error !default;
|
|
1347
|
-
$invalid-border:
|
|
1347
|
+
$invalid-border: $error !default;
|
|
1348
1348
|
$invalid-shadow: null !default;
|
|
1349
1349
|
|
|
1350
1350
|
|
|
@@ -8888,6 +8888,29 @@ $kendo-input-disabled-border: null !default;
|
|
|
8888
8888
|
$kendo-input-disabled-gradient: null !default;
|
|
8889
8889
|
$kendo-input-disabled-shadow: null !default;
|
|
8890
8890
|
|
|
8891
|
+
$kendo-input-outline-bg: null !default;
|
|
8892
|
+
$kendo-input-outline-text: null !default;
|
|
8893
|
+
$kendo-input-outline-border: rgba( $kendo-button-text, .5) !default;
|
|
8894
|
+
|
|
8895
|
+
$kendo-input-outline-hover-bg: null !default;
|
|
8896
|
+
$kendo-input-outline-hover-text: null !default;
|
|
8897
|
+
$kendo-input-outline-hover-border: rgba( $kendo-button-text, .8) !default;
|
|
8898
|
+
|
|
8899
|
+
$kendo-input-outline-focus-bg: null !default;
|
|
8900
|
+
$kendo-input-outline-focus-text: null !default;
|
|
8901
|
+
$kendo-input-outline-focus-border: $kendo-input-outline-border !default;
|
|
8902
|
+
$kendo-input-outline-focus-shadow: $kendo-input-focus-shadow !default;
|
|
8903
|
+
|
|
8904
|
+
$kendo-input-flat-bg: transparent !default;
|
|
8905
|
+
$kendo-input-flat-text: $kendo-input-text !default;
|
|
8906
|
+
$kendo-input-flat-border: $kendo-input-border !default;
|
|
8907
|
+
|
|
8908
|
+
$kendo-input-flat-focus-bg: null !default;
|
|
8909
|
+
$kendo-input-flat-focus-text: null !default;
|
|
8910
|
+
$kendo-input-flat-focus-border: null !default;
|
|
8911
|
+
|
|
8912
|
+
$kendo-input-flat-border-radius: $kendo-border-radius $kendo-border-radius 0px 0px !default;
|
|
8913
|
+
|
|
8891
8914
|
$kendo-picker-bg: $kendo-button-bg !default;
|
|
8892
8915
|
$kendo-picker-text: $kendo-button-text !default;
|
|
8893
8916
|
$kendo-picker-border: $kendo-button-border !default;
|
|
@@ -8912,6 +8935,40 @@ $kendo-picker-disabled-border: null !default;
|
|
|
8912
8935
|
$kendo-picker-disabled-gradient: null !default;
|
|
8913
8936
|
$kendo-picker-disabled-shadow: null !default;
|
|
8914
8937
|
|
|
8938
|
+
$kendo-picker-outline-bg: transparent !default;
|
|
8939
|
+
$kendo-picker-outline-text: null !default;
|
|
8940
|
+
$kendo-picker-outline-border: $kendo-button-text !default;
|
|
8941
|
+
|
|
8942
|
+
$kendo-picker-outline-hover-bg: $kendo-button-text !default;
|
|
8943
|
+
$kendo-picker-outline-hover-text: $body-bg !default;
|
|
8944
|
+
$kendo-picker-outline-hover-border: null !default;
|
|
8945
|
+
|
|
8946
|
+
$kendo-picker-outline-focus-bg: transparent !default;
|
|
8947
|
+
$kendo-picker-outline-focus-text: $kendo-picker-outline-text !default;
|
|
8948
|
+
$kendo-picker-outline-focus-border: $kendo-picker-outline-border !default;
|
|
8949
|
+
$kendo-picker-outline-focus-shadow: $kendo-picker-focus-shadow !default;
|
|
8950
|
+
|
|
8951
|
+
$kendo-picker-outline-hover-focus-bg: $kendo-picker-outline-hover-bg !default;
|
|
8952
|
+
$kendo-picker-outline-hover-focus-text: $kendo-picker-outline-hover-text !default;
|
|
8953
|
+
$kendo-picker-outline-hover-focus-border: $kendo-picker-outline-hover-border !default;
|
|
8954
|
+
|
|
8955
|
+
$kendo-picker-flat-bg: transparent !default;
|
|
8956
|
+
$kendo-picker-flat-text: $kendo-button-text !default;
|
|
8957
|
+
$kendo-picker-flat-border: $kendo-button-border !default;
|
|
8958
|
+
|
|
8959
|
+
$kendo-picker-flat-hover-bg: rgba( $kendo-button-text, .04 ) !default;
|
|
8960
|
+
$kendo-picker-flat-hover-text: null !default;
|
|
8961
|
+
$kendo-picker-flat-hover-border: rgba( $kendo-button-border, .16 ) !default;
|
|
8962
|
+
|
|
8963
|
+
$kendo-picker-flat-focus-bg: null !default;
|
|
8964
|
+
$kendo-picker-flat-focus-text: null !default;
|
|
8965
|
+
$kendo-picker-flat-focus-border: null !default;
|
|
8966
|
+
$kendo-picker-flat-focus-shadow: null !default;
|
|
8967
|
+
|
|
8968
|
+
$kendo-picker-flat-hover-focus-bg: null !default;
|
|
8969
|
+
$kendo-picker-flat-hover-focus-text: null !default;
|
|
8970
|
+
$kendo-picker-flat-hover-focus-border: null !default;
|
|
8971
|
+
|
|
8915
8972
|
$kendo-input-placeholder-text: $subtle-text !default;
|
|
8916
8973
|
$kendo-input-placeholder-opacity: 1 !default;
|
|
8917
8974
|
|
|
@@ -8929,7 +8986,7 @@ $kendo-input-values-margin-x: $kendo-input-values-margin-y !default;
|
|
|
8929
8986
|
|
|
8930
8987
|
// Input actions
|
|
8931
8988
|
$kendo-input-button-width: $kendo-button-inner-calc-size !default;
|
|
8932
|
-
$kendo-input-button-border-width:
|
|
8989
|
+
$kendo-input-button-border-width: 1px !default;
|
|
8933
8990
|
$kendo-input-spinner-width: $kendo-button-inner-calc-size !default;
|
|
8934
8991
|
$kendo-input-spinner-icon-offset: null !default;
|
|
8935
8992
|
|
|
@@ -9288,19 +9345,25 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
9288
9345
|
@include border-radius( 0 !important ); // sass-lint:disable-line no-important
|
|
9289
9346
|
border-width: $kendo-input-border-width 0;
|
|
9290
9347
|
border-top-color: transparent !important; // sass-lint:disable-line no-important
|
|
9291
|
-
background: none !important; // sass-lint:disable-line no-important
|
|
9348
|
+
background-image: none !important; // sass-lint:disable-line no-important
|
|
9292
9349
|
|
|
9293
|
-
|
|
9294
|
-
|
|
9295
|
-
|
|
9350
|
+
&:focus,
|
|
9351
|
+
&.k-focus {
|
|
9352
|
+
@include border-radius( $kendo-input-flat-border-radius !important ); // sass-lint:disable-line no-important
|
|
9353
|
+
}
|
|
9354
|
+
&:focus-within {
|
|
9355
|
+
@include border-radius( $kendo-input-flat-border-radius !important ); // sass-lint:disable-line no-important
|
|
9296
9356
|
}
|
|
9297
9357
|
}
|
|
9298
9358
|
|
|
9299
|
-
.k-input-outline
|
|
9300
|
-
.k-picker-outline {
|
|
9359
|
+
.k-input-outline {
|
|
9301
9360
|
background: none !important; // sass-lint:disable-line no-important
|
|
9302
9361
|
}
|
|
9303
9362
|
|
|
9363
|
+
.k-picker.k-picker-flat {
|
|
9364
|
+
@include border-radius( $kendo-input-flat-border-radius !important ); // sass-lint:disable-line no-important
|
|
9365
|
+
}
|
|
9366
|
+
|
|
9304
9367
|
|
|
9305
9368
|
// Sizing
|
|
9306
9369
|
@each $size, $size-props in $kendo-input-sizes {
|
|
@@ -9549,6 +9612,218 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
9549
9612
|
}
|
|
9550
9613
|
}
|
|
9551
9614
|
|
|
9615
|
+
// Outline
|
|
9616
|
+
.k-input-outline {
|
|
9617
|
+
@include fill (
|
|
9618
|
+
$kendo-input-outline-text,
|
|
9619
|
+
$kendo-input-outline-bg,
|
|
9620
|
+
$kendo-input-outline-border
|
|
9621
|
+
);
|
|
9622
|
+
|
|
9623
|
+
& > .k-input-button {
|
|
9624
|
+
border-color: inherit;
|
|
9625
|
+
}
|
|
9626
|
+
|
|
9627
|
+
& > .k-input-spinner {
|
|
9628
|
+
border-color: inherit;
|
|
9629
|
+
|
|
9630
|
+
& > .k-spinner-increase,
|
|
9631
|
+
& > .k-spinner-decrease {
|
|
9632
|
+
border-color: inherit;
|
|
9633
|
+
}
|
|
9634
|
+
}
|
|
9635
|
+
|
|
9636
|
+
&:hover,
|
|
9637
|
+
&.k-hover {
|
|
9638
|
+
@include fill (
|
|
9639
|
+
$kendo-input-outline-hover-text,
|
|
9640
|
+
$kendo-input-outline-hover-bg,
|
|
9641
|
+
$kendo-input-outline-hover-border
|
|
9642
|
+
);
|
|
9643
|
+
}
|
|
9644
|
+
|
|
9645
|
+
&:focus,
|
|
9646
|
+
&.k-focus {
|
|
9647
|
+
@include fill (
|
|
9648
|
+
$kendo-input-outline-focus-text,
|
|
9649
|
+
$kendo-input-outline-focus-bg,
|
|
9650
|
+
$kendo-input-outline-focus-border
|
|
9651
|
+
);
|
|
9652
|
+
@include box-shadow ( $kendo-input-outline-focus-shadow );
|
|
9653
|
+
}
|
|
9654
|
+
|
|
9655
|
+
// Invalid
|
|
9656
|
+
&.k-invalid,
|
|
9657
|
+
&.ng-invalid.ng-touched,
|
|
9658
|
+
&.ng-invalid.ng-dirty {
|
|
9659
|
+
@include fill( $border: $invalid-border );
|
|
9660
|
+
|
|
9661
|
+
.k-input-validation-icon {
|
|
9662
|
+
color: $invalid-text;
|
|
9663
|
+
}
|
|
9664
|
+
|
|
9665
|
+
&:focus,
|
|
9666
|
+
&.k-focus {
|
|
9667
|
+
@include box-shadow($invalid-shadow);
|
|
9668
|
+
}
|
|
9669
|
+
&:focus-within {
|
|
9670
|
+
@include box-shadow($invalid-shadow);
|
|
9671
|
+
}
|
|
9672
|
+
}
|
|
9673
|
+
|
|
9674
|
+
}
|
|
9675
|
+
|
|
9676
|
+
.k-picker-outline {
|
|
9677
|
+
@include fill (
|
|
9678
|
+
$kendo-picker-outline-text,
|
|
9679
|
+
$kendo-picker-outline-bg,
|
|
9680
|
+
$kendo-picker-outline-border
|
|
9681
|
+
);
|
|
9682
|
+
|
|
9683
|
+
&:hover,
|
|
9684
|
+
&.k-hover {
|
|
9685
|
+
@include fill (
|
|
9686
|
+
$kendo-picker-outline-hover-text,
|
|
9687
|
+
$kendo-picker-outline-hover-bg,
|
|
9688
|
+
$kendo-picker-outline-hover-border
|
|
9689
|
+
);
|
|
9690
|
+
}
|
|
9691
|
+
|
|
9692
|
+
&:focus,
|
|
9693
|
+
&.k-focus {
|
|
9694
|
+
@include fill (
|
|
9695
|
+
$kendo-picker-outline-focus-text,
|
|
9696
|
+
$kendo-picker-outline-focus-bg,
|
|
9697
|
+
$kendo-picker-outline-focus-border
|
|
9698
|
+
);
|
|
9699
|
+
@include box-shadow ( $kendo-picker-outline-focus-shadow );
|
|
9700
|
+
}
|
|
9701
|
+
|
|
9702
|
+
&:focus:hover,
|
|
9703
|
+
&:focus.k-hover,
|
|
9704
|
+
&.k-focus:hover,
|
|
9705
|
+
&.k-focus.k-hover {
|
|
9706
|
+
@include fill (
|
|
9707
|
+
$kendo-picker-outline-hover-focus-text,
|
|
9708
|
+
$kendo-picker-outline-hover-focus-bg,
|
|
9709
|
+
$kendo-picker-outline-hover-focus-border
|
|
9710
|
+
);
|
|
9711
|
+
}
|
|
9712
|
+
|
|
9713
|
+
// Invalid
|
|
9714
|
+
&.k-invalid,
|
|
9715
|
+
&.ng-invalid.ng-touched,
|
|
9716
|
+
&.ng-invalid.ng-dirty {
|
|
9717
|
+
@include fill( $border: $invalid-border );
|
|
9718
|
+
|
|
9719
|
+
.k-input-validation-icon {
|
|
9720
|
+
color: $invalid-text;
|
|
9721
|
+
}
|
|
9722
|
+
|
|
9723
|
+
&:focus,
|
|
9724
|
+
&.k-focus {
|
|
9725
|
+
@include box-shadow($invalid-shadow);
|
|
9726
|
+
}
|
|
9727
|
+
&:focus-within {
|
|
9728
|
+
@include box-shadow($invalid-shadow);
|
|
9729
|
+
}
|
|
9730
|
+
}
|
|
9731
|
+
}
|
|
9732
|
+
|
|
9733
|
+
// Flat
|
|
9734
|
+
.k-input-flat {
|
|
9735
|
+
@include fill (
|
|
9736
|
+
$kendo-input-flat-text,
|
|
9737
|
+
$kendo-input-flat-bg,
|
|
9738
|
+
$kendo-input-flat-border
|
|
9739
|
+
);
|
|
9740
|
+
|
|
9741
|
+
&:focus,
|
|
9742
|
+
&.k-focus {
|
|
9743
|
+
@include fill (
|
|
9744
|
+
$kendo-input-flat-focus-text,
|
|
9745
|
+
$kendo-input-flat-focus-bg,
|
|
9746
|
+
$kendo-input-flat-focus-border
|
|
9747
|
+
);
|
|
9748
|
+
}
|
|
9749
|
+
|
|
9750
|
+
// Invalid
|
|
9751
|
+
&.k-invalid,
|
|
9752
|
+
&.ng-invalid.ng-touched,
|
|
9753
|
+
&.ng-invalid.ng-dirty {
|
|
9754
|
+
@include fill( $border: $kendo-input-invalid-border );
|
|
9755
|
+
|
|
9756
|
+
.k-input-validation-icon {
|
|
9757
|
+
color: $invalid-text;
|
|
9758
|
+
}
|
|
9759
|
+
|
|
9760
|
+
&:focus,
|
|
9761
|
+
&.k-focus {
|
|
9762
|
+
@include box-shadow( $kendo-input-invalid-shadow );
|
|
9763
|
+
}
|
|
9764
|
+
&:focus-within {
|
|
9765
|
+
@include box-shadow( $kendo-input-invalid-shadow );
|
|
9766
|
+
}
|
|
9767
|
+
}
|
|
9768
|
+
}
|
|
9769
|
+
|
|
9770
|
+
.k-picker-flat {
|
|
9771
|
+
@include fill (
|
|
9772
|
+
$kendo-picker-flat-text,
|
|
9773
|
+
$kendo-picker-flat-bg,
|
|
9774
|
+
$kendo-picker-flat-border
|
|
9775
|
+
);
|
|
9776
|
+
|
|
9777
|
+
&:hover,
|
|
9778
|
+
&.k-hover {
|
|
9779
|
+
@include fill (
|
|
9780
|
+
$kendo-picker-flat-hover-text,
|
|
9781
|
+
$kendo-picker-flat-hover-bg,
|
|
9782
|
+
$kendo-picker-flat-hover-border
|
|
9783
|
+
);
|
|
9784
|
+
}
|
|
9785
|
+
|
|
9786
|
+
&:focus,
|
|
9787
|
+
&.k-focus {
|
|
9788
|
+
@include fill (
|
|
9789
|
+
$kendo-picker-flat-focus-text,
|
|
9790
|
+
$kendo-picker-flat-focus-bg,
|
|
9791
|
+
$kendo-picker-flat-focus-border
|
|
9792
|
+
);
|
|
9793
|
+
@include box-shadow( $kendo-picker-flat-focus-shadow );
|
|
9794
|
+
}
|
|
9795
|
+
|
|
9796
|
+
&:focus:hover,
|
|
9797
|
+
&:focus.k-hover,
|
|
9798
|
+
&.k-focus:hover,
|
|
9799
|
+
&.k-focus.k-hover {
|
|
9800
|
+
@include fill (
|
|
9801
|
+
$kendo-picker-flat-hover-focus-text,
|
|
9802
|
+
$kendo-picker-flat-hover-focus-bg,
|
|
9803
|
+
$kendo-picker-flat-hover-focus-border
|
|
9804
|
+
);
|
|
9805
|
+
}
|
|
9806
|
+
|
|
9807
|
+
// Invalid
|
|
9808
|
+
&.k-invalid,
|
|
9809
|
+
&.ng-invalid.ng-touched,
|
|
9810
|
+
&.ng-invalid.ng-dirty {
|
|
9811
|
+
@include fill( $border: $kendo-input-invalid-border );
|
|
9812
|
+
|
|
9813
|
+
.k-input-validation-icon {
|
|
9814
|
+
color: $invalid-text;
|
|
9815
|
+
}
|
|
9816
|
+
|
|
9817
|
+
&:focus,
|
|
9818
|
+
&.k-focus {
|
|
9819
|
+
@include box-shadow( $kendo-input-invalid-shadow );
|
|
9820
|
+
}
|
|
9821
|
+
&:focus-within {
|
|
9822
|
+
@include box-shadow( $kendo-input-invalid-shadow );
|
|
9823
|
+
}
|
|
9824
|
+
}
|
|
9825
|
+
}
|
|
9826
|
+
|
|
9552
9827
|
}
|
|
9553
9828
|
|
|
9554
9829
|
// #endregion
|
|
@@ -16579,9 +16854,11 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
16579
16854
|
color: $calendar-today-nav-text;
|
|
16580
16855
|
|
|
16581
16856
|
&:hover,
|
|
16857
|
+
&.k-hover,
|
|
16582
16858
|
&.k-state-hover,
|
|
16583
16859
|
&:focus,
|
|
16584
|
-
&.k-state-focus
|
|
16860
|
+
&.k-state-focus,
|
|
16861
|
+
&.k-focus {
|
|
16585
16862
|
color: $calendar-today-nav-hover-text;
|
|
16586
16863
|
}
|
|
16587
16864
|
}
|
|
@@ -16602,7 +16879,8 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
16602
16879
|
.k-link {
|
|
16603
16880
|
box-shadow: inset 0 0 0 1px $calendar-today-color;
|
|
16604
16881
|
}
|
|
16605
|
-
&.k-state-focused .k-link
|
|
16882
|
+
&.k-state-focused .k-link,
|
|
16883
|
+
&.k-focus .k-link {
|
|
16606
16884
|
box-shadow: inset 0 0 0 1px $calendar-today-color, $calendar-cell-focused-shadow;
|
|
16607
16885
|
}
|
|
16608
16886
|
} @else if $calendar-today-style == color {
|
|
@@ -16637,7 +16915,8 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
16637
16915
|
|
|
16638
16916
|
// Interactive states
|
|
16639
16917
|
.k-calendar-td:hover .k-link,
|
|
16640
|
-
.k-calendar-td.k-state-hover .k-link
|
|
16918
|
+
.k-calendar-td.k-state-hover .k-link,
|
|
16919
|
+
.k-calendar-td.k-hover .k-link {
|
|
16641
16920
|
@include fill(
|
|
16642
16921
|
$calendar-cell-hover-text,
|
|
16643
16922
|
$calendar-cell-hover-bg,
|
|
@@ -16645,7 +16924,8 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
16645
16924
|
$calendar-cell-hover-gradient
|
|
16646
16925
|
);
|
|
16647
16926
|
}
|
|
16648
|
-
.k-calendar-td.k-state-selected .k-link
|
|
16927
|
+
.k-calendar-td.k-state-selected .k-link,
|
|
16928
|
+
.k-calendar-td.k-selected .k-link {
|
|
16649
16929
|
@include fill(
|
|
16650
16930
|
$calendar-cell-selected-text,
|
|
16651
16931
|
$calendar-cell-selected-bg,
|
|
@@ -16654,7 +16934,9 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
16654
16934
|
);
|
|
16655
16935
|
}
|
|
16656
16936
|
.k-calendar-td.k-state-selected:hover .k-link,
|
|
16657
|
-
.k-calendar-td.k-state-selected.k-state-hover .k-link
|
|
16937
|
+
.k-calendar-td.k-state-selected.k-state-hover .k-link,
|
|
16938
|
+
.k-calendar-td.k-selected:hover .k-link,
|
|
16939
|
+
.k-calendar-td.k-selected.k-hover .k-link {
|
|
16658
16940
|
@include fill(
|
|
16659
16941
|
$calendar-cell-selected-hover-text,
|
|
16660
16942
|
$calendar-cell-selected-hover-bg,
|
|
@@ -16663,11 +16945,14 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
16663
16945
|
);
|
|
16664
16946
|
}
|
|
16665
16947
|
.k-calendar-td.k-state-focused .k-link,
|
|
16666
|
-
.k-calendar-td.k-state-focus .k-link
|
|
16948
|
+
.k-calendar-td.k-state-focus .k-link,
|
|
16949
|
+
.k-calendar-td.k-focus .k-link {
|
|
16667
16950
|
box-shadow: $calendar-cell-focused-shadow;
|
|
16668
16951
|
}
|
|
16669
16952
|
.k-calendar-td.k-state-selected.k-state-focused .k-link,
|
|
16670
|
-
.k-calendar-td.k-state-selected.k-state-focus .k-link
|
|
16953
|
+
.k-calendar-td.k-state-selected.k-state-focus .k-link,
|
|
16954
|
+
.k-calendar-td.k-selected:focus .k-link,
|
|
16955
|
+
.k-calendar-td.k-selected.k-focus .k-link {
|
|
16671
16956
|
box-shadow: $calendar-cell-selected-focus-shadow;
|
|
16672
16957
|
}
|
|
16673
16958
|
|
|
@@ -16681,7 +16966,8 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
16681
16966
|
box-shadow: inset -1px 0 $calendar-navigation-border;
|
|
16682
16967
|
|
|
16683
16968
|
li:hover,
|
|
16684
|
-
li.k-state-hover
|
|
16969
|
+
li.k-state-hover,
|
|
16970
|
+
li.k-hover {
|
|
16685
16971
|
color: $calendar-today-nav-hover-text;
|
|
16686
16972
|
}
|
|
16687
16973
|
}
|
|
@@ -16764,7 +17050,8 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
16764
17050
|
}
|
|
16765
17051
|
|
|
16766
17052
|
.k-range-start.k-state-active,
|
|
16767
|
-
.k-range-end.k-state-active
|
|
17053
|
+
.k-range-end.k-state-active,
|
|
17054
|
+
.k-range-end.k-active {
|
|
16768
17055
|
.k-link {
|
|
16769
17056
|
box-shadow: inset 0 0 2px 2px rgba(0, 0, 0, .2);
|
|
16770
17057
|
}
|
|
@@ -23118,6 +23405,7 @@ $card-focus-callout-box-shadow-w: 2px -1px 4px 0 rgba( black, .06) !default;
|
|
|
23118
23405
|
@include box-shadow( $card-shadow );
|
|
23119
23406
|
|
|
23120
23407
|
&:focus,
|
|
23408
|
+
&.k-focus,
|
|
23121
23409
|
&.k-state-focus {
|
|
23122
23410
|
@include fill(
|
|
23123
23411
|
$card-focus-text,
|
|
@@ -23126,6 +23414,11 @@ $card-focus-callout-box-shadow-w: 2px -1px 4px 0 rgba( black, .06) !default;
|
|
|
23126
23414
|
);
|
|
23127
23415
|
@include box-shadow( $card-focus-shadow );
|
|
23128
23416
|
}
|
|
23417
|
+
|
|
23418
|
+
&.k-selected,
|
|
23419
|
+
&.k-state-selected {
|
|
23420
|
+
@include box-shadow( $card-focus-shadow );
|
|
23421
|
+
}
|
|
23129
23422
|
}
|
|
23130
23423
|
|
|
23131
23424
|
|
|
@@ -23176,7 +23469,10 @@ $card-focus-callout-box-shadow-w: 2px -1px 4px 0 rgba( black, .06) !default;
|
|
|
23176
23469
|
|
|
23177
23470
|
.k-card-wrap {
|
|
23178
23471
|
&.k-state-focused,
|
|
23179
|
-
&.k-
|
|
23472
|
+
&.k-focus,
|
|
23473
|
+
&:focus,
|
|
23474
|
+
&.k-state-selected,
|
|
23475
|
+
&.k-selected {
|
|
23180
23476
|
> .k-card {
|
|
23181
23477
|
@include box-shadow( $card-focus-shadow );
|
|
23182
23478
|
}
|
|
@@ -23198,6 +23494,7 @@ $card-focus-callout-box-shadow-w: 2px -1px 4px 0 rgba( black, .06) !default;
|
|
|
23198
23494
|
.k-card-callout.k-callout-w { @include box-shadow( $card-callout-box-shadow-w ); }
|
|
23199
23495
|
|
|
23200
23496
|
.k-card:focus .k-card-callout,
|
|
23497
|
+
.k-card.k-focus .k-card-callout,
|
|
23201
23498
|
.k-card.k-state-focus .k-card-callout {
|
|
23202
23499
|
@include fill(
|
|
23203
23500
|
$bg: $card-focus-bg,
|
|
@@ -26112,6 +26409,8 @@ $panelbar-font-family: $font-family !default;
|
|
|
26112
26409
|
$panelbar-font-size: $font-size !default;
|
|
26113
26410
|
$panelbar-line-height: $line-height !default;
|
|
26114
26411
|
$panelbar-border-width: 1px !default;
|
|
26412
|
+
$panelbar-item-border-width: 1px !default;
|
|
26413
|
+
$panelbar-item-border-style: solid !default;
|
|
26115
26414
|
|
|
26116
26415
|
$panelbar-header-padding-x: map-get( $spacing, 4 ) !default;
|
|
26117
26416
|
$panelbar-header-padding-y: map-get( $spacing, 3 ) !default;
|
|
@@ -26239,7 +26538,7 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
26239
26538
|
> .k-panelbar-header {
|
|
26240
26539
|
// TODO
|
|
26241
26540
|
border-width: 0;
|
|
26242
|
-
border-style:
|
|
26541
|
+
border-style: $panelbar-item-border-style;
|
|
26243
26542
|
border-color: inherit;
|
|
26244
26543
|
display: block;
|
|
26245
26544
|
|
|
@@ -26262,7 +26561,7 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
26262
26561
|
}
|
|
26263
26562
|
> .k-item + .k-item,
|
|
26264
26563
|
> .k-panelbar-header + .k-panelbar-header {
|
|
26265
|
-
border-top-width:
|
|
26564
|
+
border-top-width: $panelbar-item-border-width;
|
|
26266
26565
|
}
|
|
26267
26566
|
|
|
26268
26567
|
|
|
@@ -26995,6 +27294,7 @@ $tilelayout-hint-border: $component-border !default;
|
|
|
26995
27294
|
}
|
|
26996
27295
|
|
|
26997
27296
|
.k-tilelayout-item:focus,
|
|
27297
|
+
.k-tilelayout-item.k-focus,
|
|
26998
27298
|
.k-tilelayout-item.k-state-focus,
|
|
26999
27299
|
.k-tilelayout-item.k-state-focused {
|
|
27000
27300
|
@include box-shadow($tilelayout-card-focus-shadow);
|
|
@@ -28994,6 +29294,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
28994
29294
|
kendo-numeric-filter-menu,
|
|
28995
29295
|
kendo-grid-string-filter-menu,
|
|
28996
29296
|
kendo-grid-date-filter-menu,
|
|
29297
|
+
kendo-grid-numeric-filter-menu,
|
|
28997
29298
|
kendo-grid-filter-menu-input-wrapper {
|
|
28998
29299
|
display: flex;
|
|
28999
29300
|
flex-flow: column nowrap;
|
|
@@ -33436,8 +33737,10 @@ $taskboard-drag-placeholder-border: $component-border !default;
|
|
|
33436
33737
|
overflow-wrap: anywhere;
|
|
33437
33738
|
|
|
33438
33739
|
&:focus,
|
|
33740
|
+
&.k-focus,
|
|
33439
33741
|
&.k-state-focus,
|
|
33440
33742
|
&:hover,
|
|
33743
|
+
&.k-hover,
|
|
33441
33744
|
&.k-state-hover {
|
|
33442
33745
|
text-decoration: underline;
|
|
33443
33746
|
}
|
|
@@ -33565,32 +33868,38 @@ $taskboard-drag-placeholder-border: $component-border !default;
|
|
|
33565
33868
|
@include fill( $color: $taskboard-card-header-text );
|
|
33566
33869
|
|
|
33567
33870
|
&:focus,
|
|
33871
|
+
&.k-focus,
|
|
33568
33872
|
&.k-state-focus {
|
|
33569
33873
|
@include fill( $color: $taskboard-card-header-focus-text );
|
|
33570
33874
|
}
|
|
33571
33875
|
|
|
33572
33876
|
&:hover,
|
|
33877
|
+
&.k-hover,
|
|
33573
33878
|
&.k-state-hover {
|
|
33574
33879
|
@include fill( $color: $taskboard-card-header-hover-text );
|
|
33575
33880
|
}
|
|
33576
33881
|
}
|
|
33577
33882
|
|
|
33578
33883
|
&:focus,
|
|
33884
|
+
&.k-focus,
|
|
33579
33885
|
&.k-state-focus {
|
|
33580
33886
|
@include fill( $border: $taskboard-card-focus-border );
|
|
33581
33887
|
@include box-shadow( $taskboard-card-focus-shadow );
|
|
33582
33888
|
}
|
|
33583
33889
|
|
|
33584
33890
|
&:hover,
|
|
33891
|
+
&.k-hover,
|
|
33585
33892
|
&.k-state-hover {
|
|
33586
33893
|
@include fill( $border: $taskboard-card-hover-border );
|
|
33587
33894
|
}
|
|
33588
33895
|
|
|
33896
|
+
&.k-selected,
|
|
33589
33897
|
&.k-state-selected {
|
|
33590
33898
|
@include fill( $border: $taskboard-card-selected-border );
|
|
33591
33899
|
@include box-shadow( $taskboard-card-selected-shadow );
|
|
33592
33900
|
}
|
|
33593
33901
|
|
|
33902
|
+
&.k-disabled,
|
|
33594
33903
|
&.k-state-disabled {
|
|
33595
33904
|
@include disabled( $disabled-styling );
|
|
33596
33905
|
}
|
|
@@ -41099,6 +41408,7 @@ $orgchart-line-v-height: 25px !default;
|
|
|
41099
41408
|
}
|
|
41100
41409
|
|
|
41101
41410
|
&:focus,
|
|
41411
|
+
&.k-focus,
|
|
41102
41412
|
&.k-state-focus {
|
|
41103
41413
|
@include box-shadow( $orgchart-card-focus-shadow );
|
|
41104
41414
|
}
|
|
@@ -41113,6 +41423,7 @@ $orgchart-line-v-height: 25px !default;
|
|
|
41113
41423
|
);
|
|
41114
41424
|
}
|
|
41115
41425
|
.k-orgchart-node-group-container:focus,
|
|
41426
|
+
.k-orgchart-node-group-container.k-focus,
|
|
41116
41427
|
.k-orgchart-node-group-container.k-state-focus,
|
|
41117
41428
|
.k-orgchart-node-group-container.k-state-focused {
|
|
41118
41429
|
@include box-shadow( $orgchart-node-group-focus-shadow );
|