@progress/kendo-theme-default 6.8.0-dev.1 → 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 +410 -133
- package/dist/all.scss +676 -138
- package/dist/meta/sassdoc-data.json +16698 -14694
- package/dist/meta/sassdoc-raw-data.json +1041 -116
- package/dist/meta/variables.json +240 -104
- 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/dock-manager/_index.scss +38 -0
- package/scss/dock-manager/_layout.scss +230 -0
- package/scss/dock-manager/_theme.scss +47 -0
- package/scss/dock-manager/_variables.scss +113 -0
- package/scss/fab/_variables.scss +2 -2
- package/scss/index.scss +4 -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/_layout.scss +15 -33
- package/scss/pdf-viewer/_theme.scss +0 -4
- package/scss/pdf-viewer/_variables.scss +4 -5
- 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/splitter/_layout.scss +1 -0
- 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
|
|
|
@@ -3916,6 +3897,7 @@ $kendo-components: (
|
|
|
3916
3897
|
"panelbar",
|
|
3917
3898
|
"splitter",
|
|
3918
3899
|
"tile-layout",
|
|
3900
|
+
"dock-manager",
|
|
3919
3901
|
|
|
3920
3902
|
// Data management
|
|
3921
3903
|
"grid",
|
|
@@ -4088,6 +4070,11 @@ $_kendo-dependencies: (
|
|
|
4088
4070
|
"treeview"
|
|
4089
4071
|
),
|
|
4090
4072
|
dropzone: (),
|
|
4073
|
+
dock-manager: (
|
|
4074
|
+
"splitter",
|
|
4075
|
+
"toolbar",
|
|
4076
|
+
"tabstrip"
|
|
4077
|
+
),
|
|
4091
4078
|
editor: (
|
|
4092
4079
|
"button",
|
|
4093
4080
|
"checkbox",
|
|
@@ -4941,6 +4928,75 @@ $_imported: () !default;
|
|
|
4941
4928
|
@include kendo-core--styles--selection();
|
|
4942
4929
|
}
|
|
4943
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
|
+
|
|
4944
5000
|
// #endregion
|
|
4945
5001
|
// #region @import "./_variables.scss"; -> node_modules/@progress/kendo-theme-core/scss/_variables.scss
|
|
4946
5002
|
// #region @import "./functions/index.import.scss"; -> node_modules/@progress/kendo-theme-core/scss/functions/index.import.scss
|
|
@@ -5032,6 +5088,9 @@ $kendo-zindex-loading: 100 !default;
|
|
|
5032
5088
|
// Expose
|
|
5033
5089
|
@include exports("kendo-core-styles") {
|
|
5034
5090
|
@include kendo-core--styles();
|
|
5091
|
+
|
|
5092
|
+
// Elevation System
|
|
5093
|
+
@include kendo-elevation--styles();
|
|
5035
5094
|
}
|
|
5036
5095
|
|
|
5037
5096
|
// #endregion
|
|
@@ -5951,6 +6010,48 @@ $kendo-zindex-loading: 100 !default;
|
|
|
5951
6010
|
}
|
|
5952
6011
|
}
|
|
5953
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
|
+
|
|
5954
6055
|
// #endregion
|
|
5955
6056
|
// #region @import "./_resizing.scss"; -> scss/common/_resizing.scss
|
|
5956
6057
|
@include exports( "common/resizing" ) {
|
|
@@ -13978,6 +14079,21 @@ $kendo-utils: (
|
|
|
13978
14079
|
|
|
13979
14080
|
// #endregion
|
|
13980
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
|
+
|
|
13981
14097
|
|
|
13982
14098
|
// Mixin for all styles
|
|
13983
14099
|
@mixin kendo-utils() {
|
|
@@ -13995,6 +14111,8 @@ $kendo-utils: (
|
|
|
13995
14111
|
@include kendo-utils--transform();
|
|
13996
14112
|
@include kendo-utils--interactivity();
|
|
13997
14113
|
@include kendo-utils--svg();
|
|
14114
|
+
|
|
14115
|
+
@include kendo-utils--elevation();
|
|
13998
14116
|
}
|
|
13999
14117
|
|
|
14000
14118
|
// #endregion
|
|
@@ -16357,7 +16475,7 @@ $kendo-list-header-text: null !default;
|
|
|
16357
16475
|
$kendo-list-header-border: inherit !default;
|
|
16358
16476
|
/// The box shadow of the List header.
|
|
16359
16477
|
/// @group list
|
|
16360
|
-
$kendo-list-header-shadow:
|
|
16478
|
+
$kendo-list-header-shadow: k-elevation(2) !default;
|
|
16361
16479
|
|
|
16362
16480
|
|
|
16363
16481
|
/// The background color of the List items.
|
|
@@ -17800,7 +17918,7 @@ $kendo-popup-text: $kendo-component-text !default;
|
|
|
17800
17918
|
$kendo-popup-border: $kendo-component-border !default;
|
|
17801
17919
|
/// Box shadow of the popup.
|
|
17802
17920
|
/// @group popup
|
|
17803
|
-
$kendo-popup-shadow:
|
|
17921
|
+
$kendo-popup-shadow: k-elevation(4) !default;
|
|
17804
17922
|
|
|
17805
17923
|
// #endregion
|
|
17806
17924
|
// #region @import "./_layout.scss"; -> scss/popup/_layout.scss
|
|
@@ -23799,6 +23917,8 @@ $kendo-tooltip-bg: rgba( k-contrast-legacy( $kendo-body-bg ), .75 ) !default;
|
|
|
23799
23917
|
$kendo-tooltip-text: k-contrast-legacy( $kendo-tooltip-bg ) !default;
|
|
23800
23918
|
$kendo-tooltip-border: $kendo-tooltip-bg !default;
|
|
23801
23919
|
|
|
23920
|
+
$kendo-tooltip-shadow: k-elevation(2) !default;
|
|
23921
|
+
|
|
23802
23922
|
$kendo-tooltip-primary-bg: $kendo-color-primary !default;
|
|
23803
23923
|
$kendo-tooltip-primary-text: k-contrast-legacy( $kendo-tooltip-primary-bg ) !default;
|
|
23804
23924
|
$kendo-tooltip-primary-border: $kendo-tooltip-primary-bg !default;
|
|
@@ -23900,10 +24020,10 @@ $kendo-window-text: $kendo-component-text !default;
|
|
|
23900
24020
|
$kendo-window-border: $kendo-component-border !default;
|
|
23901
24021
|
/// The box shadow of the Window.
|
|
23902
24022
|
/// @group window
|
|
23903
|
-
$kendo-window-shadow:
|
|
24023
|
+
$kendo-window-shadow: k-elevation(8) !default;
|
|
23904
24024
|
/// The box shadow of the focused Window.
|
|
23905
24025
|
/// @group window
|
|
23906
|
-
$kendo-window-focus-shadow:
|
|
24026
|
+
$kendo-window-focus-shadow: k-elevation(9) !default;
|
|
23907
24027
|
|
|
23908
24028
|
/// The background color of the Window titlebar.
|
|
23909
24029
|
/// @group window
|
|
@@ -24755,7 +24875,7 @@ $_kendo-module-meta: (
|
|
|
24755
24875
|
|
|
24756
24876
|
.k-tooltip-wrapper {
|
|
24757
24877
|
.k-tooltip {
|
|
24758
|
-
box-shadow: $kendo-
|
|
24878
|
+
box-shadow: $kendo-tooltip-shadow;
|
|
24759
24879
|
}
|
|
24760
24880
|
}
|
|
24761
24881
|
|
|
@@ -28547,6 +28667,7 @@ $kendo-calendar-header-bg: $kendo-component-header-bg !default;
|
|
|
28547
28667
|
$kendo-calendar-header-text: $kendo-component-header-text !default;
|
|
28548
28668
|
$kendo-calendar-header-border: $kendo-component-header-border !default;
|
|
28549
28669
|
$kendo-calendar-header-gradient: $kendo-component-header-gradient !default;
|
|
28670
|
+
// TODO: variable is used, but the selector using it is not! Potentially remove;
|
|
28550
28671
|
$kendo-calendar-header-shadow: 0 1px 3px 1px rgba(black, .1) !default;
|
|
28551
28672
|
|
|
28552
28673
|
$kendo-calendar-nav-gap: null !default;
|
|
@@ -29204,6 +29325,7 @@ $kendo-calendar-sizes: (
|
|
|
29204
29325
|
);
|
|
29205
29326
|
|
|
29206
29327
|
|
|
29328
|
+
// TODO: do we even use this?
|
|
29207
29329
|
// Header / footer
|
|
29208
29330
|
.k-header {
|
|
29209
29331
|
@include fill(
|
|
@@ -30554,7 +30676,7 @@ $kendo-color-gradient-border: $kendo-component-border !default;
|
|
|
30554
30676
|
$kendo-color-gradient-focus-border: null !default;
|
|
30555
30677
|
/// The box shadow of the focused ColorGradient.
|
|
30556
30678
|
/// @group cologradient
|
|
30557
|
-
$kendo-color-gradient-focus-shadow:
|
|
30679
|
+
$kendo-color-gradient-focus-shadow: k-elevation(3) !default;
|
|
30558
30680
|
|
|
30559
30681
|
/// The border radius of the ColorGradient canvas.
|
|
30560
30682
|
/// @group cologradient
|
|
@@ -30592,6 +30714,9 @@ $kendo-color-gradient-draghandle-height: 14px !default;
|
|
|
30592
30714
|
/// The width of the border around the ColorGradient canvas drag handle.
|
|
30593
30715
|
/// @group cologradient
|
|
30594
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;
|
|
30595
30720
|
/// The border radius of the ColorGradient canvas drag handle.
|
|
30596
30721
|
/// @group cologradient
|
|
30597
30722
|
$kendo-color-gradient-draghandle-border-radius: 50% !default;
|
|
@@ -30604,15 +30729,18 @@ $kendo-color-gradient-draghandle-bg: transparent !default;
|
|
|
30604
30729
|
/// The color of the border around the ColorGradient canvas drag handle.
|
|
30605
30730
|
/// @group cologradient
|
|
30606
30731
|
$kendo-color-gradient-draghandle-border: rgba( $kendo-color-white, .8) !default;
|
|
30607
|
-
/// The
|
|
30732
|
+
/// The color of the outline around the ColorGradient canvas drag handle.
|
|
30733
|
+
/// @group cologradient
|
|
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.
|
|
30608
30736
|
/// @group cologradient
|
|
30609
|
-
$kendo-color-gradient-draghandle-shadow:
|
|
30610
|
-
/// 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.
|
|
30611
30739
|
/// @group cologradient
|
|
30612
|
-
$kendo-color-gradient-draghandle-
|
|
30613
|
-
/// The box shadow of the
|
|
30740
|
+
$kendo-color-gradient-draghandle-hover-shadow: $kendo-color-black !default;
|
|
30741
|
+
/// The box shadow of the ColorGradient canvas drag handle.
|
|
30614
30742
|
/// @group cologradient
|
|
30615
|
-
$kendo-color-gradient-draghandle-
|
|
30743
|
+
$kendo-color-gradient-draghandle-shadow: k-elevation(2) !default;
|
|
30616
30744
|
|
|
30617
30745
|
/// The vertical margin of the ColorGradient canvas drag handle.
|
|
30618
30746
|
/// @group cologradient
|
|
@@ -30640,6 +30768,7 @@ $kendo-color-gradient-contrast-ratio-font-weight: $kendo-font-weight-bold !defau
|
|
|
30640
30768
|
/// The spacing between the items in the ColorGradient contrast tool.
|
|
30641
30769
|
/// @group cologradient
|
|
30642
30770
|
$kendo-color-gradient-contrast-spacer: k-math-div( $kendo-color-gradient-spacer, 1.5 ) !default;
|
|
30771
|
+
|
|
30643
30772
|
// #endregion
|
|
30644
30773
|
// #region @import "./_layout.scss"; -> scss/colorgradient/_layout.scss
|
|
30645
30774
|
@mixin kendo-color-gradient--layout-base() {
|
|
@@ -30711,6 +30840,8 @@ $kendo-color-gradient-contrast-spacer: k-math-div( $kendo-color-gradient-spacer,
|
|
|
30711
30840
|
height: $kendo-color-gradient-draghandle-height;
|
|
30712
30841
|
border-width: $kendo-color-gradient-draghandle-border-width;
|
|
30713
30842
|
border-style: solid;
|
|
30843
|
+
outline-width: $kendo-color-gradient-draghandle-outline-width;
|
|
30844
|
+
outline-style: solid;
|
|
30714
30845
|
box-sizing: border-box;
|
|
30715
30846
|
}
|
|
30716
30847
|
|
|
@@ -30868,12 +30999,14 @@ $kendo-color-gradient-contrast-spacer: k-math-div( $kendo-color-gradient-spacer,
|
|
|
30868
30999
|
$kendo-color-gradient-draghandle-bg,
|
|
30869
31000
|
$kendo-color-gradient-draghandle-border
|
|
30870
31001
|
);
|
|
31002
|
+
outline-color: $kendo-color-gradient-draghandle-focus-shadow;
|
|
30871
31003
|
@include box-shadow( $kendo-color-gradient-draghandle-shadow );
|
|
30872
31004
|
|
|
30873
31005
|
&:focus,
|
|
30874
31006
|
&.k-focus {
|
|
30875
31007
|
@include fill( $bg: transparent, $border: $kendo-color-white );
|
|
30876
|
-
|
|
31008
|
+
outline-color: $kendo-color-gradient-draghandle-focus-shadow;
|
|
31009
|
+
@include focus-indicator( $kendo-color-gradient-draghandle-shadow );
|
|
30877
31010
|
}
|
|
30878
31011
|
|
|
30879
31012
|
&:hover,
|
|
@@ -30881,7 +31014,7 @@ $kendo-color-gradient-contrast-spacer: k-math-div( $kendo-color-gradient-spacer,
|
|
|
30881
31014
|
&.k-active,
|
|
30882
31015
|
&:active {
|
|
30883
31016
|
@include fill( $bg: transparent, $border: $kendo-color-white );
|
|
30884
|
-
|
|
31017
|
+
outline-color: $kendo-color-gradient-draghandle-hover-shadow;
|
|
30885
31018
|
}
|
|
30886
31019
|
}
|
|
30887
31020
|
|
|
@@ -31027,9 +31160,10 @@ $kendo-color-editor-border: $kendo-component-border !default;
|
|
|
31027
31160
|
/// The border color of the focused ColorEditor.
|
|
31028
31161
|
/// @group coloreditor
|
|
31029
31162
|
$kendo-color-editor-focus-border: null !default;
|
|
31163
|
+
// TODO: does this ever get focused? Isn't it always in a popup?
|
|
31030
31164
|
/// The box shadow of the focused ColorEditor.
|
|
31031
31165
|
/// @group coloreditor
|
|
31032
|
-
$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)
|
|
31033
31167
|
|
|
31034
31168
|
/// The vertical padding of the ColorEditor header.
|
|
31035
31169
|
/// @group coloreditor
|
|
@@ -31070,6 +31204,7 @@ $kendo-color-editor-color-gradient-focus-outline: 2px !default;
|
|
|
31070
31204
|
/// The outline offset of the focused ColorGradient.
|
|
31071
31205
|
/// @group coloreditor
|
|
31072
31206
|
$kendo-color-editor-color-gradient-focus-outline-offset: 4px !default;
|
|
31207
|
+
|
|
31073
31208
|
// #endregion
|
|
31074
31209
|
// #region @import "./_layout.scss"; -> scss/coloreditor/_layout.scss
|
|
31075
31210
|
@mixin kendo-color-editor--layout-base() {
|
|
@@ -33205,8 +33340,8 @@ $kendo-rating-icon-selected-text: $kendo-selected-bg !default;
|
|
|
33205
33340
|
$kendo-rating-icon-hover-text: $kendo-selected-bg !default;
|
|
33206
33341
|
$kendo-rating-icon-focus-text: $kendo-selected-bg !default;
|
|
33207
33342
|
|
|
33208
|
-
$kendo-rating-icon-focus-shadow:
|
|
33209
|
-
$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;
|
|
33210
33345
|
|
|
33211
33346
|
// #endregion
|
|
33212
33347
|
// #region @import "./_layout.scss"; -> scss/rating/_layout.scss
|
|
@@ -33321,14 +33456,14 @@ $kendo-rating-icon-focus-selected-shadow: 0 2px 4px rgba( $kendo-color-black, .1
|
|
|
33321
33456
|
text-shadow: $kendo-rating-icon-focus-shadow;
|
|
33322
33457
|
}
|
|
33323
33458
|
> .k-svg-icon {
|
|
33324
|
-
filter:
|
|
33459
|
+
filter: k-shadow-filter($kendo-rating-icon-focus-selected-shadow);
|
|
33325
33460
|
}
|
|
33326
33461
|
|
|
33327
33462
|
&.k-selected > .k-icon {
|
|
33328
33463
|
text-shadow: $kendo-rating-icon-focus-selected-shadow;
|
|
33329
33464
|
}
|
|
33330
33465
|
&.k-selected > .k-svg-icon {
|
|
33331
|
-
filter:
|
|
33466
|
+
filter: k-shadow-filter($kendo-rating-icon-focus-selected-shadow);
|
|
33332
33467
|
}
|
|
33333
33468
|
}
|
|
33334
33469
|
}
|
|
@@ -34819,10 +34954,11 @@ $kendo-appbar-dark-text: k-contrast-legacy( $kendo-color-dark ) !default;
|
|
|
34819
34954
|
|
|
34820
34955
|
/// The box shadow of the AppBar.
|
|
34821
34956
|
/// @group appbar
|
|
34822
|
-
$kendo-appbar-box-shadow:
|
|
34957
|
+
$kendo-appbar-box-shadow: k-elevation(4) !default;
|
|
34823
34958
|
/// The box shadow of the AppBar with bottom position.
|
|
34824
34959
|
/// @group appbar
|
|
34825
|
-
$kendo-appbar-bottom-box-shadow:
|
|
34960
|
+
$kendo-appbar-bottom-box-shadow: $kendo-appbar-box-shadow !default;
|
|
34961
|
+
|
|
34826
34962
|
// #endregion
|
|
34827
34963
|
// #region @import "./_layout.scss"; -> scss/appbar/_layout.scss
|
|
34828
34964
|
@mixin kendo-appbar--layout-base() {
|
|
@@ -35157,10 +35293,10 @@ $kendo-fab-sizes: (
|
|
|
35157
35293
|
|
|
35158
35294
|
/// The base shadow of the FAB.
|
|
35159
35295
|
/// @group floating-action-button
|
|
35160
|
-
$kendo-fab-shadow:
|
|
35296
|
+
$kendo-fab-shadow: k-elevation(5) !default;
|
|
35161
35297
|
/// The shadow of the disabled FAB.
|
|
35162
35298
|
/// @group floating-action-button
|
|
35163
|
-
$kendo-fab-disabled-shadow:
|
|
35299
|
+
$kendo-fab-disabled-shadow: k-elevation(5) !default;
|
|
35164
35300
|
/// The shadow of the active FAB.
|
|
35165
35301
|
/// @group floating-action-button
|
|
35166
35302
|
$kendo-fab-active-shadow: null !default;
|
|
@@ -35579,7 +35715,7 @@ $kendo-actionsheet-line-height: $kendo-line-height-md !default;
|
|
|
35579
35715
|
$kendo-actionsheet-bg: $kendo-component-bg !default;
|
|
35580
35716
|
$kendo-actionsheet-text: $kendo-component-text !default;
|
|
35581
35717
|
$kendo-actionsheet-border: $kendo-component-border !default;
|
|
35582
|
-
$kendo-actionsheet-shadow:
|
|
35718
|
+
$kendo-actionsheet-shadow: k-elevation(7) !default;
|
|
35583
35719
|
|
|
35584
35720
|
|
|
35585
35721
|
// Actionsheet header
|
|
@@ -37365,7 +37501,8 @@ $kendo-card-shadow: null !default;
|
|
|
37365
37501
|
$kendo-card-focus-bg: null !default;
|
|
37366
37502
|
$kendo-card-focus-text: null !default;
|
|
37367
37503
|
$kendo-card-focus-border: rgba( black, .15 ) !default;
|
|
37368
|
-
|
|
37504
|
+
// TODO: double-check: the default theme is not supposed to elevate the card on focus
|
|
37505
|
+
$kendo-card-focus-shadow: null !default;
|
|
37369
37506
|
|
|
37370
37507
|
$kendo-card-header-padding-x: $kendo-card-padding-x !default;
|
|
37371
37508
|
$kendo-card-header-padding-y: $kendo-card-padding-y !default;
|
|
@@ -38398,7 +38535,7 @@ $kendo-bottom-nav-item-gap: 0 k-map-get( $kendo-spacing, 1 ) !default;
|
|
|
38398
38535
|
|
|
38399
38536
|
/// The box shadow of the BottomNavigation.
|
|
38400
38537
|
/// @group bottom-navigation
|
|
38401
|
-
$kendo-bottom-nav-shadow:
|
|
38538
|
+
$kendo-bottom-nav-shadow: k-elevation(4) !default;
|
|
38402
38539
|
|
|
38403
38540
|
/// The text color of the flat BottomNavigation.
|
|
38404
38541
|
/// @group bottom-navigation
|
|
@@ -38409,6 +38546,7 @@ $kendo-bottom-nav-flat-bg: $kendo-component-bg !default;
|
|
|
38409
38546
|
/// The border color of the flat BottomNavigation.
|
|
38410
38547
|
/// @group bottom-navigation
|
|
38411
38548
|
$kendo-bottom-nav-flat-border: $kendo-component-border !default;
|
|
38549
|
+
|
|
38412
38550
|
// #endregion
|
|
38413
38551
|
// #region @import "./_layout.scss"; -> scss/bottom-navigation/_layout.scss
|
|
38414
38552
|
@mixin kendo-bottom-navigation--layout-base() {
|
|
@@ -38446,6 +38584,7 @@ $kendo-bottom-nav-flat-border: $kendo-component-border !default;
|
|
|
38446
38584
|
border-width: $kendo-bottom-nav-border-width;
|
|
38447
38585
|
}
|
|
38448
38586
|
|
|
38587
|
+
// TODO: do we even use this?
|
|
38449
38588
|
.k-bottom-nav-shadow {
|
|
38450
38589
|
box-shadow: $kendo-bottom-nav-shadow;
|
|
38451
38590
|
}
|
|
@@ -40345,7 +40484,7 @@ $kendo-tabstrip-item-selected-gradient: null !default;
|
|
|
40345
40484
|
|
|
40346
40485
|
$kendo-tabstrip-item-focus-shadow: $kendo-list-item-focus-shadow !default;
|
|
40347
40486
|
|
|
40348
|
-
$kendo-tabstrip-item-dragging-shadow:
|
|
40487
|
+
$kendo-tabstrip-item-dragging-shadow: k-elevation(3) !default;
|
|
40349
40488
|
|
|
40350
40489
|
$kendo-tabstrip-item-disabled-bg: null !default;
|
|
40351
40490
|
$kendo-tabstrip-item-disabled-text: null !default;
|
|
@@ -42026,6 +42165,7 @@ $kendo-splitbar-selected-text: $kendo-selected-text !default;
|
|
|
42026
42165
|
// Pane
|
|
42027
42166
|
.k-pane {
|
|
42028
42167
|
overflow: hidden;
|
|
42168
|
+
box-sizing: border-box;
|
|
42029
42169
|
}
|
|
42030
42170
|
.k-scrollable {
|
|
42031
42171
|
overflow: auto;
|
|
@@ -42438,6 +42578,455 @@ $kendo-tile-layout-hint-bg: rgba(255, 255, 255, .2) !default;
|
|
|
42438
42578
|
@include kendo-tile-layout--styles();
|
|
42439
42579
|
}
|
|
42440
42580
|
|
|
42581
|
+
// #endregion
|
|
42582
|
+
// #region @import "./dock-manager/_index.scss"; -> scss/dock-manager/_index.scss
|
|
42583
|
+
// #region @import "../core/_index.scss"; -> scss/core/_index.scss
|
|
42584
|
+
// File already imported_once. Skipping output.
|
|
42585
|
+
// #endregion
|
|
42586
|
+
// #region @import "../utils/_index.scss"; -> scss/utils/_index.scss
|
|
42587
|
+
// File already imported_once. Skipping output.
|
|
42588
|
+
// #endregion
|
|
42589
|
+
|
|
42590
|
+
// Module meta
|
|
42591
|
+
$_kendo-module-meta: (
|
|
42592
|
+
name: "dock-manager",
|
|
42593
|
+
dependencies: (
|
|
42594
|
+
"splitter",
|
|
42595
|
+
"toolbar",
|
|
42596
|
+
"tabstrip"
|
|
42597
|
+
)
|
|
42598
|
+
);
|
|
42599
|
+
|
|
42600
|
+
// Dependencies
|
|
42601
|
+
// #region @import "../splitter/_index.scss"; -> scss/splitter/_index.scss
|
|
42602
|
+
// File already imported_once. Skipping output.
|
|
42603
|
+
// #endregion
|
|
42604
|
+
// #region @import "../toolbar/_index.scss"; -> scss/toolbar/_index.scss
|
|
42605
|
+
// File already imported_once. Skipping output.
|
|
42606
|
+
// #endregion
|
|
42607
|
+
// #region @import "../tabstrip/_index.scss"; -> scss/tabstrip/_index.scss
|
|
42608
|
+
// File already imported_once. Skipping output.
|
|
42609
|
+
// #endregion
|
|
42610
|
+
|
|
42611
|
+
// Component
|
|
42612
|
+
// #region @import "./_variables.scss"; -> scss/dock-manager/_variables.scss
|
|
42613
|
+
/// The width of the border around the DockManager component.
|
|
42614
|
+
/// @group dock-manager
|
|
42615
|
+
$kendo-dock-manager-border-width: 1px !default;
|
|
42616
|
+
/// The style of the border around the DockManager component.
|
|
42617
|
+
/// @group dock-manager
|
|
42618
|
+
$kendo-dock-manager-border-style: solid !default;
|
|
42619
|
+
/// The color of the border around the DockManager component.
|
|
42620
|
+
/// @group dock-manager
|
|
42621
|
+
$kendo-dock-manager-border: $kendo-base-border !default;
|
|
42622
|
+
|
|
42623
|
+
/// The vertical padding of the pane header in the DockManager component.
|
|
42624
|
+
/// @group dock-manager
|
|
42625
|
+
$kendo-dock-manager-pane-header-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
|
|
42626
|
+
/// The horizontal padding of the pane header in the DockManager component.
|
|
42627
|
+
/// @group dock-manager
|
|
42628
|
+
$kendo-dock-manager-pane-header-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
|
|
42629
|
+
/// The width of the border around the pane header in the DockManager component.
|
|
42630
|
+
/// @group dock-manager
|
|
42631
|
+
$kendo-dock-manager-pane-header-border-width: $kendo-dock-manager-border-width !default;
|
|
42632
|
+
/// The style of the border around the pane header in the DockManager component.
|
|
42633
|
+
/// @group dock-manager
|
|
42634
|
+
$kendo-dock-manager-pane-header-border-style: solid !default;
|
|
42635
|
+
/// The background color of the pane header in the DockManager component.
|
|
42636
|
+
/// @group dock-manager
|
|
42637
|
+
$kendo-dock-manager-pane-header-bg: $kendo-component-header-bg !default;
|
|
42638
|
+
|
|
42639
|
+
/// The vertical padding of the pane title in the DockManager component.
|
|
42640
|
+
/// @group dock-manager
|
|
42641
|
+
$kendo-dock-manager-pane-title-padding-y: null !default;
|
|
42642
|
+
/// The horizontal padding of the pane title in the DockManager component.
|
|
42643
|
+
/// @group dock-manager
|
|
42644
|
+
$kendo-dock-manager-pane-title-padding-x: null !default;
|
|
42645
|
+
/// The font family of the pane title in the DockManager component.
|
|
42646
|
+
/// @group dock-manager
|
|
42647
|
+
$kendo-dock-manager-pane-title-font-family: $kendo-font-family !default;
|
|
42648
|
+
/// The font size of the pane title in the DockManager component.
|
|
42649
|
+
/// @group dock-manager
|
|
42650
|
+
$kendo-dock-manager-pane-title-font-size: $kendo-font-size-lg !default;
|
|
42651
|
+
/// The line height of the pane title in the DockManager component.
|
|
42652
|
+
/// @group dock-manager
|
|
42653
|
+
$kendo-dock-manager-pane-title-line-height: $kendo-line-height-sm !default;
|
|
42654
|
+
/// The font weight of the pane title in the DockManager component.
|
|
42655
|
+
/// @group dock-manager
|
|
42656
|
+
$kendo-dock-manager-pane-title-font-weight: $kendo-font-weight-normal !default;
|
|
42657
|
+
|
|
42658
|
+
/// The horizontal padding of the pane content in the DockManager component.
|
|
42659
|
+
/// @group dock-manager
|
|
42660
|
+
$kendo-dock-manager-pane-content-padding-x: $kendo-dock-manager-pane-header-padding-x !default;
|
|
42661
|
+
/// The vertical padding of the pane content in the DockManager component.
|
|
42662
|
+
/// @group dock-manager
|
|
42663
|
+
$kendo-dock-manager-pane-content-padding-y: $kendo-dock-manager-pane-header-padding-x !default;
|
|
42664
|
+
|
|
42665
|
+
/// The horizontal padding of the tabbed pane in the DockManager component.
|
|
42666
|
+
/// @group dock-manager
|
|
42667
|
+
$kendo-dock-manager-tabbed-pane-padding-y: k-map-get( $kendo-spacing, 3.5 ) !default;
|
|
42668
|
+
/// The horizontal padding of the tabbed pane in the DockManager component.
|
|
42669
|
+
/// @group dock-manager
|
|
42670
|
+
$kendo-dock-manager-tabbed-pane-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
|
|
42671
|
+
|
|
42672
|
+
/// The width of the unpinned pane container in the DockManager component.
|
|
42673
|
+
/// @group dock-manager
|
|
42674
|
+
$kendo-dock-manager-unpinned-container-width: 300px !default;
|
|
42675
|
+
/// The background-color of the unpinned pane container in the DockManager component.
|
|
42676
|
+
/// @group dock-manager
|
|
42677
|
+
$kendo-dock-manager-unpinned-container-bg: $kendo-color-white !default;
|
|
42678
|
+
/// The box shadow of the unpinned pane container in the DockManager component.
|
|
42679
|
+
/// @group dock-manager
|
|
42680
|
+
$kendo-dock-manager-unpinned-container-shadow: 4px 0px 5px 0px rgba(0, 0, 0, 0.04), 2px 0px 4px 0px rgba(0, 0, 0, 0.03) !default;
|
|
42681
|
+
|
|
42682
|
+
/// The padding of the dock indicator in the DockManager component.
|
|
42683
|
+
/// @group dock-manager
|
|
42684
|
+
$kendo-dock-indicator-padding: k-map-get( $kendo-spacing, 1.5 ) !default;
|
|
42685
|
+
/// The background color of the dock indicator in the DockManager component.
|
|
42686
|
+
/// @group dock-manager
|
|
42687
|
+
$kendo-dock-indicator-bg: #f5f5f5 !default;
|
|
42688
|
+
/// The text color of the dock indicator in the DockManager component.
|
|
42689
|
+
/// @group dock-manager
|
|
42690
|
+
$kendo-dock-indicator-text: $kendo-color-primary !default;
|
|
42691
|
+
/// The outline width of the dock indicator in the DockManager component.
|
|
42692
|
+
/// @group dock-manager
|
|
42693
|
+
$kendo-dock-indicator-outline-width: 1px !default;
|
|
42694
|
+
/// The outline style of the dock indicator in the DockManager component.
|
|
42695
|
+
/// @group dock-manager
|
|
42696
|
+
$kendo-dock-indicator-outline-style: solid !default;
|
|
42697
|
+
/// The outline color of the dock indicator in the DockManager component.
|
|
42698
|
+
/// @group dock-manager
|
|
42699
|
+
$kendo-dock-indicator-outline: $kendo-dock-indicator-text !default;
|
|
42700
|
+
/// The box shadow of the dock indicator in the DockManager component.
|
|
42701
|
+
/// @group dock-manager
|
|
42702
|
+
$kendo-dock-indicator-shadow: drop-shadow( 0px 1px 18px rgba(0, 0, 0, 0.12) ) drop-shadow( 0px 6px 10px rgba(0, 0, 0, 0.14) ) drop-shadow( 0px 3px 5px rgba(0, 0, 0, 0.20) ) !default;
|
|
42703
|
+
|
|
42704
|
+
/// The background color of the hovered dock indicator in the DockManager component.
|
|
42705
|
+
/// @group dock-manager
|
|
42706
|
+
$kendo-dock-indicator-hover-bg: $kendo-color-primary !default;
|
|
42707
|
+
/// The text color of the hovered dock indicator in the DockManager component.
|
|
42708
|
+
/// @group dock-manager
|
|
42709
|
+
$kendo-dock-indicator-hover-text: $kendo-color-white !default;
|
|
42710
|
+
|
|
42711
|
+
/// The width of the border around the dropping area in the DockManager component.
|
|
42712
|
+
/// @group dock-manager
|
|
42713
|
+
$kendo-dock-manager-dock-preview-border-width: 1px !default;
|
|
42714
|
+
/// The style of the border around the dropping area in the DockManager component.
|
|
42715
|
+
/// @group dock-manager
|
|
42716
|
+
$kendo-dock-manager-dock-preview-border-style: dashed !default;
|
|
42717
|
+
/// The border radius of the dropping area in the DockManager component.
|
|
42718
|
+
/// @group dock-manager
|
|
42719
|
+
$kendo-dock-manager-dock-preview-border-radius: $kendo-border-radius-sm !default;
|
|
42720
|
+
/// The background color of the dropping area in the DockManager component.
|
|
42721
|
+
/// @group dock-manager
|
|
42722
|
+
$kendo-dock-manager-dock-preview-bg: rgba( $kendo-color-primary, .16 ) !default;
|
|
42723
|
+
/// The border color of the dropping area in the DockManager component.
|
|
42724
|
+
/// @group dock-manager
|
|
42725
|
+
$kendo-dock-manager-dock-preview-border: $kendo-color-primary !default;
|
|
42726
|
+
|
|
42727
|
+
// #endregion
|
|
42728
|
+
// #region @import "./_layout.scss"; -> scss/dock-manager/_layout.scss
|
|
42729
|
+
@mixin kendo-dock-manager--layout-base() {
|
|
42730
|
+
|
|
42731
|
+
// DockManager
|
|
42732
|
+
.k-dock-manager {
|
|
42733
|
+
width: 100%;
|
|
42734
|
+
height: 100%;
|
|
42735
|
+
border-width: $kendo-dock-manager-border-width;
|
|
42736
|
+
border-style: $kendo-dock-manager-border-style;
|
|
42737
|
+
position: relative;
|
|
42738
|
+
display: flex;
|
|
42739
|
+
flex-flow: row nowrap;
|
|
42740
|
+
overflow: auto;
|
|
42741
|
+
box-sizing: border-box;
|
|
42742
|
+
}
|
|
42743
|
+
|
|
42744
|
+
// Toolbar
|
|
42745
|
+
.k-dock-manager-toolbar {
|
|
42746
|
+
border-width: 0 $kendo-dock-manager-border-width 0 0;
|
|
42747
|
+
border-color: inherit;
|
|
42748
|
+
flex-shrink: 0;
|
|
42749
|
+
writing-mode: vertical-lr;
|
|
42750
|
+
box-shadow: none;
|
|
42751
|
+
|
|
42752
|
+
&::before {
|
|
42753
|
+
height: 0;
|
|
42754
|
+
}
|
|
42755
|
+
|
|
42756
|
+
.k-separator-horizontal {
|
|
42757
|
+
width: $kendo-line-height-em;
|
|
42758
|
+
height: 0;
|
|
42759
|
+
border-width: $kendo-dock-manager-border-width 0 0;
|
|
42760
|
+
}
|
|
42761
|
+
|
|
42762
|
+
// Needed because of a bug in Chrome - Issue 1473554
|
|
42763
|
+
// A fix will be shipped likely in milestone 118 and then we can revisit this
|
|
42764
|
+
@supports (not (-ms-ime-mode: none)) and (not (overflow: -webkit-marquee)) and (not (-moz-appearance:none)) {
|
|
42765
|
+
.k-toolbar-button {
|
|
42766
|
+
padding-block: $kendo-button-padding-x;
|
|
42767
|
+
padding-inline: $kendo-button-padding-y;
|
|
42768
|
+
}
|
|
42769
|
+
.k-toolbar-button .k-button-text {
|
|
42770
|
+
writing-mode: vertical-lr;
|
|
42771
|
+
}
|
|
42772
|
+
}
|
|
42773
|
+
}
|
|
42774
|
+
|
|
42775
|
+
// Panes
|
|
42776
|
+
.k-dock-manager-pane-container {
|
|
42777
|
+
width: 100%;
|
|
42778
|
+
height: 100%;
|
|
42779
|
+
display: flex;
|
|
42780
|
+
flex-grow: 1;
|
|
42781
|
+
overflow: hidden;
|
|
42782
|
+
}
|
|
42783
|
+
|
|
42784
|
+
// Splitter
|
|
42785
|
+
.k-dock-manager-splitter,
|
|
42786
|
+
.k-dock-manager-unpinned-container {
|
|
42787
|
+
height: 100%;
|
|
42788
|
+
border-width: 0;
|
|
42789
|
+
align-items: stretch;
|
|
42790
|
+
|
|
42791
|
+
> .k-pane {
|
|
42792
|
+
height: auto;
|
|
42793
|
+
flex-direction: column;
|
|
42794
|
+
border-color: inherit;
|
|
42795
|
+
}
|
|
42796
|
+
|
|
42797
|
+
.k-pane-header {
|
|
42798
|
+
display: flex;
|
|
42799
|
+
align-items: center;
|
|
42800
|
+
justify-content: center;
|
|
42801
|
+
padding-block: $kendo-dock-manager-pane-header-padding-y;
|
|
42802
|
+
padding-inline: $kendo-dock-manager-pane-header-padding-x;
|
|
42803
|
+
border-block-end-width: $kendo-dock-manager-pane-header-border-width;
|
|
42804
|
+
border-block-end-style: $kendo-dock-manager-pane-header-border-style;
|
|
42805
|
+
border-color: inherit;
|
|
42806
|
+
}
|
|
42807
|
+
|
|
42808
|
+
.k-pane-title {
|
|
42809
|
+
padding-block: $kendo-dock-manager-pane-title-padding-y;
|
|
42810
|
+
padding-inline: $kendo-dock-manager-pane-title-padding-x;
|
|
42811
|
+
font-family: $kendo-dock-manager-pane-title-font-family;
|
|
42812
|
+
font-size: $kendo-dock-manager-pane-title-font-size;
|
|
42813
|
+
line-height: $kendo-dock-manager-pane-title-line-height;
|
|
42814
|
+
font-weight: $kendo-dock-manager-pane-title-font-weight;
|
|
42815
|
+
flex: 1 1 auto;
|
|
42816
|
+
white-space: nowrap;
|
|
42817
|
+
text-overflow: ellipsis;
|
|
42818
|
+
overflow: hidden;
|
|
42819
|
+
}
|
|
42820
|
+
|
|
42821
|
+
.k-pane-scrollable {
|
|
42822
|
+
height: 100%;
|
|
42823
|
+
display: flex;
|
|
42824
|
+
flex-direction: column;
|
|
42825
|
+
border-color: inherit;
|
|
42826
|
+
}
|
|
42827
|
+
|
|
42828
|
+
.k-pane-content {
|
|
42829
|
+
height: 100%;
|
|
42830
|
+
padding-block: $kendo-dock-manager-pane-content-padding-y;
|
|
42831
|
+
padding-inline: $kendo-dock-manager-pane-content-padding-x;
|
|
42832
|
+
overflow: auto;
|
|
42833
|
+
flex: 1;
|
|
42834
|
+
}
|
|
42835
|
+
|
|
42836
|
+
.k-pane-actions {
|
|
42837
|
+
display: flex;
|
|
42838
|
+
flex-flow: row nowrap;
|
|
42839
|
+
align-items: center;
|
|
42840
|
+
justify-content: center;
|
|
42841
|
+
}
|
|
42842
|
+
|
|
42843
|
+
.k-pane-tabbed {
|
|
42844
|
+
padding-block-start: $kendo-dock-manager-tabbed-pane-padding-y;
|
|
42845
|
+
padding-block-end: $kendo-dock-manager-tabbed-pane-padding-x;
|
|
42846
|
+
padding-inline: $kendo-dock-manager-tabbed-pane-padding-x;
|
|
42847
|
+
}
|
|
42848
|
+
|
|
42849
|
+
.k-splitbar {
|
|
42850
|
+
border-width: 0 1px;
|
|
42851
|
+
border-style: solid;
|
|
42852
|
+
border-color: inherit;
|
|
42853
|
+
}
|
|
42854
|
+
.k-splitbar-vertical {
|
|
42855
|
+
border-width: 1px 0;
|
|
42856
|
+
}
|
|
42857
|
+
}
|
|
42858
|
+
|
|
42859
|
+
// Unpinned pane
|
|
42860
|
+
.k-dock-manager-unpinned-container {
|
|
42861
|
+
width: $kendo-dock-manager-unpinned-container-width;
|
|
42862
|
+
position: absolute;
|
|
42863
|
+
display: flex;
|
|
42864
|
+
height: 100%;
|
|
42865
|
+
border-color: inherit;
|
|
42866
|
+
z-index: 20;
|
|
42867
|
+
|
|
42868
|
+
.k-pane {
|
|
42869
|
+
display: inline-flex;
|
|
42870
|
+
flex-direction: column;
|
|
42871
|
+
position: relative;
|
|
42872
|
+
flex: 1 1 auto;
|
|
42873
|
+
}
|
|
42874
|
+
|
|
42875
|
+
.k-splitbar {
|
|
42876
|
+
height: 100%;
|
|
42877
|
+
position: relative;
|
|
42878
|
+
flex: none;
|
|
42879
|
+
}
|
|
42880
|
+
}
|
|
42881
|
+
|
|
42882
|
+
// Docking preview
|
|
42883
|
+
.k-docking-preview {
|
|
42884
|
+
width: 100%;
|
|
42885
|
+
height: 100%;
|
|
42886
|
+
box-sizing: border-box;
|
|
42887
|
+
display: flex;
|
|
42888
|
+
position: absolute;
|
|
42889
|
+
top: 0;
|
|
42890
|
+
left: 0;
|
|
42891
|
+
border-width: $kendo-dock-manager-dock-preview-border-width;
|
|
42892
|
+
border-style: $kendo-dock-manager-dock-preview-border-style;
|
|
42893
|
+
border-radius: $kendo-dock-manager-dock-preview-border-radius;
|
|
42894
|
+
z-index: 10;
|
|
42895
|
+
}
|
|
42896
|
+
|
|
42897
|
+
}
|
|
42898
|
+
|
|
42899
|
+
@mixin kendo-dock-navigator--layout() {
|
|
42900
|
+
|
|
42901
|
+
// DockNavigator
|
|
42902
|
+
.k-dock-navigator-container {
|
|
42903
|
+
width: 100%;
|
|
42904
|
+
height: 100%;
|
|
42905
|
+
display: flex;
|
|
42906
|
+
flex-direction: column;
|
|
42907
|
+
align-items: center;
|
|
42908
|
+
position: absolute;
|
|
42909
|
+
z-index: 10001;
|
|
42910
|
+
pointer-events: none;
|
|
42911
|
+
}
|
|
42912
|
+
|
|
42913
|
+
.k-dock-navigator {
|
|
42914
|
+
display: grid;
|
|
42915
|
+
grid-template-columns: repeat(3, auto);
|
|
42916
|
+
grid-template-rows: repeat(3, auto);
|
|
42917
|
+
justify-content: center;
|
|
42918
|
+
position: absolute;
|
|
42919
|
+
}
|
|
42920
|
+
|
|
42921
|
+
.k-dock-indicator {
|
|
42922
|
+
padding: $kendo-dock-indicator-padding;
|
|
42923
|
+
display: inline-flex;
|
|
42924
|
+
align-items: center;
|
|
42925
|
+
justify-content: center;
|
|
42926
|
+
box-sizing: border-box;
|
|
42927
|
+
position: relative;
|
|
42928
|
+
pointer-events: all;
|
|
42929
|
+
outline-width: $kendo-dock-indicator-outline-width;
|
|
42930
|
+
outline-style: $kendo-dock-indicator-outline-style;
|
|
42931
|
+
|
|
42932
|
+
&.k-dock-indicator-middle {
|
|
42933
|
+
filter: none;
|
|
42934
|
+
}
|
|
42935
|
+
}
|
|
42936
|
+
|
|
42937
|
+
.k-dock-indicator-top {
|
|
42938
|
+
grid-area: 1 / 2 / auto;
|
|
42939
|
+
}
|
|
42940
|
+
.k-dock-indicator-right {
|
|
42941
|
+
grid-area: 2 / 3 / auto;
|
|
42942
|
+
}
|
|
42943
|
+
.k-dock-indicator-bottom {
|
|
42944
|
+
grid-area: 3 / 2 / auto;
|
|
42945
|
+
}
|
|
42946
|
+
.k-dock-indicator-left {
|
|
42947
|
+
grid-area: 2 / 1 / auto;
|
|
42948
|
+
}
|
|
42949
|
+
.k-dock-indicator-middle {
|
|
42950
|
+
grid-area: 2 / 2 / auto;
|
|
42951
|
+
}
|
|
42952
|
+
|
|
42953
|
+
}
|
|
42954
|
+
|
|
42955
|
+
@mixin kendo-dock-manager--layout() {
|
|
42956
|
+
@include kendo-dock-manager--layout-base();
|
|
42957
|
+
@include kendo-dock-navigator--layout();
|
|
42958
|
+
}
|
|
42959
|
+
|
|
42960
|
+
// #endregion
|
|
42961
|
+
// #region @import "./_theme.scss"; -> scss/dock-manager/_theme.scss
|
|
42962
|
+
@mixin kendo-dock-manager--theme-base() {
|
|
42963
|
+
|
|
42964
|
+
// DockManager
|
|
42965
|
+
.k-dock-manager {
|
|
42966
|
+
border-color: $kendo-dock-manager-border;
|
|
42967
|
+
}
|
|
42968
|
+
|
|
42969
|
+
// Splitter
|
|
42970
|
+
.k-dock-manager-splitter .k-pane-header,
|
|
42971
|
+
.k-dock-manager-unpinned-container .k-pane-header {
|
|
42972
|
+
background-color: $kendo-dock-manager-pane-header-bg;
|
|
42973
|
+
}
|
|
42974
|
+
|
|
42975
|
+
.k-dock-manager-unpinned-container {
|
|
42976
|
+
background-color: $kendo-dock-manager-unpinned-container-bg;
|
|
42977
|
+
@include box-shadow( $kendo-dock-manager-unpinned-container-shadow );
|
|
42978
|
+
}
|
|
42979
|
+
|
|
42980
|
+
// Docking preview
|
|
42981
|
+
.k-docking-preview {
|
|
42982
|
+
background-color: $kendo-dock-manager-dock-preview-bg;
|
|
42983
|
+
border-color: $kendo-dock-manager-dock-preview-border;
|
|
42984
|
+
}
|
|
42985
|
+
|
|
42986
|
+
}
|
|
42987
|
+
|
|
42988
|
+
@mixin kendo-dock-navigator--theme() {
|
|
42989
|
+
|
|
42990
|
+
.k-dock-indicator {
|
|
42991
|
+
color: $kendo-dock-indicator-text;
|
|
42992
|
+
background-color: $kendo-dock-indicator-bg;
|
|
42993
|
+
outline-color: $kendo-dock-indicator-outline;
|
|
42994
|
+
filter: $kendo-dock-indicator-shadow;
|
|
42995
|
+
|
|
42996
|
+
&:hover,
|
|
42997
|
+
&.k-hover {
|
|
42998
|
+
background-color: $kendo-dock-indicator-hover-bg;
|
|
42999
|
+
color: $kendo-dock-indicator-hover-text;
|
|
43000
|
+
}
|
|
43001
|
+
}
|
|
43002
|
+
|
|
43003
|
+
}
|
|
43004
|
+
|
|
43005
|
+
@mixin kendo-dock-manager--theme() {
|
|
43006
|
+
@include kendo-dock-manager--theme-base();
|
|
43007
|
+
@include kendo-dock-navigator--theme();
|
|
43008
|
+
}
|
|
43009
|
+
|
|
43010
|
+
// #endregion
|
|
43011
|
+
|
|
43012
|
+
// Register
|
|
43013
|
+
// #region @import "../core/module-system/index.import.scss"; -> scss/core/module-system/index.import.scss
|
|
43014
|
+
// File already imported_once. Skipping output.
|
|
43015
|
+
// #endregion
|
|
43016
|
+
@include module-register( $_kendo-module-meta... );
|
|
43017
|
+
|
|
43018
|
+
// Expose
|
|
43019
|
+
@mixin kendo-dock-manager--styles() {
|
|
43020
|
+
@include module-render("dock-manager") {
|
|
43021
|
+
@include kendo-dock-manager--layout();
|
|
43022
|
+
@include kendo-dock-manager--theme();
|
|
43023
|
+
}
|
|
43024
|
+
}
|
|
43025
|
+
|
|
43026
|
+
@if $kendo-auto-bootstrap {
|
|
43027
|
+
@include kendo-dock-manager--styles();
|
|
43028
|
+
}
|
|
43029
|
+
|
|
42441
43030
|
// #endregion
|
|
42442
43031
|
|
|
42443
43032
|
|
|
@@ -45560,6 +46149,7 @@ $kendo-listview-item-focus-border: null !default;
|
|
|
45560
46149
|
/// The box shadow of the focused ListView items.
|
|
45561
46150
|
/// @group listview
|
|
45562
46151
|
$kendo-listview-item-focus-shadow: inset 0 0 0 2px rgba(0, 0, 0, .13) !default;
|
|
46152
|
+
|
|
45563
46153
|
// #endregion
|
|
45564
46154
|
// #region @import "./_layout.scss"; -> scss/listview/_layout.scss
|
|
45565
46155
|
@mixin kendo-listview--layout-base() {
|
|
@@ -47238,10 +47828,11 @@ $kendo-pivotgrid-configurator-header-bg: null !default;
|
|
|
47238
47828
|
$kendo-pivotgrid-configurator-header-text: $kendo-component-header-text !default;
|
|
47239
47829
|
$kendo-pivotgrid-configurator-header-border: null !default;
|
|
47240
47830
|
|
|
47241
|
-
$kendo-pivotgrid-configurator-
|
|
47242
|
-
$kendo-pivotgrid-configurator-
|
|
47243
|
-
$kendo-pivotgrid-configurator-
|
|
47244
|
-
$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)
|
|
47245
47836
|
|
|
47246
47837
|
$kendo-pivotgrid-configurator-button-padding-x: k-map-get( $kendo-spacing, 1 ) !default;
|
|
47247
47838
|
$kendo-pivotgrid-configurator-button-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
@@ -52378,8 +52969,6 @@ $kendo-scheduler-cell-height: $kendo-line-height-em !default;
|
|
|
52378
52969
|
$kendo-scheduler-datecolumn-width: 12em !default;
|
|
52379
52970
|
$kendo-scheduler-timecolumn-width: 11em !default;
|
|
52380
52971
|
|
|
52381
|
-
$kendo-scheduler-current-time-color: #ff0000 !default;
|
|
52382
|
-
|
|
52383
52972
|
$kendo-scheduler-nonwork-bg: k-try-shade( $kendo-scheduler-bg, .5 ) !default;
|
|
52384
52973
|
$kendo-scheduler-nonwork-text: null !default;
|
|
52385
52974
|
|
|
@@ -52407,7 +52996,7 @@ $kendo-scheduler-tooltip-border-width: 0 !default;
|
|
|
52407
52996
|
$kendo-scheduler-tooltip-bg: $kendo-color-primary-contrast !default;
|
|
52408
52997
|
$kendo-scheduler-tooltip-text: $kendo-base-text !default;
|
|
52409
52998
|
$kendo-scheduler-tooltip-border: null !default;
|
|
52410
|
-
$kendo-scheduler-tooltip-shadow:
|
|
52999
|
+
$kendo-scheduler-tooltip-shadow: k-elevation(2) !default;
|
|
52411
53000
|
|
|
52412
53001
|
$kendo-scheduler-tooltip-title-margin-y: k-map-get( $kendo-spacing, 3 ) !default;
|
|
52413
53002
|
$kendo-scheduler-tooltip-month-font-size: $kendo-font-size-sm !default;
|
|
@@ -52963,20 +53552,6 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
|
|
|
52963
53552
|
}
|
|
52964
53553
|
}
|
|
52965
53554
|
|
|
52966
|
-
// Current time
|
|
52967
|
-
.k-current-time {
|
|
52968
|
-
position: absolute;
|
|
52969
|
-
|
|
52970
|
-
&.k-current-time-arrow-left,
|
|
52971
|
-
&.k-current-time-arrow-right,
|
|
52972
|
-
&.k-current-time-arrow-down {
|
|
52973
|
-
width: 0;
|
|
52974
|
-
height: 0;
|
|
52975
|
-
background: transparent;
|
|
52976
|
-
border: 4px solid transparent;
|
|
52977
|
-
}
|
|
52978
|
-
}
|
|
52979
|
-
|
|
52980
53555
|
// Draging hint
|
|
52981
53556
|
.k-event-drag-hint {
|
|
52982
53557
|
opacity: .5;
|
|
@@ -53492,23 +54067,6 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
|
|
|
53492
54067
|
);
|
|
53493
54068
|
}
|
|
53494
54069
|
|
|
53495
|
-
// Current time
|
|
53496
|
-
.k-current-time {
|
|
53497
|
-
background: $kendo-scheduler-current-time-color;
|
|
53498
|
-
|
|
53499
|
-
&.k-current-time-arrow-left {
|
|
53500
|
-
border-right-color: $kendo-scheduler-current-time-color;
|
|
53501
|
-
}
|
|
53502
|
-
|
|
53503
|
-
&.k-current-time-arrow-right {
|
|
53504
|
-
border-left-color: $kendo-scheduler-current-time-color;
|
|
53505
|
-
}
|
|
53506
|
-
|
|
53507
|
-
&.k-current-time-arrow-down {
|
|
53508
|
-
border-top-color: $kendo-scheduler-current-time-color;
|
|
53509
|
-
}
|
|
53510
|
-
}
|
|
53511
|
-
|
|
53512
54070
|
// Header and footer
|
|
53513
54071
|
.k-scheduler-toolbar {
|
|
53514
54072
|
@include fill(
|
|
@@ -53861,16 +54419,16 @@ $kendo-chat-border: $kendo-app-border !default;
|
|
|
53861
54419
|
$kendo-chat-bubble-bg: $kendo-component-bg !default;
|
|
53862
54420
|
$kendo-chat-bubble-text: $kendo-component-text !default;
|
|
53863
54421
|
$kendo-chat-bubble-border: $kendo-chat-bubble-bg !default;
|
|
53864
|
-
$kendo-chat-bubble-shadow:
|
|
53865
|
-
$kendo-chat-bubble-hover-shadow:
|
|
53866
|
-
$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;
|
|
53867
54425
|
|
|
53868
54426
|
$kendo-chat-alt-bubble-bg: $kendo-color-primary !default;
|
|
53869
54427
|
$kendo-chat-alt-bubble-text: k-contrast-legacy( $kendo-chat-alt-bubble-bg ) !default;
|
|
53870
54428
|
$kendo-chat-alt-bubble-border: $kendo-chat-alt-bubble-bg !default;
|
|
53871
|
-
$kendo-chat-alt-bubble-shadow:
|
|
53872
|
-
$kendo-chat-alt-bubble-hover-shadow:
|
|
53873
|
-
$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;
|
|
53874
54432
|
|
|
53875
54433
|
$kendo-chat-quick-reply-bg: transparent !default;
|
|
53876
54434
|
$kendo-chat-quick-reply-text: $kendo-color-primary !default;
|
|
@@ -54753,7 +55311,7 @@ $kendo-timeline-track-end-calc: calc(#{$kendo-timeline-track-arrow-width} - 2 *
|
|
|
54753
55311
|
$kendo-timeline-track-bg: $kendo-button-bg !default;
|
|
54754
55312
|
$kendo-timeline-track-border-color: $kendo-button-border !default;
|
|
54755
55313
|
|
|
54756
|
-
$kendo-timeline-track-item-focus-shadow:
|
|
55314
|
+
$kendo-timeline-track-item-focus-shadow: k-elevation(2) !default;
|
|
54757
55315
|
|
|
54758
55316
|
$kendo-timeline-track-event-offset: 36px !default;
|
|
54759
55317
|
|
|
@@ -55420,12 +55978,11 @@ $kendo-pdf-viewer-page-spacing: 30px !default;
|
|
|
55420
55978
|
$kendo-pdf-viewer-page-bg: white !default;
|
|
55421
55979
|
$kendo-pdf-viewer-page-text: $kendo-component-text !default;
|
|
55422
55980
|
$kendo-pdf-viewer-page-border: $kendo-component-border !default;
|
|
55423
|
-
$kendo-pdf-viewer-page-shadow:
|
|
55424
|
-
|
|
55425
|
-
$kendo-pdf-viewer-search-dialog-padding-x: $kendo-toolbar-md-padding-x !default;
|
|
55426
|
-
$kendo-pdf-viewer-search-dialog-padding-y: calc( #{$kendo-toolbar-md-padding-x} * 2 ) !default;
|
|
55427
|
-
$kendo-pdf-viewer-search-dialog-spacing: $kendo-toolbar-md-spacing !default;
|
|
55981
|
+
$kendo-pdf-viewer-page-shadow: k-elevation(3) !default;
|
|
55428
55982
|
|
|
55983
|
+
$kendo-pdf-viewer-search-panel-padding-x: $kendo-toolbar-md-padding-x !default;
|
|
55984
|
+
$kendo-pdf-viewer-search-panel-padding-y: calc( #{$kendo-toolbar-md-padding-x} * 2 ) !default;
|
|
55985
|
+
$kendo-pdf-viewer-search-panel-spacing: $kendo-toolbar-md-spacing !default;
|
|
55429
55986
|
$kendo-pdf-viewer-search-panel-border-width: 1px !default;
|
|
55430
55987
|
$kendo-pdf-viewer-search-panel-border-radius: 0 !default;
|
|
55431
55988
|
$kendo-pdf-viewer-search-panel-bg: $kendo-component-bg !default;
|
|
@@ -55487,19 +56044,17 @@ $kendo-pdf-viewer-icon-text: $kendo-dropzone-icon-text !default;
|
|
|
55487
56044
|
flex: 1 1 auto;
|
|
55488
56045
|
outline: none;
|
|
55489
56046
|
|
|
55490
|
-
.k-enable-text-select,
|
|
55491
56047
|
&.k-enable-text-select {
|
|
55492
56048
|
user-select: text;
|
|
55493
56049
|
cursor: text;
|
|
55494
56050
|
}
|
|
55495
56051
|
|
|
55496
|
-
.k-enable-panning,
|
|
55497
56052
|
&.k-enable-panning {
|
|
55498
56053
|
cursor: grab;
|
|
55499
|
-
|
|
55500
|
-
|
|
55501
|
-
|
|
55502
|
-
|
|
56054
|
+
|
|
56055
|
+
span::selection {
|
|
56056
|
+
background-color: transparent;
|
|
56057
|
+
}
|
|
55503
56058
|
}
|
|
55504
56059
|
}
|
|
55505
56060
|
|
|
@@ -55532,10 +56087,6 @@ $kendo-pdf-viewer-icon-text: $kendo-dropzone-icon-text !default;
|
|
|
55532
56087
|
color: transparent;
|
|
55533
56088
|
}
|
|
55534
56089
|
|
|
55535
|
-
mark {
|
|
55536
|
-
color: transparent;
|
|
55537
|
-
}
|
|
55538
|
-
|
|
55539
56090
|
.k-search-highlight-mark {
|
|
55540
56091
|
color: transparent;
|
|
55541
56092
|
}
|
|
@@ -55563,19 +56114,22 @@ $kendo-pdf-viewer-icon-text: $kendo-dropzone-icon-text !default;
|
|
|
55563
56114
|
}
|
|
55564
56115
|
|
|
55565
56116
|
// Search
|
|
55566
|
-
.k-pdf-viewer-search-
|
|
55567
|
-
|
|
55568
|
-
|
|
55569
|
-
|
|
55570
|
-
|
|
55571
|
-
|
|
55572
|
-
|
|
56117
|
+
.k-pdf-viewer-canvas > .k-search-panel {
|
|
56118
|
+
width: max-content;
|
|
56119
|
+
margin-top: calc( (#{$kendo-button-calc-size} + ( 2 * #{$kendo-pdf-viewer-search-panel-border-width} ) + ( 2 * #{$kendo-pdf-viewer-search-panel-padding-y} )) * -1 );
|
|
56120
|
+
padding-block: $kendo-pdf-viewer-search-panel-padding-y;
|
|
56121
|
+
padding-inline: $kendo-pdf-viewer-search-panel-padding-x;
|
|
56122
|
+
border-width: $kendo-pdf-viewer-search-panel-border-width;
|
|
56123
|
+
border-style: solid;
|
|
56124
|
+
border-radius: $kendo-pdf-viewer-search-panel-border-radius;
|
|
55573
56125
|
display: flex;
|
|
55574
|
-
gap: $kendo-pdf-viewer-search-
|
|
56126
|
+
gap: $kendo-pdf-viewer-search-panel-spacing;
|
|
55575
56127
|
flex-flow: row nowrap;
|
|
55576
56128
|
flex: 0 0 auto;
|
|
55577
56129
|
justify-content: flex-start;
|
|
55578
56130
|
align-items: center;
|
|
56131
|
+
z-index: 10;
|
|
56132
|
+
cursor: default;
|
|
55579
56133
|
|
|
55580
56134
|
.k-search-dialog-draghandle {
|
|
55581
56135
|
cursor: move;
|
|
@@ -55597,21 +56151,6 @@ $kendo-pdf-viewer-icon-text: $kendo-dropzone-icon-text !default;
|
|
|
55597
56151
|
}
|
|
55598
56152
|
}
|
|
55599
56153
|
|
|
55600
|
-
.k-pdf-viewer-canvas > .k-search-panel {
|
|
55601
|
-
width: max-content;
|
|
55602
|
-
margin-top: calc( (#{$kendo-button-calc-size} + ( 2 * #{$kendo-pdf-viewer-search-panel-border-width} ) + ( 2 * #{$kendo-pdf-viewer-search-dialog-padding-y} )) * -1 );
|
|
55603
|
-
border-width: $kendo-pdf-viewer-search-panel-border-width;
|
|
55604
|
-
border-style: solid;
|
|
55605
|
-
border-radius: $kendo-pdf-viewer-search-panel-border-radius;
|
|
55606
|
-
z-index: 10;
|
|
55607
|
-
cursor: default;
|
|
55608
|
-
}
|
|
55609
|
-
|
|
55610
|
-
// Alias
|
|
55611
|
-
.k-search-container {
|
|
55612
|
-
@extend .k-search-panel !optional;
|
|
55613
|
-
}
|
|
55614
|
-
|
|
55615
56154
|
}
|
|
55616
56155
|
|
|
55617
56156
|
|
|
@@ -55689,10 +56228,6 @@ $kendo-pdf-viewer-icon-text: $kendo-dropzone-icon-text !default;
|
|
|
55689
56228
|
@include box-shadow( $kendo-pdf-viewer-search-panel-shadow );
|
|
55690
56229
|
}
|
|
55691
56230
|
|
|
55692
|
-
.k-search-container {
|
|
55693
|
-
@extend .k-search-panel !optional;
|
|
55694
|
-
}
|
|
55695
|
-
|
|
55696
56231
|
}
|
|
55697
56232
|
|
|
55698
56233
|
|
|
@@ -57504,7 +58039,7 @@ $kendo-orgchart-node-group-text: $kendo-base-text !default;
|
|
|
57504
58039
|
$kendo-orgchart-node-group-border: $kendo-base-border !default;
|
|
57505
58040
|
|
|
57506
58041
|
$kendo-orgchart-node-group-focus-border: $kendo-card-focus-border !default;
|
|
57507
|
-
$kendo-orgchart-node-group-focus-shadow:
|
|
58042
|
+
$kendo-orgchart-node-group-focus-shadow: k-elevation(1) !default;
|
|
57508
58043
|
|
|
57509
58044
|
$kendo-orgchart-node-group-title-font-size: $kendo-font-size-lg !default;
|
|
57510
58045
|
$kendo-orgchart-node-group-title-margin-bottom: k-math-div( $kendo-orgchart-spacer, 3 ) !default;
|
|
@@ -57519,7 +58054,7 @@ $kendo-orgchart-card-padding-y: $kendo-card-padding-y !default;
|
|
|
57519
58054
|
$kendo-orgchart-card-padding-x: $kendo-orgchart-card-padding-y !default;
|
|
57520
58055
|
$kendo-orgchart-card-border-width: $kendo-card-border-width !default;
|
|
57521
58056
|
$kendo-orgchart-card-shadow: $kendo-card-shadow !default;
|
|
57522
|
-
$kendo-orgchart-card-focus-shadow:
|
|
58057
|
+
$kendo-orgchart-card-focus-shadow: k-elevation(1) !default;
|
|
57523
58058
|
|
|
57524
58059
|
$kendo-orgchart-card-title-margin-bottom: 0px !default;
|
|
57525
58060
|
$kendo-orgchart-card-title-font-size: null !default;
|
|
@@ -57950,6 +58485,8 @@ $kendo-signature-maximized-line-width: 3px !default;
|
|
|
57950
58485
|
@include kendo-core--styles();
|
|
57951
58486
|
|
|
57952
58487
|
// Color system
|
|
58488
|
+
@include color-system-styles();
|
|
58489
|
+
|
|
57953
58490
|
|
|
57954
58491
|
// Typography and utils
|
|
57955
58492
|
@include kendo-typography--styles();
|
|
@@ -58067,6 +58604,7 @@ $kendo-signature-maximized-line-width: 3px !default;
|
|
|
58067
58604
|
@include kendo-panelbar--styles();
|
|
58068
58605
|
@include kendo-splitter--styles();
|
|
58069
58606
|
@include kendo-tile-layout--styles();
|
|
58607
|
+
@include kendo-dock-manager--styles();
|
|
58070
58608
|
|
|
58071
58609
|
|
|
58072
58610
|
// Data management
|