@progress/kendo-theme-fluent 7.1.0-dev.9 → 7.1.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
CHANGED
|
@@ -28865,7 +28865,7 @@ kendo-label > .k-label {
|
|
|
28865
28865
|
}
|
|
28866
28866
|
[dir=rtl] .k-floating-label-container > .k-label, [dir=rtl] .k-floating-label-container:focus-within > .k-label, [dir=rtl] .k-floating-label-container.k-focus > .k-label, .k-rtl .k-floating-label-container > .k-label, .k-rtl .k-floating-label-container:focus-within > .k-label, .k-rtl .k-floating-label-container.k-focus > .k-label, .k-floating-label-container[dir=rtl] > .k-label, .k-floating-label-container[dir=rtl]:focus-within > .k-label, .k-floating-label-container[dir=rtl].k-focus > .k-label {
|
|
28867
28867
|
left: auto;
|
|
28868
|
-
right: var(--kendo-floating-label-offset-x,
|
|
28868
|
+
right: var(--kendo-floating-label-focus-offset-x, 0);
|
|
28869
28869
|
}
|
|
28870
28870
|
.k-floating-label-container:disabled, .k-floating-label-container[disabled], .k-floating-label-container.k-disabled {
|
|
28871
28871
|
background: none;
|
|
@@ -31094,15 +31094,20 @@ textarea.k-input-inner {
|
|
|
31094
31094
|
margin: 0;
|
|
31095
31095
|
border-style: solid;
|
|
31096
31096
|
border-color: inherit;
|
|
31097
|
-
|
|
31098
|
-
|
|
31097
|
+
border-width: 0 0 0 1px;
|
|
31098
|
+
height: 1rem;
|
|
31099
|
+
align-self: center;
|
|
31099
31100
|
}
|
|
31100
31101
|
.k-input-separator-horizontal {
|
|
31102
|
+
height: auto;
|
|
31101
31103
|
margin-inline: 0.375rem;
|
|
31104
|
+
align-self: stretch;
|
|
31102
31105
|
border-width: 1px 0 0;
|
|
31103
31106
|
}
|
|
31104
31107
|
.k-input-separator-vertical {
|
|
31108
|
+
height: auto;
|
|
31105
31109
|
margin-block: 0.375rem;
|
|
31110
|
+
align-self: stretch;
|
|
31106
31111
|
border-width: 0 0 0 1px;
|
|
31107
31112
|
}
|
|
31108
31113
|
|
|
@@ -46032,6 +46037,11 @@ kendo-editor.k-readonly .k-editor-content.k-focus {
|
|
|
46032
46037
|
border-width: 0;
|
|
46033
46038
|
display: flex;
|
|
46034
46039
|
}
|
|
46040
|
+
.k-gantt-timeline-pane .k-gantt-timeline *,
|
|
46041
|
+
.k-gantt-timeline-pane .k-gantt-timeline *::before,
|
|
46042
|
+
.k-gantt-timeline-pane .k-gantt-timeline *::after, .k-gantt-timeline-pane .k-gantt-timeline::before, .k-gantt-timeline-pane .k-gantt-timeline::after {
|
|
46043
|
+
box-sizing: border-box;
|
|
46044
|
+
}
|
|
46035
46045
|
.k-gantt-timeline-pane .k-grid-content {
|
|
46036
46046
|
overflow-x: scroll;
|
|
46037
46047
|
}
|
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": "7.1.0
|
|
4
|
+
"version": "7.1.0",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -53,12 +53,12 @@
|
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
55
|
"@progress/kendo-svg-icons": "2.1.0",
|
|
56
|
-
"@progress/kendo-theme-core": "7.1.0
|
|
57
|
-
"@progress/kendo-theme-utils": "7.1.0
|
|
56
|
+
"@progress/kendo-theme-core": "7.1.0",
|
|
57
|
+
"@progress/kendo-theme-utils": "7.1.0"
|
|
58
58
|
},
|
|
59
59
|
"directories": {
|
|
60
60
|
"doc": "docs",
|
|
61
61
|
"lib": "lib"
|
|
62
62
|
},
|
|
63
|
-
"gitHead": "
|
|
63
|
+
"gitHead": "72d42dfbf1b9b895c405ccba9b35d22204a4b12d"
|
|
64
64
|
}
|
|
@@ -81,7 +81,7 @@
|
|
|
81
81
|
&:focus-within > .k-label,
|
|
82
82
|
&.k-focus > .k-label {
|
|
83
83
|
left: auto;
|
|
84
|
-
right: var( --kendo-floating-label-offset-x, #{$kendo-floating-label-offset-x} );
|
|
84
|
+
right: var( --kendo-floating-label-focus-offset-x, #{$kendo-floating-label-focus-offset-x} );
|
|
85
85
|
}
|
|
86
86
|
}
|
|
87
87
|
|
package/scss/gantt/_layout.scss
CHANGED
package/scss/input/_layout.scss
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
@use "sass:map";
|
|
2
2
|
@use "../core/" as *;
|
|
3
3
|
@use "./_variables.scss" as *;
|
|
4
|
+
@use "../icon/_variables.scss" as *;
|
|
4
5
|
|
|
5
6
|
@mixin kendo-input--layout() {
|
|
6
7
|
|
|
@@ -237,16 +238,21 @@
|
|
|
237
238
|
margin: 0;
|
|
238
239
|
border-style: solid;
|
|
239
240
|
border-color: inherit;
|
|
240
|
-
|
|
241
|
-
|
|
241
|
+
border-width: 0 0 0 1px;
|
|
242
|
+
height: $kendo-icon-size;
|
|
243
|
+
align-self: center;
|
|
242
244
|
|
|
243
245
|
&-horizontal {
|
|
246
|
+
height: auto;
|
|
244
247
|
margin-inline: $kendo-input-md-padding-y;
|
|
248
|
+
align-self: stretch;
|
|
245
249
|
border-width: 1px 0 0;
|
|
246
250
|
}
|
|
247
251
|
|
|
248
252
|
&-vertical {
|
|
253
|
+
height: auto;
|
|
249
254
|
margin-block: $kendo-input-md-padding-y;
|
|
255
|
+
align-self: stretch;
|
|
250
256
|
border-width: 0 0 0 1px;
|
|
251
257
|
}
|
|
252
258
|
}
|