@progress/kendo-theme-bootstrap 5.3.2-dev.1 → 5.3.2-dev.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/all.css +209 -32
- package/dist/all.scss +372 -40
- 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 +3 -3
- package/scss/button/_variables.scss +2 -2
- package/scss/chip/_variables.scss +1 -1
- package/scss/gantt/_variables.scss +1 -0
- package/scss/input/_variables.scss +58 -1
- package/scss/panelbar/_variables.scss +2 -0
- package/scss/scheduler/_layout.scss +3 -0
- package/scss/treeview/_variables.scss +24 -12
package/dist/all.scss
CHANGED
|
@@ -10267,13 +10267,13 @@ $kendo-button-selected-shadow: $kendo-button-active-shadow !default;
|
|
|
10267
10267
|
|
|
10268
10268
|
/// The base background of focused button.
|
|
10269
10269
|
/// @group button
|
|
10270
|
-
$kendo-button-focus-bg:
|
|
10270
|
+
$kendo-button-focus-bg: try-darken( $kendo-button-bg, 10% ) !default;
|
|
10271
10271
|
/// The base text color of focused button.
|
|
10272
10272
|
/// @group button
|
|
10273
10273
|
$kendo-button-focus-text: null !default;
|
|
10274
10274
|
/// The base border color of focused button.
|
|
10275
10275
|
/// @group button
|
|
10276
|
-
$kendo-button-focus-border:
|
|
10276
|
+
$kendo-button-focus-border: try-darken( $kendo-button-bg, 12.5% ) !default;
|
|
10277
10277
|
/// The base background gradient of focused button.
|
|
10278
10278
|
/// @group button
|
|
10279
10279
|
$kendo-button-focus-gradient: null !default;
|
|
@@ -11063,6 +11063,29 @@ $kendo-input-disabled-border: null !default;
|
|
|
11063
11063
|
$kendo-input-disabled-gradient: null !default;
|
|
11064
11064
|
$kendo-input-disabled-shadow: null !default;
|
|
11065
11065
|
|
|
11066
|
+
$kendo-input-outline-bg: null !default;
|
|
11067
|
+
$kendo-input-outline-text: $base-text !default;
|
|
11068
|
+
$kendo-input-outline-border: rgba( $base-text, .5 ) !default;
|
|
11069
|
+
|
|
11070
|
+
$kendo-input-outline-hover-bg: null !default;
|
|
11071
|
+
$kendo-input-outline-hover-text: null !default;
|
|
11072
|
+
$kendo-input-outline-hover-border: null !default;
|
|
11073
|
+
|
|
11074
|
+
$kendo-input-outline-focus-bg: null !default;
|
|
11075
|
+
$kendo-input-outline-focus-text: null !default;
|
|
11076
|
+
$kendo-input-outline-focus-border: null !default;
|
|
11077
|
+
$kendo-input-outline-focus-shadow: null !default;
|
|
11078
|
+
|
|
11079
|
+
$kendo-input-flat-bg: transparent !default;
|
|
11080
|
+
$kendo-input-flat-text: null !default;
|
|
11081
|
+
$kendo-input-flat-border: null !default;
|
|
11082
|
+
|
|
11083
|
+
$kendo-input-flat-focus-bg: null !default;
|
|
11084
|
+
$kendo-input-flat-focus-text: null !default;
|
|
11085
|
+
$kendo-input-flat-focus-border: $primary !default;
|
|
11086
|
+
|
|
11087
|
+
$kendo-input-flat-border-radius: $kendo-border-radius $kendo-border-radius 0px 0px !default;
|
|
11088
|
+
|
|
11066
11089
|
$kendo-picker-bg: $kendo-button-bg !default;
|
|
11067
11090
|
$kendo-picker-text: $kendo-button-text !default;
|
|
11068
11091
|
$kendo-picker-border: $kendo-button-border !default;
|
|
@@ -11075,7 +11098,7 @@ $kendo-picker-hover-border: $kendo-button-hover-border !default;
|
|
|
11075
11098
|
$kendo-picker-hover-gradient: $kendo-button-hover-gradient !default;
|
|
11076
11099
|
$kendo-picker-hover-shadow: $kendo-button-hover-shadow !default;
|
|
11077
11100
|
|
|
11078
|
-
$kendo-picker-focus-bg: $kendo-button-
|
|
11101
|
+
$kendo-picker-focus-bg: $kendo-button-active-bg !default;
|
|
11079
11102
|
$kendo-picker-focus-text: $kendo-button-focus-text !default;
|
|
11080
11103
|
$kendo-picker-focus-border: $kendo-button-focus-border !default;
|
|
11081
11104
|
$kendo-picker-focus-gradient: $kendo-button-focus-gradient !default;
|
|
@@ -11087,6 +11110,40 @@ $kendo-picker-disabled-border: null !default;
|
|
|
11087
11110
|
$kendo-picker-disabled-gradient: null !default;
|
|
11088
11111
|
$kendo-picker-disabled-shadow: null !default;
|
|
11089
11112
|
|
|
11113
|
+
$kendo-picker-outline-bg: transparent !default;
|
|
11114
|
+
$kendo-picker-outline-text: $kendo-button-text !default;
|
|
11115
|
+
$kendo-picker-outline-border: $kendo-picker-outline-text !default;
|
|
11116
|
+
|
|
11117
|
+
$kendo-picker-outline-hover-bg: $kendo-button-text !default;
|
|
11118
|
+
$kendo-picker-outline-hover-text: $body-bg !default;
|
|
11119
|
+
$kendo-picker-outline-hover-border: $kendo-picker-outline-hover-bg !default;
|
|
11120
|
+
|
|
11121
|
+
$kendo-picker-outline-focus-bg: transparent !default;
|
|
11122
|
+
$kendo-picker-outline-focus-text: $kendo-picker-outline-text !default;
|
|
11123
|
+
$kendo-picker-outline-focus-border: $kendo-picker-outline-border !default;
|
|
11124
|
+
$kendo-picker-outline-focus-shadow: $kendo-picker-focus-shadow !default;
|
|
11125
|
+
|
|
11126
|
+
$kendo-picker-outline-hover-focus-bg: $kendo-picker-outline-hover-bg !default;
|
|
11127
|
+
$kendo-picker-outline-hover-focus-text: $kendo-picker-outline-hover-text !default;
|
|
11128
|
+
$kendo-picker-outline-hover-focus-border: $kendo-picker-outline-hover-border !default;
|
|
11129
|
+
|
|
11130
|
+
$kendo-picker-flat-bg: transparent !default;
|
|
11131
|
+
$kendo-picker-flat-text: null !default;
|
|
11132
|
+
$kendo-picker-flat-border: null !default;
|
|
11133
|
+
|
|
11134
|
+
$kendo-picker-flat-hover-bg: rgba( $kendo-button-text, .08 ) !default;
|
|
11135
|
+
$kendo-picker-flat-hover-text: null !default;
|
|
11136
|
+
$kendo-picker-flat-hover-border: null !default;
|
|
11137
|
+
|
|
11138
|
+
$kendo-picker-flat-focus-bg: transparent !default;
|
|
11139
|
+
$kendo-picker-flat-focus-text: null !default;
|
|
11140
|
+
$kendo-picker-flat-focus-border: $kendo-picker-focus-border !default;
|
|
11141
|
+
$kendo-picker-flat-focus-shadow: $kendo-picker-focus-shadow !default;
|
|
11142
|
+
|
|
11143
|
+
$kendo-picker-flat-hover-focus-bg: rgba( $kendo-button-text, .08 ) !default;
|
|
11144
|
+
$kendo-picker-flat-hover-focus-text: null !default;
|
|
11145
|
+
$kendo-picker-flat-hover-focus-border: null !default;
|
|
11146
|
+
|
|
11090
11147
|
$kendo-input-placeholder-text: $input-placeholder-color !default;
|
|
11091
11148
|
$kendo-input-placeholder-opacity: 1 !default;
|
|
11092
11149
|
|
|
@@ -11464,19 +11521,25 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
11464
11521
|
@include border-radius( 0 !important ); // sass-lint:disable-line no-important
|
|
11465
11522
|
border-width: $kendo-input-border-width 0;
|
|
11466
11523
|
border-top-color: transparent !important; // sass-lint:disable-line no-important
|
|
11467
|
-
background: none !important; // sass-lint:disable-line no-important
|
|
11524
|
+
background-image: none !important; // sass-lint:disable-line no-important
|
|
11468
11525
|
|
|
11469
|
-
|
|
11470
|
-
|
|
11471
|
-
|
|
11526
|
+
&:focus,
|
|
11527
|
+
&.k-focus {
|
|
11528
|
+
@include border-radius( $kendo-input-flat-border-radius !important ); // sass-lint:disable-line no-important
|
|
11529
|
+
}
|
|
11530
|
+
&:focus-within {
|
|
11531
|
+
@include border-radius( $kendo-input-flat-border-radius !important ); // sass-lint:disable-line no-important
|
|
11472
11532
|
}
|
|
11473
11533
|
}
|
|
11474
11534
|
|
|
11475
|
-
.k-input-outline
|
|
11476
|
-
.k-picker-outline {
|
|
11535
|
+
.k-input-outline {
|
|
11477
11536
|
background: none !important; // sass-lint:disable-line no-important
|
|
11478
11537
|
}
|
|
11479
11538
|
|
|
11539
|
+
.k-picker.k-picker-flat {
|
|
11540
|
+
@include border-radius( $kendo-input-flat-border-radius !important ); // sass-lint:disable-line no-important
|
|
11541
|
+
}
|
|
11542
|
+
|
|
11480
11543
|
|
|
11481
11544
|
// Sizing
|
|
11482
11545
|
@each $size, $size-props in $kendo-input-sizes {
|
|
@@ -11737,6 +11800,218 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
11737
11800
|
}
|
|
11738
11801
|
}
|
|
11739
11802
|
|
|
11803
|
+
// Outline
|
|
11804
|
+
.k-input-outline {
|
|
11805
|
+
@include fill (
|
|
11806
|
+
$kendo-input-outline-text,
|
|
11807
|
+
$kendo-input-outline-bg,
|
|
11808
|
+
$kendo-input-outline-border
|
|
11809
|
+
);
|
|
11810
|
+
|
|
11811
|
+
& > .k-input-button {
|
|
11812
|
+
border-color: inherit;
|
|
11813
|
+
}
|
|
11814
|
+
|
|
11815
|
+
& > .k-input-spinner {
|
|
11816
|
+
border-color: inherit;
|
|
11817
|
+
|
|
11818
|
+
& > .k-spinner-increase,
|
|
11819
|
+
& > .k-spinner-decrease {
|
|
11820
|
+
border-color: inherit;
|
|
11821
|
+
}
|
|
11822
|
+
}
|
|
11823
|
+
|
|
11824
|
+
&:hover,
|
|
11825
|
+
&.k-hover {
|
|
11826
|
+
@include fill (
|
|
11827
|
+
$kendo-input-outline-hover-text,
|
|
11828
|
+
$kendo-input-outline-hover-bg,
|
|
11829
|
+
$kendo-input-outline-hover-border
|
|
11830
|
+
);
|
|
11831
|
+
}
|
|
11832
|
+
|
|
11833
|
+
&:focus,
|
|
11834
|
+
&.k-focus {
|
|
11835
|
+
@include fill (
|
|
11836
|
+
$kendo-input-outline-focus-text,
|
|
11837
|
+
$kendo-input-outline-focus-bg,
|
|
11838
|
+
$kendo-input-outline-focus-border
|
|
11839
|
+
);
|
|
11840
|
+
@include box-shadow ( $kendo-input-outline-focus-shadow );
|
|
11841
|
+
}
|
|
11842
|
+
|
|
11843
|
+
// Invalid
|
|
11844
|
+
&.k-invalid,
|
|
11845
|
+
&.ng-invalid.ng-touched,
|
|
11846
|
+
&.ng-invalid.ng-dirty {
|
|
11847
|
+
@include fill( $border: $invalid-border );
|
|
11848
|
+
|
|
11849
|
+
.k-input-validation-icon {
|
|
11850
|
+
color: $invalid-text;
|
|
11851
|
+
}
|
|
11852
|
+
|
|
11853
|
+
&:focus,
|
|
11854
|
+
&.k-focus {
|
|
11855
|
+
@include box-shadow($invalid-shadow);
|
|
11856
|
+
}
|
|
11857
|
+
&:focus-within {
|
|
11858
|
+
@include box-shadow($invalid-shadow);
|
|
11859
|
+
}
|
|
11860
|
+
}
|
|
11861
|
+
|
|
11862
|
+
}
|
|
11863
|
+
|
|
11864
|
+
.k-picker-outline {
|
|
11865
|
+
@include fill (
|
|
11866
|
+
$kendo-picker-outline-text,
|
|
11867
|
+
$kendo-picker-outline-bg,
|
|
11868
|
+
$kendo-picker-outline-border
|
|
11869
|
+
);
|
|
11870
|
+
|
|
11871
|
+
&:hover,
|
|
11872
|
+
&.k-hover {
|
|
11873
|
+
@include fill (
|
|
11874
|
+
$kendo-picker-outline-hover-text,
|
|
11875
|
+
$kendo-picker-outline-hover-bg,
|
|
11876
|
+
$kendo-picker-outline-hover-border
|
|
11877
|
+
);
|
|
11878
|
+
}
|
|
11879
|
+
|
|
11880
|
+
&:focus,
|
|
11881
|
+
&.k-focus {
|
|
11882
|
+
@include fill (
|
|
11883
|
+
$kendo-picker-outline-focus-text,
|
|
11884
|
+
$kendo-picker-outline-focus-bg,
|
|
11885
|
+
$kendo-picker-outline-focus-border
|
|
11886
|
+
);
|
|
11887
|
+
@include box-shadow ( $kendo-picker-outline-focus-shadow );
|
|
11888
|
+
}
|
|
11889
|
+
|
|
11890
|
+
&:focus:hover,
|
|
11891
|
+
&:focus.k-hover,
|
|
11892
|
+
&.k-focus:hover,
|
|
11893
|
+
&.k-focus.k-hover {
|
|
11894
|
+
@include fill (
|
|
11895
|
+
$kendo-picker-outline-hover-focus-text,
|
|
11896
|
+
$kendo-picker-outline-hover-focus-bg,
|
|
11897
|
+
$kendo-picker-outline-hover-focus-border
|
|
11898
|
+
);
|
|
11899
|
+
}
|
|
11900
|
+
|
|
11901
|
+
// Invalid
|
|
11902
|
+
&.k-invalid,
|
|
11903
|
+
&.ng-invalid.ng-touched,
|
|
11904
|
+
&.ng-invalid.ng-dirty {
|
|
11905
|
+
@include fill( $border: $invalid-border );
|
|
11906
|
+
|
|
11907
|
+
.k-input-validation-icon {
|
|
11908
|
+
color: $invalid-text;
|
|
11909
|
+
}
|
|
11910
|
+
|
|
11911
|
+
&:focus,
|
|
11912
|
+
&.k-focus {
|
|
11913
|
+
@include box-shadow($invalid-shadow);
|
|
11914
|
+
}
|
|
11915
|
+
&:focus-within {
|
|
11916
|
+
@include box-shadow($invalid-shadow);
|
|
11917
|
+
}
|
|
11918
|
+
}
|
|
11919
|
+
}
|
|
11920
|
+
|
|
11921
|
+
// Flat
|
|
11922
|
+
.k-input-flat {
|
|
11923
|
+
@include fill (
|
|
11924
|
+
$kendo-input-flat-text,
|
|
11925
|
+
$kendo-input-flat-bg,
|
|
11926
|
+
$kendo-input-flat-border
|
|
11927
|
+
);
|
|
11928
|
+
|
|
11929
|
+
&:focus,
|
|
11930
|
+
&.k-focus {
|
|
11931
|
+
@include fill (
|
|
11932
|
+
$kendo-input-flat-focus-text,
|
|
11933
|
+
$kendo-input-flat-focus-bg,
|
|
11934
|
+
$kendo-input-flat-focus-border
|
|
11935
|
+
);
|
|
11936
|
+
}
|
|
11937
|
+
|
|
11938
|
+
// Invalid
|
|
11939
|
+
&.k-invalid,
|
|
11940
|
+
&.ng-invalid.ng-touched,
|
|
11941
|
+
&.ng-invalid.ng-dirty {
|
|
11942
|
+
@include fill( $border: $kendo-input-invalid-border );
|
|
11943
|
+
|
|
11944
|
+
.k-input-validation-icon {
|
|
11945
|
+
color: $invalid-text;
|
|
11946
|
+
}
|
|
11947
|
+
|
|
11948
|
+
&:focus,
|
|
11949
|
+
&.k-focus {
|
|
11950
|
+
@include box-shadow( $kendo-input-invalid-shadow );
|
|
11951
|
+
}
|
|
11952
|
+
&:focus-within {
|
|
11953
|
+
@include box-shadow( $kendo-input-invalid-shadow );
|
|
11954
|
+
}
|
|
11955
|
+
}
|
|
11956
|
+
}
|
|
11957
|
+
|
|
11958
|
+
.k-picker-flat {
|
|
11959
|
+
@include fill (
|
|
11960
|
+
$kendo-picker-flat-text,
|
|
11961
|
+
$kendo-picker-flat-bg,
|
|
11962
|
+
$kendo-picker-flat-border
|
|
11963
|
+
);
|
|
11964
|
+
|
|
11965
|
+
&:hover,
|
|
11966
|
+
&.k-hover {
|
|
11967
|
+
@include fill (
|
|
11968
|
+
$kendo-picker-flat-hover-text,
|
|
11969
|
+
$kendo-picker-flat-hover-bg,
|
|
11970
|
+
$kendo-picker-flat-hover-border
|
|
11971
|
+
);
|
|
11972
|
+
}
|
|
11973
|
+
|
|
11974
|
+
&:focus,
|
|
11975
|
+
&.k-focus {
|
|
11976
|
+
@include fill (
|
|
11977
|
+
$kendo-picker-flat-focus-text,
|
|
11978
|
+
$kendo-picker-flat-focus-bg,
|
|
11979
|
+
$kendo-picker-flat-focus-border
|
|
11980
|
+
);
|
|
11981
|
+
@include box-shadow( $kendo-picker-flat-focus-shadow );
|
|
11982
|
+
}
|
|
11983
|
+
|
|
11984
|
+
&:focus:hover,
|
|
11985
|
+
&:focus.k-hover,
|
|
11986
|
+
&.k-focus:hover,
|
|
11987
|
+
&.k-focus.k-hover {
|
|
11988
|
+
@include fill (
|
|
11989
|
+
$kendo-picker-flat-hover-focus-text,
|
|
11990
|
+
$kendo-picker-flat-hover-focus-bg,
|
|
11991
|
+
$kendo-picker-flat-hover-focus-border
|
|
11992
|
+
);
|
|
11993
|
+
}
|
|
11994
|
+
|
|
11995
|
+
// Invalid
|
|
11996
|
+
&.k-invalid,
|
|
11997
|
+
&.ng-invalid.ng-touched,
|
|
11998
|
+
&.ng-invalid.ng-dirty {
|
|
11999
|
+
@include fill( $border: $kendo-input-invalid-border );
|
|
12000
|
+
|
|
12001
|
+
.k-input-validation-icon {
|
|
12002
|
+
color: $invalid-text;
|
|
12003
|
+
}
|
|
12004
|
+
|
|
12005
|
+
&:focus,
|
|
12006
|
+
&.k-focus {
|
|
12007
|
+
@include box-shadow( $kendo-input-invalid-shadow );
|
|
12008
|
+
}
|
|
12009
|
+
&:focus-within {
|
|
12010
|
+
@include box-shadow( $kendo-input-invalid-shadow );
|
|
12011
|
+
}
|
|
12012
|
+
}
|
|
12013
|
+
}
|
|
12014
|
+
|
|
11740
12015
|
}
|
|
11741
12016
|
|
|
11742
12017
|
// #endregion
|
|
@@ -11902,6 +12177,7 @@ $floating-label-focus-text: null !default;
|
|
|
11902
12177
|
);
|
|
11903
12178
|
}
|
|
11904
12179
|
|
|
12180
|
+
&.k-focus > .k-label,
|
|
11905
12181
|
&.k-state-focused > .k-label {
|
|
11906
12182
|
@include fill(
|
|
11907
12183
|
$color: $floating-label-focus-text,
|
|
@@ -13179,7 +13455,7 @@ $kendo-chip-sizes: (
|
|
|
13179
13455
|
|
|
13180
13456
|
/// The base background color of the chip.
|
|
13181
13457
|
/// @group chip
|
|
13182
|
-
$kendo-chip-base-bg: $
|
|
13458
|
+
$kendo-chip-base-bg: $base-text !default;
|
|
13183
13459
|
|
|
13184
13460
|
/// Theme colors map for the chip.
|
|
13185
13461
|
/// @group chip
|
|
@@ -15005,9 +15281,9 @@ $tooltip-error-border: $tooltip-error-bg !default;
|
|
|
15005
15281
|
}
|
|
15006
15282
|
}
|
|
15007
15283
|
|
|
15008
|
-
.k-item
|
|
15009
|
-
|
|
15010
|
-
|
|
15284
|
+
.k-item:focus,
|
|
15285
|
+
.k-item.k-focus {
|
|
15286
|
+
> .k-link {
|
|
15011
15287
|
@include box-shadow( $kendo-menu-popup-item-focus-shadow );
|
|
15012
15288
|
}
|
|
15013
15289
|
}
|
|
@@ -18996,9 +19272,11 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
18996
19272
|
color: $calendar-today-nav-text;
|
|
18997
19273
|
|
|
18998
19274
|
&:hover,
|
|
19275
|
+
&.k-hover,
|
|
18999
19276
|
&.k-state-hover,
|
|
19000
19277
|
&:focus,
|
|
19001
|
-
&.k-state-focus
|
|
19278
|
+
&.k-state-focus,
|
|
19279
|
+
&.k-focus {
|
|
19002
19280
|
color: $calendar-today-nav-hover-text;
|
|
19003
19281
|
}
|
|
19004
19282
|
}
|
|
@@ -19019,7 +19297,8 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
19019
19297
|
.k-link {
|
|
19020
19298
|
box-shadow: inset 0 0 0 1px $calendar-today-color;
|
|
19021
19299
|
}
|
|
19022
|
-
&.k-state-focused .k-link
|
|
19300
|
+
&.k-state-focused .k-link,
|
|
19301
|
+
&.k-focus .k-link {
|
|
19023
19302
|
box-shadow: inset 0 0 0 1px $calendar-today-color, $calendar-cell-focused-shadow;
|
|
19024
19303
|
}
|
|
19025
19304
|
} @else if $calendar-today-style == color {
|
|
@@ -19054,7 +19333,8 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
19054
19333
|
|
|
19055
19334
|
// Interactive states
|
|
19056
19335
|
.k-calendar-td:hover .k-link,
|
|
19057
|
-
.k-calendar-td.k-state-hover .k-link
|
|
19336
|
+
.k-calendar-td.k-state-hover .k-link,
|
|
19337
|
+
.k-calendar-td.k-hover .k-link {
|
|
19058
19338
|
@include fill(
|
|
19059
19339
|
$calendar-cell-hover-text,
|
|
19060
19340
|
$calendar-cell-hover-bg,
|
|
@@ -19062,7 +19342,8 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
19062
19342
|
$calendar-cell-hover-gradient
|
|
19063
19343
|
);
|
|
19064
19344
|
}
|
|
19065
|
-
.k-calendar-td.k-state-selected .k-link
|
|
19345
|
+
.k-calendar-td.k-state-selected .k-link,
|
|
19346
|
+
.k-calendar-td.k-selected .k-link {
|
|
19066
19347
|
@include fill(
|
|
19067
19348
|
$calendar-cell-selected-text,
|
|
19068
19349
|
$calendar-cell-selected-bg,
|
|
@@ -19071,7 +19352,9 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
19071
19352
|
);
|
|
19072
19353
|
}
|
|
19073
19354
|
.k-calendar-td.k-state-selected:hover .k-link,
|
|
19074
|
-
.k-calendar-td.k-state-selected.k-state-hover .k-link
|
|
19355
|
+
.k-calendar-td.k-state-selected.k-state-hover .k-link,
|
|
19356
|
+
.k-calendar-td.k-selected:hover .k-link,
|
|
19357
|
+
.k-calendar-td.k-selected.k-hover .k-link {
|
|
19075
19358
|
@include fill(
|
|
19076
19359
|
$calendar-cell-selected-hover-text,
|
|
19077
19360
|
$calendar-cell-selected-hover-bg,
|
|
@@ -19080,11 +19363,14 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
19080
19363
|
);
|
|
19081
19364
|
}
|
|
19082
19365
|
.k-calendar-td.k-state-focused .k-link,
|
|
19083
|
-
.k-calendar-td.k-state-focus .k-link
|
|
19366
|
+
.k-calendar-td.k-state-focus .k-link,
|
|
19367
|
+
.k-calendar-td.k-focus .k-link {
|
|
19084
19368
|
box-shadow: $calendar-cell-focused-shadow;
|
|
19085
19369
|
}
|
|
19086
19370
|
.k-calendar-td.k-state-selected.k-state-focused .k-link,
|
|
19087
|
-
.k-calendar-td.k-state-selected.k-state-focus .k-link
|
|
19371
|
+
.k-calendar-td.k-state-selected.k-state-focus .k-link,
|
|
19372
|
+
.k-calendar-td.k-selected:focus .k-link,
|
|
19373
|
+
.k-calendar-td.k-selected.k-focus .k-link {
|
|
19088
19374
|
box-shadow: $calendar-cell-selected-focus-shadow;
|
|
19089
19375
|
}
|
|
19090
19376
|
|
|
@@ -19098,7 +19384,8 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
19098
19384
|
box-shadow: inset -1px 0 $calendar-navigation-border;
|
|
19099
19385
|
|
|
19100
19386
|
li:hover,
|
|
19101
|
-
li.k-state-hover
|
|
19387
|
+
li.k-state-hover,
|
|
19388
|
+
li.k-hover {
|
|
19102
19389
|
color: $calendar-today-nav-hover-text;
|
|
19103
19390
|
}
|
|
19104
19391
|
}
|
|
@@ -19181,7 +19468,8 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
19181
19468
|
}
|
|
19182
19469
|
|
|
19183
19470
|
.k-range-start.k-state-active,
|
|
19184
|
-
.k-range-end.k-state-active
|
|
19471
|
+
.k-range-end.k-state-active,
|
|
19472
|
+
.k-range-end.k-active {
|
|
19185
19473
|
.k-link {
|
|
19186
19474
|
box-shadow: inset 0 0 2px 2px rgba(0, 0, 0, .2);
|
|
19187
19475
|
}
|
|
@@ -21194,9 +21482,15 @@ $kendo-treeview-font-family: $font-family !default;
|
|
|
21194
21482
|
/// Font size of the treeview component.
|
|
21195
21483
|
/// @group treeview
|
|
21196
21484
|
$kendo-treeview-font-size: $font-size-md !default;
|
|
21485
|
+
$kendo-treeview-font-size-sm: $font-size-md !default;
|
|
21486
|
+
$kendo-treeview-font-size-md: $font-size-md !default;
|
|
21487
|
+
$kendo-treeview-font-size-lg: $font-size-md !default;
|
|
21197
21488
|
/// Line height of the treeview component.
|
|
21198
21489
|
/// @group treeview
|
|
21199
21490
|
$kendo-treeview-line-height: $line-height !default;
|
|
21491
|
+
$kendo-treeview-line-height-sm: $line-height !default;
|
|
21492
|
+
$kendo-treeview-line-height-md: $line-height !default;
|
|
21493
|
+
$kendo-treeview-line-height-lg: $line-height !default;
|
|
21200
21494
|
|
|
21201
21495
|
/// Indentation of child groups in treeview component.
|
|
21202
21496
|
/// @group treeview
|
|
@@ -21205,9 +21499,15 @@ $kendo-treeview-indent: 16px !default;
|
|
|
21205
21499
|
/// Horizontal padding of treeview items.
|
|
21206
21500
|
/// @group treeview
|
|
21207
21501
|
$kendo-treeview-item-padding-x: map-get( $spacing, 3 ) !default;
|
|
21502
|
+
$kendo-treeview-item-padding-x-sm: map-get( $spacing, 3 ) !default;
|
|
21503
|
+
$kendo-treeview-item-padding-x-md: map-get( $spacing, 3 ) !default;
|
|
21504
|
+
$kendo-treeview-item-padding-x-lg: map-get( $spacing, 3 ) !default;
|
|
21208
21505
|
/// Vertical padding of treeview items.
|
|
21209
21506
|
/// @group treeview
|
|
21210
21507
|
$kendo-treeview-item-padding-y: map-get( $spacing, 1 ) !default;
|
|
21508
|
+
$kendo-treeview-item-padding-y-sm: map-get( $spacing, 1 ) - map-get( $spacing, thin ) !default;
|
|
21509
|
+
$kendo-treeview-item-padding-y-md: map-get( $spacing, 1 ) !default;
|
|
21510
|
+
$kendo-treeview-item-padding-y-lg: map-get( $spacing, 1 ) + map-get( $spacing, thin ) !default;
|
|
21211
21511
|
/// Border width of treeview items.
|
|
21212
21512
|
/// @group treeview
|
|
21213
21513
|
$kendo-treeview-item-border-width: 0px !default;
|
|
@@ -21220,22 +21520,22 @@ $kendo-treeview-item-border-radius: map-get( $spacing, 1 ) !default;
|
|
|
21220
21520
|
/// @group treeview
|
|
21221
21521
|
$kendo-treeview-sizes: (
|
|
21222
21522
|
sm: (
|
|
21223
|
-
font-size: $font-size-
|
|
21224
|
-
line-height: $line-height-
|
|
21225
|
-
item-padding-x:
|
|
21226
|
-
item-padding-y:
|
|
21523
|
+
font-size: $kendo-treeview-font-size-sm,
|
|
21524
|
+
line-height: $kendo-treeview-line-height-sm,
|
|
21525
|
+
item-padding-x: $kendo-treeview-item-padding-x-sm,
|
|
21526
|
+
item-padding-y: $kendo-treeview-item-padding-y-sm
|
|
21227
21527
|
),
|
|
21228
21528
|
md: (
|
|
21229
|
-
font-size: $font-size-md,
|
|
21230
|
-
line-height: $line-height-md,
|
|
21231
|
-
item-padding-x:
|
|
21232
|
-
item-padding-y:
|
|
21529
|
+
font-size: $kendo-treeview-font-size-md,
|
|
21530
|
+
line-height: $kendo-treeview-line-height-md,
|
|
21531
|
+
item-padding-x: $kendo-treeview-item-padding-x-md,
|
|
21532
|
+
item-padding-y: $kendo-treeview-item-padding-y-md
|
|
21233
21533
|
),
|
|
21234
21534
|
lg: (
|
|
21235
|
-
font-size: $font-size-
|
|
21236
|
-
line-height: $line-height-
|
|
21237
|
-
item-padding-x:
|
|
21238
|
-
item-padding-y:
|
|
21535
|
+
font-size: $kendo-treeview-font-size-lg,
|
|
21536
|
+
line-height: $kendo-treeview-line-height-lg,
|
|
21537
|
+
item-padding-x: $kendo-treeview-item-padding-x-lg,
|
|
21538
|
+
item-padding-y: $kendo-treeview-item-padding-y-lg
|
|
21239
21539
|
)
|
|
21240
21540
|
) !default;
|
|
21241
21541
|
|
|
@@ -25776,6 +26076,7 @@ $card-focus-callout-box-shadow-w: $card-focus-shadow !default;
|
|
|
25776
26076
|
@include box-shadow( $card-shadow );
|
|
25777
26077
|
|
|
25778
26078
|
&:focus,
|
|
26079
|
+
&.k-focus,
|
|
25779
26080
|
&.k-state-focus {
|
|
25780
26081
|
@include fill(
|
|
25781
26082
|
$card-focus-text,
|
|
@@ -25784,6 +26085,11 @@ $card-focus-callout-box-shadow-w: $card-focus-shadow !default;
|
|
|
25784
26085
|
);
|
|
25785
26086
|
@include box-shadow( $card-focus-shadow );
|
|
25786
26087
|
}
|
|
26088
|
+
|
|
26089
|
+
&.k-selected,
|
|
26090
|
+
&.k-state-selected {
|
|
26091
|
+
@include box-shadow( $card-focus-shadow );
|
|
26092
|
+
}
|
|
25787
26093
|
}
|
|
25788
26094
|
|
|
25789
26095
|
|
|
@@ -25834,7 +26140,10 @@ $card-focus-callout-box-shadow-w: $card-focus-shadow !default;
|
|
|
25834
26140
|
|
|
25835
26141
|
.k-card-wrap {
|
|
25836
26142
|
&.k-state-focused,
|
|
25837
|
-
&.k-
|
|
26143
|
+
&.k-focus,
|
|
26144
|
+
&:focus,
|
|
26145
|
+
&.k-state-selected,
|
|
26146
|
+
&.k-selected {
|
|
25838
26147
|
> .k-card {
|
|
25839
26148
|
@include box-shadow( $card-focus-shadow );
|
|
25840
26149
|
}
|
|
@@ -25856,6 +26165,7 @@ $card-focus-callout-box-shadow-w: $card-focus-shadow !default;
|
|
|
25856
26165
|
.k-card-callout.k-callout-w { @include box-shadow( $card-callout-box-shadow-w ); }
|
|
25857
26166
|
|
|
25858
26167
|
.k-card:focus .k-card-callout,
|
|
26168
|
+
.k-card.k-focus .k-card-callout,
|
|
25859
26169
|
.k-card.k-state-focus .k-card-callout {
|
|
25860
26170
|
@include fill(
|
|
25861
26171
|
$bg: $card-focus-bg,
|
|
@@ -28945,6 +29255,8 @@ $panelbar-font-family: $font-family !default;
|
|
|
28945
29255
|
$panelbar-font-size: $font-size !default;
|
|
28946
29256
|
$panelbar-line-height: $line-height !default;
|
|
28947
29257
|
$panelbar-border-width: 1px !default;
|
|
29258
|
+
$panelbar-item-border-width: 1px !default;
|
|
29259
|
+
$panelbar-item-border-style: solid !default;
|
|
28948
29260
|
|
|
28949
29261
|
$panelbar-header-padding-x: map-get( $spacing, 6 ) !default;
|
|
28950
29262
|
$panelbar-header-padding-y: map-get( $spacing, 4 ) !default;
|
|
@@ -29073,7 +29385,7 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
29073
29385
|
> .k-panelbar-header {
|
|
29074
29386
|
// TODO
|
|
29075
29387
|
border-width: 0;
|
|
29076
|
-
border-style:
|
|
29388
|
+
border-style: $panelbar-item-border-style;
|
|
29077
29389
|
border-color: inherit;
|
|
29078
29390
|
display: block;
|
|
29079
29391
|
|
|
@@ -29096,7 +29408,7 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
29096
29408
|
}
|
|
29097
29409
|
> .k-item + .k-item,
|
|
29098
29410
|
> .k-panelbar-header + .k-panelbar-header {
|
|
29099
|
-
border-top-width:
|
|
29411
|
+
border-top-width: $panelbar-item-border-width;
|
|
29100
29412
|
}
|
|
29101
29413
|
|
|
29102
29414
|
|
|
@@ -29844,6 +30156,7 @@ $tilelayout-hint-border: $component-border !default;
|
|
|
29844
30156
|
}
|
|
29845
30157
|
|
|
29846
30158
|
.k-tilelayout-item:focus,
|
|
30159
|
+
.k-tilelayout-item.k-focus,
|
|
29847
30160
|
.k-tilelayout-item.k-state-focus,
|
|
29848
30161
|
.k-tilelayout-item.k-state-focused {
|
|
29849
30162
|
@include box-shadow($tilelayout-card-focus-shadow);
|
|
@@ -31850,6 +32163,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
31850
32163
|
kendo-numeric-filter-menu,
|
|
31851
32164
|
kendo-grid-string-filter-menu,
|
|
31852
32165
|
kendo-grid-date-filter-menu,
|
|
32166
|
+
kendo-grid-numeric-filter-menu,
|
|
31853
32167
|
kendo-grid-filter-menu-input-wrapper {
|
|
31854
32168
|
display: flex;
|
|
31855
32169
|
flex-flow: column nowrap;
|
|
@@ -36371,8 +36685,10 @@ $taskboard-drag-placeholder-border: $component-border !default;
|
|
|
36371
36685
|
overflow-wrap: anywhere;
|
|
36372
36686
|
|
|
36373
36687
|
&:focus,
|
|
36688
|
+
&.k-focus,
|
|
36374
36689
|
&.k-state-focus,
|
|
36375
36690
|
&:hover,
|
|
36691
|
+
&.k-hover,
|
|
36376
36692
|
&.k-state-hover {
|
|
36377
36693
|
text-decoration: underline;
|
|
36378
36694
|
}
|
|
@@ -36503,32 +36819,38 @@ $taskboard-drag-placeholder-border: $component-border !default;
|
|
|
36503
36819
|
@include fill( $color: $taskboard-card-header-text );
|
|
36504
36820
|
|
|
36505
36821
|
&:focus,
|
|
36822
|
+
&.k-focus,
|
|
36506
36823
|
&.k-state-focus {
|
|
36507
36824
|
@include fill( $color: $taskboard-card-header-focus-text );
|
|
36508
36825
|
}
|
|
36509
36826
|
|
|
36510
36827
|
&:hover,
|
|
36828
|
+
&.k-hover,
|
|
36511
36829
|
&.k-state-hover {
|
|
36512
36830
|
@include fill( $color: $taskboard-card-header-hover-text );
|
|
36513
36831
|
}
|
|
36514
36832
|
}
|
|
36515
36833
|
|
|
36516
36834
|
&:focus,
|
|
36835
|
+
&.k-focus,
|
|
36517
36836
|
&.k-state-focus {
|
|
36518
36837
|
@include fill( $border: $taskboard-card-focus-border );
|
|
36519
36838
|
@include box-shadow( $taskboard-card-focus-shadow );
|
|
36520
36839
|
}
|
|
36521
36840
|
|
|
36522
36841
|
&:hover,
|
|
36842
|
+
&.k-hover,
|
|
36523
36843
|
&.k-state-hover {
|
|
36524
36844
|
@include fill( $border: $taskboard-card-hover-border );
|
|
36525
36845
|
}
|
|
36526
36846
|
|
|
36847
|
+
&.k-selected,
|
|
36527
36848
|
&.k-state-selected {
|
|
36528
36849
|
@include fill( $border: $taskboard-card-selected-border );
|
|
36529
36850
|
@include box-shadow( $taskboard-card-selected-shadow );
|
|
36530
36851
|
}
|
|
36531
36852
|
|
|
36853
|
+
&.k-disabled,
|
|
36532
36854
|
&.k-state-disabled {
|
|
36533
36855
|
@include disabled( $disabled-styling );
|
|
36534
36856
|
}
|
|
@@ -37855,6 +38177,7 @@ $gantt-action-on-offset-text: #000000 !default;
|
|
|
37855
38177
|
$gantt-offset-resize-handler-top: 45% !default;
|
|
37856
38178
|
|
|
37857
38179
|
$gantt-validation-tooltip-width: 200px !default;
|
|
38180
|
+
$gantt-validation-tooltip-label-width: 50px !default;
|
|
37858
38181
|
$gantt-validation-tooltip-border: #656565 !default;
|
|
37859
38182
|
$gantt-validation-tooltip-valid-border: $success !default;
|
|
37860
38183
|
$gantt-validation-tooltip-invalid-border: $error !default;
|
|
@@ -38595,13 +38918,17 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
38595
38918
|
}
|
|
38596
38919
|
.k-gantt-tooltip-validation-label {
|
|
38597
38920
|
display: inline-flex;
|
|
38598
|
-
|
|
38599
|
-
overflow: hidden;
|
|
38600
|
-
text-overflow: ellipsis;
|
|
38921
|
+
min-width: $gantt-validation-tooltip-label-width;
|
|
38601
38922
|
}
|
|
38602
38923
|
.k-gantt-tooltip-validation-value {
|
|
38603
38924
|
font-weight: $font-weight-bold;
|
|
38604
38925
|
}
|
|
38926
|
+
.k-gantt-tooltip-validation-label,
|
|
38927
|
+
.k-gantt-tooltip-validation-value {
|
|
38928
|
+
white-space: nowrap;
|
|
38929
|
+
overflow: hidden;
|
|
38930
|
+
text-overflow: ellipsis;
|
|
38931
|
+
}
|
|
38605
38932
|
}
|
|
38606
38933
|
|
|
38607
38934
|
@include exports("gantt/export") {
|
|
@@ -40279,6 +40606,9 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
40279
40606
|
.k-event-actions {
|
|
40280
40607
|
right: $padding-x-sm;
|
|
40281
40608
|
font-size: $font-size-sm;
|
|
40609
|
+
&:first-child {
|
|
40610
|
+
margin: .1ex .4ex 0 $padding-x-sm;
|
|
40611
|
+
}
|
|
40282
40612
|
}
|
|
40283
40613
|
}
|
|
40284
40614
|
|
|
@@ -44141,6 +44471,7 @@ $orgchart-line-v-height: 25px !default;
|
|
|
44141
44471
|
}
|
|
44142
44472
|
|
|
44143
44473
|
&:focus,
|
|
44474
|
+
&.k-focus,
|
|
44144
44475
|
&.k-state-focus {
|
|
44145
44476
|
@include box-shadow( $orgchart-card-focus-shadow );
|
|
44146
44477
|
}
|
|
@@ -44155,6 +44486,7 @@ $orgchart-line-v-height: 25px !default;
|
|
|
44155
44486
|
);
|
|
44156
44487
|
}
|
|
44157
44488
|
.k-orgchart-node-group-container:focus,
|
|
44489
|
+
.k-orgchart-node-group-container.k-focus,
|
|
44158
44490
|
.k-orgchart-node-group-container.k-state-focus,
|
|
44159
44491
|
.k-orgchart-node-group-container.k-state-focused {
|
|
44160
44492
|
@include box-shadow( $orgchart-node-group-focus-shadow );
|