@ably/ui 6.9.0 → 6.10.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/core/styles.css +16 -2
- package/package.json +1 -1
- package/src/core/styles/text.css +16 -2
package/core/styles.css
CHANGED
|
@@ -413,10 +413,24 @@
|
|
|
413
413
|
@apply list-disc ml-32 mb-24;
|
|
414
414
|
}
|
|
415
415
|
|
|
416
|
+
.ui-ordered-list {
|
|
417
|
+
@apply text-p1 font-light text-cool-black;
|
|
418
|
+
@apply ml-32 mb-24 list-decimal;
|
|
419
|
+
}
|
|
420
|
+
|
|
421
|
+
.ui-unordered-list li > *:last-of-type:not(ul):not(ol),
|
|
422
|
+
.ui-ordered-list li > *:last-of-type:not(ul):not(ol) {
|
|
423
|
+
margin-bottom: 0;
|
|
424
|
+
}
|
|
425
|
+
|
|
416
426
|
.ui-unordered-list ul {
|
|
417
427
|
@apply ml-24 mt-16 list-circle;
|
|
418
428
|
}
|
|
419
429
|
|
|
430
|
+
.ui-ordered-list ol {
|
|
431
|
+
@apply ml-24 mt-16 list-decimal;
|
|
432
|
+
}
|
|
433
|
+
|
|
420
434
|
.ui-unordered-list ul ul {
|
|
421
435
|
@apply list-square;
|
|
422
436
|
}
|
|
@@ -436,11 +450,11 @@
|
|
|
436
450
|
|
|
437
451
|
.ui-unordered-list-with-emphasis ul {
|
|
438
452
|
margin-top: calc(var(--spacing-16) + var(--spacing-8));
|
|
439
|
-
@apply ml-24 list-
|
|
453
|
+
@apply ml-24 list-circle;
|
|
440
454
|
}
|
|
441
455
|
|
|
442
456
|
.ui-unordered-list-with-emphasis ul ul {
|
|
443
|
-
@apply list-
|
|
457
|
+
@apply list-square;
|
|
444
458
|
}
|
|
445
459
|
|
|
446
460
|
/* visited needs to come before :hover et all else it overrides them */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ably/ui",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.10.0",
|
|
4
4
|
"description": "Home of the Ably design system library ([design.ably.com](https://design.ably.com)). It provides a showcase, development/test environment and a publishing pipeline for different distributables.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
package/src/core/styles/text.css
CHANGED
|
@@ -102,10 +102,24 @@
|
|
|
102
102
|
@apply list-disc ml-32 mb-24;
|
|
103
103
|
}
|
|
104
104
|
|
|
105
|
+
.ui-ordered-list {
|
|
106
|
+
@apply text-p1 font-light text-cool-black;
|
|
107
|
+
@apply ml-32 mb-24 list-decimal;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
.ui-unordered-list li > *:last-of-type:not(ul):not(ol),
|
|
111
|
+
.ui-ordered-list li > *:last-of-type:not(ul):not(ol) {
|
|
112
|
+
margin-bottom: 0;
|
|
113
|
+
}
|
|
114
|
+
|
|
105
115
|
.ui-unordered-list ul {
|
|
106
116
|
@apply ml-24 mt-16 list-circle;
|
|
107
117
|
}
|
|
108
118
|
|
|
119
|
+
.ui-ordered-list ol {
|
|
120
|
+
@apply ml-24 mt-16 list-decimal;
|
|
121
|
+
}
|
|
122
|
+
|
|
109
123
|
.ui-unordered-list ul ul {
|
|
110
124
|
@apply list-square;
|
|
111
125
|
}
|
|
@@ -125,11 +139,11 @@
|
|
|
125
139
|
|
|
126
140
|
.ui-unordered-list-with-emphasis ul {
|
|
127
141
|
margin-top: calc(var(--spacing-16) + var(--spacing-8));
|
|
128
|
-
@apply ml-24 list-
|
|
142
|
+
@apply ml-24 list-circle;
|
|
129
143
|
}
|
|
130
144
|
|
|
131
145
|
.ui-unordered-list-with-emphasis ul ul {
|
|
132
|
-
@apply list-
|
|
146
|
+
@apply list-square;
|
|
133
147
|
}
|
|
134
148
|
|
|
135
149
|
/* visited needs to come before :hover et all else it overrides them */
|