@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
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
@mixin kendo-dock-manager--theme-base() {
|
|
2
|
+
|
|
3
|
+
// DockManager
|
|
4
|
+
.k-dock-manager {
|
|
5
|
+
border-color: $kendo-dock-manager-border;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
// Splitter
|
|
9
|
+
.k-dock-manager-splitter .k-pane-header,
|
|
10
|
+
.k-dock-manager-unpinned-container .k-pane-header {
|
|
11
|
+
background-color: $kendo-dock-manager-pane-header-bg;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.k-dock-manager-unpinned-container {
|
|
15
|
+
background-color: $kendo-dock-manager-unpinned-container-bg;
|
|
16
|
+
@include box-shadow( $kendo-dock-manager-unpinned-container-shadow );
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
// Docking preview
|
|
20
|
+
.k-docking-preview {
|
|
21
|
+
background-color: $kendo-dock-manager-dock-preview-bg;
|
|
22
|
+
border-color: $kendo-dock-manager-dock-preview-border;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
@mixin kendo-dock-navigator--theme() {
|
|
28
|
+
|
|
29
|
+
.k-dock-indicator {
|
|
30
|
+
color: $kendo-dock-indicator-text;
|
|
31
|
+
background-color: $kendo-dock-indicator-bg;
|
|
32
|
+
outline-color: $kendo-dock-indicator-outline;
|
|
33
|
+
filter: $kendo-dock-indicator-shadow;
|
|
34
|
+
|
|
35
|
+
&:hover,
|
|
36
|
+
&.k-hover {
|
|
37
|
+
background-color: $kendo-dock-indicator-hover-bg;
|
|
38
|
+
color: $kendo-dock-indicator-hover-text;
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
@mixin kendo-dock-manager--theme() {
|
|
45
|
+
@include kendo-dock-manager--theme-base();
|
|
46
|
+
@include kendo-dock-navigator--theme();
|
|
47
|
+
}
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
/// The width of the border around the DockManager component.
|
|
2
|
+
/// @group dock-manager
|
|
3
|
+
$kendo-dock-manager-border-width: 1px !default;
|
|
4
|
+
/// The style of the border around the DockManager component.
|
|
5
|
+
/// @group dock-manager
|
|
6
|
+
$kendo-dock-manager-border-style: solid !default;
|
|
7
|
+
/// The color of the border around the DockManager component.
|
|
8
|
+
/// @group dock-manager
|
|
9
|
+
$kendo-dock-manager-border: $kendo-base-border !default;
|
|
10
|
+
|
|
11
|
+
/// The vertical padding of the pane header in the DockManager component.
|
|
12
|
+
/// @group dock-manager
|
|
13
|
+
$kendo-dock-manager-pane-header-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
|
|
14
|
+
/// The horizontal padding of the pane header in the DockManager component.
|
|
15
|
+
/// @group dock-manager
|
|
16
|
+
$kendo-dock-manager-pane-header-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
|
|
17
|
+
/// The width of the border around the pane header in the DockManager component.
|
|
18
|
+
/// @group dock-manager
|
|
19
|
+
$kendo-dock-manager-pane-header-border-width: $kendo-dock-manager-border-width !default;
|
|
20
|
+
/// The style of the border around the pane header in the DockManager component.
|
|
21
|
+
/// @group dock-manager
|
|
22
|
+
$kendo-dock-manager-pane-header-border-style: solid !default;
|
|
23
|
+
/// The background color of the pane header in the DockManager component.
|
|
24
|
+
/// @group dock-manager
|
|
25
|
+
$kendo-dock-manager-pane-header-bg: $kendo-component-header-bg !default;
|
|
26
|
+
|
|
27
|
+
/// The vertical padding of the pane title in the DockManager component.
|
|
28
|
+
/// @group dock-manager
|
|
29
|
+
$kendo-dock-manager-pane-title-padding-y: null !default;
|
|
30
|
+
/// The horizontal padding of the pane title in the DockManager component.
|
|
31
|
+
/// @group dock-manager
|
|
32
|
+
$kendo-dock-manager-pane-title-padding-x: null !default;
|
|
33
|
+
/// The font family of the pane title in the DockManager component.
|
|
34
|
+
/// @group dock-manager
|
|
35
|
+
$kendo-dock-manager-pane-title-font-family: $kendo-font-family !default;
|
|
36
|
+
/// The font size of the pane title in the DockManager component.
|
|
37
|
+
/// @group dock-manager
|
|
38
|
+
$kendo-dock-manager-pane-title-font-size: $kendo-font-size-lg !default;
|
|
39
|
+
/// The line height of the pane title in the DockManager component.
|
|
40
|
+
/// @group dock-manager
|
|
41
|
+
$kendo-dock-manager-pane-title-line-height: $kendo-line-height-sm !default;
|
|
42
|
+
/// The font weight of the pane title in the DockManager component.
|
|
43
|
+
/// @group dock-manager
|
|
44
|
+
$kendo-dock-manager-pane-title-font-weight: $kendo-font-weight-normal !default;
|
|
45
|
+
|
|
46
|
+
/// The horizontal padding of the pane content in the DockManager component.
|
|
47
|
+
/// @group dock-manager
|
|
48
|
+
$kendo-dock-manager-pane-content-padding-x: $kendo-dock-manager-pane-header-padding-x !default;
|
|
49
|
+
/// The vertical padding of the pane content in the DockManager component.
|
|
50
|
+
/// @group dock-manager
|
|
51
|
+
$kendo-dock-manager-pane-content-padding-y: $kendo-dock-manager-pane-header-padding-x !default;
|
|
52
|
+
|
|
53
|
+
/// The horizontal padding of the tabbed pane in the DockManager component.
|
|
54
|
+
/// @group dock-manager
|
|
55
|
+
$kendo-dock-manager-tabbed-pane-padding-y: k-map-get( $kendo-spacing, 3.5 ) !default;
|
|
56
|
+
/// The horizontal padding of the tabbed pane in the DockManager component.
|
|
57
|
+
/// @group dock-manager
|
|
58
|
+
$kendo-dock-manager-tabbed-pane-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
|
|
59
|
+
|
|
60
|
+
/// The width of the unpinned pane container in the DockManager component.
|
|
61
|
+
/// @group dock-manager
|
|
62
|
+
$kendo-dock-manager-unpinned-container-width: 300px !default;
|
|
63
|
+
/// The background-color of the unpinned pane container in the DockManager component.
|
|
64
|
+
/// @group dock-manager
|
|
65
|
+
$kendo-dock-manager-unpinned-container-bg: $kendo-color-white !default;
|
|
66
|
+
/// The box shadow of the unpinned pane container in the DockManager component.
|
|
67
|
+
/// @group dock-manager
|
|
68
|
+
$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;
|
|
69
|
+
|
|
70
|
+
/// The padding of the dock indicator in the DockManager component.
|
|
71
|
+
/// @group dock-manager
|
|
72
|
+
$kendo-dock-indicator-padding: k-map-get( $kendo-spacing, 1.5 ) !default;
|
|
73
|
+
/// The background color of the dock indicator in the DockManager component.
|
|
74
|
+
/// @group dock-manager
|
|
75
|
+
$kendo-dock-indicator-bg: #f5f5f5 !default;
|
|
76
|
+
/// The text color of the dock indicator in the DockManager component.
|
|
77
|
+
/// @group dock-manager
|
|
78
|
+
$kendo-dock-indicator-text: $kendo-color-primary !default;
|
|
79
|
+
/// The outline width of the dock indicator in the DockManager component.
|
|
80
|
+
/// @group dock-manager
|
|
81
|
+
$kendo-dock-indicator-outline-width: 1px !default;
|
|
82
|
+
/// The outline style of the dock indicator in the DockManager component.
|
|
83
|
+
/// @group dock-manager
|
|
84
|
+
$kendo-dock-indicator-outline-style: solid !default;
|
|
85
|
+
/// The outline color of the dock indicator in the DockManager component.
|
|
86
|
+
/// @group dock-manager
|
|
87
|
+
$kendo-dock-indicator-outline: $kendo-dock-indicator-text !default;
|
|
88
|
+
/// The box shadow of the dock indicator in the DockManager component.
|
|
89
|
+
/// @group dock-manager
|
|
90
|
+
$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;
|
|
91
|
+
|
|
92
|
+
/// The background color of the hovered dock indicator in the DockManager component.
|
|
93
|
+
/// @group dock-manager
|
|
94
|
+
$kendo-dock-indicator-hover-bg: $kendo-color-primary !default;
|
|
95
|
+
/// The text color of the hovered dock indicator in the DockManager component.
|
|
96
|
+
/// @group dock-manager
|
|
97
|
+
$kendo-dock-indicator-hover-text: $kendo-color-white !default;
|
|
98
|
+
|
|
99
|
+
/// The width of the border around the dropping area in the DockManager component.
|
|
100
|
+
/// @group dock-manager
|
|
101
|
+
$kendo-dock-manager-dock-preview-border-width: 1px !default;
|
|
102
|
+
/// The style of the border around the dropping area in the DockManager component.
|
|
103
|
+
/// @group dock-manager
|
|
104
|
+
$kendo-dock-manager-dock-preview-border-style: dashed !default;
|
|
105
|
+
/// The border radius of the dropping area in the DockManager component.
|
|
106
|
+
/// @group dock-manager
|
|
107
|
+
$kendo-dock-manager-dock-preview-border-radius: $kendo-border-radius-sm !default;
|
|
108
|
+
/// The background color of the dropping area in the DockManager component.
|
|
109
|
+
/// @group dock-manager
|
|
110
|
+
$kendo-dock-manager-dock-preview-bg: rgba( $kendo-color-primary, .16 ) !default;
|
|
111
|
+
/// The border color of the dropping area in the DockManager component.
|
|
112
|
+
/// @group dock-manager
|
|
113
|
+
$kendo-dock-manager-dock-preview-border: $kendo-color-primary !default;
|
package/scss/fab/_variables.scss
CHANGED
|
@@ -115,10 +115,10 @@ $kendo-fab-sizes: (
|
|
|
115
115
|
|
|
116
116
|
/// The base shadow of the FAB.
|
|
117
117
|
/// @group floating-action-button
|
|
118
|
-
$kendo-fab-shadow:
|
|
118
|
+
$kendo-fab-shadow: k-elevation(5) !default;
|
|
119
119
|
/// The shadow of the disabled FAB.
|
|
120
120
|
/// @group floating-action-button
|
|
121
|
-
$kendo-fab-disabled-shadow:
|
|
121
|
+
$kendo-fab-disabled-shadow: k-elevation(5) !default;
|
|
122
122
|
/// The shadow of the active FAB.
|
|
123
123
|
/// @group floating-action-button
|
|
124
124
|
$kendo-fab-active-shadow: null !default;
|
package/scss/index.scss
CHANGED
|
@@ -120,6 +120,7 @@
|
|
|
120
120
|
@import "./panelbar/_index.scss";
|
|
121
121
|
@import "./splitter/_index.scss";
|
|
122
122
|
@import "./tilelayout/_index.scss";
|
|
123
|
+
@import "./dock-manager/_index.scss";
|
|
123
124
|
|
|
124
125
|
|
|
125
126
|
// Data management
|
|
@@ -171,6 +172,8 @@
|
|
|
171
172
|
@include kendo-core--styles();
|
|
172
173
|
|
|
173
174
|
// Color system
|
|
175
|
+
@include color-system-styles();
|
|
176
|
+
|
|
174
177
|
|
|
175
178
|
// Typography and utils
|
|
176
179
|
@include kendo-typography--styles();
|
|
@@ -288,6 +291,7 @@
|
|
|
288
291
|
@include kendo-panelbar--styles();
|
|
289
292
|
@include kendo-splitter--styles();
|
|
290
293
|
@include kendo-tile-layout--styles();
|
|
294
|
+
@include kendo-dock-manager--styles();
|
|
291
295
|
|
|
292
296
|
|
|
293
297
|
// Data management
|
|
@@ -195,7 +195,7 @@ $kendo-list-header-text: null !default;
|
|
|
195
195
|
$kendo-list-header-border: inherit !default;
|
|
196
196
|
/// The box shadow of the List header.
|
|
197
197
|
/// @group list
|
|
198
|
-
$kendo-list-header-shadow:
|
|
198
|
+
$kendo-list-header-shadow: k-elevation(2) !default;
|
|
199
199
|
|
|
200
200
|
|
|
201
201
|
/// The background color of the List items.
|
|
@@ -57,4 +57,4 @@ $kendo-listview-item-focus-bg: null !default;
|
|
|
57
57
|
$kendo-listview-item-focus-border: null !default;
|
|
58
58
|
/// The box shadow of the focused ListView items.
|
|
59
59
|
/// @group listview
|
|
60
|
-
$kendo-listview-item-focus-shadow: inset 0 0 0 2px rgba(0, 0, 0, .13) !default;
|
|
60
|
+
$kendo-listview-item-focus-shadow: inset 0 0 0 2px rgba(0, 0, 0, .13) !default;
|
|
@@ -22,7 +22,7 @@ $kendo-orgchart-node-group-text: $kendo-base-text !default;
|
|
|
22
22
|
$kendo-orgchart-node-group-border: $kendo-base-border !default;
|
|
23
23
|
|
|
24
24
|
$kendo-orgchart-node-group-focus-border: $kendo-card-focus-border !default;
|
|
25
|
-
$kendo-orgchart-node-group-focus-shadow:
|
|
25
|
+
$kendo-orgchart-node-group-focus-shadow: k-elevation(1) !default;
|
|
26
26
|
|
|
27
27
|
$kendo-orgchart-node-group-title-font-size: $kendo-font-size-lg !default;
|
|
28
28
|
$kendo-orgchart-node-group-title-margin-bottom: k-math-div( $kendo-orgchart-spacer, 3 ) !default;
|
|
@@ -37,7 +37,7 @@ $kendo-orgchart-card-padding-y: $kendo-card-padding-y !default;
|
|
|
37
37
|
$kendo-orgchart-card-padding-x: $kendo-orgchart-card-padding-y !default;
|
|
38
38
|
$kendo-orgchart-card-border-width: $kendo-card-border-width !default;
|
|
39
39
|
$kendo-orgchart-card-shadow: $kendo-card-shadow !default;
|
|
40
|
-
$kendo-orgchart-card-focus-shadow:
|
|
40
|
+
$kendo-orgchart-card-focus-shadow: k-elevation(1) !default;
|
|
41
41
|
|
|
42
42
|
$kendo-orgchart-card-title-margin-bottom: 0px !default;
|
|
43
43
|
$kendo-orgchart-card-title-font-size: null !default;
|
|
@@ -42,19 +42,17 @@
|
|
|
42
42
|
flex: 1 1 auto;
|
|
43
43
|
outline: none;
|
|
44
44
|
|
|
45
|
-
.k-enable-text-select,
|
|
46
45
|
&.k-enable-text-select {
|
|
47
46
|
user-select: text;
|
|
48
47
|
cursor: text;
|
|
49
48
|
}
|
|
50
49
|
|
|
51
|
-
.k-enable-panning,
|
|
52
50
|
&.k-enable-panning {
|
|
53
51
|
cursor: grab;
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
52
|
+
|
|
53
|
+
span::selection {
|
|
54
|
+
background-color: transparent;
|
|
55
|
+
}
|
|
58
56
|
}
|
|
59
57
|
}
|
|
60
58
|
|
|
@@ -87,10 +85,6 @@
|
|
|
87
85
|
color: transparent;
|
|
88
86
|
}
|
|
89
87
|
|
|
90
|
-
mark {
|
|
91
|
-
color: transparent;
|
|
92
|
-
}
|
|
93
|
-
|
|
94
88
|
.k-search-highlight-mark {
|
|
95
89
|
color: transparent;
|
|
96
90
|
}
|
|
@@ -118,19 +112,22 @@
|
|
|
118
112
|
}
|
|
119
113
|
|
|
120
114
|
// Search
|
|
121
|
-
.k-pdf-viewer-search-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
115
|
+
.k-pdf-viewer-canvas > .k-search-panel {
|
|
116
|
+
width: max-content;
|
|
117
|
+
margin-top: calc( (#{$kendo-button-calc-size} + ( 2 * #{$kendo-pdf-viewer-search-panel-border-width} ) + ( 2 * #{$kendo-pdf-viewer-search-panel-padding-y} )) * -1 );
|
|
118
|
+
padding-block: $kendo-pdf-viewer-search-panel-padding-y;
|
|
119
|
+
padding-inline: $kendo-pdf-viewer-search-panel-padding-x;
|
|
120
|
+
border-width: $kendo-pdf-viewer-search-panel-border-width;
|
|
121
|
+
border-style: solid;
|
|
122
|
+
border-radius: $kendo-pdf-viewer-search-panel-border-radius;
|
|
128
123
|
display: flex;
|
|
129
|
-
gap: $kendo-pdf-viewer-search-
|
|
124
|
+
gap: $kendo-pdf-viewer-search-panel-spacing;
|
|
130
125
|
flex-flow: row nowrap;
|
|
131
126
|
flex: 0 0 auto;
|
|
132
127
|
justify-content: flex-start;
|
|
133
128
|
align-items: center;
|
|
129
|
+
z-index: 10;
|
|
130
|
+
cursor: default;
|
|
134
131
|
|
|
135
132
|
.k-search-dialog-draghandle {
|
|
136
133
|
cursor: move;
|
|
@@ -152,21 +149,6 @@
|
|
|
152
149
|
}
|
|
153
150
|
}
|
|
154
151
|
|
|
155
|
-
.k-pdf-viewer-canvas > .k-search-panel {
|
|
156
|
-
width: max-content;
|
|
157
|
-
margin-top: calc( (#{$kendo-button-calc-size} + ( 2 * #{$kendo-pdf-viewer-search-panel-border-width} ) + ( 2 * #{$kendo-pdf-viewer-search-dialog-padding-y} )) * -1 );
|
|
158
|
-
border-width: $kendo-pdf-viewer-search-panel-border-width;
|
|
159
|
-
border-style: solid;
|
|
160
|
-
border-radius: $kendo-pdf-viewer-search-panel-border-radius;
|
|
161
|
-
z-index: 10;
|
|
162
|
-
cursor: default;
|
|
163
|
-
}
|
|
164
|
-
|
|
165
|
-
// Alias
|
|
166
|
-
.k-search-container {
|
|
167
|
-
@extend .k-search-panel !optional;
|
|
168
|
-
}
|
|
169
|
-
|
|
170
152
|
}
|
|
171
153
|
|
|
172
154
|
|
|
@@ -23,12 +23,11 @@ $kendo-pdf-viewer-page-spacing: 30px !default;
|
|
|
23
23
|
$kendo-pdf-viewer-page-bg: white !default;
|
|
24
24
|
$kendo-pdf-viewer-page-text: $kendo-component-text !default;
|
|
25
25
|
$kendo-pdf-viewer-page-border: $kendo-component-border !default;
|
|
26
|
-
$kendo-pdf-viewer-page-shadow:
|
|
27
|
-
|
|
28
|
-
$kendo-pdf-viewer-search-dialog-padding-x: $kendo-toolbar-md-padding-x !default;
|
|
29
|
-
$kendo-pdf-viewer-search-dialog-padding-y: calc( #{$kendo-toolbar-md-padding-x} * 2 ) !default;
|
|
30
|
-
$kendo-pdf-viewer-search-dialog-spacing: $kendo-toolbar-md-spacing !default;
|
|
26
|
+
$kendo-pdf-viewer-page-shadow: k-elevation(3) !default;
|
|
31
27
|
|
|
28
|
+
$kendo-pdf-viewer-search-panel-padding-x: $kendo-toolbar-md-padding-x !default;
|
|
29
|
+
$kendo-pdf-viewer-search-panel-padding-y: calc( #{$kendo-toolbar-md-padding-x} * 2 ) !default;
|
|
30
|
+
$kendo-pdf-viewer-search-panel-spacing: $kendo-toolbar-md-spacing !default;
|
|
32
31
|
$kendo-pdf-viewer-search-panel-border-width: 1px !default;
|
|
33
32
|
$kendo-pdf-viewer-search-panel-border-radius: 0 !default;
|
|
34
33
|
$kendo-pdf-viewer-search-panel-bg: $kendo-component-bg !default;
|
|
@@ -69,10 +69,11 @@ $kendo-pivotgrid-configurator-header-bg: null !default;
|
|
|
69
69
|
$kendo-pivotgrid-configurator-header-text: $kendo-component-header-text !default;
|
|
70
70
|
$kendo-pivotgrid-configurator-header-border: null !default;
|
|
71
71
|
|
|
72
|
-
$kendo-pivotgrid-configurator-
|
|
73
|
-
$kendo-pivotgrid-configurator-
|
|
74
|
-
$kendo-pivotgrid-configurator-
|
|
75
|
-
$kendo-pivotgrid-configurator-
|
|
72
|
+
$kendo-pivotgrid-configurator-shadow: k-elevation(3) !default;
|
|
73
|
+
$kendo-pivotgrid-configurator-end-shadow: $kendo-pivotgrid-configurator-shadow !default; // -3px 0px 6px rgba(0, 0, 0, .16)
|
|
74
|
+
$kendo-pivotgrid-configurator-start-shadow: $kendo-pivotgrid-configurator-shadow !default; // 3px 0px 6px rgba(0, 0, 0, .16)
|
|
75
|
+
$kendo-pivotgrid-configurator-top-shadow: $kendo-pivotgrid-configurator-shadow !default; // 0px -3px 6px rgba(0, 0, 0, .16)
|
|
76
|
+
$kendo-pivotgrid-configurator-bottom-shadow: $kendo-pivotgrid-configurator-shadow !default; // 0px 3px 6px rgba(0, 0, 0, .16)
|
|
76
77
|
|
|
77
78
|
$kendo-pivotgrid-configurator-button-padding-x: k-map-get( $kendo-spacing, 1 ) !default;
|
|
78
79
|
$kendo-pivotgrid-configurator-button-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
@@ -36,4 +36,4 @@ $kendo-popup-text: $kendo-component-text !default;
|
|
|
36
36
|
$kendo-popup-border: $kendo-component-border !default;
|
|
37
37
|
/// Box shadow of the popup.
|
|
38
38
|
/// @group popup
|
|
39
|
-
$kendo-popup-shadow:
|
|
39
|
+
$kendo-popup-shadow: k-elevation(4) !default;
|
package/scss/rating/_theme.scss
CHANGED
|
@@ -11,14 +11,14 @@
|
|
|
11
11
|
text-shadow: $kendo-rating-icon-focus-shadow;
|
|
12
12
|
}
|
|
13
13
|
> .k-svg-icon {
|
|
14
|
-
filter:
|
|
14
|
+
filter: k-shadow-filter($kendo-rating-icon-focus-selected-shadow);
|
|
15
15
|
}
|
|
16
16
|
|
|
17
17
|
&.k-selected > .k-icon {
|
|
18
18
|
text-shadow: $kendo-rating-icon-focus-selected-shadow;
|
|
19
19
|
}
|
|
20
20
|
&.k-selected > .k-svg-icon {
|
|
21
|
-
filter:
|
|
21
|
+
filter: k-shadow-filter($kendo-rating-icon-focus-selected-shadow);
|
|
22
22
|
}
|
|
23
23
|
}
|
|
24
24
|
}
|
|
@@ -20,5 +20,5 @@ $kendo-rating-icon-selected-text: $kendo-selected-bg !default;
|
|
|
20
20
|
$kendo-rating-icon-hover-text: $kendo-selected-bg !default;
|
|
21
21
|
$kendo-rating-icon-focus-text: $kendo-selected-bg !default;
|
|
22
22
|
|
|
23
|
-
$kendo-rating-icon-focus-shadow:
|
|
24
|
-
$kendo-rating-icon-focus-selected-shadow:
|
|
23
|
+
$kendo-rating-icon-focus-shadow: k-elevation(1) !default;
|
|
24
|
+
$kendo-rating-icon-focus-selected-shadow: k-elevation(1) !default;
|
|
@@ -536,20 +536,6 @@
|
|
|
536
536
|
}
|
|
537
537
|
}
|
|
538
538
|
|
|
539
|
-
// Current time
|
|
540
|
-
.k-current-time {
|
|
541
|
-
position: absolute;
|
|
542
|
-
|
|
543
|
-
&.k-current-time-arrow-left,
|
|
544
|
-
&.k-current-time-arrow-right,
|
|
545
|
-
&.k-current-time-arrow-down {
|
|
546
|
-
width: 0;
|
|
547
|
-
height: 0;
|
|
548
|
-
background: transparent;
|
|
549
|
-
border: 4px solid transparent;
|
|
550
|
-
}
|
|
551
|
-
}
|
|
552
|
-
|
|
553
539
|
// Draging hint
|
|
554
540
|
.k-event-drag-hint {
|
|
555
541
|
opacity: .5;
|
|
@@ -9,23 +9,6 @@
|
|
|
9
9
|
);
|
|
10
10
|
}
|
|
11
11
|
|
|
12
|
-
// Current time
|
|
13
|
-
.k-current-time {
|
|
14
|
-
background: $kendo-scheduler-current-time-color;
|
|
15
|
-
|
|
16
|
-
&.k-current-time-arrow-left {
|
|
17
|
-
border-right-color: $kendo-scheduler-current-time-color;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
&.k-current-time-arrow-right {
|
|
21
|
-
border-left-color: $kendo-scheduler-current-time-color;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
&.k-current-time-arrow-down {
|
|
25
|
-
border-top-color: $kendo-scheduler-current-time-color;
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
|
|
29
12
|
// Header and footer
|
|
30
13
|
.k-scheduler-toolbar {
|
|
31
14
|
@include fill(
|
|
@@ -48,8 +48,6 @@ $kendo-scheduler-cell-height: $kendo-line-height-em !default;
|
|
|
48
48
|
$kendo-scheduler-datecolumn-width: 12em !default;
|
|
49
49
|
$kendo-scheduler-timecolumn-width: 11em !default;
|
|
50
50
|
|
|
51
|
-
$kendo-scheduler-current-time-color: #ff0000 !default;
|
|
52
|
-
|
|
53
51
|
$kendo-scheduler-nonwork-bg: k-try-shade( $kendo-scheduler-bg, .5 ) !default;
|
|
54
52
|
$kendo-scheduler-nonwork-text: null !default;
|
|
55
53
|
|
|
@@ -77,7 +75,7 @@ $kendo-scheduler-tooltip-border-width: 0 !default;
|
|
|
77
75
|
$kendo-scheduler-tooltip-bg: $kendo-color-primary-contrast !default;
|
|
78
76
|
$kendo-scheduler-tooltip-text: $kendo-base-text !default;
|
|
79
77
|
$kendo-scheduler-tooltip-border: null !default;
|
|
80
|
-
$kendo-scheduler-tooltip-shadow:
|
|
78
|
+
$kendo-scheduler-tooltip-shadow: k-elevation(2) !default;
|
|
81
79
|
|
|
82
80
|
$kendo-scheduler-tooltip-title-margin-y: k-map-get( $kendo-spacing, 3 ) !default;
|
|
83
81
|
$kendo-scheduler-tooltip-month-font-size: $kendo-font-size-sm !default;
|
|
@@ -80,7 +80,7 @@ $kendo-tabstrip-item-selected-gradient: null !default;
|
|
|
80
80
|
|
|
81
81
|
$kendo-tabstrip-item-focus-shadow: $kendo-list-item-focus-shadow !default;
|
|
82
82
|
|
|
83
|
-
$kendo-tabstrip-item-dragging-shadow:
|
|
83
|
+
$kendo-tabstrip-item-dragging-shadow: k-elevation(3) !default;
|
|
84
84
|
|
|
85
85
|
$kendo-tabstrip-item-disabled-bg: null !default;
|
|
86
86
|
$kendo-tabstrip-item-disabled-text: null !default;
|
|
@@ -27,7 +27,7 @@ $kendo-timeline-track-end-calc: calc(#{$kendo-timeline-track-arrow-width} - 2 *
|
|
|
27
27
|
$kendo-timeline-track-bg: $kendo-button-bg !default;
|
|
28
28
|
$kendo-timeline-track-border-color: $kendo-button-border !default;
|
|
29
29
|
|
|
30
|
-
$kendo-timeline-track-item-focus-shadow:
|
|
30
|
+
$kendo-timeline-track-item-focus-shadow: k-elevation(2) !default;
|
|
31
31
|
|
|
32
32
|
$kendo-timeline-track-event-offset: 36px !default;
|
|
33
33
|
|
package/scss/tooltip/_theme.scss
CHANGED
|
@@ -18,6 +18,8 @@ $kendo-tooltip-bg: rgba( k-contrast-legacy( $kendo-body-bg ), .75 ) !default;
|
|
|
18
18
|
$kendo-tooltip-text: k-contrast-legacy( $kendo-tooltip-bg ) !default;
|
|
19
19
|
$kendo-tooltip-border: $kendo-tooltip-bg !default;
|
|
20
20
|
|
|
21
|
+
$kendo-tooltip-shadow: k-elevation(2) !default;
|
|
22
|
+
|
|
21
23
|
$kendo-tooltip-primary-bg: $kendo-color-primary !default;
|
|
22
24
|
$kendo-tooltip-primary-text: k-contrast-legacy( $kendo-tooltip-primary-bg ) !default;
|
|
23
25
|
$kendo-tooltip-primary-border: $kendo-tooltip-primary-bg !default;
|
|
@@ -76,10 +76,10 @@ $kendo-window-text: $kendo-component-text !default;
|
|
|
76
76
|
$kendo-window-border: $kendo-component-border !default;
|
|
77
77
|
/// The box shadow of the Window.
|
|
78
78
|
/// @group window
|
|
79
|
-
$kendo-window-shadow:
|
|
79
|
+
$kendo-window-shadow: k-elevation(8) !default;
|
|
80
80
|
/// The box shadow of the focused Window.
|
|
81
81
|
/// @group window
|
|
82
|
-
$kendo-window-focus-shadow:
|
|
82
|
+
$kendo-window-focus-shadow: k-elevation(9) !default;
|
|
83
83
|
|
|
84
84
|
/// The background color of the Window titlebar.
|
|
85
85
|
/// @group window
|