@progress/kendo-theme-fluent 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 +392 -111
- package/dist/meta/sassdoc-data.json +2964 -584
- package/dist/meta/sassdoc-raw-data.json +1729 -545
- package/lib/swatches/all.json +1 -1
- package/lib/swatches/fluent-main.json +1 -1
- package/package.json +4 -4
- package/scss/action-sheet/_variables.scss +1 -1
- package/scss/bottom-navigation/_variables.scss +2 -2
- package/scss/chat/_variables.scss +3 -3
- package/scss/colorgradient/_layout.scss +2 -0
- package/scss/colorgradient/_theme.scss +3 -30
- package/scss/colorgradient/_variables.scss +16 -10
- package/scss/core/_index.scss +10 -4
- package/scss/core/_legacy.scss +4 -0
- package/scss/core/elevation/_index.scss +44 -0
- package/scss/core/elevation/_legacy.scss +48 -0
- package/scss/core/helpers/_index.scss +1 -0
- package/scss/core/helpers/_indicators.scss +35 -0
- package/scss/core/module-system/_components.scss +1 -0
- package/scss/dataviz/_variables.scss +1 -1
- package/scss/dialog/_variables.scss +1 -1
- package/scss/dock-manager/_index.scss +29 -0
- package/scss/dock-manager/_layout.scss +224 -0
- package/scss/dock-manager/_theme.scss +47 -0
- package/scss/dock-manager/_variables.scss +119 -0
- package/scss/fab/_layout.scss +0 -1
- package/scss/grid/_variables.scss +1 -1
- package/scss/index.scss +7 -1
- package/scss/listview/_layout.scss +1 -1
- package/scss/menu/_variables.scss +1 -1
- package/scss/pdf-viewer/_layout.scss +31 -50
- package/scss/pdf-viewer/_theme.scss +0 -4
- package/scss/pdf-viewer/_variables.scss +8 -9
- package/scss/popover/_variables.scss +2 -2
- package/scss/popup/_variables.scss +1 -1
- package/scss/scheduler/_layout.scss +1 -15
- package/scss/scheduler/_theme.scss +0 -17
- package/scss/scheduler/_variables.scss +1 -5
- package/scss/splitter/_layout.scss +1 -0
- package/scss/taskboard/_variables.scss +1 -1
- package/scss/timeline/_variables.scss +1 -1
- package/scss/tooltip/_variables.scss +1 -1
- package/scss/utils/_layout.scss +1 -0
- package/scss/window/_variables.scss +2 -2
|
@@ -531,20 +531,6 @@
|
|
|
531
531
|
justify-content: center;
|
|
532
532
|
}
|
|
533
533
|
|
|
534
|
-
// Current time
|
|
535
|
-
.k-current-time {
|
|
536
|
-
position: absolute;
|
|
537
|
-
|
|
538
|
-
&.k-current-time-arrow-left,
|
|
539
|
-
&.k-current-time-arrow-right,
|
|
540
|
-
&.k-current-time-arrow-down {
|
|
541
|
-
width: 0;
|
|
542
|
-
height: 0;
|
|
543
|
-
background: transparent;
|
|
544
|
-
border: 4px solid transparent;
|
|
545
|
-
}
|
|
546
|
-
}
|
|
547
|
-
|
|
548
534
|
// Draging hint
|
|
549
535
|
.k-event-drag-hint {
|
|
550
536
|
opacity: .5;
|
|
@@ -938,7 +924,7 @@
|
|
|
938
924
|
|
|
939
925
|
.k-safari {
|
|
940
926
|
.k-scheduler-tooltip .k-tooltip-event:not(:last-child) {
|
|
941
|
-
margin-block-end: var( --kendo-scheduler-tooltip-event-gap #{$kendo-scheduler-tooltip-event-gap} );
|
|
927
|
+
margin-block-end: var( --kendo-scheduler-tooltip-event-gap, #{$kendo-scheduler-tooltip-event-gap} );
|
|
942
928
|
}
|
|
943
929
|
|
|
944
930
|
.k-scheduler-yearview .k-calendar-view .k-month {
|
|
@@ -11,23 +11,6 @@
|
|
|
11
11
|
);
|
|
12
12
|
}
|
|
13
13
|
|
|
14
|
-
// Current time
|
|
15
|
-
.k-current-time {
|
|
16
|
-
background: var( --kendo-scheduler-current-time-color, #{$kendo-scheduler-current-time-color} );
|
|
17
|
-
|
|
18
|
-
&.k-current-time-arrow-left {
|
|
19
|
-
border-right-color: var( --kendo-scheduler-current-time-color, #{$kendo-scheduler-current-time-color} );
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
&.k-current-time-arrow-right {
|
|
23
|
-
border-left-color: var( --kendo-scheduler-current-time-color, #{$kendo-scheduler-current-time-color} );
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
&.k-current-time-arrow-down {
|
|
27
|
-
border-top-color: var( --kendo-scheduler-current-time-color, #{$kendo-scheduler-current-time-color} );
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
|
|
31
14
|
// Header and footer
|
|
32
15
|
.k-scheduler-toolbar {
|
|
33
16
|
@include fill(
|
|
@@ -146,10 +146,6 @@ $kendo-scheduler-datecolumn-width: 12em !default;
|
|
|
146
146
|
/// @group scheduler
|
|
147
147
|
$kendo-scheduler-timecolumn-width: 11em !default;
|
|
148
148
|
|
|
149
|
-
/// Color of the current time marker in the scheduler.
|
|
150
|
-
/// @group scheduler
|
|
151
|
-
$kendo-scheduler-current-time-color: #ff0000 !default;
|
|
152
|
-
|
|
153
149
|
/// Background color of the non-working hours in the scheduler.
|
|
154
150
|
/// @group scheduler
|
|
155
151
|
$kendo-scheduler-nonwork-bg: k-get-theme-color-var( neutral-10 ) !default;
|
|
@@ -221,7 +217,7 @@ $kendo-scheduler-tooltip-text: k-get-theme-color-var( neutral-130 ) !default;
|
|
|
221
217
|
$kendo-scheduler-tooltip-border: null !default;
|
|
222
218
|
/// Shadow of the scheduler tooltip.
|
|
223
219
|
/// @group scheduler
|
|
224
|
-
$kendo-scheduler-tooltip-shadow:
|
|
220
|
+
$kendo-scheduler-tooltip-shadow: k-elevation(5) !default;
|
|
225
221
|
|
|
226
222
|
/// Vertical spacing of the scheduler tooltip title.
|
|
227
223
|
/// @group scheduler
|
|
@@ -185,7 +185,7 @@ $kendo-taskboard-card-focus-shadow: none !default;
|
|
|
185
185
|
$kendo-taskboard-card-selected-border: k-get-theme-color-var( primary-100 ) !default;
|
|
186
186
|
/// Selected shadow of the task board card.
|
|
187
187
|
/// @group taskboard
|
|
188
|
-
$kendo-taskboard-card-selected-shadow: var( --kendo-box-shadow-depth-
|
|
188
|
+
$kendo-taskboard-card-selected-shadow: var( --kendo-box-shadow-depth-3, none ) !default;
|
|
189
189
|
|
|
190
190
|
/// Font size of the task board card title.
|
|
191
191
|
/// @group taskboard
|
|
@@ -98,7 +98,7 @@ $kendo-timeline-flag-border-radius: map.get( $kendo-spacing, 0.5 ) !default;
|
|
|
98
98
|
$kendo-timeline-flag-line-height: var( --kendo-line-height, normal ) !default;
|
|
99
99
|
/// The box shadow of the flag in the timeline.
|
|
100
100
|
/// @group timeline
|
|
101
|
-
$kendo-timeline-flag-box-shadow: var( --kendo-box-shadow-depth-
|
|
101
|
+
$kendo-timeline-flag-box-shadow: var( --kendo-box-shadow-depth-2, none ) !default;
|
|
102
102
|
/// The min widht of the flag in the timeline.
|
|
103
103
|
/// @group timeline
|
|
104
104
|
$kendo-timeline-flag-min-width: map.get( $kendo-spacing, 20 ) !default;
|
|
@@ -48,7 +48,7 @@ $kendo-tooltip-text: var( --kendo-component-text, initial ) !default;
|
|
|
48
48
|
$kendo-tooltip-border: transparent !default;
|
|
49
49
|
/// The box-shadow of the tooltip
|
|
50
50
|
/// @group tooltip
|
|
51
|
-
$kendo-tooltip-shadow: var( --kendo-box-shadow-depth-
|
|
51
|
+
$kendo-tooltip-shadow: var( --kendo-box-shadow-depth-2, none ) !default;
|
|
52
52
|
|
|
53
53
|
/// The text color of the tooltip button
|
|
54
54
|
/// @group tooltip
|
package/scss/utils/_layout.scss
CHANGED
|
@@ -81,10 +81,10 @@ $kendo-window-text: var( --kendo-component-text, initial ) !default;
|
|
|
81
81
|
$kendo-window-border: k-get-theme-color-var( primary-100 ) !default;
|
|
82
82
|
/// The box shadow of the Window.
|
|
83
83
|
/// @group window
|
|
84
|
-
$kendo-window-shadow: var( --kendo-box-shadow-depth-
|
|
84
|
+
$kendo-window-shadow: var( --kendo-box-shadow-depth-8, none ) !default;
|
|
85
85
|
/// The box shadow of the focused Window.
|
|
86
86
|
/// @group window
|
|
87
|
-
$kendo-window-focus-shadow: var( --kendo-box-shadow-depth-
|
|
87
|
+
$kendo-window-focus-shadow: var( --kendo-box-shadow-depth-9, none ) !default;
|
|
88
88
|
|
|
89
89
|
/// The background color of the Window titlebar.
|
|
90
90
|
/// @group window
|