@progress/kendo-theme-fluent 5.8.2-dev.4 → 5.8.2-dev.6

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.
@@ -10,8 +10,8 @@
10
10
  }
11
11
 
12
12
  // Wave animation
13
- .k-skeleton-wave .k-skeleton::after,
14
- .k-skeleton-wave .k-skeleton::after {
13
+ .k-skeleton-wave .k-skeleton::after,
14
+ .k-skeleton-wave.k-skeleton::after {
15
15
  background-image: linear-gradient(
16
16
  to right,
17
17
  transparent,
@@ -103,7 +103,7 @@ $kendo-slider-thumb-active-bg: $kendo-slider-thumb-hover-bg !default;
103
103
  $kendo-slider-thumb-active-text: inherit !default;
104
104
  /// The active border color of the slider thumb.
105
105
  /// @group slider
106
- $kendo-slider-thumb-active-border: $kendo-slider-thumb-hover-border !default;
106
+ $kendo-slider-thumb-active-border: get-theme-color-var( primary-130 ) !default;
107
107
  /// The active gradient of the slider thumb.
108
108
  /// @group slider
109
109
  $kendo-slider-thumb-active-gradient: transparent !default;
@@ -116,7 +116,7 @@ $kendo-slider-thumb-focus-bg: $kendo-slider-thumb-hover-bg !default;
116
116
  $kendo-slider-thumb-focus-text: inherit !default;
117
117
  /// The focus border color of the slider thumb.
118
118
  /// @group slider
119
- $kendo-slider-thumb-focus-border: $kendo-slider-thumb-hover-border !default;
119
+ $kendo-slider-thumb-focus-border: $kendo-slider-thumb-active-border !default;
120
120
  /// The focus gradient of the slider thumb.
121
121
  /// @group slider
122
122
  $kendo-slider-thumb-focus-gradient: transparent !default;
@@ -24,7 +24,7 @@
24
24
  }
25
25
 
26
26
  ul {
27
- margin: 0;
27
+ margin: 0 0 1px 0;
28
28
  padding: 0;
29
29
 
30
30
  li {
@@ -62,6 +62,7 @@
62
62
  display: flex;
63
63
  position: relative;
64
64
  flex: 1 1 auto;
65
+ overflow: hidden;
65
66
  }
66
67
 
67
68
 
@@ -121,7 +122,7 @@
121
122
  }
122
123
 
123
124
  &::before {
124
- top: calc( var( --kendo-time-list-title-spacing, #{$kendo-time-list-title-spacing} ) + var( --kendo-time-list-title-height, #{$kendo-time-list-title-height} ) );
125
+ top: calc( var( --kendo-time-list-title-height, #{$kendo-time-list-title-height} ) );
125
126
  }
126
127
 
127
128
  &::after {
@@ -197,7 +198,7 @@
197
198
  width: 0;
198
199
  height: var( --kendo-time-list-highlight-height, $kendo-time-list-highlight-height );
199
200
  align-self: center;
200
- display: inline-flex;
201
+ display: var( --kendo-time-list-separator-display, #{$kendo-time-list-separator-display} );
201
202
  justify-content: center;
202
203
  align-items: center;
203
204
  position: relative;
@@ -35,6 +35,9 @@ $kendo-time-selector-header-padding-y: map-get( $kendo-spacing, 3 ) !default;
35
35
  /// @group time-selector
36
36
  $kendo-time-selector-header-border-width: 0px !default;
37
37
 
38
+ /// Visibility of the time-selector separator.
39
+ /// @group time-selector
40
+ $kendo-time-list-separator-display: none;
38
41
  /// Minimum width of the time-selector columns.
39
42
  /// @group time-selector
40
43
  $kendo-time-list-width: 4em !default;
@@ -51,7 +54,10 @@ $kendo-time-list-title-font-size: var( --kendo-font-size-xs, inherit ) !default;
51
54
  /// Line height of the time-selector titles.
52
55
  /// @group time-selector
53
56
  $kendo-time-list-title-line-height: var( --kendo-line-height-lg, inherit ) !default;
54
- $kendo-time-list-title-height: calc( #{$kendo-time-list-title-font-size} * #{$kendo-time-list-title-line-height} ) !default;
57
+ /// Height of the time-selector titles.
58
+ /// @group time-selector
59
+ $kendo-time-list-title-height: calc( #{$kendo-time-list-title-spacing} + #{$kendo-time-list-title-font-size} * #{$kendo-time-list-title-line-height} ) !default;
60
+
55
61
  /// Text color of the time-selector titles.
56
62
  /// @group time-selector
57
63
  $kendo-time-list-title-text: var( --kendo-subtle-text, inherit ) !default;
@@ -61,14 +67,16 @@ $kendo-time-list-title-focus-text: $kendo-time-selector-text !default;
61
67
 
62
68
  /// Horizontal padding of the time-selector list items.
63
69
  /// @group time-selector
64
- $kendo-time-list-item-padding-x: map-get( $kendo-spacing, 2 ) !default; //$kendo-list-item-padding-x-md
70
+ $kendo-time-list-item-padding-x: map-get( $kendo-spacing, 2 ) !default;
65
71
  /// Vertical padding of the time-selector list items.
66
72
  /// @group time-selector
67
- $kendo-time-list-item-padding-y: map-get( $kendo-spacing, 1 ) !default; //$kendo-list-item-padding-y-md
73
+ $kendo-time-list-item-padding-y: map-get( $kendo-spacing, 1 ) !default;
68
74
 
69
75
  /// Width of the border of the selected item in the time-selector.
70
76
  /// @group time-selector
71
77
  $kendo-time-list-highlight-border-width: 1px 0px !default;
78
+ /// Height of the selected item in the time-selector.
79
+ /// @group time-selector
72
80
  $kendo-time-list-highlight-height: calc( #{$kendo-time-selector-font-size} * #{$kendo-time-selector-line-height} + #{ $kendo-time-list-item-padding-y * 2} ) !default;
73
81
  /// Background color of the selected item in the time-selector.
74
82
  /// @group time-selector
@@ -102,6 +102,13 @@
102
102
  align-items: center;
103
103
  }
104
104
 
105
+ // Template item
106
+ .k-toolbar-item:focus,
107
+ .k-toolbar-item.k-focus {
108
+ outline-width: var( --kendo-toolbar-item-focus-outline-width, #{$kendo-toolbar-item-focus-outline-width} );
109
+ outline-style: var( --kendo-toolbar-item-focus-outline-style, #{$kendo-toolbar-item-focus-outline-style} );
110
+ }
111
+
105
112
  }
106
113
 
107
114
  // Toolbar group
@@ -13,6 +13,12 @@
13
13
  border-color: var( --kendo-toolbar-separator-border, #{$kendo-toolbar-separator-border} );
14
14
  }
15
15
 
16
+ // Template item
17
+ .k-toolbar-item:focus,
18
+ .k-toolbar-item.k-focus {
19
+ outline-color: var( --kendo-toolbar-item-focus-outline-color, #{$kendo-toolbar-item-focus-outline-color} );
20
+ }
21
+
16
22
  }
17
23
 
18
24
  // Overflow container
@@ -38,3 +38,13 @@ $kendo-toolbar-separator-border: get-theme-color-var( neutral-60 ) !default;
38
38
  /// The width of the input in the toolbar
39
39
  /// @group toolbar
40
40
  $kendo-toolbar-input-width: 10em !default;
41
+
42
+ /// Border width of the focused toolbar item.
43
+ /// @group toolbar
44
+ $kendo-toolbar-item-focus-outline-width: 1px !default;
45
+ /// Border style of the focused toolbar item.
46
+ /// @group toolbar
47
+ $kendo-toolbar-item-focus-outline-style: solid !default;
48
+ /// Border color of the focused toolbar item.
49
+ /// @group toolbar
50
+ $kendo-toolbar-item-focus-outline-color: get-theme-color-var( neutral-130 ) !default;