@progress/kendo-theme-default 6.8.0-dev.2 → 7.0.0-dev.0
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 +140 -106
- package/dist/all.scss +201 -97
- package/dist/meta/sassdoc-data.json +428 -320
- package/dist/meta/sassdoc-raw-data.json +166 -116
- package/dist/meta/variables.json +96 -100
- 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-a11y.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 +4 -4
- package/scss/_variables.scss +1 -1
- package/scss/action-sheet/_variables.scss +1 -1
- package/scss/appbar/_variables.scss +2 -2
- package/scss/bottom-navigation/_layout.scss +1 -0
- package/scss/bottom-navigation/_variables.scss +2 -2
- package/scss/calendar/_theme.scss +1 -0
- package/scss/calendar/_variables.scss +1 -0
- package/scss/card/_variables.scss +2 -1
- package/scss/chat/_variables.scss +6 -6
- package/scss/coloreditor/_variables.scss +3 -2
- package/scss/colorgradient/_layout.scss +2 -0
- package/scss/colorgradient/_theme.scss +4 -2
- package/scss/colorgradient/_variables.scss +14 -8
- package/scss/common/_index.scss +1 -0
- package/scss/common/_indicators.scss +39 -0
- package/scss/core/_index.scss +3 -0
- package/scss/fab/_variables.scss +2 -2
- package/scss/index.scss +2 -0
- package/scss/list/_variables.scss +1 -1
- package/scss/listview/_variables.scss +1 -1
- package/scss/orgchart/_variables.scss +2 -2
- package/scss/pdf-viewer/_variables.scss +1 -1
- package/scss/pivotgrid/_variables.scss +5 -4
- package/scss/popup/_variables.scss +1 -1
- package/scss/rating/_theme.scss +2 -2
- package/scss/rating/_variables.scss +2 -2
- package/scss/scheduler/_layout.scss +0 -14
- package/scss/scheduler/_theme.scss +0 -17
- package/scss/scheduler/_variables.scss +1 -3
- package/scss/tabstrip/_variables.scss +1 -1
- package/scss/timeline/_variables.scss +1 -1
- package/scss/tooltip/_theme.scss +1 -1
- package/scss/tooltip/_variables.scss +2 -0
- package/scss/window/_variables.scss +2 -2
package/dist/all.scss
CHANGED
|
@@ -1242,7 +1242,7 @@ $_kendo-escape-class-name: (
|
|
|
1242
1242
|
/// @debug k-map-deep-merge( ( "foo": ("bar": "baz", "baz": "qux" ) ), ( "foo": ("bar": "foo") ) ); // => ( "foo": ("bar": "foo", "baz": "qux" ))
|
|
1243
1243
|
@function k-map-deep-merge($maps...) {
|
|
1244
1244
|
$merged: ();
|
|
1245
|
-
|
|
1245
|
+
|
|
1246
1246
|
@each $map in $maps {
|
|
1247
1247
|
@each $key, $val in $map {
|
|
1248
1248
|
@if (k-meta-type-of($val) == 'map') {
|
|
@@ -1260,7 +1260,7 @@ $_kendo-escape-class-name: (
|
|
|
1260
1260
|
}
|
|
1261
1261
|
$merged: k-map-merge($merged, $map);
|
|
1262
1262
|
}
|
|
1263
|
-
|
|
1263
|
+
|
|
1264
1264
|
@return $merged;
|
|
1265
1265
|
}
|
|
1266
1266
|
|
|
@@ -2181,6 +2181,7 @@ $kendo-invalid-shadow: null !default;
|
|
|
2181
2181
|
// Loading
|
|
2182
2182
|
$kendo-loading-opacity: .3 !default;
|
|
2183
2183
|
$kendo-zindex-loading: 100 !default;
|
|
2184
|
+
|
|
2184
2185
|
// #endregion
|
|
2185
2186
|
|
|
2186
2187
|
// #region @import "@progress/kendo-theme-core/scss/index.import.scss"; -> node_modules/@progress/kendo-theme-core/scss/index.import.scss
|
|
@@ -3409,21 +3410,6 @@ $kendo-focus-outline: k-get-theme-color-var( neutral-130 ) !default;
|
|
|
3409
3410
|
|
|
3410
3411
|
$kendo-subtle-text: k-get-theme-color-var( neutral-130 ) !default;
|
|
3411
3412
|
|
|
3412
|
-
// Shadows
|
|
3413
|
-
|
|
3414
|
-
/// Shadow for cards and grid item thumbnails.
|
|
3415
|
-
/// Equivalent to fluent depth 4.
|
|
3416
|
-
$kendo-box-shadow-depth-1: 0 1.6px 3.6px rgba( $kendo-color-black, 0.132 ), 0 0.3px 0.9px rgba( $kendo-color-black, 0.108 ) !default;
|
|
3417
|
-
/// Shadow for command bars and dropdowns.
|
|
3418
|
-
/// Equivalent to fluent depth 8.
|
|
3419
|
-
$kendo-box-shadow-depth-2: 0 3.2px 7.2px rgba( $kendo-color-black, 0.132 ), 0 0.6px 1.8px rgba( $kendo-color-black, 0.108 ) !default;
|
|
3420
|
-
/// Shadow for teaching callouts and hover cards / tooltips.
|
|
3421
|
-
/// Equivalent to fluent depth 16.
|
|
3422
|
-
$kendo-box-shadow-depth-3: 0 6.4px 14.4px rgba( $kendo-color-black, 0.132 ), 0 1.2px 3.6px rgba( $kendo-color-black, 0.108 ) !default;
|
|
3423
|
-
/// Shadow for panels and pop up dialogs.
|
|
3424
|
-
/// Equivalent to fluent depth 64.
|
|
3425
|
-
$kendo-box-shadow-depth-4: 0 25.6px 57.6px rgba( $kendo-color-black, 0.22 ), 0 4.8px 14.4px rgba( $kendo-color-black, 0.18 ) !default;
|
|
3426
|
-
|
|
3427
3413
|
// Link
|
|
3428
3414
|
$kendo-link-text: k-get-theme-color-var( primary-100 ) !default;
|
|
3429
3415
|
$kendo-link-hover-text: k-get-theme-color-var( primary-120 ) !default;
|
|
@@ -3486,11 +3472,6 @@ $kendo-theme-colors: (
|
|
|
3486
3472
|
--kendo-component-text: #{$kendo-component-text};
|
|
3487
3473
|
--kendo-component-border: #{$kendo-component-border};
|
|
3488
3474
|
|
|
3489
|
-
--kendo-box-shadow-depth-1: #{$kendo-box-shadow-depth-1};
|
|
3490
|
-
--kendo-box-shadow-depth-2: #{$kendo-box-shadow-depth-2};
|
|
3491
|
-
--kendo-box-shadow-depth-3: #{$kendo-box-shadow-depth-3};
|
|
3492
|
-
--kendo-box-shadow-depth-4: #{$kendo-box-shadow-depth-4};
|
|
3493
|
-
|
|
3494
3475
|
--kendo-link-text: #{$kendo-link-text};
|
|
3495
3476
|
--kendo-link-hover-text: #{$kendo-link-hover-text};
|
|
3496
3477
|
|
|
@@ -4947,6 +4928,75 @@ $_imported: () !default;
|
|
|
4947
4928
|
@include kendo-core--styles--selection();
|
|
4948
4929
|
}
|
|
4949
4930
|
|
|
4931
|
+
// #endregion
|
|
4932
|
+
// #region @import "./elevation/index.import.scss"; -> node_modules/@progress/kendo-theme-core/scss/elevation/index.import.scss
|
|
4933
|
+
// #region @import "../functions/index.import.scss"; -> node_modules/@progress/kendo-theme-core/scss/functions/index.import.scss
|
|
4934
|
+
// File already imported_once. Skipping output.
|
|
4935
|
+
// #endregion
|
|
4936
|
+
|
|
4937
|
+
$_default-elevation: (
|
|
4938
|
+
1: (
|
|
4939
|
+
0 2px 3px rgba(0, 0, 0, .04),
|
|
4940
|
+
0 4px 16px rgba(0, 0, 0, .12)
|
|
4941
|
+
),
|
|
4942
|
+
2: (
|
|
4943
|
+
0 4px 6px rgba(0, 0, 0, .06),
|
|
4944
|
+
0 4px 16px rgba(0, 0, 0, .12)
|
|
4945
|
+
),
|
|
4946
|
+
3: (
|
|
4947
|
+
0 6px 8px rgba(0, 0, 0, .08),
|
|
4948
|
+
0 4px 16px rgba(0, 0, 0, .12)
|
|
4949
|
+
),
|
|
4950
|
+
4: (
|
|
4951
|
+
0 8px 10px rgba(0, 0, 0, .12),
|
|
4952
|
+
0 4px 16px rgba(0, 0, 0, .12)
|
|
4953
|
+
),
|
|
4954
|
+
5: (
|
|
4955
|
+
0 10px 12px rgba(0, 0, 0, .16),
|
|
4956
|
+
0 4px 16px rgba(0, 0, 0, .12)
|
|
4957
|
+
),
|
|
4958
|
+
6: (
|
|
4959
|
+
0 12px 14px rgba(0, 0, 0, .2),
|
|
4960
|
+
0 4px 16px rgba(0, 0, 0, .12)
|
|
4961
|
+
),
|
|
4962
|
+
7: (
|
|
4963
|
+
0 14px 16px rgba(0, 0, 0, .24),
|
|
4964
|
+
0 4px 16px rgba(0, 0, 0, .12)
|
|
4965
|
+
),
|
|
4966
|
+
8: (
|
|
4967
|
+
0 16px 18px rgba(0, 0, 0, .28),
|
|
4968
|
+
0 4px 16px rgba(0, 0, 0, .12)
|
|
4969
|
+
),
|
|
4970
|
+
9: (
|
|
4971
|
+
0 32px 34px rgba(0, 0, 0, .32),
|
|
4972
|
+
0 4px 16px rgba(0, 0, 0, .12)
|
|
4973
|
+
)
|
|
4974
|
+
) !default;
|
|
4975
|
+
|
|
4976
|
+
$kendo-elevation: $_default-elevation !default;
|
|
4977
|
+
$kendo-elevation: k-map-merge($_default-elevation, $kendo-elevation);
|
|
4978
|
+
|
|
4979
|
+
@function k-shadow-filter($shadow) {
|
|
4980
|
+
$result: '';
|
|
4981
|
+
@each $value in $shadow {
|
|
4982
|
+
$result: $result + "drop-shadow(" + $value + ") ";
|
|
4983
|
+
}
|
|
4984
|
+
@return #{$result};
|
|
4985
|
+
}
|
|
4986
|
+
|
|
4987
|
+
@function k-elevation($level) {
|
|
4988
|
+
@return var(--kendo-elevation-#{$level}, k-map-get($kendo-elevation, $level));
|
|
4989
|
+
}
|
|
4990
|
+
|
|
4991
|
+
|
|
4992
|
+
@mixin kendo-elevation--styles() {
|
|
4993
|
+
:root {
|
|
4994
|
+
@each $level, $shadow in $kendo-elevation {
|
|
4995
|
+
--kendo-elevation-#{$level}: #{$shadow};
|
|
4996
|
+
}
|
|
4997
|
+
}
|
|
4998
|
+
}
|
|
4999
|
+
|
|
4950
5000
|
// #endregion
|
|
4951
5001
|
// #region @import "./_variables.scss"; -> node_modules/@progress/kendo-theme-core/scss/_variables.scss
|
|
4952
5002
|
// #region @import "./functions/index.import.scss"; -> node_modules/@progress/kendo-theme-core/scss/functions/index.import.scss
|
|
@@ -5038,6 +5088,9 @@ $kendo-zindex-loading: 100 !default;
|
|
|
5038
5088
|
// Expose
|
|
5039
5089
|
@include exports("kendo-core-styles") {
|
|
5040
5090
|
@include kendo-core--styles();
|
|
5091
|
+
|
|
5092
|
+
// Elevation System
|
|
5093
|
+
@include kendo-elevation--styles();
|
|
5041
5094
|
}
|
|
5042
5095
|
|
|
5043
5096
|
// #endregion
|
|
@@ -5957,6 +6010,48 @@ $kendo-zindex-loading: 100 !default;
|
|
|
5957
6010
|
}
|
|
5958
6011
|
}
|
|
5959
6012
|
|
|
6013
|
+
// #endregion
|
|
6014
|
+
// #region @import "./_indicators.scss"; -> scss/common/_indicators.scss
|
|
6015
|
+
@include exports( "common/indicators/current-time" ) {
|
|
6016
|
+
|
|
6017
|
+
$kendo-current-time-width: 1px !default;
|
|
6018
|
+
$kendo-current-time-color: #ff0000 !default;
|
|
6019
|
+
|
|
6020
|
+
// Layout
|
|
6021
|
+
.k-current-time {
|
|
6022
|
+
width: $kendo-current-time-width;
|
|
6023
|
+
position: absolute;
|
|
6024
|
+
|
|
6025
|
+
&.k-current-time-arrow-left,
|
|
6026
|
+
&.k-current-time-arrow-right,
|
|
6027
|
+
&.k-current-time-arrow-down {
|
|
6028
|
+
width: 0;
|
|
6029
|
+
height: 0;
|
|
6030
|
+
background: transparent;
|
|
6031
|
+
border: 4px solid transparent;
|
|
6032
|
+
}
|
|
6033
|
+
}
|
|
6034
|
+
|
|
6035
|
+
|
|
6036
|
+
// Theme
|
|
6037
|
+
.k-current-time {
|
|
6038
|
+
background: $kendo-current-time-color;
|
|
6039
|
+
|
|
6040
|
+
&.k-current-time-arrow-left {
|
|
6041
|
+
border-right-color: $kendo-current-time-color;
|
|
6042
|
+
}
|
|
6043
|
+
|
|
6044
|
+
&.k-current-time-arrow-right {
|
|
6045
|
+
border-left-color: $kendo-current-time-color;
|
|
6046
|
+
}
|
|
6047
|
+
|
|
6048
|
+
&.k-current-time-arrow-down {
|
|
6049
|
+
border-top-color: $kendo-current-time-color;
|
|
6050
|
+
}
|
|
6051
|
+
}
|
|
6052
|
+
|
|
6053
|
+
}
|
|
6054
|
+
|
|
5960
6055
|
// #endregion
|
|
5961
6056
|
// #region @import "./_resizing.scss"; -> scss/common/_resizing.scss
|
|
5962
6057
|
@include exports( "common/resizing" ) {
|
|
@@ -13984,6 +14079,21 @@ $kendo-utils: (
|
|
|
13984
14079
|
|
|
13985
14080
|
// #endregion
|
|
13986
14081
|
|
|
14082
|
+
// #region @import "./elevation/index.import.scss"; -> node_modules/@progress/kendo-theme-utils/scss/elevation/index.import.scss
|
|
14083
|
+
// #region @import "@progress/kendo-theme-core/scss/elevation/index.import.scss"; -> node_modules/@progress/kendo-theme-core/scss/elevation/index.import.scss
|
|
14084
|
+
// File already imported_once. Skipping output.
|
|
14085
|
+
// #endregion
|
|
14086
|
+
|
|
14087
|
+
@mixin kendo-utils--elevation {
|
|
14088
|
+
@each $level, $elevation in $kendo-elevation {
|
|
14089
|
+
.k-elevation-#{$level} {
|
|
14090
|
+
box-shadow: $elevation;
|
|
14091
|
+
}
|
|
14092
|
+
}
|
|
14093
|
+
}
|
|
14094
|
+
|
|
14095
|
+
// #endregion
|
|
14096
|
+
|
|
13987
14097
|
|
|
13988
14098
|
// Mixin for all styles
|
|
13989
14099
|
@mixin kendo-utils() {
|
|
@@ -14001,6 +14111,8 @@ $kendo-utils: (
|
|
|
14001
14111
|
@include kendo-utils--transform();
|
|
14002
14112
|
@include kendo-utils--interactivity();
|
|
14003
14113
|
@include kendo-utils--svg();
|
|
14114
|
+
|
|
14115
|
+
@include kendo-utils--elevation();
|
|
14004
14116
|
}
|
|
14005
14117
|
|
|
14006
14118
|
// #endregion
|
|
@@ -16363,7 +16475,7 @@ $kendo-list-header-text: null !default;
|
|
|
16363
16475
|
$kendo-list-header-border: inherit !default;
|
|
16364
16476
|
/// The box shadow of the List header.
|
|
16365
16477
|
/// @group list
|
|
16366
|
-
$kendo-list-header-shadow:
|
|
16478
|
+
$kendo-list-header-shadow: k-elevation(2) !default;
|
|
16367
16479
|
|
|
16368
16480
|
|
|
16369
16481
|
/// The background color of the List items.
|
|
@@ -17806,7 +17918,7 @@ $kendo-popup-text: $kendo-component-text !default;
|
|
|
17806
17918
|
$kendo-popup-border: $kendo-component-border !default;
|
|
17807
17919
|
/// Box shadow of the popup.
|
|
17808
17920
|
/// @group popup
|
|
17809
|
-
$kendo-popup-shadow:
|
|
17921
|
+
$kendo-popup-shadow: k-elevation(4) !default;
|
|
17810
17922
|
|
|
17811
17923
|
// #endregion
|
|
17812
17924
|
// #region @import "./_layout.scss"; -> scss/popup/_layout.scss
|
|
@@ -23805,6 +23917,8 @@ $kendo-tooltip-bg: rgba( k-contrast-legacy( $kendo-body-bg ), .75 ) !default;
|
|
|
23805
23917
|
$kendo-tooltip-text: k-contrast-legacy( $kendo-tooltip-bg ) !default;
|
|
23806
23918
|
$kendo-tooltip-border: $kendo-tooltip-bg !default;
|
|
23807
23919
|
|
|
23920
|
+
$kendo-tooltip-shadow: k-elevation(2) !default;
|
|
23921
|
+
|
|
23808
23922
|
$kendo-tooltip-primary-bg: $kendo-color-primary !default;
|
|
23809
23923
|
$kendo-tooltip-primary-text: k-contrast-legacy( $kendo-tooltip-primary-bg ) !default;
|
|
23810
23924
|
$kendo-tooltip-primary-border: $kendo-tooltip-primary-bg !default;
|
|
@@ -23906,10 +24020,10 @@ $kendo-window-text: $kendo-component-text !default;
|
|
|
23906
24020
|
$kendo-window-border: $kendo-component-border !default;
|
|
23907
24021
|
/// The box shadow of the Window.
|
|
23908
24022
|
/// @group window
|
|
23909
|
-
$kendo-window-shadow:
|
|
24023
|
+
$kendo-window-shadow: k-elevation(8) !default;
|
|
23910
24024
|
/// The box shadow of the focused Window.
|
|
23911
24025
|
/// @group window
|
|
23912
|
-
$kendo-window-focus-shadow:
|
|
24026
|
+
$kendo-window-focus-shadow: k-elevation(9) !default;
|
|
23913
24027
|
|
|
23914
24028
|
/// The background color of the Window titlebar.
|
|
23915
24029
|
/// @group window
|
|
@@ -24761,7 +24875,7 @@ $_kendo-module-meta: (
|
|
|
24761
24875
|
|
|
24762
24876
|
.k-tooltip-wrapper {
|
|
24763
24877
|
.k-tooltip {
|
|
24764
|
-
box-shadow: $kendo-
|
|
24878
|
+
box-shadow: $kendo-tooltip-shadow;
|
|
24765
24879
|
}
|
|
24766
24880
|
}
|
|
24767
24881
|
|
|
@@ -28553,6 +28667,7 @@ $kendo-calendar-header-bg: $kendo-component-header-bg !default;
|
|
|
28553
28667
|
$kendo-calendar-header-text: $kendo-component-header-text !default;
|
|
28554
28668
|
$kendo-calendar-header-border: $kendo-component-header-border !default;
|
|
28555
28669
|
$kendo-calendar-header-gradient: $kendo-component-header-gradient !default;
|
|
28670
|
+
// TODO: variable is used, but the selector using it is not! Potentially remove;
|
|
28556
28671
|
$kendo-calendar-header-shadow: 0 1px 3px 1px rgba(black, .1) !default;
|
|
28557
28672
|
|
|
28558
28673
|
$kendo-calendar-nav-gap: null !default;
|
|
@@ -29210,6 +29325,7 @@ $kendo-calendar-sizes: (
|
|
|
29210
29325
|
);
|
|
29211
29326
|
|
|
29212
29327
|
|
|
29328
|
+
// TODO: do we even use this?
|
|
29213
29329
|
// Header / footer
|
|
29214
29330
|
.k-header {
|
|
29215
29331
|
@include fill(
|
|
@@ -30560,7 +30676,7 @@ $kendo-color-gradient-border: $kendo-component-border !default;
|
|
|
30560
30676
|
$kendo-color-gradient-focus-border: null !default;
|
|
30561
30677
|
/// The box shadow of the focused ColorGradient.
|
|
30562
30678
|
/// @group cologradient
|
|
30563
|
-
$kendo-color-gradient-focus-shadow:
|
|
30679
|
+
$kendo-color-gradient-focus-shadow: k-elevation(3) !default;
|
|
30564
30680
|
|
|
30565
30681
|
/// The border radius of the ColorGradient canvas.
|
|
30566
30682
|
/// @group cologradient
|
|
@@ -30598,6 +30714,9 @@ $kendo-color-gradient-draghandle-height: 14px !default;
|
|
|
30598
30714
|
/// The width of the border around the ColorGradient canvas drag handle.
|
|
30599
30715
|
/// @group cologradient
|
|
30600
30716
|
$kendo-color-gradient-draghandle-border-width: 1px !default;
|
|
30717
|
+
/// The width of the outline around the ColorGradient canvas drag handle.
|
|
30718
|
+
/// @group cologradient
|
|
30719
|
+
$kendo-color-gradient-draghandle-outline-width: 1px !default;
|
|
30601
30720
|
/// The border radius of the ColorGradient canvas drag handle.
|
|
30602
30721
|
/// @group cologradient
|
|
30603
30722
|
$kendo-color-gradient-draghandle-border-radius: 50% !default;
|
|
@@ -30610,15 +30729,18 @@ $kendo-color-gradient-draghandle-bg: transparent !default;
|
|
|
30610
30729
|
/// The color of the border around the ColorGradient canvas drag handle.
|
|
30611
30730
|
/// @group cologradient
|
|
30612
30731
|
$kendo-color-gradient-draghandle-border: rgba( $kendo-color-white, .8) !default;
|
|
30613
|
-
/// The
|
|
30732
|
+
/// The color of the outline around the ColorGradient canvas drag handle.
|
|
30614
30733
|
/// @group cologradient
|
|
30615
|
-
$kendo-color-gradient-draghandle-shadow:
|
|
30616
|
-
/// The
|
|
30734
|
+
$kendo-color-gradient-draghandle-shadow: rgba( $kendo-color-black, .5 ) !default;
|
|
30735
|
+
/// The focus color of the outline around the ColorGradient canvas drag handle.
|
|
30617
30736
|
/// @group cologradient
|
|
30618
|
-
$kendo-color-gradient-draghandle-focus-shadow:
|
|
30619
|
-
/// The
|
|
30737
|
+
$kendo-color-gradient-draghandle-focus-shadow: $kendo-color-black !default;
|
|
30738
|
+
/// The hover color of the outline around the ColorGradient canvas drag handle.
|
|
30620
30739
|
/// @group cologradient
|
|
30621
|
-
$kendo-color-gradient-draghandle-hover-shadow: $kendo-color-
|
|
30740
|
+
$kendo-color-gradient-draghandle-hover-shadow: $kendo-color-black !default;
|
|
30741
|
+
/// The box shadow of the ColorGradient canvas drag handle.
|
|
30742
|
+
/// @group cologradient
|
|
30743
|
+
$kendo-color-gradient-draghandle-shadow: k-elevation(2) !default;
|
|
30622
30744
|
|
|
30623
30745
|
/// The vertical margin of the ColorGradient canvas drag handle.
|
|
30624
30746
|
/// @group cologradient
|
|
@@ -30646,6 +30768,7 @@ $kendo-color-gradient-contrast-ratio-font-weight: $kendo-font-weight-bold !defau
|
|
|
30646
30768
|
/// The spacing between the items in the ColorGradient contrast tool.
|
|
30647
30769
|
/// @group cologradient
|
|
30648
30770
|
$kendo-color-gradient-contrast-spacer: k-math-div( $kendo-color-gradient-spacer, 1.5 ) !default;
|
|
30771
|
+
|
|
30649
30772
|
// #endregion
|
|
30650
30773
|
// #region @import "./_layout.scss"; -> scss/colorgradient/_layout.scss
|
|
30651
30774
|
@mixin kendo-color-gradient--layout-base() {
|
|
@@ -30717,6 +30840,8 @@ $kendo-color-gradient-contrast-spacer: k-math-div( $kendo-color-gradient-spacer,
|
|
|
30717
30840
|
height: $kendo-color-gradient-draghandle-height;
|
|
30718
30841
|
border-width: $kendo-color-gradient-draghandle-border-width;
|
|
30719
30842
|
border-style: solid;
|
|
30843
|
+
outline-width: $kendo-color-gradient-draghandle-outline-width;
|
|
30844
|
+
outline-style: solid;
|
|
30720
30845
|
box-sizing: border-box;
|
|
30721
30846
|
}
|
|
30722
30847
|
|
|
@@ -30874,12 +30999,14 @@ $kendo-color-gradient-contrast-spacer: k-math-div( $kendo-color-gradient-spacer,
|
|
|
30874
30999
|
$kendo-color-gradient-draghandle-bg,
|
|
30875
31000
|
$kendo-color-gradient-draghandle-border
|
|
30876
31001
|
);
|
|
31002
|
+
outline-color: $kendo-color-gradient-draghandle-focus-shadow;
|
|
30877
31003
|
@include box-shadow( $kendo-color-gradient-draghandle-shadow );
|
|
30878
31004
|
|
|
30879
31005
|
&:focus,
|
|
30880
31006
|
&.k-focus {
|
|
30881
31007
|
@include fill( $bg: transparent, $border: $kendo-color-white );
|
|
30882
|
-
|
|
31008
|
+
outline-color: $kendo-color-gradient-draghandle-focus-shadow;
|
|
31009
|
+
@include focus-indicator( $kendo-color-gradient-draghandle-shadow );
|
|
30883
31010
|
}
|
|
30884
31011
|
|
|
30885
31012
|
&:hover,
|
|
@@ -30887,7 +31014,7 @@ $kendo-color-gradient-contrast-spacer: k-math-div( $kendo-color-gradient-spacer,
|
|
|
30887
31014
|
&.k-active,
|
|
30888
31015
|
&:active {
|
|
30889
31016
|
@include fill( $bg: transparent, $border: $kendo-color-white );
|
|
30890
|
-
|
|
31017
|
+
outline-color: $kendo-color-gradient-draghandle-hover-shadow;
|
|
30891
31018
|
}
|
|
30892
31019
|
}
|
|
30893
31020
|
|
|
@@ -31033,9 +31160,10 @@ $kendo-color-editor-border: $kendo-component-border !default;
|
|
|
31033
31160
|
/// The border color of the focused ColorEditor.
|
|
31034
31161
|
/// @group coloreditor
|
|
31035
31162
|
$kendo-color-editor-focus-border: null !default;
|
|
31163
|
+
// TODO: does this ever get focused? Isn't it always in a popup?
|
|
31036
31164
|
/// The box shadow of the focused ColorEditor.
|
|
31037
31165
|
/// @group coloreditor
|
|
31038
|
-
$kendo-color-editor-focus-shadow: 1px 1px 7px 1px rgba(0, 0, 0, .3)
|
|
31166
|
+
$kendo-color-editor-focus-shadow: null !default; // 1px 1px 7px 1px rgba(0, 0, 0, .3)
|
|
31039
31167
|
|
|
31040
31168
|
/// The vertical padding of the ColorEditor header.
|
|
31041
31169
|
/// @group coloreditor
|
|
@@ -31076,6 +31204,7 @@ $kendo-color-editor-color-gradient-focus-outline: 2px !default;
|
|
|
31076
31204
|
/// The outline offset of the focused ColorGradient.
|
|
31077
31205
|
/// @group coloreditor
|
|
31078
31206
|
$kendo-color-editor-color-gradient-focus-outline-offset: 4px !default;
|
|
31207
|
+
|
|
31079
31208
|
// #endregion
|
|
31080
31209
|
// #region @import "./_layout.scss"; -> scss/coloreditor/_layout.scss
|
|
31081
31210
|
@mixin kendo-color-editor--layout-base() {
|
|
@@ -33211,8 +33340,8 @@ $kendo-rating-icon-selected-text: $kendo-selected-bg !default;
|
|
|
33211
33340
|
$kendo-rating-icon-hover-text: $kendo-selected-bg !default;
|
|
33212
33341
|
$kendo-rating-icon-focus-text: $kendo-selected-bg !default;
|
|
33213
33342
|
|
|
33214
|
-
$kendo-rating-icon-focus-shadow:
|
|
33215
|
-
$kendo-rating-icon-focus-selected-shadow:
|
|
33343
|
+
$kendo-rating-icon-focus-shadow: k-elevation(1) !default;
|
|
33344
|
+
$kendo-rating-icon-focus-selected-shadow: k-elevation(1) !default;
|
|
33216
33345
|
|
|
33217
33346
|
// #endregion
|
|
33218
33347
|
// #region @import "./_layout.scss"; -> scss/rating/_layout.scss
|
|
@@ -33327,14 +33456,14 @@ $kendo-rating-icon-focus-selected-shadow: 0 2px 4px rgba( $kendo-color-black, .1
|
|
|
33327
33456
|
text-shadow: $kendo-rating-icon-focus-shadow;
|
|
33328
33457
|
}
|
|
33329
33458
|
> .k-svg-icon {
|
|
33330
|
-
filter:
|
|
33459
|
+
filter: k-shadow-filter($kendo-rating-icon-focus-selected-shadow);
|
|
33331
33460
|
}
|
|
33332
33461
|
|
|
33333
33462
|
&.k-selected > .k-icon {
|
|
33334
33463
|
text-shadow: $kendo-rating-icon-focus-selected-shadow;
|
|
33335
33464
|
}
|
|
33336
33465
|
&.k-selected > .k-svg-icon {
|
|
33337
|
-
filter:
|
|
33466
|
+
filter: k-shadow-filter($kendo-rating-icon-focus-selected-shadow);
|
|
33338
33467
|
}
|
|
33339
33468
|
}
|
|
33340
33469
|
}
|
|
@@ -34825,10 +34954,11 @@ $kendo-appbar-dark-text: k-contrast-legacy( $kendo-color-dark ) !default;
|
|
|
34825
34954
|
|
|
34826
34955
|
/// The box shadow of the AppBar.
|
|
34827
34956
|
/// @group appbar
|
|
34828
|
-
$kendo-appbar-box-shadow:
|
|
34957
|
+
$kendo-appbar-box-shadow: k-elevation(4) !default;
|
|
34829
34958
|
/// The box shadow of the AppBar with bottom position.
|
|
34830
34959
|
/// @group appbar
|
|
34831
|
-
$kendo-appbar-bottom-box-shadow:
|
|
34960
|
+
$kendo-appbar-bottom-box-shadow: $kendo-appbar-box-shadow !default;
|
|
34961
|
+
|
|
34832
34962
|
// #endregion
|
|
34833
34963
|
// #region @import "./_layout.scss"; -> scss/appbar/_layout.scss
|
|
34834
34964
|
@mixin kendo-appbar--layout-base() {
|
|
@@ -35163,10 +35293,10 @@ $kendo-fab-sizes: (
|
|
|
35163
35293
|
|
|
35164
35294
|
/// The base shadow of the FAB.
|
|
35165
35295
|
/// @group floating-action-button
|
|
35166
|
-
$kendo-fab-shadow:
|
|
35296
|
+
$kendo-fab-shadow: k-elevation(5) !default;
|
|
35167
35297
|
/// The shadow of the disabled FAB.
|
|
35168
35298
|
/// @group floating-action-button
|
|
35169
|
-
$kendo-fab-disabled-shadow:
|
|
35299
|
+
$kendo-fab-disabled-shadow: k-elevation(5) !default;
|
|
35170
35300
|
/// The shadow of the active FAB.
|
|
35171
35301
|
/// @group floating-action-button
|
|
35172
35302
|
$kendo-fab-active-shadow: null !default;
|
|
@@ -35585,7 +35715,7 @@ $kendo-actionsheet-line-height: $kendo-line-height-md !default;
|
|
|
35585
35715
|
$kendo-actionsheet-bg: $kendo-component-bg !default;
|
|
35586
35716
|
$kendo-actionsheet-text: $kendo-component-text !default;
|
|
35587
35717
|
$kendo-actionsheet-border: $kendo-component-border !default;
|
|
35588
|
-
$kendo-actionsheet-shadow:
|
|
35718
|
+
$kendo-actionsheet-shadow: k-elevation(7) !default;
|
|
35589
35719
|
|
|
35590
35720
|
|
|
35591
35721
|
// Actionsheet header
|
|
@@ -37371,7 +37501,8 @@ $kendo-card-shadow: null !default;
|
|
|
37371
37501
|
$kendo-card-focus-bg: null !default;
|
|
37372
37502
|
$kendo-card-focus-text: null !default;
|
|
37373
37503
|
$kendo-card-focus-border: rgba( black, .15 ) !default;
|
|
37374
|
-
|
|
37504
|
+
// TODO: double-check: the default theme is not supposed to elevate the card on focus
|
|
37505
|
+
$kendo-card-focus-shadow: null !default;
|
|
37375
37506
|
|
|
37376
37507
|
$kendo-card-header-padding-x: $kendo-card-padding-x !default;
|
|
37377
37508
|
$kendo-card-header-padding-y: $kendo-card-padding-y !default;
|
|
@@ -38404,7 +38535,7 @@ $kendo-bottom-nav-item-gap: 0 k-map-get( $kendo-spacing, 1 ) !default;
|
|
|
38404
38535
|
|
|
38405
38536
|
/// The box shadow of the BottomNavigation.
|
|
38406
38537
|
/// @group bottom-navigation
|
|
38407
|
-
$kendo-bottom-nav-shadow:
|
|
38538
|
+
$kendo-bottom-nav-shadow: k-elevation(4) !default;
|
|
38408
38539
|
|
|
38409
38540
|
/// The text color of the flat BottomNavigation.
|
|
38410
38541
|
/// @group bottom-navigation
|
|
@@ -38415,6 +38546,7 @@ $kendo-bottom-nav-flat-bg: $kendo-component-bg !default;
|
|
|
38415
38546
|
/// The border color of the flat BottomNavigation.
|
|
38416
38547
|
/// @group bottom-navigation
|
|
38417
38548
|
$kendo-bottom-nav-flat-border: $kendo-component-border !default;
|
|
38549
|
+
|
|
38418
38550
|
// #endregion
|
|
38419
38551
|
// #region @import "./_layout.scss"; -> scss/bottom-navigation/_layout.scss
|
|
38420
38552
|
@mixin kendo-bottom-navigation--layout-base() {
|
|
@@ -38452,6 +38584,7 @@ $kendo-bottom-nav-flat-border: $kendo-component-border !default;
|
|
|
38452
38584
|
border-width: $kendo-bottom-nav-border-width;
|
|
38453
38585
|
}
|
|
38454
38586
|
|
|
38587
|
+
// TODO: do we even use this?
|
|
38455
38588
|
.k-bottom-nav-shadow {
|
|
38456
38589
|
box-shadow: $kendo-bottom-nav-shadow;
|
|
38457
38590
|
}
|
|
@@ -40351,7 +40484,7 @@ $kendo-tabstrip-item-selected-gradient: null !default;
|
|
|
40351
40484
|
|
|
40352
40485
|
$kendo-tabstrip-item-focus-shadow: $kendo-list-item-focus-shadow !default;
|
|
40353
40486
|
|
|
40354
|
-
$kendo-tabstrip-item-dragging-shadow:
|
|
40487
|
+
$kendo-tabstrip-item-dragging-shadow: k-elevation(3) !default;
|
|
40355
40488
|
|
|
40356
40489
|
$kendo-tabstrip-item-disabled-bg: null !default;
|
|
40357
40490
|
$kendo-tabstrip-item-disabled-text: null !default;
|
|
@@ -46016,6 +46149,7 @@ $kendo-listview-item-focus-border: null !default;
|
|
|
46016
46149
|
/// The box shadow of the focused ListView items.
|
|
46017
46150
|
/// @group listview
|
|
46018
46151
|
$kendo-listview-item-focus-shadow: inset 0 0 0 2px rgba(0, 0, 0, .13) !default;
|
|
46152
|
+
|
|
46019
46153
|
// #endregion
|
|
46020
46154
|
// #region @import "./_layout.scss"; -> scss/listview/_layout.scss
|
|
46021
46155
|
@mixin kendo-listview--layout-base() {
|
|
@@ -47694,10 +47828,11 @@ $kendo-pivotgrid-configurator-header-bg: null !default;
|
|
|
47694
47828
|
$kendo-pivotgrid-configurator-header-text: $kendo-component-header-text !default;
|
|
47695
47829
|
$kendo-pivotgrid-configurator-header-border: null !default;
|
|
47696
47830
|
|
|
47697
|
-
$kendo-pivotgrid-configurator-
|
|
47698
|
-
$kendo-pivotgrid-configurator-
|
|
47699
|
-
$kendo-pivotgrid-configurator-
|
|
47700
|
-
$kendo-pivotgrid-configurator-
|
|
47831
|
+
$kendo-pivotgrid-configurator-shadow: k-elevation(3) !default;
|
|
47832
|
+
$kendo-pivotgrid-configurator-end-shadow: $kendo-pivotgrid-configurator-shadow !default; // -3px 0px 6px rgba(0, 0, 0, .16)
|
|
47833
|
+
$kendo-pivotgrid-configurator-start-shadow: $kendo-pivotgrid-configurator-shadow !default; // 3px 0px 6px rgba(0, 0, 0, .16)
|
|
47834
|
+
$kendo-pivotgrid-configurator-top-shadow: $kendo-pivotgrid-configurator-shadow !default; // 0px -3px 6px rgba(0, 0, 0, .16)
|
|
47835
|
+
$kendo-pivotgrid-configurator-bottom-shadow: $kendo-pivotgrid-configurator-shadow !default; // 0px 3px 6px rgba(0, 0, 0, .16)
|
|
47701
47836
|
|
|
47702
47837
|
$kendo-pivotgrid-configurator-button-padding-x: k-map-get( $kendo-spacing, 1 ) !default;
|
|
47703
47838
|
$kendo-pivotgrid-configurator-button-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
@@ -52834,8 +52969,6 @@ $kendo-scheduler-cell-height: $kendo-line-height-em !default;
|
|
|
52834
52969
|
$kendo-scheduler-datecolumn-width: 12em !default;
|
|
52835
52970
|
$kendo-scheduler-timecolumn-width: 11em !default;
|
|
52836
52971
|
|
|
52837
|
-
$kendo-scheduler-current-time-color: #ff0000 !default;
|
|
52838
|
-
|
|
52839
52972
|
$kendo-scheduler-nonwork-bg: k-try-shade( $kendo-scheduler-bg, .5 ) !default;
|
|
52840
52973
|
$kendo-scheduler-nonwork-text: null !default;
|
|
52841
52974
|
|
|
@@ -52863,7 +52996,7 @@ $kendo-scheduler-tooltip-border-width: 0 !default;
|
|
|
52863
52996
|
$kendo-scheduler-tooltip-bg: $kendo-color-primary-contrast !default;
|
|
52864
52997
|
$kendo-scheduler-tooltip-text: $kendo-base-text !default;
|
|
52865
52998
|
$kendo-scheduler-tooltip-border: null !default;
|
|
52866
|
-
$kendo-scheduler-tooltip-shadow:
|
|
52999
|
+
$kendo-scheduler-tooltip-shadow: k-elevation(2) !default;
|
|
52867
53000
|
|
|
52868
53001
|
$kendo-scheduler-tooltip-title-margin-y: k-map-get( $kendo-spacing, 3 ) !default;
|
|
52869
53002
|
$kendo-scheduler-tooltip-month-font-size: $kendo-font-size-sm !default;
|
|
@@ -53419,20 +53552,6 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
|
|
|
53419
53552
|
}
|
|
53420
53553
|
}
|
|
53421
53554
|
|
|
53422
|
-
// Current time
|
|
53423
|
-
.k-current-time {
|
|
53424
|
-
position: absolute;
|
|
53425
|
-
|
|
53426
|
-
&.k-current-time-arrow-left,
|
|
53427
|
-
&.k-current-time-arrow-right,
|
|
53428
|
-
&.k-current-time-arrow-down {
|
|
53429
|
-
width: 0;
|
|
53430
|
-
height: 0;
|
|
53431
|
-
background: transparent;
|
|
53432
|
-
border: 4px solid transparent;
|
|
53433
|
-
}
|
|
53434
|
-
}
|
|
53435
|
-
|
|
53436
53555
|
// Draging hint
|
|
53437
53556
|
.k-event-drag-hint {
|
|
53438
53557
|
opacity: .5;
|
|
@@ -53948,23 +54067,6 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
|
|
|
53948
54067
|
);
|
|
53949
54068
|
}
|
|
53950
54069
|
|
|
53951
|
-
// Current time
|
|
53952
|
-
.k-current-time {
|
|
53953
|
-
background: $kendo-scheduler-current-time-color;
|
|
53954
|
-
|
|
53955
|
-
&.k-current-time-arrow-left {
|
|
53956
|
-
border-right-color: $kendo-scheduler-current-time-color;
|
|
53957
|
-
}
|
|
53958
|
-
|
|
53959
|
-
&.k-current-time-arrow-right {
|
|
53960
|
-
border-left-color: $kendo-scheduler-current-time-color;
|
|
53961
|
-
}
|
|
53962
|
-
|
|
53963
|
-
&.k-current-time-arrow-down {
|
|
53964
|
-
border-top-color: $kendo-scheduler-current-time-color;
|
|
53965
|
-
}
|
|
53966
|
-
}
|
|
53967
|
-
|
|
53968
54070
|
// Header and footer
|
|
53969
54071
|
.k-scheduler-toolbar {
|
|
53970
54072
|
@include fill(
|
|
@@ -54317,16 +54419,16 @@ $kendo-chat-border: $kendo-app-border !default;
|
|
|
54317
54419
|
$kendo-chat-bubble-bg: $kendo-component-bg !default;
|
|
54318
54420
|
$kendo-chat-bubble-text: $kendo-component-text !default;
|
|
54319
54421
|
$kendo-chat-bubble-border: $kendo-chat-bubble-bg !default;
|
|
54320
|
-
$kendo-chat-bubble-shadow:
|
|
54321
|
-
$kendo-chat-bubble-hover-shadow:
|
|
54322
|
-
$kendo-chat-bubble-selected-shadow:
|
|
54422
|
+
$kendo-chat-bubble-shadow: k-elevation(1) !default;
|
|
54423
|
+
$kendo-chat-bubble-hover-shadow: k-elevation(2) !default;
|
|
54424
|
+
$kendo-chat-bubble-selected-shadow: k-elevation(3) !default;
|
|
54323
54425
|
|
|
54324
54426
|
$kendo-chat-alt-bubble-bg: $kendo-color-primary !default;
|
|
54325
54427
|
$kendo-chat-alt-bubble-text: k-contrast-legacy( $kendo-chat-alt-bubble-bg ) !default;
|
|
54326
54428
|
$kendo-chat-alt-bubble-border: $kendo-chat-alt-bubble-bg !default;
|
|
54327
|
-
$kendo-chat-alt-bubble-shadow:
|
|
54328
|
-
$kendo-chat-alt-bubble-hover-shadow:
|
|
54329
|
-
$kendo-chat-alt-bubble-selected-shadow:
|
|
54429
|
+
$kendo-chat-alt-bubble-shadow: k-elevation(1) !default;
|
|
54430
|
+
$kendo-chat-alt-bubble-hover-shadow: k-elevation(2) !default;
|
|
54431
|
+
$kendo-chat-alt-bubble-selected-shadow: k-elevation(3) !default;
|
|
54330
54432
|
|
|
54331
54433
|
$kendo-chat-quick-reply-bg: transparent !default;
|
|
54332
54434
|
$kendo-chat-quick-reply-text: $kendo-color-primary !default;
|
|
@@ -55209,7 +55311,7 @@ $kendo-timeline-track-end-calc: calc(#{$kendo-timeline-track-arrow-width} - 2 *
|
|
|
55209
55311
|
$kendo-timeline-track-bg: $kendo-button-bg !default;
|
|
55210
55312
|
$kendo-timeline-track-border-color: $kendo-button-border !default;
|
|
55211
55313
|
|
|
55212
|
-
$kendo-timeline-track-item-focus-shadow:
|
|
55314
|
+
$kendo-timeline-track-item-focus-shadow: k-elevation(2) !default;
|
|
55213
55315
|
|
|
55214
55316
|
$kendo-timeline-track-event-offset: 36px !default;
|
|
55215
55317
|
|
|
@@ -55876,7 +55978,7 @@ $kendo-pdf-viewer-page-spacing: 30px !default;
|
|
|
55876
55978
|
$kendo-pdf-viewer-page-bg: white !default;
|
|
55877
55979
|
$kendo-pdf-viewer-page-text: $kendo-component-text !default;
|
|
55878
55980
|
$kendo-pdf-viewer-page-border: $kendo-component-border !default;
|
|
55879
|
-
$kendo-pdf-viewer-page-shadow:
|
|
55981
|
+
$kendo-pdf-viewer-page-shadow: k-elevation(3) !default;
|
|
55880
55982
|
|
|
55881
55983
|
$kendo-pdf-viewer-search-panel-padding-x: $kendo-toolbar-md-padding-x !default;
|
|
55882
55984
|
$kendo-pdf-viewer-search-panel-padding-y: calc( #{$kendo-toolbar-md-padding-x} * 2 ) !default;
|
|
@@ -57937,7 +58039,7 @@ $kendo-orgchart-node-group-text: $kendo-base-text !default;
|
|
|
57937
58039
|
$kendo-orgchart-node-group-border: $kendo-base-border !default;
|
|
57938
58040
|
|
|
57939
58041
|
$kendo-orgchart-node-group-focus-border: $kendo-card-focus-border !default;
|
|
57940
|
-
$kendo-orgchart-node-group-focus-shadow:
|
|
58042
|
+
$kendo-orgchart-node-group-focus-shadow: k-elevation(1) !default;
|
|
57941
58043
|
|
|
57942
58044
|
$kendo-orgchart-node-group-title-font-size: $kendo-font-size-lg !default;
|
|
57943
58045
|
$kendo-orgchart-node-group-title-margin-bottom: k-math-div( $kendo-orgchart-spacer, 3 ) !default;
|
|
@@ -57952,7 +58054,7 @@ $kendo-orgchart-card-padding-y: $kendo-card-padding-y !default;
|
|
|
57952
58054
|
$kendo-orgchart-card-padding-x: $kendo-orgchart-card-padding-y !default;
|
|
57953
58055
|
$kendo-orgchart-card-border-width: $kendo-card-border-width !default;
|
|
57954
58056
|
$kendo-orgchart-card-shadow: $kendo-card-shadow !default;
|
|
57955
|
-
$kendo-orgchart-card-focus-shadow:
|
|
58057
|
+
$kendo-orgchart-card-focus-shadow: k-elevation(1) !default;
|
|
57956
58058
|
|
|
57957
58059
|
$kendo-orgchart-card-title-margin-bottom: 0px !default;
|
|
57958
58060
|
$kendo-orgchart-card-title-font-size: null !default;
|
|
@@ -58383,6 +58485,8 @@ $kendo-signature-maximized-line-width: 3px !default;
|
|
|
58383
58485
|
@include kendo-core--styles();
|
|
58384
58486
|
|
|
58385
58487
|
// Color system
|
|
58488
|
+
@include color-system-styles();
|
|
58489
|
+
|
|
58386
58490
|
|
|
58387
58491
|
// Typography and utils
|
|
58388
58492
|
@include kendo-typography--styles();
|