@emeryld/rrroutes-contract 2.7.9 → 2.7.10
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
CHANGED
|
@@ -263,7 +263,7 @@
|
|
|
263
263
|
}
|
|
264
264
|
|
|
265
265
|
.schema-tree > .tree-row {
|
|
266
|
-
|
|
266
|
+
margin-left: 18px;
|
|
267
267
|
}
|
|
268
268
|
|
|
269
269
|
.tree-name {
|
|
@@ -291,26 +291,35 @@
|
|
|
291
291
|
color: var(--schema-accent);
|
|
292
292
|
}
|
|
293
293
|
|
|
294
|
-
.schema-tree summary {
|
|
294
|
+
.schema-tree details > summary {
|
|
295
295
|
color: var(--schema-accent);
|
|
296
296
|
list-style: none;
|
|
297
|
-
display:
|
|
297
|
+
display: grid;
|
|
298
|
+
grid-template-columns: 12px 1fr;
|
|
298
299
|
align-items: center;
|
|
299
|
-
gap: 6px;
|
|
300
|
+
column-gap: 6px;
|
|
300
301
|
}
|
|
301
302
|
|
|
302
|
-
.schema-tree summary::-webkit-details-marker {
|
|
303
|
+
.schema-tree details > summary::-webkit-details-marker {
|
|
303
304
|
display: none;
|
|
304
305
|
}
|
|
305
306
|
|
|
306
|
-
.schema-tree summary::
|
|
307
|
+
.schema-tree details > summary::marker {
|
|
308
|
+
content: '';
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
.schema-tree details > summary::before {
|
|
307
312
|
content: '▸';
|
|
308
313
|
display: inline-block;
|
|
314
|
+
grid-column: 1;
|
|
309
315
|
width: 12px;
|
|
310
|
-
flex: 0 0 12px;
|
|
311
316
|
text-align: center;
|
|
312
317
|
}
|
|
313
318
|
|
|
319
|
+
.schema-tree details > summary > .tree-row {
|
|
320
|
+
grid-column: 2;
|
|
321
|
+
}
|
|
322
|
+
|
|
314
323
|
.schema-tree details[open] > summary::before {
|
|
315
324
|
content: '▾';
|
|
316
325
|
}
|