@progress/kendo-theme-default 5.1.2-dev.2 → 5.1.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.
- package/dist/all.css +271 -60
- package/dist/all.scss +68 -33
- package/package.json +2 -2
- package/scss/button/_layout.scss +4 -0
- package/scss/dataviz/_layout.scss +8 -0
- package/scss/filemanager/_layout.scss +3 -0
- package/scss/floating-label/_layout.scss +1 -0
- package/scss/icons/_layout.scss +7 -0
- package/scss/icons/font/WebComponentsIcons.scss +1 -1
- package/scss/icons/font/WebComponentsIcons.ttf +0 -0
- package/scss/input/_layout.scss +6 -2
- package/scss/menu/_theme.scss +2 -5
- package/scss/notification/_theme.scss +7 -5
- package/scss/notification/_variables.scss +14 -13
- package/scss/pivotgrid/_layout.scss +1 -0
- package/scss/pivotgrid/_variables.scss +1 -0
- package/scss/textarea/_layout.scss +1 -3
- package/scss/utils/_overflow.scss +10 -4
- package/scss/utils/_resize.scss +3 -1
|
Binary file
|
package/scss/input/_layout.scss
CHANGED
|
@@ -185,7 +185,9 @@
|
|
|
185
185
|
// Input with icon styles
|
|
186
186
|
.k-input-icon,
|
|
187
187
|
.k-input-validation-icon,
|
|
188
|
-
.k-input-loading-icon
|
|
188
|
+
.k-input-loading-icon,
|
|
189
|
+
.k-input-prefix > .k-icon,
|
|
190
|
+
.k-input-suffix > .k-icon {
|
|
189
191
|
flex: none;
|
|
190
192
|
align-self: center;
|
|
191
193
|
display: inline-flex;
|
|
@@ -359,7 +361,9 @@
|
|
|
359
361
|
.k-input-icon,
|
|
360
362
|
.k-input-validation-icon,
|
|
361
363
|
.k-input-loading-icon,
|
|
362
|
-
.k-clear-value
|
|
364
|
+
.k-clear-value,
|
|
365
|
+
.k-input-prefix > .k-icon,
|
|
366
|
+
.k-input-suffix > .k-icon {
|
|
363
367
|
width: $_icon-size;
|
|
364
368
|
height: $_icon-size;
|
|
365
369
|
}
|
package/scss/menu/_theme.scss
CHANGED
|
@@ -80,14 +80,11 @@
|
|
|
80
80
|
$kendo-menu-popup-item-expanded-gradient
|
|
81
81
|
);
|
|
82
82
|
}
|
|
83
|
-
|
|
84
|
-
&.k-focus {
|
|
85
|
-
@include box-shadow( $kendo-menu-popup-item-focus-shadow );
|
|
86
|
-
}
|
|
87
83
|
}
|
|
88
84
|
|
|
89
85
|
.k-item {
|
|
90
|
-
&:focus
|
|
86
|
+
&:focus,
|
|
87
|
+
&.k-focus {
|
|
91
88
|
@include box-shadow( $kendo-menu-popup-item-focus-shadow );
|
|
92
89
|
}
|
|
93
90
|
}
|
|
@@ -17,11 +17,13 @@
|
|
|
17
17
|
box-shadow: $notification-shadow;
|
|
18
18
|
}
|
|
19
19
|
|
|
20
|
-
@each $
|
|
21
|
-
.k-notification-#{$
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
20
|
+
@each $name, $props in $kendo-notification-theme {
|
|
21
|
+
.k-notification-#{$name} {
|
|
22
|
+
@include fill(
|
|
23
|
+
map-get( $props, color ),
|
|
24
|
+
map-get( $props, background-color ),
|
|
25
|
+
map-get( $props, border )
|
|
26
|
+
);
|
|
25
27
|
}
|
|
26
28
|
}
|
|
27
29
|
|
|
@@ -17,18 +17,19 @@ $notification-bg: $component-bg !default;
|
|
|
17
17
|
$notification-text: $component-text !default;
|
|
18
18
|
$notification-border: $component-border !default;
|
|
19
19
|
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
}
|
|
20
|
+
@function notification-theme( $colors ) {
|
|
21
|
+
$_theme: ();
|
|
22
|
+
|
|
23
|
+
@each $name, $color in $colors {
|
|
24
|
+
$_theme: map-merge(( $name: (
|
|
25
|
+
color: contrast-wcag( $color ),
|
|
26
|
+
background-color: $color,
|
|
27
|
+
border: $color,
|
|
28
|
+
)), $_theme );
|
|
29
|
+
}
|
|
31
30
|
|
|
32
|
-
@
|
|
33
|
-
$notification-themes: map-merge($notification-themes, ($theme: notification-theme($theme, $props)) );
|
|
31
|
+
@return $_theme;
|
|
34
32
|
}
|
|
33
|
+
|
|
34
|
+
$kendo-notification-theme-colors: $kendo-theme-colors !default;
|
|
35
|
+
$kendo-notification-theme: notification-theme( $kendo-notification-theme-colors ) !default;
|
|
@@ -6,6 +6,7 @@ $pivotgrid-font-family: $font-family !default;
|
|
|
6
6
|
$pivotgrid-font-size: $font-size !default;
|
|
7
7
|
$pivotgrid-line-height: $line-height !default;
|
|
8
8
|
$pivotgrid-border-width: 1px !default;
|
|
9
|
+
$pivotgrid-icon-spacing: 8px !default;
|
|
9
10
|
|
|
10
11
|
$pivotgrid-row-header-width: 300px !default;
|
|
11
12
|
$pivotgrid-column-header-height: 75px !default;
|
|
@@ -46,16 +46,22 @@
|
|
|
46
46
|
// sass-lint:disable no-important
|
|
47
47
|
@if $utils-overflow {
|
|
48
48
|
@each $overflow in $utils-overflow {
|
|
49
|
-
.k-overflow-#{$overflow} { overflow: $overflow
|
|
50
|
-
.k-overflow-x-#{$overflow} { overflow-x: $overflow
|
|
51
|
-
.k-overflow-y-#{$overflow} { overflow-y: $overflow
|
|
49
|
+
.k-overflow-#{$overflow} { overflow: $overflow; }
|
|
50
|
+
.k-overflow-x-#{$overflow} { overflow-x: $overflow; }
|
|
51
|
+
.k-overflow-y-#{$overflow} { overflow-y: $overflow; }
|
|
52
|
+
|
|
53
|
+
.\!k-overflow-#{$overflow} { overflow: $overflow !important; }
|
|
54
|
+
.\!k-overflow-x-#{$overflow} { overflow-x: $overflow !important; }
|
|
55
|
+
.\!k-overflow-y-#{$overflow} { overflow-y: $overflow !important; }
|
|
52
56
|
}
|
|
53
57
|
|
|
54
58
|
|
|
55
59
|
@each $overflow-x in $utils-overflow {
|
|
56
60
|
@each $overflow-y in $utils-overflow {
|
|
57
61
|
@if $overflow-x != $overflow-y {
|
|
58
|
-
.k-overflow-#{$overflow-x}-#{$overflow-y} { overflow: $overflow-x $overflow-y
|
|
62
|
+
.k-overflow-#{$overflow-x}-#{$overflow-y} { overflow: $overflow-x $overflow-y; }
|
|
63
|
+
|
|
64
|
+
.\!k-overflow-#{$overflow-x}-#{$overflow-y} { overflow: $overflow-x $overflow-y !important; }
|
|
59
65
|
}
|
|
60
66
|
}
|
|
61
67
|
}
|
package/scss/utils/_resize.scss
CHANGED
|
@@ -27,8 +27,10 @@
|
|
|
27
27
|
|
|
28
28
|
@if $utils-resize {
|
|
29
29
|
@each $resize in $utils-resize {
|
|
30
|
+
.k-resize-#{$resize} { resize: $resize; }
|
|
31
|
+
|
|
30
32
|
// sass-lint:disable-block no-important
|
|
31
|
-
|
|
33
|
+
.\!k-resize-#{$resize} { resize: $resize !important; }
|
|
32
34
|
}
|
|
33
35
|
}
|
|
34
36
|
|