@triptease/stylesheet 1.1.0 → 1.2.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/base.css +395 -213
- package/dist/blocks.css +26 -1
- package/dist/compositions.css +8 -2
- package/dist/exceptions.css +1 -1
- package/dist/triptease.css +426 -213
- package/dist/utilities.css +1 -1
- package/package.json +2 -1
package/dist/blocks.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* @triptease/stylesheet v1.
|
|
2
|
+
* @triptease/stylesheet v1.2.0
|
|
3
3
|
*/
|
|
4
4
|
/*
|
|
5
5
|
Suppress "invalid at-rule" warnings: @import-glob is a build-time feature
|
|
@@ -70,6 +70,18 @@
|
|
|
70
70
|
|
|
71
71
|
@layer blocks {
|
|
72
72
|
|
|
73
|
+
@property --card-padding {
|
|
74
|
+
syntax: '<length>';
|
|
75
|
+
inherits: true;
|
|
76
|
+
initial-value: 1.5rem;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
@property --card-vertical-spacing {
|
|
80
|
+
syntax: '<length>';
|
|
81
|
+
inherits: true;
|
|
82
|
+
initial-value: 0.5rem;
|
|
83
|
+
}
|
|
84
|
+
|
|
73
85
|
.card,
|
|
74
86
|
.card-dataview {
|
|
75
87
|
border-radius: var(--border-radius-100);
|
|
@@ -155,6 +167,19 @@ header[data-theme='top-nav'] {
|
|
|
155
167
|
}
|
|
156
168
|
|
|
157
169
|
@layer blocks {
|
|
170
|
+
|
|
171
|
+
@property --tag-background-color {
|
|
172
|
+
syntax: '<color>';
|
|
173
|
+
inherits: true;
|
|
174
|
+
initial-value: #FFFFFF;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
@property --tag-color {
|
|
178
|
+
syntax: '<color>';
|
|
179
|
+
inherits: true;
|
|
180
|
+
initial-value: #0D0C0D;
|
|
181
|
+
}
|
|
182
|
+
|
|
158
183
|
.status {
|
|
159
184
|
--tag-background-color: var(--color-surface-100);
|
|
160
185
|
--tag-color: var(--color-text-500);
|
package/dist/compositions.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* @triptease/stylesheet v1.
|
|
2
|
+
* @triptease/stylesheet v1.2.0
|
|
3
3
|
*/
|
|
4
4
|
/*
|
|
5
5
|
Suppress "invalid at-rule" warnings: @import-glob is a build-time feature
|
|
@@ -10,6 +10,12 @@
|
|
|
10
10
|
|
|
11
11
|
@layer compositions {
|
|
12
12
|
|
|
13
|
+
@property --column-vertical-spacing {
|
|
14
|
+
syntax: '<length>';
|
|
15
|
+
inherits: true;
|
|
16
|
+
initial-value: 0.5rem;
|
|
17
|
+
}
|
|
18
|
+
|
|
13
19
|
[class^='column'] {
|
|
14
20
|
display: flex;
|
|
15
21
|
flex-direction: column;
|
|
@@ -65,8 +71,8 @@
|
|
|
65
71
|
|
|
66
72
|
@property --stack-vertical-spacing {
|
|
67
73
|
syntax: '<length>';
|
|
68
|
-
initial-value: var(--space-scale-1);
|
|
69
74
|
inherits: false;
|
|
75
|
+
initial-value: 0.5rem;
|
|
70
76
|
}
|
|
71
77
|
|
|
72
78
|
[class^='stack'] > * + * {
|
package/dist/exceptions.css
CHANGED