@progress/kendo-theme-material 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 +183 -130
- package/dist/all.scss +286 -101
- package/dist/meta/sassdoc-data.json +992 -590
- package/dist/meta/sassdoc-raw-data.json +417 -233
- package/dist/meta/variables.json +124 -116
- package/lib/swatches/material-aqua-dark.json +1 -1
- package/lib/swatches/material-arctic.json +1 -1
- package/lib/swatches/material-burnt-teal.json +1 -1
- package/lib/swatches/material-dataviz-v4.json +1 -1
- package/lib/swatches/material-eggplant.json +1 -1
- package/lib/swatches/material-lime-dark.json +1 -1
- package/lib/swatches/material-lime.json +1 -1
- package/lib/swatches/material-main-dark.json +1 -1
- package/lib/swatches/material-main.json +1 -1
- package/lib/swatches/material-nova.json +1 -1
- package/lib/swatches/material-pacific-dark.json +1 -1
- package/lib/swatches/material-pacific.json +1 -1
- package/lib/swatches/material-sky-dark.json +1 -1
- package/lib/swatches/material-sky.json +1 -1
- package/lib/swatches/material-smoke.json +1 -1
- package/package.json +5 -5
- package/scss/_variables.scss +32 -7
- 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/button/_variables.scss +1 -1
- package/scss/card/_variables.scss +2 -2
- package/scss/chat/_variables.scss +6 -6
- package/scss/coloreditor/_variables.scss +2 -2
- 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 +53 -0
- package/scss/fab/_variables.scss +3 -3
- package/scss/pdf-viewer/_variables.scss +1 -1
- package/scss/pivotgrid/_variables.scss +4 -4
- package/scss/popup/_variables.scss +1 -1
- package/scss/scheduler/_variables.scss +1 -3
- package/scss/tabstrip/_variables.scss +1 -1
- package/scss/toolbar/_variables.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
|
|
|
@@ -2533,6 +2533,132 @@ $material-light-complimentary: (
|
|
|
2533
2533
|
|
|
2534
2534
|
// #endregion
|
|
2535
2535
|
|
|
2536
|
+
// Elevation
|
|
2537
|
+
// #region @import "./elevation/index.import.scss"; -> scss/core/elevation/index.import.scss
|
|
2538
|
+
$_default-elevation: (
|
|
2539
|
+
1: (
|
|
2540
|
+
0px 1px 3px 0px rgba(0, 0, 0, 0.2),
|
|
2541
|
+
0px 2px 1px 0px rgba(0, 0, 0, 0.12),
|
|
2542
|
+
0px 1px 1px 0px rgba(0, 0, 0, 0.14),
|
|
2543
|
+
),
|
|
2544
|
+
2: (
|
|
2545
|
+
0px 1px 5px 0px rgba(0, 0, 0, 0.2),
|
|
2546
|
+
0px 3px 1px 0px rgba(0, 0, 0, 0.12),
|
|
2547
|
+
0px 2px 2px 0px rgba(0, 0, 0, 0.14),
|
|
2548
|
+
),
|
|
2549
|
+
3: (
|
|
2550
|
+
0px 1px 8px 0px rgba(0, 0, 0, 0.2),
|
|
2551
|
+
0px 3px 3px 0px rgba(0, 0, 0, 0.12),
|
|
2552
|
+
0px 3px 4px 0px rgba(0, 0, 0, 0.14),
|
|
2553
|
+
),
|
|
2554
|
+
4: (
|
|
2555
|
+
0px 2px 4px 0px rgba(0, 0, 0, 0.2),
|
|
2556
|
+
0px 1px 10px 0px rgba(0, 0, 0, 0.12),
|
|
2557
|
+
0px 4px 5px 0px rgba(0, 0, 0, 0.14),
|
|
2558
|
+
),
|
|
2559
|
+
5: (
|
|
2560
|
+
0px 3px 5px 0px rgba(0, 0, 0, 0.2),
|
|
2561
|
+
0px 1px 18px 0px rgba(0, 0, 0, 0.12),
|
|
2562
|
+
0px 6px 10px 0px rgba(0, 0, 0, 0.14),
|
|
2563
|
+
),
|
|
2564
|
+
6: (
|
|
2565
|
+
0px 5px 5px 0px rgba(0, 0, 0, 0.2),
|
|
2566
|
+
0px 3px 14px 0px rgba(0, 0, 0, 0.12),
|
|
2567
|
+
0px 8px 10px 0px rgba(0, 0, 0, 0.14),
|
|
2568
|
+
),
|
|
2569
|
+
7: (
|
|
2570
|
+
0px 7px 8px 0px rgba(0, 0, 0, 0.2),
|
|
2571
|
+
0px 5px 22px 0px rgba(0, 0, 0, 0.12),
|
|
2572
|
+
0px 12px 17px 0px rgba(0, 0, 0, 0.14),
|
|
2573
|
+
),
|
|
2574
|
+
8: (
|
|
2575
|
+
0px 8px 10px rgba(0, 0, 0, 0.2),
|
|
2576
|
+
0px 6px 30px rgba(0, 0, 0, 0.12),
|
|
2577
|
+
0px 16px 24px rgba(0, 0, 0, 0.14),
|
|
2578
|
+
),
|
|
2579
|
+
9: (
|
|
2580
|
+
0px 11px 15px rgba(0, 0, 0, 0.2),
|
|
2581
|
+
0px 9px 46px rgba(0, 0, 0, 0.12),
|
|
2582
|
+
0px 24px 38px rgba(0, 0, 0, 0.14),
|
|
2583
|
+
),
|
|
2584
|
+
);
|
|
2585
|
+
|
|
2586
|
+
/// Global Elevation.
|
|
2587
|
+
/// @group elevation
|
|
2588
|
+
$kendo-elevation: $_default-elevation !default;
|
|
2589
|
+
|
|
2590
|
+
// #region @import "@progress/kendo-theme-core/scss/elevation/index.import.scss"; -> node_modules/@progress/kendo-theme-core/scss/elevation/index.import.scss
|
|
2591
|
+
// #region @import "../functions/index.import.scss"; -> node_modules/@progress/kendo-theme-core/scss/functions/index.import.scss
|
|
2592
|
+
// File already imported_once. Skipping output.
|
|
2593
|
+
// #endregion
|
|
2594
|
+
|
|
2595
|
+
$_default-elevation: (
|
|
2596
|
+
1: (
|
|
2597
|
+
0 2px 3px rgba(0, 0, 0, .04),
|
|
2598
|
+
0 4px 16px rgba(0, 0, 0, .12)
|
|
2599
|
+
),
|
|
2600
|
+
2: (
|
|
2601
|
+
0 4px 6px rgba(0, 0, 0, .06),
|
|
2602
|
+
0 4px 16px rgba(0, 0, 0, .12)
|
|
2603
|
+
),
|
|
2604
|
+
3: (
|
|
2605
|
+
0 6px 8px rgba(0, 0, 0, .08),
|
|
2606
|
+
0 4px 16px rgba(0, 0, 0, .12)
|
|
2607
|
+
),
|
|
2608
|
+
4: (
|
|
2609
|
+
0 8px 10px rgba(0, 0, 0, .12),
|
|
2610
|
+
0 4px 16px rgba(0, 0, 0, .12)
|
|
2611
|
+
),
|
|
2612
|
+
5: (
|
|
2613
|
+
0 10px 12px rgba(0, 0, 0, .16),
|
|
2614
|
+
0 4px 16px rgba(0, 0, 0, .12)
|
|
2615
|
+
),
|
|
2616
|
+
6: (
|
|
2617
|
+
0 12px 14px rgba(0, 0, 0, .2),
|
|
2618
|
+
0 4px 16px rgba(0, 0, 0, .12)
|
|
2619
|
+
),
|
|
2620
|
+
7: (
|
|
2621
|
+
0 14px 16px rgba(0, 0, 0, .24),
|
|
2622
|
+
0 4px 16px rgba(0, 0, 0, .12)
|
|
2623
|
+
),
|
|
2624
|
+
8: (
|
|
2625
|
+
0 16px 18px rgba(0, 0, 0, .28),
|
|
2626
|
+
0 4px 16px rgba(0, 0, 0, .12)
|
|
2627
|
+
),
|
|
2628
|
+
9: (
|
|
2629
|
+
0 32px 34px rgba(0, 0, 0, .32),
|
|
2630
|
+
0 4px 16px rgba(0, 0, 0, .12)
|
|
2631
|
+
)
|
|
2632
|
+
) !default;
|
|
2633
|
+
|
|
2634
|
+
$kendo-elevation: $_default-elevation !default;
|
|
2635
|
+
$kendo-elevation: k-map-merge($_default-elevation, $kendo-elevation);
|
|
2636
|
+
|
|
2637
|
+
@function k-shadow-filter($shadow) {
|
|
2638
|
+
$result: '';
|
|
2639
|
+
@each $value in $shadow {
|
|
2640
|
+
$result: $result + "drop-shadow(" + $value + ") ";
|
|
2641
|
+
}
|
|
2642
|
+
@return #{$result};
|
|
2643
|
+
}
|
|
2644
|
+
|
|
2645
|
+
@function k-elevation($level) {
|
|
2646
|
+
@return var(--kendo-elevation-#{$level}, k-map-get($kendo-elevation, $level));
|
|
2647
|
+
}
|
|
2648
|
+
|
|
2649
|
+
|
|
2650
|
+
@mixin kendo-elevation--styles() {
|
|
2651
|
+
:root {
|
|
2652
|
+
@each $level, $shadow in $kendo-elevation {
|
|
2653
|
+
--kendo-elevation-#{$level}: #{$shadow};
|
|
2654
|
+
}
|
|
2655
|
+
}
|
|
2656
|
+
}
|
|
2657
|
+
|
|
2658
|
+
// #endregion
|
|
2659
|
+
|
|
2660
|
+
// #endregion
|
|
2661
|
+
|
|
2536
2662
|
// Variables
|
|
2537
2663
|
// #region @import "../_variables.scss"; -> scss/_variables.scss
|
|
2538
2664
|
// #region @import "./core/functions/index.import.scss"; -> scss/core/functions/index.import.scss
|
|
@@ -2635,23 +2761,48 @@ $elevation: k-map-get( $theme, elevation ) !default;
|
|
|
2635
2761
|
/// Shadow for switch.
|
|
2636
2762
|
/// Equivalent to material elevation 1.
|
|
2637
2763
|
/// @group shadows
|
|
2638
|
-
|
|
2764
|
+
/// @deprecated Use the `$kendo-elevation` map instead.
|
|
2765
|
+
$box-shadow-depth-1: k-elevation(1) !default;
|
|
2639
2766
|
/// Shadow for resting state of button, card and other widgets.
|
|
2640
2767
|
/// Equivalent to material elevation 2.
|
|
2641
2768
|
/// @group shadows
|
|
2642
|
-
|
|
2769
|
+
/// @deprecated Use the `$kendo-elevation` map instead.
|
|
2770
|
+
$box-shadow-depth-2: k-elevation(2) !default;
|
|
2643
2771
|
/// Shadow for menu, popups and raised state of button and card.
|
|
2644
|
-
/// Equivalent to material elevation
|
|
2772
|
+
/// Equivalent to material elevation 3.
|
|
2645
2773
|
/// @group shadows
|
|
2646
|
-
|
|
2774
|
+
/// @deprecated Use the `$kendo-elevation` map instead.
|
|
2775
|
+
$box-shadow-depth-3: k-elevation(3) !default;
|
|
2647
2776
|
/// Shadow for drawers and other overlaying elements.
|
|
2777
|
+
/// Equivalent to material elevation 4.
|
|
2778
|
+
/// @group shadows
|
|
2779
|
+
/// @deprecated Use the `$kendo-elevation` map instead.
|
|
2780
|
+
$box-shadow-depth-4: k-elevation(4) !default;
|
|
2781
|
+
/// Shadow for window and dialog.
|
|
2782
|
+
/// Equivalent to material elevation 6.
|
|
2783
|
+
/// @group shadows
|
|
2784
|
+
/// @deprecated Use the `$kendo-elevation` map instead.
|
|
2785
|
+
$box-shadow-depth-5: k-elevation(5) !default;
|
|
2786
|
+
/// Shadow for window and dialog.
|
|
2787
|
+
/// Equivalent to material elevation 8.
|
|
2788
|
+
/// @group shadows
|
|
2789
|
+
/// @deprecated Use the `$kendo-elevation` map instead.
|
|
2790
|
+
$box-shadow-depth-6: k-elevation(6) !default;
|
|
2791
|
+
/// Shadow for window and dialog.
|
|
2792
|
+
/// Equivalent to material elevation 12.
|
|
2793
|
+
/// @group shadows
|
|
2794
|
+
/// @deprecated Use the `$kendo-elevation` map instead.
|
|
2795
|
+
$box-shadow-depth-7: k-elevation(7) !default;
|
|
2796
|
+
/// Shadow for window and dialog.
|
|
2648
2797
|
/// Equivalent to material elevation 16.
|
|
2649
2798
|
/// @group shadows
|
|
2650
|
-
|
|
2799
|
+
/// @deprecated Use the `$kendo-elevation` map instead.
|
|
2800
|
+
$box-shadow-depth-8: k-elevation(8) !default;
|
|
2651
2801
|
/// Shadow for window and dialog.
|
|
2652
2802
|
/// Equivalent to material elevation 24.
|
|
2653
2803
|
/// @group shadows
|
|
2654
|
-
|
|
2804
|
+
/// @deprecated Use the `$kendo-elevation` map instead.
|
|
2805
|
+
$box-shadow-depth-9: k-elevation(9) !default;
|
|
2655
2806
|
|
|
2656
2807
|
|
|
2657
2808
|
// Icons
|
|
@@ -2957,6 +3108,7 @@ $kendo-invalid-shadow: null !default;
|
|
|
2957
3108
|
// Loading
|
|
2958
3109
|
$kendo-loading-opacity: .3 !default;
|
|
2959
3110
|
$kendo-zindex-loading: 100 !default;
|
|
3111
|
+
|
|
2960
3112
|
// #endregion
|
|
2961
3113
|
|
|
2962
3114
|
// #region @import "@progress/kendo-theme-core/scss/index.import.scss"; -> node_modules/@progress/kendo-theme-core/scss/index.import.scss
|
|
@@ -4185,21 +4337,6 @@ $kendo-focus-outline: k-get-theme-color-var( neutral-130 ) !default;
|
|
|
4185
4337
|
|
|
4186
4338
|
$kendo-subtle-text: k-get-theme-color-var( neutral-130 ) !default;
|
|
4187
4339
|
|
|
4188
|
-
// Shadows
|
|
4189
|
-
|
|
4190
|
-
/// Shadow for cards and grid item thumbnails.
|
|
4191
|
-
/// Equivalent to fluent depth 4.
|
|
4192
|
-
$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;
|
|
4193
|
-
/// Shadow for command bars and dropdowns.
|
|
4194
|
-
/// Equivalent to fluent depth 8.
|
|
4195
|
-
$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;
|
|
4196
|
-
/// Shadow for teaching callouts and hover cards / tooltips.
|
|
4197
|
-
/// Equivalent to fluent depth 16.
|
|
4198
|
-
$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;
|
|
4199
|
-
/// Shadow for panels and pop up dialogs.
|
|
4200
|
-
/// Equivalent to fluent depth 64.
|
|
4201
|
-
$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;
|
|
4202
|
-
|
|
4203
4340
|
// Link
|
|
4204
4341
|
$kendo-link-text: k-get-theme-color-var( primary-100 ) !default;
|
|
4205
4342
|
$kendo-link-hover-text: k-get-theme-color-var( primary-120 ) !default;
|
|
@@ -4262,11 +4399,6 @@ $kendo-theme-colors: (
|
|
|
4262
4399
|
--kendo-component-text: #{$kendo-component-text};
|
|
4263
4400
|
--kendo-component-border: #{$kendo-component-border};
|
|
4264
4401
|
|
|
4265
|
-
--kendo-box-shadow-depth-1: #{$kendo-box-shadow-depth-1};
|
|
4266
|
-
--kendo-box-shadow-depth-2: #{$kendo-box-shadow-depth-2};
|
|
4267
|
-
--kendo-box-shadow-depth-3: #{$kendo-box-shadow-depth-3};
|
|
4268
|
-
--kendo-box-shadow-depth-4: #{$kendo-box-shadow-depth-4};
|
|
4269
|
-
|
|
4270
4402
|
--kendo-link-text: #{$kendo-link-text};
|
|
4271
4403
|
--kendo-link-hover-text: #{$kendo-link-hover-text};
|
|
4272
4404
|
|
|
@@ -5723,6 +5855,9 @@ $_imported: () !default;
|
|
|
5723
5855
|
@include kendo-core--styles--selection();
|
|
5724
5856
|
}
|
|
5725
5857
|
|
|
5858
|
+
// #endregion
|
|
5859
|
+
// #region @import "./elevation/index.import.scss"; -> node_modules/@progress/kendo-theme-core/scss/elevation/index.import.scss
|
|
5860
|
+
// File already imported_once. Skipping output.
|
|
5726
5861
|
// #endregion
|
|
5727
5862
|
// #region @import "./_variables.scss"; -> node_modules/@progress/kendo-theme-core/scss/_variables.scss
|
|
5728
5863
|
// #region @import "./functions/index.import.scss"; -> node_modules/@progress/kendo-theme-core/scss/functions/index.import.scss
|
|
@@ -5814,6 +5949,9 @@ $kendo-zindex-loading: 100 !default;
|
|
|
5814
5949
|
// Expose
|
|
5815
5950
|
@include exports("kendo-core-styles") {
|
|
5816
5951
|
@include kendo-core--styles();
|
|
5952
|
+
|
|
5953
|
+
// Elevation System
|
|
5954
|
+
@include kendo-elevation--styles();
|
|
5817
5955
|
}
|
|
5818
5956
|
|
|
5819
5957
|
// #endregion
|
|
@@ -6739,6 +6877,51 @@ $kendo-zindex-loading: 100 !default;
|
|
|
6739
6877
|
|
|
6740
6878
|
// #endregion
|
|
6741
6879
|
|
|
6880
|
+
// #endregion
|
|
6881
|
+
// #region @import "./_indicators.scss"; -> scss/common/_indicators.scss
|
|
6882
|
+
// #region @import "@progress/kendo-theme-default/scss/common/_indicators.scss"; -> node_modules/@progress/kendo-theme-default/scss/common/_indicators.scss
|
|
6883
|
+
@include exports( "common/indicators/current-time" ) {
|
|
6884
|
+
|
|
6885
|
+
$kendo-current-time-width: 1px !default;
|
|
6886
|
+
$kendo-current-time-color: #ff0000 !default;
|
|
6887
|
+
|
|
6888
|
+
// Layout
|
|
6889
|
+
.k-current-time {
|
|
6890
|
+
width: $kendo-current-time-width;
|
|
6891
|
+
position: absolute;
|
|
6892
|
+
|
|
6893
|
+
&.k-current-time-arrow-left,
|
|
6894
|
+
&.k-current-time-arrow-right,
|
|
6895
|
+
&.k-current-time-arrow-down {
|
|
6896
|
+
width: 0;
|
|
6897
|
+
height: 0;
|
|
6898
|
+
background: transparent;
|
|
6899
|
+
border: 4px solid transparent;
|
|
6900
|
+
}
|
|
6901
|
+
}
|
|
6902
|
+
|
|
6903
|
+
|
|
6904
|
+
// Theme
|
|
6905
|
+
.k-current-time {
|
|
6906
|
+
background: $kendo-current-time-color;
|
|
6907
|
+
|
|
6908
|
+
&.k-current-time-arrow-left {
|
|
6909
|
+
border-right-color: $kendo-current-time-color;
|
|
6910
|
+
}
|
|
6911
|
+
|
|
6912
|
+
&.k-current-time-arrow-right {
|
|
6913
|
+
border-left-color: $kendo-current-time-color;
|
|
6914
|
+
}
|
|
6915
|
+
|
|
6916
|
+
&.k-current-time-arrow-down {
|
|
6917
|
+
border-top-color: $kendo-current-time-color;
|
|
6918
|
+
}
|
|
6919
|
+
}
|
|
6920
|
+
|
|
6921
|
+
}
|
|
6922
|
+
|
|
6923
|
+
// #endregion
|
|
6924
|
+
|
|
6742
6925
|
// #endregion
|
|
6743
6926
|
// #region @import "./_resizing.scss"; -> scss/common/_resizing.scss
|
|
6744
6927
|
// #region @import "@progress/kendo-theme-default/scss/common/_resizing.scss"; -> node_modules/@progress/kendo-theme-default/scss/common/_resizing.scss
|
|
@@ -14772,6 +14955,21 @@ $kendo-utils: (
|
|
|
14772
14955
|
|
|
14773
14956
|
// #endregion
|
|
14774
14957
|
|
|
14958
|
+
// #region @import "./elevation/index.import.scss"; -> node_modules/@progress/kendo-theme-utils/scss/elevation/index.import.scss
|
|
14959
|
+
// #region @import "@progress/kendo-theme-core/scss/elevation/index.import.scss"; -> node_modules/@progress/kendo-theme-core/scss/elevation/index.import.scss
|
|
14960
|
+
// File already imported_once. Skipping output.
|
|
14961
|
+
// #endregion
|
|
14962
|
+
|
|
14963
|
+
@mixin kendo-utils--elevation {
|
|
14964
|
+
@each $level, $elevation in $kendo-elevation {
|
|
14965
|
+
.k-elevation-#{$level} {
|
|
14966
|
+
box-shadow: $elevation;
|
|
14967
|
+
}
|
|
14968
|
+
}
|
|
14969
|
+
}
|
|
14970
|
+
|
|
14971
|
+
// #endregion
|
|
14972
|
+
|
|
14775
14973
|
|
|
14776
14974
|
// Mixin for all styles
|
|
14777
14975
|
@mixin kendo-utils() {
|
|
@@ -14789,6 +14987,8 @@ $kendo-utils: (
|
|
|
14789
14987
|
@include kendo-utils--transform();
|
|
14790
14988
|
@include kendo-utils--interactivity();
|
|
14791
14989
|
@include kendo-utils--svg();
|
|
14990
|
+
|
|
14991
|
+
@include kendo-utils--elevation();
|
|
14792
14992
|
}
|
|
14793
14993
|
|
|
14794
14994
|
// #endregion
|
|
@@ -18737,7 +18937,7 @@ $kendo-popup-text: $kendo-component-text !default;
|
|
|
18737
18937
|
$kendo-popup-border: $kendo-component-border !default;
|
|
18738
18938
|
/// Box shadow of the popup.
|
|
18739
18939
|
/// @group popup
|
|
18740
|
-
$kendo-popup-shadow:
|
|
18940
|
+
$kendo-popup-shadow: $box-shadow-depth-4 !default;
|
|
18741
18941
|
|
|
18742
18942
|
// #endregion
|
|
18743
18943
|
// #region @import "./_layout.scss"; -> scss/popup/_layout.scss
|
|
@@ -20499,7 +20699,7 @@ $kendo-button-active-border: null !default;
|
|
|
20499
20699
|
$kendo-button-active-gradient: null !default;
|
|
20500
20700
|
/// The base shadow of the active Button.
|
|
20501
20701
|
/// @group button
|
|
20502
|
-
$kendo-button-active-shadow: $box-shadow-depth-
|
|
20702
|
+
$kendo-button-active-shadow: $box-shadow-depth-6 !default;
|
|
20503
20703
|
|
|
20504
20704
|
/// The base background color of the selected Button.
|
|
20505
20705
|
/// @group button
|
|
@@ -24268,7 +24468,7 @@ $kendo-toolbar-border: null !default;
|
|
|
24268
24468
|
$kendo-toolbar-gradient: null !default;
|
|
24269
24469
|
/// The box shadow of the Toolbar.
|
|
24270
24470
|
/// @group toolbar
|
|
24271
|
-
$kendo-toolbar-shadow: $box-shadow-depth-
|
|
24471
|
+
$kendo-toolbar-shadow: $box-shadow-depth-4 !default;
|
|
24272
24472
|
|
|
24273
24473
|
/// The color of the separator border of the Toolbar.
|
|
24274
24474
|
/// @group toolbar
|
|
@@ -25439,6 +25639,8 @@ $kendo-tooltip-bg: material-color( gray, 700, .9 ) !default;
|
|
|
25439
25639
|
$kendo-tooltip-text: get-base-contrast( gray, 700 ) !default;
|
|
25440
25640
|
$kendo-tooltip-border: $kendo-tooltip-bg !default;
|
|
25441
25641
|
|
|
25642
|
+
$kendo-tooltip-shadow: $box-shadow-depth-2 !default;
|
|
25643
|
+
|
|
25442
25644
|
$kendo-tooltip-primary-bg: $kendo-color-primary !default;
|
|
25443
25645
|
$kendo-tooltip-primary-text: k-contrast-color( $kendo-tooltip-primary-bg ) !default;
|
|
25444
25646
|
$kendo-tooltip-primary-border: $kendo-tooltip-primary-bg !default;
|
|
@@ -25540,10 +25742,10 @@ $kendo-window-text: $kendo-component-text !default;
|
|
|
25540
25742
|
$kendo-window-border: $kendo-component-border !default;
|
|
25541
25743
|
/// The box shadow of the Window.
|
|
25542
25744
|
/// @group window
|
|
25543
|
-
$kendo-window-shadow: $box-shadow-depth-
|
|
25745
|
+
$kendo-window-shadow: $box-shadow-depth-8 !default;
|
|
25544
25746
|
/// The box shadow of the focused Window.
|
|
25545
25747
|
/// @group window
|
|
25546
|
-
$kendo-window-focus-shadow: $box-shadow-depth-
|
|
25748
|
+
$kendo-window-focus-shadow: $box-shadow-depth-9 !default;
|
|
25547
25749
|
|
|
25548
25750
|
/// The background color of the Window titlebar.
|
|
25549
25751
|
/// @group window
|
|
@@ -26457,7 +26659,7 @@ $_kendo-module-meta: (
|
|
|
26457
26659
|
|
|
26458
26660
|
.k-tooltip-wrapper {
|
|
26459
26661
|
.k-tooltip {
|
|
26460
|
-
box-shadow: $kendo-
|
|
26662
|
+
box-shadow: $kendo-tooltip-shadow;
|
|
26461
26663
|
}
|
|
26462
26664
|
}
|
|
26463
26665
|
|
|
@@ -31501,6 +31703,7 @@ $kendo-calendar-sizes: (
|
|
|
31501
31703
|
);
|
|
31502
31704
|
|
|
31503
31705
|
|
|
31706
|
+
// TODO: do we even use this?
|
|
31504
31707
|
// Header / footer
|
|
31505
31708
|
.k-header {
|
|
31506
31709
|
@include fill(
|
|
@@ -32978,7 +33181,7 @@ $kendo-color-gradient-border: $kendo-component-border !default;
|
|
|
32978
33181
|
$kendo-color-gradient-focus-border: $kendo-hover-border !default;
|
|
32979
33182
|
/// The box shadow of the focused ColorGradient.
|
|
32980
33183
|
/// @group cologradient
|
|
32981
|
-
$kendo-color-gradient-focus-shadow: $box-shadow-depth-
|
|
33184
|
+
$kendo-color-gradient-focus-shadow: $box-shadow-depth-3 !default;
|
|
32982
33185
|
|
|
32983
33186
|
/// The border radius of the ColorGradient canvas.
|
|
32984
33187
|
/// @group cologradient
|
|
@@ -33016,6 +33219,9 @@ $kendo-color-gradient-draghandle-height: 14px !default;
|
|
|
33016
33219
|
/// The width of the border around the ColorGradient canvas drag handle.
|
|
33017
33220
|
/// @group cologradient
|
|
33018
33221
|
$kendo-color-gradient-draghandle-border-width: 1px !default;
|
|
33222
|
+
/// The width of the outline around the ColorGradient canvas drag handle.
|
|
33223
|
+
/// @group cologradient
|
|
33224
|
+
$kendo-color-gradient-draghandle-outline-width: 1px !default;
|
|
33019
33225
|
/// The border radius of the ColorGradient canvas drag handle.
|
|
33020
33226
|
/// @group cologradient
|
|
33021
33227
|
$kendo-color-gradient-draghandle-border-radius: 50% !default;
|
|
@@ -33028,15 +33234,18 @@ $kendo-color-gradient-draghandle-bg: transparent !default;
|
|
|
33028
33234
|
/// The color of the border around the ColorGradient canvas drag handle.
|
|
33029
33235
|
/// @group cologradient
|
|
33030
33236
|
$kendo-color-gradient-draghandle-border: rgba( white, .8 ) !default;
|
|
33031
|
-
/// The
|
|
33237
|
+
/// The color of the outline around the ColorGradient canvas drag handle.
|
|
33032
33238
|
/// @group cologradient
|
|
33033
|
-
$kendo-color-gradient-draghandle-shadow:
|
|
33034
|
-
/// The
|
|
33239
|
+
$kendo-color-gradient-draghandle-shadow: rgba( $kendo-color-black, .5) !default;
|
|
33240
|
+
/// The focus color of the outline around the ColorGradient canvas drag handle.
|
|
33035
33241
|
/// @group cologradient
|
|
33036
|
-
$kendo-color-gradient-draghandle-focus-shadow:
|
|
33037
|
-
/// The
|
|
33242
|
+
$kendo-color-gradient-draghandle-focus-shadow: $kendo-color-black !default;
|
|
33243
|
+
/// The outline color of the outline around the ColorGradient canvas drag handle.
|
|
33038
33244
|
/// @group cologradient
|
|
33039
|
-
$kendo-color-gradient-draghandle-hover-shadow: $kendo-color-
|
|
33245
|
+
$kendo-color-gradient-draghandle-hover-shadow: $kendo-color-black !default;
|
|
33246
|
+
/// The box shadow of the ColorGradient canvas drag handle.
|
|
33247
|
+
/// @group cologradient
|
|
33248
|
+
$kendo-color-gradient-draghandle-shadow: k-elevation(2) !default;
|
|
33040
33249
|
|
|
33041
33250
|
/// The vertical margin of the ColorGradient canvas drag handle.
|
|
33042
33251
|
/// @group cologradient
|
|
@@ -33064,6 +33273,7 @@ $kendo-color-gradient-contrast-ratio-font-weight: $kendo-font-weight-medium !def
|
|
|
33064
33273
|
/// The spacing between the items in the ColorGradient contrast tool.
|
|
33065
33274
|
/// @group cologradient
|
|
33066
33275
|
$kendo-color-gradient-contrast-spacer: k-map-get( $kendo-spacing, 2 ) !default;
|
|
33276
|
+
|
|
33067
33277
|
// #endregion
|
|
33068
33278
|
// #region @import "./_layout.scss"; -> scss/colorgradient/_layout.scss
|
|
33069
33279
|
// #region @import "@progress/kendo-theme-default/scss/colorgradient/_layout.scss"; -> node_modules/@progress/kendo-theme-default/scss/colorgradient/_layout.scss
|
|
@@ -33136,6 +33346,8 @@ $kendo-color-gradient-contrast-spacer: k-map-get( $kendo-spacing, 2 ) !default;
|
|
|
33136
33346
|
height: $kendo-color-gradient-draghandle-height;
|
|
33137
33347
|
border-width: $kendo-color-gradient-draghandle-border-width;
|
|
33138
33348
|
border-style: solid;
|
|
33349
|
+
outline-width: $kendo-color-gradient-draghandle-outline-width;
|
|
33350
|
+
outline-style: solid;
|
|
33139
33351
|
box-sizing: border-box;
|
|
33140
33352
|
}
|
|
33141
33353
|
|
|
@@ -33301,12 +33513,14 @@ $kendo-color-gradient-contrast-spacer: k-map-get( $kendo-spacing, 2 ) !default;
|
|
|
33301
33513
|
$kendo-color-gradient-draghandle-bg,
|
|
33302
33514
|
$kendo-color-gradient-draghandle-border
|
|
33303
33515
|
);
|
|
33516
|
+
outline-color: $kendo-color-gradient-draghandle-focus-shadow;
|
|
33304
33517
|
@include box-shadow( $kendo-color-gradient-draghandle-shadow );
|
|
33305
33518
|
|
|
33306
33519
|
&:focus,
|
|
33307
33520
|
&.k-focus {
|
|
33308
33521
|
@include fill( $bg: transparent, $border: $kendo-color-white );
|
|
33309
|
-
|
|
33522
|
+
outline-color: $kendo-color-gradient-draghandle-focus-shadow;
|
|
33523
|
+
@include focus-indicator( $kendo-color-gradient-draghandle-shadow );
|
|
33310
33524
|
}
|
|
33311
33525
|
|
|
33312
33526
|
&:hover,
|
|
@@ -33314,7 +33528,7 @@ $kendo-color-gradient-contrast-spacer: k-map-get( $kendo-spacing, 2 ) !default;
|
|
|
33314
33528
|
&.k-active,
|
|
33315
33529
|
&:active {
|
|
33316
33530
|
@include fill( $bg: transparent, $border: $kendo-color-white );
|
|
33317
|
-
|
|
33531
|
+
outline-color: $kendo-color-gradient-draghandle-hover-shadow;
|
|
33318
33532
|
}
|
|
33319
33533
|
}
|
|
33320
33534
|
|
|
@@ -33469,7 +33683,7 @@ $kendo-color-editor-border: $kendo-component-border !default;
|
|
|
33469
33683
|
$kendo-color-editor-focus-border: $kendo-hover-border !default;
|
|
33470
33684
|
/// The box shadow of the focused ColorEditor.
|
|
33471
33685
|
/// @group coloreditor
|
|
33472
|
-
$kendo-color-editor-focus-shadow: $box-shadow-depth-
|
|
33686
|
+
$kendo-color-editor-focus-shadow: $box-shadow-depth-3 !default;
|
|
33473
33687
|
|
|
33474
33688
|
/// The vertical padding of the ColorEditor header.
|
|
33475
33689
|
/// @group coloreditor
|
|
@@ -33510,6 +33724,7 @@ $kendo-color-editor-color-gradient-focus-outline: 2px !default;
|
|
|
33510
33724
|
/// The outline offset of the focused ColorGradient.
|
|
33511
33725
|
/// @group coloreditor
|
|
33512
33726
|
$kendo-color-editor-color-gradient-focus-outline-offset: 2px !default;
|
|
33727
|
+
|
|
33513
33728
|
// #endregion
|
|
33514
33729
|
// #region @import "./_layout.scss"; -> scss/coloreditor/_layout.scss
|
|
33515
33730
|
// #region @import "@progress/kendo-theme-default/scss/coloreditor/_layout.scss"; -> node_modules/@progress/kendo-theme-default/scss/coloreditor/_layout.scss
|
|
@@ -36053,14 +36268,14 @@ $kendo-rating-icon-focus-selected-shadow: 0 2px 4px rgba( black, .1) !default;
|
|
|
36053
36268
|
text-shadow: $kendo-rating-icon-focus-shadow;
|
|
36054
36269
|
}
|
|
36055
36270
|
> .k-svg-icon {
|
|
36056
|
-
filter:
|
|
36271
|
+
filter: k-shadow-filter($kendo-rating-icon-focus-selected-shadow);
|
|
36057
36272
|
}
|
|
36058
36273
|
|
|
36059
36274
|
&.k-selected > .k-icon {
|
|
36060
36275
|
text-shadow: $kendo-rating-icon-focus-selected-shadow;
|
|
36061
36276
|
}
|
|
36062
36277
|
&.k-selected > .k-svg-icon {
|
|
36063
|
-
filter:
|
|
36278
|
+
filter: k-shadow-filter($kendo-rating-icon-focus-selected-shadow);
|
|
36064
36279
|
}
|
|
36065
36280
|
}
|
|
36066
36281
|
}
|
|
@@ -37689,10 +37904,11 @@ $kendo-appbar-dark-text: k-contrast-color( $kendo-color-dark ) !default;
|
|
|
37689
37904
|
|
|
37690
37905
|
/// The box shadow of the AppBar.
|
|
37691
37906
|
/// @group appbar
|
|
37692
|
-
$kendo-appbar-box-shadow:
|
|
37907
|
+
$kendo-appbar-box-shadow: $box-shadow-depth-4 !default;
|
|
37693
37908
|
/// The box shadow of the AppBar with bottom position.
|
|
37694
37909
|
/// @group appbar
|
|
37695
|
-
$kendo-appbar-bottom-box-shadow:
|
|
37910
|
+
$kendo-appbar-bottom-box-shadow: $kendo-appbar-box-shadow !default;
|
|
37911
|
+
|
|
37696
37912
|
// #endregion
|
|
37697
37913
|
// #region @import "./_layout.scss"; -> scss/appbar/_layout.scss
|
|
37698
37914
|
// #region @import "@progress/kendo-theme-default/scss/appbar/_layout.scss"; -> node_modules/@progress/kendo-theme-default/scss/appbar/_layout.scss
|
|
@@ -38043,13 +38259,13 @@ $kendo-fab-sizes: (
|
|
|
38043
38259
|
|
|
38044
38260
|
/// The base shadow of the FAB.
|
|
38045
38261
|
/// @group floating-action-button
|
|
38046
|
-
$kendo-fab-shadow:
|
|
38262
|
+
$kendo-fab-shadow: $box-shadow-depth-5 !default;
|
|
38047
38263
|
/// The shadow of the disabled FAB.
|
|
38048
38264
|
/// @group floating-action-button
|
|
38049
|
-
$kendo-fab-disabled-shadow:
|
|
38265
|
+
$kendo-fab-disabled-shadow: $box-shadow-depth-5 !default;
|
|
38050
38266
|
/// The shadow of the active FAB.
|
|
38051
38267
|
/// @group floating-action-button
|
|
38052
|
-
$kendo-fab-active-shadow:
|
|
38268
|
+
$kendo-fab-active-shadow: $box-shadow-depth-7 !default;
|
|
38053
38269
|
|
|
38054
38270
|
/// The base text color of the FAB item.
|
|
38055
38271
|
/// @group floating-action-button
|
|
@@ -38583,7 +38799,7 @@ $kendo-actionsheet-line-height: k-math-div( 20, 14 ) !default;
|
|
|
38583
38799
|
$kendo-actionsheet-bg: $kendo-component-bg !default;
|
|
38584
38800
|
$kendo-actionsheet-text: $kendo-component-text !default;
|
|
38585
38801
|
$kendo-actionsheet-border: $kendo-component-border !default;
|
|
38586
|
-
$kendo-actionsheet-shadow: $box-shadow-depth-
|
|
38802
|
+
$kendo-actionsheet-shadow: $box-shadow-depth-7 !default;
|
|
38587
38803
|
|
|
38588
38804
|
|
|
38589
38805
|
// Actionsheet header
|
|
@@ -40489,12 +40705,12 @@ $kendo-card-deck-gap: k-map-get( $kendo-spacing, 4 ) !default;
|
|
|
40489
40705
|
$kendo-card-bg: $kendo-component-bg !default;
|
|
40490
40706
|
$kendo-card-text: $kendo-component-text !default;
|
|
40491
40707
|
$kendo-card-border: $kendo-component-border !default;
|
|
40492
|
-
$kendo-card-shadow: $box-shadow-depth-
|
|
40708
|
+
$kendo-card-shadow: $box-shadow-depth-1 !default;
|
|
40493
40709
|
|
|
40494
40710
|
$kendo-card-focus-bg: null !default;
|
|
40495
40711
|
$kendo-card-focus-text: null !default;
|
|
40496
40712
|
$kendo-card-focus-border: null !default;
|
|
40497
|
-
$kendo-card-focus-shadow: $box-shadow-depth-
|
|
40713
|
+
$kendo-card-focus-shadow: $box-shadow-depth-3 !default;
|
|
40498
40714
|
|
|
40499
40715
|
$kendo-card-header-padding-x: $kendo-card-padding-x !default;
|
|
40500
40716
|
$kendo-card-header-padding-y: $kendo-card-padding-y !default;
|
|
@@ -41575,7 +41791,7 @@ $kendo-bottom-nav-item-gap: 0 k-map-get( $kendo-spacing, 1 ) !default;
|
|
|
41575
41791
|
|
|
41576
41792
|
/// The box shadow of the BottomNavigation.
|
|
41577
41793
|
/// @group bottom-navigation
|
|
41578
|
-
$kendo-bottom-nav-shadow:
|
|
41794
|
+
$kendo-bottom-nav-shadow: $box-shadow-depth-4 !default;
|
|
41579
41795
|
|
|
41580
41796
|
/// The text color of the flat BottomNavigation.
|
|
41581
41797
|
/// @group bottom-navigation
|
|
@@ -41586,6 +41802,7 @@ $kendo-bottom-nav-flat-bg: $kendo-component-bg !default;
|
|
|
41586
41802
|
/// The border color of the flat BottomNavigation.
|
|
41587
41803
|
/// @group bottom-navigation
|
|
41588
41804
|
$kendo-bottom-nav-flat-border: $kendo-component-border !default;
|
|
41805
|
+
|
|
41589
41806
|
// #endregion
|
|
41590
41807
|
// #region @import "./_layout.scss"; -> scss/bottom-navigation/_layout.scss
|
|
41591
41808
|
// #region @import "@progress/kendo-theme-default/scss/bottom-navigation/_layout.scss"; -> node_modules/@progress/kendo-theme-default/scss/bottom-navigation/_layout.scss
|
|
@@ -41624,6 +41841,7 @@ $kendo-bottom-nav-flat-border: $kendo-component-border !default;
|
|
|
41624
41841
|
border-width: $kendo-bottom-nav-border-width;
|
|
41625
41842
|
}
|
|
41626
41843
|
|
|
41844
|
+
// TODO: do we even use this?
|
|
41627
41845
|
.k-bottom-nav-shadow {
|
|
41628
41846
|
box-shadow: $kendo-bottom-nav-shadow;
|
|
41629
41847
|
}
|
|
@@ -43623,7 +43841,7 @@ $kendo-tabstrip-item-selected-gradient: null !default;
|
|
|
43623
43841
|
|
|
43624
43842
|
$kendo-tabstrip-item-focus-shadow: $kendo-list-item-focus-shadow !default;
|
|
43625
43843
|
|
|
43626
|
-
$kendo-tabstrip-item-dragging-shadow:
|
|
43844
|
+
$kendo-tabstrip-item-dragging-shadow: $box-shadow-depth-3 !default;
|
|
43627
43845
|
|
|
43628
43846
|
$kendo-tabstrip-item-disabled-bg: null !default;
|
|
43629
43847
|
$kendo-tabstrip-item-disabled-text: k-map-get( $theme, disabled-text ) !default;
|
|
@@ -51580,10 +51798,10 @@ $kendo-pivotgrid-configurator-header-bg: null !default;
|
|
|
51580
51798
|
$kendo-pivotgrid-configurator-header-text: $kendo-component-header-text !default;
|
|
51581
51799
|
$kendo-pivotgrid-configurator-header-border: null !default;
|
|
51582
51800
|
|
|
51583
|
-
$kendo-pivotgrid-configurator-end-shadow: -
|
|
51584
|
-
$kendo-pivotgrid-configurator-start-shadow:
|
|
51585
|
-
$kendo-pivotgrid-configurator-top-shadow:
|
|
51586
|
-
$kendo-pivotgrid-configurator-bottom-shadow:
|
|
51801
|
+
$kendo-pivotgrid-configurator-end-shadow: $box-shadow-depth-3 !default;
|
|
51802
|
+
$kendo-pivotgrid-configurator-start-shadow: $box-shadow-depth-3 !default;
|
|
51803
|
+
$kendo-pivotgrid-configurator-top-shadow: $box-shadow-depth-3 !default;
|
|
51804
|
+
$kendo-pivotgrid-configurator-bottom-shadow: $box-shadow-depth-3 !default;
|
|
51587
51805
|
|
|
51588
51806
|
$kendo-pivotgrid-configurator-button-padding-x: k-map-get( $kendo-spacing, 1 ) !default;
|
|
51589
51807
|
$kendo-pivotgrid-configurator-button-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
@@ -56959,8 +57177,6 @@ $kendo-scheduler-cell-height: $kendo-line-height-md * 1rem !default;
|
|
|
56959
57177
|
$kendo-scheduler-datecolumn-width: 12rem !default;
|
|
56960
57178
|
$kendo-scheduler-timecolumn-width: 11rem !default;
|
|
56961
57179
|
|
|
56962
|
-
$kendo-scheduler-current-time-color: #ff0000 !default;
|
|
56963
|
-
|
|
56964
57180
|
$kendo-scheduler-nonwork-bg: k-try-shade( $kendo-scheduler-bg, .5 ) !default;
|
|
56965
57181
|
$kendo-scheduler-nonwork-text: null !default;
|
|
56966
57182
|
|
|
@@ -56988,7 +57204,7 @@ $kendo-scheduler-tooltip-border-width: 0 !default;
|
|
|
56988
57204
|
$kendo-scheduler-tooltip-bg: $kendo-color-primary-contrast !default;
|
|
56989
57205
|
$kendo-scheduler-tooltip-text: $kendo-base-text !default;
|
|
56990
57206
|
$kendo-scheduler-tooltip-border: null !default;
|
|
56991
|
-
$kendo-scheduler-tooltip-shadow:
|
|
57207
|
+
$kendo-scheduler-tooltip-shadow: $box-shadow-depth-2 !default;
|
|
56992
57208
|
|
|
56993
57209
|
$kendo-scheduler-tooltip-title-margin-y: k-map-get( $kendo-spacing, 2 ) !default;
|
|
56994
57210
|
$kendo-scheduler-tooltip-month-font-size: $kendo-font-size-sm !default;
|
|
@@ -57545,20 +57761,6 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
|
|
|
57545
57761
|
}
|
|
57546
57762
|
}
|
|
57547
57763
|
|
|
57548
|
-
// Current time
|
|
57549
|
-
.k-current-time {
|
|
57550
|
-
position: absolute;
|
|
57551
|
-
|
|
57552
|
-
&.k-current-time-arrow-left,
|
|
57553
|
-
&.k-current-time-arrow-right,
|
|
57554
|
-
&.k-current-time-arrow-down {
|
|
57555
|
-
width: 0;
|
|
57556
|
-
height: 0;
|
|
57557
|
-
background: transparent;
|
|
57558
|
-
border: 4px solid transparent;
|
|
57559
|
-
}
|
|
57560
|
-
}
|
|
57561
|
-
|
|
57562
57764
|
// Draging hint
|
|
57563
57765
|
.k-event-drag-hint {
|
|
57564
57766
|
opacity: .5;
|
|
@@ -58239,23 +58441,6 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
|
|
|
58239
58441
|
);
|
|
58240
58442
|
}
|
|
58241
58443
|
|
|
58242
|
-
// Current time
|
|
58243
|
-
.k-current-time {
|
|
58244
|
-
background: $kendo-scheduler-current-time-color;
|
|
58245
|
-
|
|
58246
|
-
&.k-current-time-arrow-left {
|
|
58247
|
-
border-right-color: $kendo-scheduler-current-time-color;
|
|
58248
|
-
}
|
|
58249
|
-
|
|
58250
|
-
&.k-current-time-arrow-right {
|
|
58251
|
-
border-left-color: $kendo-scheduler-current-time-color;
|
|
58252
|
-
}
|
|
58253
|
-
|
|
58254
|
-
&.k-current-time-arrow-down {
|
|
58255
|
-
border-top-color: $kendo-scheduler-current-time-color;
|
|
58256
|
-
}
|
|
58257
|
-
}
|
|
58258
|
-
|
|
58259
58444
|
// Header and footer
|
|
58260
58445
|
.k-scheduler-toolbar {
|
|
58261
58446
|
@include fill(
|
|
@@ -58639,16 +58824,16 @@ $kendo-chat-border: $kendo-component-border !default;
|
|
|
58639
58824
|
$kendo-chat-bubble-bg: $kendo-component-bg !default;
|
|
58640
58825
|
$kendo-chat-bubble-text: $kendo-component-text !default;
|
|
58641
58826
|
$kendo-chat-bubble-border: $kendo-chat-bubble-bg !default;
|
|
58642
|
-
$kendo-chat-bubble-shadow:
|
|
58643
|
-
$kendo-chat-bubble-hover-shadow:
|
|
58644
|
-
$kendo-chat-bubble-selected-shadow:
|
|
58827
|
+
$kendo-chat-bubble-shadow: $box-shadow-depth-1 !default;
|
|
58828
|
+
$kendo-chat-bubble-hover-shadow: $box-shadow-depth-2 !default;
|
|
58829
|
+
$kendo-chat-bubble-selected-shadow: $box-shadow-depth-3 !default;
|
|
58645
58830
|
|
|
58646
58831
|
$kendo-chat-alt-bubble-bg: $kendo-color-primary !default;
|
|
58647
58832
|
$kendo-chat-alt-bubble-text: k-contrast-color( $kendo-chat-alt-bubble-bg ) !default;
|
|
58648
58833
|
$kendo-chat-alt-bubble-border: $kendo-chat-alt-bubble-bg !default;
|
|
58649
|
-
$kendo-chat-alt-bubble-shadow:
|
|
58650
|
-
$kendo-chat-alt-bubble-hover-shadow:
|
|
58651
|
-
$kendo-chat-alt-bubble-selected-shadow:
|
|
58834
|
+
$kendo-chat-alt-bubble-shadow: $box-shadow-depth-1 !default;
|
|
58835
|
+
$kendo-chat-alt-bubble-hover-shadow: $box-shadow-depth-2 !default;
|
|
58836
|
+
$kendo-chat-alt-bubble-selected-shadow: $box-shadow-depth-3 !default;
|
|
58652
58837
|
|
|
58653
58838
|
$kendo-chat-quick-reply-bg: transparent !default;
|
|
58654
58839
|
$kendo-chat-quick-reply-text: $kendo-color-primary !default;
|
|
@@ -60265,7 +60450,7 @@ $kendo-pdf-viewer-page-spacing: 30px !default;
|
|
|
60265
60450
|
$kendo-pdf-viewer-page-bg: white !default;
|
|
60266
60451
|
$kendo-pdf-viewer-page-text: $kendo-component-text !default;
|
|
60267
60452
|
$kendo-pdf-viewer-page-border: $kendo-component-border !default;
|
|
60268
|
-
$kendo-pdf-viewer-page-shadow:
|
|
60453
|
+
$kendo-pdf-viewer-page-shadow: $box-shadow-depth-3 !default;
|
|
60269
60454
|
|
|
60270
60455
|
$kendo-pdf-viewer-search-panel-padding-x: $kendo-toolbar-md-padding-x !default;
|
|
60271
60456
|
$kendo-pdf-viewer-search-panel-padding-y: calc( #{$kendo-toolbar-md-padding-x} * 2 ) !default;
|