@progress/kendo-theme-bootstrap 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 +132 -79
- package/dist/all.scss +221 -83
- package/dist/meta/sassdoc-data.json +350 -182
- package/dist/meta/sassdoc-raw-data.json +134 -59
- package/dist/meta/variables.json +68 -72
- 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 +5 -5
- package/scss/action-sheet/_variables.scss +1 -1
- package/scss/appbar/_variables.scss +2 -2
- package/scss/bottom-navigation/_variables.scss +2 -2
- package/scss/card/_variables.scss +1 -1
- package/scss/colorgradient/_variables.scss +14 -8
- package/scss/common/_index.scss +1 -0
- package/scss/common/_indicators.scss +1 -0
- package/scss/core/_index.scss +6 -0
- package/scss/core/elevation/index.import.scss +34 -0
- package/scss/fab/_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/scheduler/_variables.scss +1 -3
- package/scss/tabstrip/_variables.scss +1 -1
- package/scss/timeline/_variables.scss +1 -1
- package/scss/tooltip/_variables.scss +2 -0
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
|
|
|
@@ -4067,6 +4067,45 @@ $kendo-invalid-shadow: 0 0 0 .25rem rgba( $kendo-invalid-border, .25 ) !default;
|
|
|
4067
4067
|
$kendo-loading-opacity: .3 !default;
|
|
4068
4068
|
$kendo-zindex-loading: 100 !default;
|
|
4069
4069
|
|
|
4070
|
+
// #endregion
|
|
4071
|
+
|
|
4072
|
+
// Elevation
|
|
4073
|
+
// #region @import "./elevation/index.import.scss"; -> scss/core/elevation/index.import.scss
|
|
4074
|
+
$_default-elevation: (
|
|
4075
|
+
1: (
|
|
4076
|
+
0px 1px 2px rgba(0, 0, 0, 0.038),
|
|
4077
|
+
),
|
|
4078
|
+
2: (
|
|
4079
|
+
0px 2px 7px rgba(0, 0, 0, 0.075),
|
|
4080
|
+
),
|
|
4081
|
+
3: (
|
|
4082
|
+
0px 4px 10px rgba(0, 0, 0, 0.1),
|
|
4083
|
+
),
|
|
4084
|
+
4: (
|
|
4085
|
+
0px 6px 13px rgba(0, 0, 0, 0.125),
|
|
4086
|
+
),
|
|
4087
|
+
5: (
|
|
4088
|
+
0px 8px 16px 0px rgba(0, 0, 0, 0.15),
|
|
4089
|
+
),
|
|
4090
|
+
6: (
|
|
4091
|
+
0px 11px 24px 0px rgba(0, 0, 0, 0.159),
|
|
4092
|
+
),
|
|
4093
|
+
7: (
|
|
4094
|
+
0px 14px 36px 0px rgba(0, 0, 0, 0.168),
|
|
4095
|
+
),
|
|
4096
|
+
8: (
|
|
4097
|
+
0px 16px 48px 0px rgba(0, 0, 0, 0.176),
|
|
4098
|
+
),
|
|
4099
|
+
9: (
|
|
4100
|
+
0px 18px 60px 0px rgba(0, 0, 0, 0.185),
|
|
4101
|
+
),
|
|
4102
|
+
);
|
|
4103
|
+
|
|
4104
|
+
/// Global Elevation.
|
|
4105
|
+
/// @group elevation
|
|
4106
|
+
$kendo-elevation: $_default-elevation !default;
|
|
4107
|
+
|
|
4108
|
+
|
|
4070
4109
|
// #endregion
|
|
4071
4110
|
|
|
4072
4111
|
// #region @import "@progress/kendo-theme-core/scss/index.import.scss"; -> node_modules/@progress/kendo-theme-core/scss/index.import.scss
|
|
@@ -5295,21 +5334,6 @@ $kendo-focus-outline: k-get-theme-color-var( neutral-130 ) !default;
|
|
|
5295
5334
|
|
|
5296
5335
|
$kendo-subtle-text: k-get-theme-color-var( neutral-130 ) !default;
|
|
5297
5336
|
|
|
5298
|
-
// Shadows
|
|
5299
|
-
|
|
5300
|
-
/// Shadow for cards and grid item thumbnails.
|
|
5301
|
-
/// Equivalent to fluent depth 4.
|
|
5302
|
-
$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;
|
|
5303
|
-
/// Shadow for command bars and dropdowns.
|
|
5304
|
-
/// Equivalent to fluent depth 8.
|
|
5305
|
-
$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;
|
|
5306
|
-
/// Shadow for teaching callouts and hover cards / tooltips.
|
|
5307
|
-
/// Equivalent to fluent depth 16.
|
|
5308
|
-
$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;
|
|
5309
|
-
/// Shadow for panels and pop up dialogs.
|
|
5310
|
-
/// Equivalent to fluent depth 64.
|
|
5311
|
-
$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;
|
|
5312
|
-
|
|
5313
5337
|
// Link
|
|
5314
5338
|
$kendo-link-text: k-get-theme-color-var( primary-100 ) !default;
|
|
5315
5339
|
$kendo-link-hover-text: k-get-theme-color-var( primary-120 ) !default;
|
|
@@ -5372,11 +5396,6 @@ $kendo-theme-colors: (
|
|
|
5372
5396
|
--kendo-component-text: #{$kendo-component-text};
|
|
5373
5397
|
--kendo-component-border: #{$kendo-component-border};
|
|
5374
5398
|
|
|
5375
|
-
--kendo-box-shadow-depth-1: #{$kendo-box-shadow-depth-1};
|
|
5376
|
-
--kendo-box-shadow-depth-2: #{$kendo-box-shadow-depth-2};
|
|
5377
|
-
--kendo-box-shadow-depth-3: #{$kendo-box-shadow-depth-3};
|
|
5378
|
-
--kendo-box-shadow-depth-4: #{$kendo-box-shadow-depth-4};
|
|
5379
|
-
|
|
5380
5399
|
--kendo-link-text: #{$kendo-link-text};
|
|
5381
5400
|
--kendo-link-hover-text: #{$kendo-link-hover-text};
|
|
5382
5401
|
|
|
@@ -6833,6 +6852,75 @@ $_imported: () !default;
|
|
|
6833
6852
|
@include kendo-core--styles--selection();
|
|
6834
6853
|
}
|
|
6835
6854
|
|
|
6855
|
+
// #endregion
|
|
6856
|
+
// #region @import "./elevation/index.import.scss"; -> node_modules/@progress/kendo-theme-core/scss/elevation/index.import.scss
|
|
6857
|
+
// #region @import "../functions/index.import.scss"; -> node_modules/@progress/kendo-theme-core/scss/functions/index.import.scss
|
|
6858
|
+
// File already imported_once. Skipping output.
|
|
6859
|
+
// #endregion
|
|
6860
|
+
|
|
6861
|
+
$_default-elevation: (
|
|
6862
|
+
1: (
|
|
6863
|
+
0 2px 3px rgba(0, 0, 0, .04),
|
|
6864
|
+
0 4px 16px rgba(0, 0, 0, .12)
|
|
6865
|
+
),
|
|
6866
|
+
2: (
|
|
6867
|
+
0 4px 6px rgba(0, 0, 0, .06),
|
|
6868
|
+
0 4px 16px rgba(0, 0, 0, .12)
|
|
6869
|
+
),
|
|
6870
|
+
3: (
|
|
6871
|
+
0 6px 8px rgba(0, 0, 0, .08),
|
|
6872
|
+
0 4px 16px rgba(0, 0, 0, .12)
|
|
6873
|
+
),
|
|
6874
|
+
4: (
|
|
6875
|
+
0 8px 10px rgba(0, 0, 0, .12),
|
|
6876
|
+
0 4px 16px rgba(0, 0, 0, .12)
|
|
6877
|
+
),
|
|
6878
|
+
5: (
|
|
6879
|
+
0 10px 12px rgba(0, 0, 0, .16),
|
|
6880
|
+
0 4px 16px rgba(0, 0, 0, .12)
|
|
6881
|
+
),
|
|
6882
|
+
6: (
|
|
6883
|
+
0 12px 14px rgba(0, 0, 0, .2),
|
|
6884
|
+
0 4px 16px rgba(0, 0, 0, .12)
|
|
6885
|
+
),
|
|
6886
|
+
7: (
|
|
6887
|
+
0 14px 16px rgba(0, 0, 0, .24),
|
|
6888
|
+
0 4px 16px rgba(0, 0, 0, .12)
|
|
6889
|
+
),
|
|
6890
|
+
8: (
|
|
6891
|
+
0 16px 18px rgba(0, 0, 0, .28),
|
|
6892
|
+
0 4px 16px rgba(0, 0, 0, .12)
|
|
6893
|
+
),
|
|
6894
|
+
9: (
|
|
6895
|
+
0 32px 34px rgba(0, 0, 0, .32),
|
|
6896
|
+
0 4px 16px rgba(0, 0, 0, .12)
|
|
6897
|
+
)
|
|
6898
|
+
) !default;
|
|
6899
|
+
|
|
6900
|
+
$kendo-elevation: $_default-elevation !default;
|
|
6901
|
+
$kendo-elevation: k-map-merge($_default-elevation, $kendo-elevation);
|
|
6902
|
+
|
|
6903
|
+
@function k-shadow-filter($shadow) {
|
|
6904
|
+
$result: '';
|
|
6905
|
+
@each $value in $shadow {
|
|
6906
|
+
$result: $result + "drop-shadow(" + $value + ") ";
|
|
6907
|
+
}
|
|
6908
|
+
@return #{$result};
|
|
6909
|
+
}
|
|
6910
|
+
|
|
6911
|
+
@function k-elevation($level) {
|
|
6912
|
+
@return var(--kendo-elevation-#{$level}, k-map-get($kendo-elevation, $level));
|
|
6913
|
+
}
|
|
6914
|
+
|
|
6915
|
+
|
|
6916
|
+
@mixin kendo-elevation--styles() {
|
|
6917
|
+
:root {
|
|
6918
|
+
@each $level, $shadow in $kendo-elevation {
|
|
6919
|
+
--kendo-elevation-#{$level}: #{$shadow};
|
|
6920
|
+
}
|
|
6921
|
+
}
|
|
6922
|
+
}
|
|
6923
|
+
|
|
6836
6924
|
// #endregion
|
|
6837
6925
|
// #region @import "./_variables.scss"; -> node_modules/@progress/kendo-theme-core/scss/_variables.scss
|
|
6838
6926
|
// #region @import "./functions/index.import.scss"; -> node_modules/@progress/kendo-theme-core/scss/functions/index.import.scss
|
|
@@ -6924,6 +7012,9 @@ $kendo-zindex-loading: 100 !default;
|
|
|
6924
7012
|
// Expose
|
|
6925
7013
|
@include exports("kendo-core-styles") {
|
|
6926
7014
|
@include kendo-core--styles();
|
|
7015
|
+
|
|
7016
|
+
// Elevation System
|
|
7017
|
+
@include kendo-elevation--styles();
|
|
6927
7018
|
}
|
|
6928
7019
|
|
|
6929
7020
|
// #endregion
|
|
@@ -7849,6 +7940,51 @@ $kendo-zindex-loading: 100 !default;
|
|
|
7849
7940
|
|
|
7850
7941
|
// #endregion
|
|
7851
7942
|
|
|
7943
|
+
// #endregion
|
|
7944
|
+
// #region @import "./_indicators.scss"; -> scss/common/_indicators.scss
|
|
7945
|
+
// #region @import "@progress/kendo-theme-default/scss/common/_indicators.scss"; -> node_modules/@progress/kendo-theme-default/scss/common/_indicators.scss
|
|
7946
|
+
@include exports( "common/indicators/current-time" ) {
|
|
7947
|
+
|
|
7948
|
+
$kendo-current-time-width: 1px !default;
|
|
7949
|
+
$kendo-current-time-color: #ff0000 !default;
|
|
7950
|
+
|
|
7951
|
+
// Layout
|
|
7952
|
+
.k-current-time {
|
|
7953
|
+
width: $kendo-current-time-width;
|
|
7954
|
+
position: absolute;
|
|
7955
|
+
|
|
7956
|
+
&.k-current-time-arrow-left,
|
|
7957
|
+
&.k-current-time-arrow-right,
|
|
7958
|
+
&.k-current-time-arrow-down {
|
|
7959
|
+
width: 0;
|
|
7960
|
+
height: 0;
|
|
7961
|
+
background: transparent;
|
|
7962
|
+
border: 4px solid transparent;
|
|
7963
|
+
}
|
|
7964
|
+
}
|
|
7965
|
+
|
|
7966
|
+
|
|
7967
|
+
// Theme
|
|
7968
|
+
.k-current-time {
|
|
7969
|
+
background: $kendo-current-time-color;
|
|
7970
|
+
|
|
7971
|
+
&.k-current-time-arrow-left {
|
|
7972
|
+
border-right-color: $kendo-current-time-color;
|
|
7973
|
+
}
|
|
7974
|
+
|
|
7975
|
+
&.k-current-time-arrow-right {
|
|
7976
|
+
border-left-color: $kendo-current-time-color;
|
|
7977
|
+
}
|
|
7978
|
+
|
|
7979
|
+
&.k-current-time-arrow-down {
|
|
7980
|
+
border-top-color: $kendo-current-time-color;
|
|
7981
|
+
}
|
|
7982
|
+
}
|
|
7983
|
+
|
|
7984
|
+
}
|
|
7985
|
+
|
|
7986
|
+
// #endregion
|
|
7987
|
+
|
|
7852
7988
|
// #endregion
|
|
7853
7989
|
// #region @import "./_resizing.scss"; -> scss/common/_resizing.scss
|
|
7854
7990
|
// #region @import "@progress/kendo-theme-default/scss/common/_resizing.scss"; -> node_modules/@progress/kendo-theme-default/scss/common/_resizing.scss
|
|
@@ -15882,6 +16018,21 @@ $kendo-utils: (
|
|
|
15882
16018
|
|
|
15883
16019
|
// #endregion
|
|
15884
16020
|
|
|
16021
|
+
// #region @import "./elevation/index.import.scss"; -> node_modules/@progress/kendo-theme-utils/scss/elevation/index.import.scss
|
|
16022
|
+
// #region @import "@progress/kendo-theme-core/scss/elevation/index.import.scss"; -> node_modules/@progress/kendo-theme-core/scss/elevation/index.import.scss
|
|
16023
|
+
// File already imported_once. Skipping output.
|
|
16024
|
+
// #endregion
|
|
16025
|
+
|
|
16026
|
+
@mixin kendo-utils--elevation {
|
|
16027
|
+
@each $level, $elevation in $kendo-elevation {
|
|
16028
|
+
.k-elevation-#{$level} {
|
|
16029
|
+
box-shadow: $elevation;
|
|
16030
|
+
}
|
|
16031
|
+
}
|
|
16032
|
+
}
|
|
16033
|
+
|
|
16034
|
+
// #endregion
|
|
16035
|
+
|
|
15885
16036
|
|
|
15886
16037
|
// Mixin for all styles
|
|
15887
16038
|
@mixin kendo-utils() {
|
|
@@ -15899,6 +16050,8 @@ $kendo-utils: (
|
|
|
15899
16050
|
@include kendo-utils--transform();
|
|
15900
16051
|
@include kendo-utils--interactivity();
|
|
15901
16052
|
@include kendo-utils--svg();
|
|
16053
|
+
|
|
16054
|
+
@include kendo-utils--elevation();
|
|
15902
16055
|
}
|
|
15903
16056
|
|
|
15904
16057
|
// #endregion
|
|
@@ -19845,7 +19998,7 @@ $kendo-popup-text: $kendo-component-text !default;
|
|
|
19845
19998
|
$kendo-popup-border: $kendo-component-border !default;
|
|
19846
19999
|
/// Box shadow of the popup.
|
|
19847
20000
|
/// @group popup
|
|
19848
|
-
$kendo-popup-shadow:
|
|
20001
|
+
$kendo-popup-shadow: k-elevation(4) !default;
|
|
19849
20002
|
|
|
19850
20003
|
// #endregion
|
|
19851
20004
|
// #region @import "./_layout.scss"; -> scss/popup/_layout.scss
|
|
@@ -26146,6 +26299,8 @@ $kendo-tooltip-bg: if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-bl
|
|
|
26146
26299
|
$kendo-tooltip-text: k-contrast-color( $kendo-tooltip-bg ) !default;
|
|
26147
26300
|
$kendo-tooltip-border: $kendo-tooltip-bg !default;
|
|
26148
26301
|
|
|
26302
|
+
$kendo-tooltip-shadow: k-elevation(2) !default;
|
|
26303
|
+
|
|
26149
26304
|
$kendo-tooltip-primary-bg: $kendo-color-primary !default;
|
|
26150
26305
|
$kendo-tooltip-primary-text: k-contrast-color( $kendo-tooltip-primary-bg ) !default;
|
|
26151
26306
|
$kendo-tooltip-primary-border: $kendo-tooltip-primary-bg !default;
|
|
@@ -27171,7 +27326,7 @@ $_kendo-module-meta: (
|
|
|
27171
27326
|
|
|
27172
27327
|
.k-tooltip-wrapper {
|
|
27173
27328
|
.k-tooltip {
|
|
27174
|
-
box-shadow: $kendo-
|
|
27329
|
+
box-shadow: $kendo-tooltip-shadow;
|
|
27175
27330
|
}
|
|
27176
27331
|
}
|
|
27177
27332
|
|
|
@@ -31823,6 +31978,7 @@ $kendo-calendar-sizes: (
|
|
|
31823
31978
|
);
|
|
31824
31979
|
|
|
31825
31980
|
|
|
31981
|
+
// TODO: do we even use this?
|
|
31826
31982
|
// Header / footer
|
|
31827
31983
|
.k-header {
|
|
31828
31984
|
@include fill(
|
|
@@ -33298,6 +33454,9 @@ $kendo-color-gradient-draghandle-height: 14px !default;
|
|
|
33298
33454
|
/// The width of the border around the ColorGradient canvas drag handle.
|
|
33299
33455
|
/// @group cologradient
|
|
33300
33456
|
$kendo-color-gradient-draghandle-border-width: 1px !default;
|
|
33457
|
+
/// The width of the outline around the ColorGradient canvas drag handle.
|
|
33458
|
+
/// @group cologradient
|
|
33459
|
+
$kendo-color-gradient-draghandle-outline-width: 1px !default;
|
|
33301
33460
|
/// The border radius of the ColorGradient canvas drag handle.
|
|
33302
33461
|
/// @group cologradient
|
|
33303
33462
|
$kendo-color-gradient-draghandle-border-radius: 50% !default;
|
|
@@ -33309,16 +33468,19 @@ $kendo-color-gradient-draghandle-text: null !default;
|
|
|
33309
33468
|
$kendo-color-gradient-draghandle-bg: transparent !default;
|
|
33310
33469
|
/// The color of the border around the ColorGradient canvas drag handle.
|
|
33311
33470
|
/// @group cologradient
|
|
33312
|
-
$kendo-color-gradient-draghandle-border: rgba( white, .8) !default;
|
|
33313
|
-
/// The
|
|
33471
|
+
$kendo-color-gradient-draghandle-border: rgba( $kendo-color-white, .8) !default;
|
|
33472
|
+
/// The color of the outline around the ColorGradient canvas drag handle.
|
|
33314
33473
|
/// @group cologradient
|
|
33315
|
-
$kendo-color-gradient-draghandle-shadow:
|
|
33316
|
-
/// The
|
|
33474
|
+
$kendo-color-gradient-draghandle-shadow: rgba( $kendo-color-black, .5) !default;
|
|
33475
|
+
/// The focus color of the outline around the ColorGradient canvas drag handle.
|
|
33317
33476
|
/// @group cologradient
|
|
33318
|
-
$kendo-color-gradient-draghandle-focus-shadow:
|
|
33319
|
-
/// The
|
|
33477
|
+
$kendo-color-gradient-draghandle-focus-shadow: $kendo-color-black !default;
|
|
33478
|
+
/// The outline color of the outline around the ColorGradient canvas drag handle.
|
|
33320
33479
|
/// @group cologradient
|
|
33321
|
-
$kendo-color-gradient-draghandle-hover-shadow: $kendo-color-
|
|
33480
|
+
$kendo-color-gradient-draghandle-hover-shadow: $kendo-color-black !default;
|
|
33481
|
+
/// The box shadow of the ColorGradient canvas drag handle.
|
|
33482
|
+
/// @group cologradient
|
|
33483
|
+
$kendo-color-gradient-draghandle-shadow: k-elevation(2) !default;
|
|
33322
33484
|
|
|
33323
33485
|
/// The vertical margin of the ColorGradient canvas drag handle.
|
|
33324
33486
|
/// @group cologradient
|
|
@@ -33346,6 +33508,7 @@ $kendo-color-gradient-contrast-ratio-font-weight: $kendo-font-weight-bold !defau
|
|
|
33346
33508
|
/// The spacing between the items in the ColorGradient contrast tool.
|
|
33347
33509
|
/// @group cologradient
|
|
33348
33510
|
$kendo-color-gradient-contrast-spacer: k-math-div( $kendo-color-gradient-spacer, 2 ) !default;
|
|
33511
|
+
|
|
33349
33512
|
// #endregion
|
|
33350
33513
|
// #region @import "./_layout.scss"; -> scss/colorgradient/_layout.scss
|
|
33351
33514
|
// #region @import "@progress/kendo-theme-default/scss/colorgradient/_layout.scss"; -> node_modules/@progress/kendo-theme-default/scss/colorgradient/_layout.scss
|
|
@@ -33418,6 +33581,8 @@ $kendo-color-gradient-contrast-spacer: k-math-div( $kendo-color-gradient-spacer,
|
|
|
33418
33581
|
height: $kendo-color-gradient-draghandle-height;
|
|
33419
33582
|
border-width: $kendo-color-gradient-draghandle-border-width;
|
|
33420
33583
|
border-style: solid;
|
|
33584
|
+
outline-width: $kendo-color-gradient-draghandle-outline-width;
|
|
33585
|
+
outline-style: solid;
|
|
33421
33586
|
box-sizing: border-box;
|
|
33422
33587
|
}
|
|
33423
33588
|
|
|
@@ -33583,12 +33748,14 @@ $kendo-color-gradient-contrast-spacer: k-math-div( $kendo-color-gradient-spacer,
|
|
|
33583
33748
|
$kendo-color-gradient-draghandle-bg,
|
|
33584
33749
|
$kendo-color-gradient-draghandle-border
|
|
33585
33750
|
);
|
|
33751
|
+
outline-color: $kendo-color-gradient-draghandle-focus-shadow;
|
|
33586
33752
|
@include box-shadow( $kendo-color-gradient-draghandle-shadow );
|
|
33587
33753
|
|
|
33588
33754
|
&:focus,
|
|
33589
33755
|
&.k-focus {
|
|
33590
33756
|
@include fill( $bg: transparent, $border: $kendo-color-white );
|
|
33591
|
-
|
|
33757
|
+
outline-color: $kendo-color-gradient-draghandle-focus-shadow;
|
|
33758
|
+
@include focus-indicator( $kendo-color-gradient-draghandle-shadow );
|
|
33592
33759
|
}
|
|
33593
33760
|
|
|
33594
33761
|
&:hover,
|
|
@@ -33596,7 +33763,7 @@ $kendo-color-gradient-contrast-spacer: k-math-div( $kendo-color-gradient-spacer,
|
|
|
33596
33763
|
&.k-active,
|
|
33597
33764
|
&:active {
|
|
33598
33765
|
@include fill( $bg: transparent, $border: $kendo-color-white );
|
|
33599
|
-
|
|
33766
|
+
outline-color: $kendo-color-gradient-draghandle-hover-shadow;
|
|
33600
33767
|
}
|
|
33601
33768
|
}
|
|
33602
33769
|
|
|
@@ -36301,14 +36468,14 @@ $kendo-rating-icon-focus-selected-shadow: 0 2px 4px rgba( black, .1) !default;
|
|
|
36301
36468
|
text-shadow: $kendo-rating-icon-focus-shadow;
|
|
36302
36469
|
}
|
|
36303
36470
|
> .k-svg-icon {
|
|
36304
|
-
filter:
|
|
36471
|
+
filter: k-shadow-filter($kendo-rating-icon-focus-selected-shadow);
|
|
36305
36472
|
}
|
|
36306
36473
|
|
|
36307
36474
|
&.k-selected > .k-icon {
|
|
36308
36475
|
text-shadow: $kendo-rating-icon-focus-selected-shadow;
|
|
36309
36476
|
}
|
|
36310
36477
|
&.k-selected > .k-svg-icon {
|
|
36311
|
-
filter:
|
|
36478
|
+
filter: k-shadow-filter($kendo-rating-icon-focus-selected-shadow);
|
|
36312
36479
|
}
|
|
36313
36480
|
}
|
|
36314
36481
|
}
|
|
@@ -37877,10 +38044,11 @@ $kendo-appbar-dark-text: k-contrast-color( $kendo-color-dark ) !default;
|
|
|
37877
38044
|
|
|
37878
38045
|
/// The box shadow of the AppBar.
|
|
37879
38046
|
/// @group appbar
|
|
37880
|
-
$kendo-appbar-box-shadow:
|
|
38047
|
+
$kendo-appbar-box-shadow: k-elevation(4) !default;
|
|
37881
38048
|
/// The box shadow of the AppBar with bottom position.
|
|
37882
38049
|
/// @group appbar
|
|
37883
|
-
$kendo-appbar-bottom-box-shadow:
|
|
38050
|
+
$kendo-appbar-bottom-box-shadow: k-elevation(4) !default;
|
|
38051
|
+
|
|
37884
38052
|
// #endregion
|
|
37885
38053
|
// #region @import "./_layout.scss"; -> scss/appbar/_layout.scss
|
|
37886
38054
|
// #region @import "@progress/kendo-theme-default/scss/appbar/_layout.scss"; -> node_modules/@progress/kendo-theme-default/scss/appbar/_layout.scss
|
|
@@ -38230,10 +38398,10 @@ $kendo-fab-sizes: (
|
|
|
38230
38398
|
|
|
38231
38399
|
/// The base shadow of the FAB.
|
|
38232
38400
|
/// @group floating-action-button
|
|
38233
|
-
$kendo-fab-shadow:
|
|
38401
|
+
$kendo-fab-shadow: k-elevation(5) !default;
|
|
38234
38402
|
/// The shadow of the disabled FAB.
|
|
38235
38403
|
/// @group floating-action-button
|
|
38236
|
-
$kendo-fab-disabled-shadow:
|
|
38404
|
+
$kendo-fab-disabled-shadow: k-elevation(5) !default;
|
|
38237
38405
|
/// The shadow of the active FAB.
|
|
38238
38406
|
/// @group floating-action-button
|
|
38239
38407
|
$kendo-fab-active-shadow: null !default;
|
|
@@ -38788,7 +38956,7 @@ $kendo-actionsheet-line-height: $kendo-line-height-md !default;
|
|
|
38788
38956
|
$kendo-actionsheet-bg: $kendo-component-bg !default;
|
|
38789
38957
|
$kendo-actionsheet-text: $kendo-component-text !default;
|
|
38790
38958
|
$kendo-actionsheet-border: $kendo-component-border !default;
|
|
38791
|
-
$kendo-actionsheet-shadow:
|
|
38959
|
+
$kendo-actionsheet-shadow: k-elevation(7) !default;
|
|
38792
38960
|
|
|
38793
38961
|
|
|
38794
38962
|
// Actionsheet header
|
|
@@ -40655,7 +40823,7 @@ $kendo-card-shadow: null !default;
|
|
|
40655
40823
|
$kendo-card-focus-bg: null !default;
|
|
40656
40824
|
$kendo-card-focus-text: null !default;
|
|
40657
40825
|
$kendo-card-focus-border: null !default;
|
|
40658
|
-
$kendo-card-focus-shadow:
|
|
40826
|
+
$kendo-card-focus-shadow: k-elevation(3) !default;
|
|
40659
40827
|
|
|
40660
40828
|
$kendo-card-header-padding-x: $kendo-card-padding-x !default;
|
|
40661
40829
|
$kendo-card-header-padding-y: $kendo-card-padding-y !default;
|
|
@@ -41736,7 +41904,7 @@ $kendo-bottom-nav-item-gap: 0 k-map-get( $kendo-spacing, 1 ) !default;
|
|
|
41736
41904
|
|
|
41737
41905
|
/// The box shadow of the BottomNavigation.
|
|
41738
41906
|
/// @group bottom-navigation
|
|
41739
|
-
$kendo-bottom-nav-shadow:
|
|
41907
|
+
$kendo-bottom-nav-shadow: k-elevation(4) !default;
|
|
41740
41908
|
|
|
41741
41909
|
/// The text color of the flat BottomNavigation.
|
|
41742
41910
|
/// @group bottom-navigation
|
|
@@ -41747,6 +41915,7 @@ $kendo-bottom-nav-flat-bg: $kendo-component-bg !default;
|
|
|
41747
41915
|
/// The border color of the flat BottomNavigation.
|
|
41748
41916
|
/// @group bottom-navigation
|
|
41749
41917
|
$kendo-bottom-nav-flat-border: $kendo-component-border !default;
|
|
41918
|
+
|
|
41750
41919
|
// #endregion
|
|
41751
41920
|
// #region @import "./_layout.scss"; -> scss/bottom-navigation/_layout.scss
|
|
41752
41921
|
// #region @import "@progress/kendo-theme-default/scss/bottom-navigation/_layout.scss"; -> node_modules/@progress/kendo-theme-default/scss/bottom-navigation/_layout.scss
|
|
@@ -41785,6 +41954,7 @@ $kendo-bottom-nav-flat-border: $kendo-component-border !default;
|
|
|
41785
41954
|
border-width: $kendo-bottom-nav-border-width;
|
|
41786
41955
|
}
|
|
41787
41956
|
|
|
41957
|
+
// TODO: do we even use this?
|
|
41788
41958
|
.k-bottom-nav-shadow {
|
|
41789
41959
|
box-shadow: $kendo-bottom-nav-shadow;
|
|
41790
41960
|
}
|
|
@@ -43781,7 +43951,7 @@ $kendo-tabstrip-item-selected-gradient: null !default;
|
|
|
43781
43951
|
|
|
43782
43952
|
$kendo-tabstrip-item-focus-shadow: $kendo-list-item-focus-shadow !default;
|
|
43783
43953
|
|
|
43784
|
-
$kendo-tabstrip-item-dragging-shadow:
|
|
43954
|
+
$kendo-tabstrip-item-dragging-shadow: k-elevation(3) !default;
|
|
43785
43955
|
|
|
43786
43956
|
$kendo-tabstrip-item-disabled-bg: null !default;
|
|
43787
43957
|
$kendo-tabstrip-item-disabled-text: null !default;
|
|
@@ -51787,10 +51957,11 @@ $kendo-pivotgrid-configurator-header-bg: null !default;
|
|
|
51787
51957
|
$kendo-pivotgrid-configurator-header-text: $kendo-component-header-text !default;
|
|
51788
51958
|
$kendo-pivotgrid-configurator-header-border: null !default;
|
|
51789
51959
|
|
|
51790
|
-
$kendo-pivotgrid-configurator-
|
|
51791
|
-
$kendo-pivotgrid-configurator-
|
|
51792
|
-
$kendo-pivotgrid-configurator-
|
|
51793
|
-
$kendo-pivotgrid-configurator-
|
|
51960
|
+
$kendo-pivotgrid-configurator-shadow: k-elevation(3) !default;
|
|
51961
|
+
$kendo-pivotgrid-configurator-end-shadow: $kendo-pivotgrid-configurator-shadow !default;
|
|
51962
|
+
$kendo-pivotgrid-configurator-start-shadow: $kendo-pivotgrid-configurator-shadow !default;
|
|
51963
|
+
$kendo-pivotgrid-configurator-top-shadow: $kendo-pivotgrid-configurator-shadow !default;
|
|
51964
|
+
$kendo-pivotgrid-configurator-bottom-shadow: $kendo-pivotgrid-configurator-shadow !default;
|
|
51794
51965
|
|
|
51795
51966
|
$kendo-pivotgrid-configurator-button-padding-x: k-map-get( $kendo-spacing, 1 ) !default;
|
|
51796
51967
|
$kendo-pivotgrid-configurator-button-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
@@ -57083,8 +57254,6 @@ $kendo-scheduler-cell-height: $kendo-line-height-em !default;
|
|
|
57083
57254
|
$kendo-scheduler-datecolumn-width: 12em !default;
|
|
57084
57255
|
$kendo-scheduler-timecolumn-width: 11em !default;
|
|
57085
57256
|
|
|
57086
|
-
$kendo-scheduler-current-time-color: #ff0000 !default;
|
|
57087
|
-
|
|
57088
57257
|
$kendo-scheduler-nonwork-bg: k-try-shade( $kendo-scheduler-bg, .5 ) !default;
|
|
57089
57258
|
$kendo-scheduler-nonwork-text: null !default;
|
|
57090
57259
|
|
|
@@ -57112,7 +57281,7 @@ $kendo-scheduler-tooltip-border-width: 0 !default;
|
|
|
57112
57281
|
$kendo-scheduler-tooltip-bg: $kendo-color-primary-contrast !default;
|
|
57113
57282
|
$kendo-scheduler-tooltip-text: $kendo-base-text !default;
|
|
57114
57283
|
$kendo-scheduler-tooltip-border: null !default;
|
|
57115
|
-
$kendo-scheduler-tooltip-shadow:
|
|
57284
|
+
$kendo-scheduler-tooltip-shadow: k-elevation(2) !default;
|
|
57116
57285
|
|
|
57117
57286
|
$kendo-scheduler-tooltip-title-margin-y: k-map-get( $kendo-spacing, 3 ) !default;
|
|
57118
57287
|
$kendo-scheduler-tooltip-month-font-size: $kendo-font-size-sm !default;
|
|
@@ -57669,20 +57838,6 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
|
|
|
57669
57838
|
}
|
|
57670
57839
|
}
|
|
57671
57840
|
|
|
57672
|
-
// Current time
|
|
57673
|
-
.k-current-time {
|
|
57674
|
-
position: absolute;
|
|
57675
|
-
|
|
57676
|
-
&.k-current-time-arrow-left,
|
|
57677
|
-
&.k-current-time-arrow-right,
|
|
57678
|
-
&.k-current-time-arrow-down {
|
|
57679
|
-
width: 0;
|
|
57680
|
-
height: 0;
|
|
57681
|
-
background: transparent;
|
|
57682
|
-
border: 4px solid transparent;
|
|
57683
|
-
}
|
|
57684
|
-
}
|
|
57685
|
-
|
|
57686
57841
|
// Draging hint
|
|
57687
57842
|
.k-event-drag-hint {
|
|
57688
57843
|
opacity: .5;
|
|
@@ -58238,23 +58393,6 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
|
|
|
58238
58393
|
);
|
|
58239
58394
|
}
|
|
58240
58395
|
|
|
58241
|
-
// Current time
|
|
58242
|
-
.k-current-time {
|
|
58243
|
-
background: $kendo-scheduler-current-time-color;
|
|
58244
|
-
|
|
58245
|
-
&.k-current-time-arrow-left {
|
|
58246
|
-
border-right-color: $kendo-scheduler-current-time-color;
|
|
58247
|
-
}
|
|
58248
|
-
|
|
58249
|
-
&.k-current-time-arrow-right {
|
|
58250
|
-
border-left-color: $kendo-scheduler-current-time-color;
|
|
58251
|
-
}
|
|
58252
|
-
|
|
58253
|
-
&.k-current-time-arrow-down {
|
|
58254
|
-
border-top-color: $kendo-scheduler-current-time-color;
|
|
58255
|
-
}
|
|
58256
|
-
}
|
|
58257
|
-
|
|
58258
58396
|
// Header and footer
|
|
58259
58397
|
.k-scheduler-toolbar {
|
|
58260
58398
|
@include fill(
|
|
@@ -59538,7 +59676,7 @@ $kendo-timeline-track-end-calc: calc(#{$kendo-timeline-track-arrow-width} - 2 *
|
|
|
59538
59676
|
$kendo-timeline-track-bg: $kendo-button-bg !default;
|
|
59539
59677
|
$kendo-timeline-track-border-color: $kendo-timeline-track-bg !default;
|
|
59540
59678
|
|
|
59541
|
-
$kendo-timeline-track-item-focus-shadow:
|
|
59679
|
+
$kendo-timeline-track-item-focus-shadow: k-elevation(2) !default;
|
|
59542
59680
|
|
|
59543
59681
|
$kendo-timeline-track-event-offset: 36px !default;
|
|
59544
59682
|
|
|
@@ -60227,7 +60365,7 @@ $kendo-pdf-viewer-page-spacing: 30px !default;
|
|
|
60227
60365
|
$kendo-pdf-viewer-page-bg: white !default;
|
|
60228
60366
|
$kendo-pdf-viewer-page-text: $kendo-component-text !default;
|
|
60229
60367
|
$kendo-pdf-viewer-page-border: $kendo-component-border !default;
|
|
60230
|
-
$kendo-pdf-viewer-page-shadow:
|
|
60368
|
+
$kendo-pdf-viewer-page-shadow: k-elevation(3) !default;
|
|
60231
60369
|
|
|
60232
60370
|
$kendo-pdf-viewer-search-panel-padding-x: $kendo-toolbar-md-padding-x !default;
|
|
60233
60371
|
$kendo-pdf-viewer-search-panel-padding-y: calc( #{$kendo-toolbar-md-padding-x} * 2 ) !default;
|