@progress/kendo-theme-default 6.6.1-dev.0 → 6.7.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 +57 -52
- package/dist/all.scss +217 -64
- package/dist/meta/sassdoc-data.json +17629 -14329
- package/dist/meta/sassdoc-raw-data.json +1525 -0
- package/dist/meta/variables.json +84 -12
- package/lib/swatches/default-blue.json +1 -1
- package/lib/swatches/default-dataviz-v4.json +1 -1
- package/lib/swatches/default-green.json +1 -1
- package/lib/swatches/default-main-dark.json +1 -1
- package/lib/swatches/default-main.json +1 -1
- package/lib/swatches/default-nordic.json +1 -1
- package/lib/swatches/default-ocean-blue-a11y.json +1 -1
- package/lib/swatches/default-ocean-blue.json +1 -1
- package/lib/swatches/default-orange.json +1 -1
- package/lib/swatches/default-purple.json +1 -1
- package/lib/swatches/default-turquoise.json +1 -1
- package/lib/swatches/default-urban.json +1 -1
- package/package.json +4 -4
- package/scss/breadcrumb/_layout.scss +28 -13
- package/scss/breadcrumb/_variables.scss +177 -6
- package/scss/filter/_layout.scss +9 -42
package/scss/filter/_layout.scss
CHANGED
|
@@ -22,12 +22,12 @@
|
|
|
22
22
|
|
|
23
23
|
.k-filter-container,
|
|
24
24
|
.k-filter-preview {
|
|
25
|
-
margin-
|
|
25
|
+
margin-block-end: $kendo-filter-bottom-margin;
|
|
26
26
|
}
|
|
27
27
|
|
|
28
28
|
.k-filter-lines,
|
|
29
29
|
.k-filter-item {
|
|
30
|
-
padding-
|
|
30
|
+
padding-inline-start: $kendo-filter-padding-x;
|
|
31
31
|
}
|
|
32
32
|
|
|
33
33
|
.k-filter-toolbar {
|
|
@@ -41,8 +41,8 @@
|
|
|
41
41
|
position: absolute;
|
|
42
42
|
width: $kendo-filter-padding-x;
|
|
43
43
|
height: $kendo-filter-line-size;
|
|
44
|
-
|
|
45
|
-
|
|
44
|
+
inset-block-start: 50%;
|
|
45
|
+
inset-inline-start: -$kendo-filter-padding-x;
|
|
46
46
|
}
|
|
47
47
|
|
|
48
48
|
.k-toolbar {
|
|
@@ -61,8 +61,8 @@
|
|
|
61
61
|
position: absolute;
|
|
62
62
|
width: $kendo-filter-line-size;
|
|
63
63
|
height: 100%;
|
|
64
|
-
|
|
65
|
-
|
|
64
|
+
inset-block-start: -$kendo-filter-padding-y;
|
|
65
|
+
inset-inline-start: 0;
|
|
66
66
|
}
|
|
67
67
|
}
|
|
68
68
|
|
|
@@ -72,9 +72,9 @@
|
|
|
72
72
|
content: "";
|
|
73
73
|
position: absolute;
|
|
74
74
|
width: $kendo-filter-line-size;
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
75
|
+
inset-block-start: calc(-#{$kendo-filter-padding-y} - #{$kendo-filter-line-size});
|
|
76
|
+
inset-block-end: 50%;
|
|
77
|
+
inset-inline-start: -$kendo-filter-padding-x;
|
|
78
78
|
}
|
|
79
79
|
|
|
80
80
|
// The forth and fifth selectors targets the Angular rendering
|
|
@@ -86,39 +86,6 @@
|
|
|
86
86
|
.k-filter-lines .k-filter-item:last-child::before {
|
|
87
87
|
display: none;
|
|
88
88
|
}
|
|
89
|
-
|
|
90
|
-
.k-rtl &,
|
|
91
|
-
&[dir="rtl"],
|
|
92
|
-
[dir="rtl"] & {
|
|
93
|
-
.k-filter-lines,
|
|
94
|
-
.k-filter-item {
|
|
95
|
-
padding-left: 0;
|
|
96
|
-
padding-right: $kendo-filter-padding-x;
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
.k-filter-toolbar {
|
|
100
|
-
|
|
101
|
-
&::before {
|
|
102
|
-
left: auto;
|
|
103
|
-
right: -$kendo-filter-padding-x;
|
|
104
|
-
}
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
.k-filter-item {
|
|
108
|
-
|
|
109
|
-
&::before {
|
|
110
|
-
left: auto;
|
|
111
|
-
right: 0;
|
|
112
|
-
}
|
|
113
|
-
}
|
|
114
|
-
|
|
115
|
-
// The second selector targets the Angular rendering
|
|
116
|
-
.k-filter-lines .k-filter-item:last-child > .k-filter-toolbar::after,
|
|
117
|
-
.k-filter-lines .k-filter-item:last-child > * > .k-filter-toolbar::after {
|
|
118
|
-
left: auto;
|
|
119
|
-
right: -$kendo-filter-padding-x;
|
|
120
|
-
}
|
|
121
|
-
}
|
|
122
89
|
}
|
|
123
90
|
|
|
124
91
|
}
|