@progress/kendo-theme-fluent 10.6.0-dev.3 → 10.6.0-dev.5
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 +1 -1
- package/dist/fluent-main-dark.css +1 -1
- package/dist/fluent-main.css +1 -1
- package/dist/meta/variables.json +16 -0
- package/lib/swatches/all.json +1 -1
- package/lib/swatches/fluent-main-dark.json +1 -1
- package/lib/swatches/fluent-main.json +1 -1
- package/package.json +5 -5
- package/scss/column-menu/_layout.scss +28 -6
- package/scss/column-menu/_theme.scss +21 -0
- package/scss/column-menu/_variables.scss +6 -0
- package/scss/grid/_layout.scss +1 -6
- package/scss/pager/_layout.scss +1 -0
- package/scss/popup/_layout.scss +11 -0
package/dist/meta/variables.json
CHANGED
|
@@ -18482,5 +18482,21 @@
|
|
|
18482
18482
|
"line-height": "var(--kendo-line-height, normal)"
|
|
18483
18483
|
}
|
|
18484
18484
|
}
|
|
18485
|
+
},
|
|
18486
|
+
"kendo-group-menu-item-action-hover-bg": {
|
|
18487
|
+
"type": "String",
|
|
18488
|
+
"value": "color-mix(in srgb, currentColor 5%, transparent)"
|
|
18489
|
+
},
|
|
18490
|
+
"kendo-group-menu-item-action-selected-bg": {
|
|
18491
|
+
"type": "String",
|
|
18492
|
+
"value": "color-mix(in srgb, currentColor 8%, transparent)"
|
|
18493
|
+
},
|
|
18494
|
+
"kendo-group-menu-item-add-action-text": {
|
|
18495
|
+
"type": "String",
|
|
18496
|
+
"value": "var(--kendo-color-primary, #0078d4)"
|
|
18497
|
+
},
|
|
18498
|
+
"kendo-group-menu-item-border": {
|
|
18499
|
+
"type": "String",
|
|
18500
|
+
"value": "color-mix(in srgb, var(--kendo-color-border, #8a8886) 16%, transparent)"
|
|
18485
18501
|
}
|
|
18486
18502
|
}
|
package/lib/swatches/all.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-theme-fluent",
|
|
3
3
|
"description": "A css variables based theme for Kendo UI that follows the Fluent design system guidelines.",
|
|
4
|
-
"version": "10.6.0-dev.
|
|
4
|
+
"version": "10.6.0-dev.5",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -53,13 +53,13 @@
|
|
|
53
53
|
"postpublish": "echo 'no postpublish for the Fluent theme'"
|
|
54
54
|
},
|
|
55
55
|
"dependencies": {
|
|
56
|
-
"@progress/kendo-svg-icons": "^4.
|
|
57
|
-
"@progress/kendo-theme-core": "10.6.0-dev.
|
|
58
|
-
"@progress/kendo-theme-utils": "10.6.0-dev.
|
|
56
|
+
"@progress/kendo-svg-icons": "^4.1.0",
|
|
57
|
+
"@progress/kendo-theme-core": "10.6.0-dev.5",
|
|
58
|
+
"@progress/kendo-theme-utils": "10.6.0-dev.5"
|
|
59
59
|
},
|
|
60
60
|
"directories": {
|
|
61
61
|
"doc": "docs",
|
|
62
62
|
"lib": "lib"
|
|
63
63
|
},
|
|
64
|
-
"gitHead": "
|
|
64
|
+
"gitHead": "974ffdfcf9036dc8bfd368b17f6fcef80e6a1d98"
|
|
65
65
|
}
|
|
@@ -24,27 +24,49 @@
|
|
|
24
24
|
line-height: $_line-height;
|
|
25
25
|
}
|
|
26
26
|
}
|
|
27
|
+
|
|
28
|
+
.k-group-menu-#{$size} {
|
|
29
|
+
font-size: $_font-size;
|
|
30
|
+
line-height: $_line-height;
|
|
31
|
+
|
|
32
|
+
.k-group-menu-item {
|
|
33
|
+
padding-block: $_padding-y;
|
|
34
|
+
padding-inline: $_padding-x;
|
|
35
|
+
font-size: $_font-size;
|
|
36
|
+
line-height: $_line-height;
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.k-group-menu .k-group-menu-item-wrap + .k-group-menu-item-wrap {
|
|
42
|
+
border-top: 1px solid;
|
|
27
43
|
}
|
|
28
44
|
|
|
29
|
-
.k-
|
|
45
|
+
.k-group-menu-item {
|
|
46
|
+
display: flex;
|
|
47
|
+
user-select: none;
|
|
48
|
+
gap: k-spacing(1);
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.k-group-menu-item-actions {
|
|
30
52
|
display: flex;
|
|
31
53
|
align-items: center;
|
|
32
54
|
justify-content: center;
|
|
33
|
-
gap: k-spacing(2);
|
|
34
55
|
margin-block: calc( k-spacing(1) * -1);
|
|
35
56
|
pointer-events: none;
|
|
36
57
|
}
|
|
37
58
|
|
|
38
|
-
.k-
|
|
59
|
+
.k-group-menu-item-action {
|
|
39
60
|
display: flex;
|
|
40
61
|
align-items: center;
|
|
41
62
|
justify-content: center;
|
|
42
|
-
pointer-events: none;
|
|
43
63
|
padding: k-spacing(1);
|
|
64
|
+
border-radius: k-border-radius(md);
|
|
65
|
+
pointer-events: auto;
|
|
66
|
+
cursor: pointer;
|
|
44
67
|
}
|
|
45
68
|
|
|
46
|
-
.k-
|
|
47
|
-
pointer-events: auto;
|
|
69
|
+
.k-group-menu-item-drag-action {
|
|
48
70
|
cursor: move;
|
|
49
71
|
}
|
|
50
72
|
}
|
|
@@ -1,5 +1,26 @@
|
|
|
1
|
+
@use "../core/_index.scss" as *;
|
|
2
|
+
@use "./_variables.scss" as *;
|
|
3
|
+
|
|
1
4
|
@mixin kendo-column-menu--theme-base() {
|
|
2
5
|
.k-column-menu {}
|
|
6
|
+
|
|
7
|
+
.k-group-menu-item-action:not(.k-group-menu-item-drag-action).k-hover,
|
|
8
|
+
.k-group-menu-item-action:not(.k-group-menu-item-drag-action):hover {
|
|
9
|
+
background-color: $kendo-group-menu-item-action-hover-bg;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.k-group-menu-item-action:not(.k-group-menu-item-drag-action).k-selected,
|
|
13
|
+
.k-group-menu-item-action:not(.k-group-menu-item-drag-action):active {
|
|
14
|
+
background-color: $kendo-group-menu-item-action-selected-bg;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.k-group-menu-item-action.k-group-menu-item-add-action {
|
|
18
|
+
color: $kendo-group-menu-item-add-action-text;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.k-group-menu .k-group-menu-item-wrap + .k-group-menu-item-wrap {
|
|
22
|
+
border-top-color: $kendo-group-menu-item-border;
|
|
23
|
+
}
|
|
3
24
|
}
|
|
4
25
|
|
|
5
26
|
@mixin kendo-column-menu--theme() {
|
|
@@ -39,3 +39,9 @@ $kendo-column-menu-sizes: (
|
|
|
39
39
|
line-height: $kendo-column-menu-lg-line-height
|
|
40
40
|
)
|
|
41
41
|
) !default;
|
|
42
|
+
|
|
43
|
+
// Group Menu
|
|
44
|
+
$kendo-group-menu-item-action-hover-bg: color-mix(in srgb, currentColor 5%, transparent) !default;
|
|
45
|
+
$kendo-group-menu-item-action-selected-bg: color-mix(in srgb, currentColor 8%, transparent) !default;
|
|
46
|
+
$kendo-group-menu-item-add-action-text: k-color(primary) !default;
|
|
47
|
+
$kendo-group-menu-item-border: color-mix(in srgb, k-color( border ) 16%, transparent) !default;
|
package/scss/grid/_layout.scss
CHANGED
|
@@ -1167,14 +1167,12 @@
|
|
|
1167
1167
|
}
|
|
1168
1168
|
}
|
|
1169
1169
|
|
|
1170
|
-
.k-
|
|
1170
|
+
.k-multicheck-wrap {
|
|
1171
1171
|
margin: 0;
|
|
1172
1172
|
padding: 0;
|
|
1173
|
-
max-height: 300px;
|
|
1174
1173
|
font-size: var( --kendo-grid-column-menu-multicheck-font-size, #{$kendo-grid-column-menu-multicheck-font-size} );
|
|
1175
1174
|
line-height: var( --kendo-grid-column-menu-multicheck-line-height, #{$kendo-grid-column-menu-multicheck-line-height} );
|
|
1176
1175
|
white-space: nowrap;
|
|
1177
|
-
overflow: auto;
|
|
1178
1176
|
list-style: none;
|
|
1179
1177
|
|
|
1180
1178
|
.k-item,
|
|
@@ -1281,9 +1279,6 @@
|
|
|
1281
1279
|
padding: 0;
|
|
1282
1280
|
margin: 0;
|
|
1283
1281
|
list-style: none;
|
|
1284
|
-
max-height: 200px;
|
|
1285
|
-
overflow-x: hidden;
|
|
1286
|
-
overflow-y: auto;
|
|
1287
1282
|
}
|
|
1288
1283
|
|
|
1289
1284
|
.k-column-chooser-title,
|
package/scss/pager/_layout.scss
CHANGED
package/scss/popup/_layout.scss
CHANGED