@less/test-data 4.6.5 → 4.6.7
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/package.json +1 -1
- package/tests-config/debug/all/linenumbers-all.css +10 -0
- package/tests-config/debug/comments/linenumbers-comments.css +9 -0
- package/tests-config/debug/linenumbers.less +9 -0
- package/tests-config/debug/mediaquery/linenumbers-mediaquery.css +9 -0
- package/tests-unit/color-functions/modern.css +6 -0
- package/tests-unit/color-functions/modern.less +8 -0
- package/tests-unit/container/container.css +45 -0
- package/tests-unit/container/container.less +54 -0
package/package.json
CHANGED
|
@@ -47,3 +47,13 @@
|
|
|
47
47
|
color: red;
|
|
48
48
|
width: 2;
|
|
49
49
|
}
|
|
50
|
+
@supports (display: grid) {
|
|
51
|
+
.supports-rule {
|
|
52
|
+
color: green;
|
|
53
|
+
}
|
|
54
|
+
/* line 38, {path}linenumbers.less */
|
|
55
|
+
@media -sass-debug-info{filename{font-family:file\:\/\/{pathesc}linenumbers\.less}line{font-family:\0000338}}
|
|
56
|
+
.supports-rule .nested-supports {
|
|
57
|
+
color: blue;
|
|
58
|
+
}
|
|
59
|
+
}
|
|
@@ -38,3 +38,12 @@
|
|
|
38
38
|
color: red;
|
|
39
39
|
width: 2;
|
|
40
40
|
}
|
|
41
|
+
@supports (display: grid) {
|
|
42
|
+
.supports-rule {
|
|
43
|
+
color: green;
|
|
44
|
+
}
|
|
45
|
+
@media -sass-debug-info{filename{font-family:file\:\/\/{pathesc}linenumbers\.less}line{font-family:\0000338}}
|
|
46
|
+
.supports-rule .nested-supports {
|
|
47
|
+
color: blue;
|
|
48
|
+
}
|
|
49
|
+
}
|
|
@@ -130,6 +130,46 @@
|
|
|
130
130
|
margin: 0.5em 0 0 0;
|
|
131
131
|
}
|
|
132
132
|
}
|
|
133
|
+
@container card (width > 400px), style(--responsive: true), scroll-state(stuck: top) {
|
|
134
|
+
h2 {
|
|
135
|
+
font-size: 1.5em;
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
@container style(--theme) {
|
|
139
|
+
.style-query {
|
|
140
|
+
color: red;
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
@container style((--theme: one) or (--theme: two)) {
|
|
144
|
+
.style-query-list {
|
|
145
|
+
color: blue;
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
@container contactBody (min-width: 1300px) {
|
|
149
|
+
.named-container {
|
|
150
|
+
width: 25%;
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
@container _body (min-width: 1300px) {
|
|
154
|
+
.underscored-container {
|
|
155
|
+
width: 25%;
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
@container --body (min-width: 1300px) {
|
|
159
|
+
.custom-ident-container {
|
|
160
|
+
width: 25%;
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
@container contact\.body (min-width: 1300px) {
|
|
164
|
+
.escaped-container {
|
|
165
|
+
width: 25%;
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
@container café (min-width: 1300px) {
|
|
169
|
+
.nonascii-container {
|
|
170
|
+
width: 25%;
|
|
171
|
+
}
|
|
172
|
+
}
|
|
133
173
|
@container (width < 500px) or (height < 500px) and (orientation: portrait) {
|
|
134
174
|
.card-content p {
|
|
135
175
|
padding: 0;
|
|
@@ -268,6 +308,11 @@
|
|
|
268
308
|
font-size: 75%;
|
|
269
309
|
}
|
|
270
310
|
}
|
|
311
|
+
@container sidebar (min-width: 400px), scroll-state(stuck: top) {
|
|
312
|
+
#sticky-child {
|
|
313
|
+
font-size: 80%;
|
|
314
|
+
}
|
|
315
|
+
}
|
|
271
316
|
@container foo (min-width: 400px) {
|
|
272
317
|
#sticky-child {
|
|
273
318
|
font-size: 75%;
|
|
@@ -159,6 +159,54 @@
|
|
|
159
159
|
}
|
|
160
160
|
}
|
|
161
161
|
|
|
162
|
+
@container card (width > 400px), style(--responsive: true), scroll-state(stuck: top) {
|
|
163
|
+
h2 {
|
|
164
|
+
font-size: 1.5em;
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
@container style(--theme) {
|
|
169
|
+
.style-query {
|
|
170
|
+
color: red;
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
@container style((--theme: one) or (--theme: two)) {
|
|
175
|
+
.style-query-list {
|
|
176
|
+
color: blue;
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
@container contactBody (min-width: 1300px) {
|
|
181
|
+
.named-container {
|
|
182
|
+
width: 25%;
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
@container _body (min-width: 1300px) {
|
|
187
|
+
.underscored-container {
|
|
188
|
+
width: 25%;
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
@container --body (min-width: 1300px) {
|
|
193
|
+
.custom-ident-container {
|
|
194
|
+
width: 25%;
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
@container contact\.body (min-width: 1300px) {
|
|
199
|
+
.escaped-container {
|
|
200
|
+
width: 25%;
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
@container café (min-width: 1300px) {
|
|
205
|
+
.nonascii-container {
|
|
206
|
+
width: 25%;
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
|
|
162
210
|
@container ( width < 500px ) or (height<500px) and (orientation: portrait) {
|
|
163
211
|
.card-content p {
|
|
164
212
|
padding: 0;
|
|
@@ -319,6 +367,12 @@
|
|
|
319
367
|
}
|
|
320
368
|
}
|
|
321
369
|
|
|
370
|
+
@container sidebar (min-width: 400px), scroll-state(stuck: top) {
|
|
371
|
+
#sticky-child {
|
|
372
|
+
font-size: 80%;
|
|
373
|
+
}
|
|
374
|
+
}
|
|
375
|
+
|
|
322
376
|
@varfoo: foo;
|
|
323
377
|
@threshold: 400px;
|
|
324
378
|
@container @varfoo (min-width: @threshold) {
|