@agorapulse/ui-theme 20.1.5 → 20.1.6
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.
|
Binary file
|
|
@@ -201,6 +201,17 @@
|
|
|
201
201
|
--sys-icon-sm: 14px;
|
|
202
202
|
--sys-icon-md: 16px;
|
|
203
203
|
--sys-radio-transition-duration: 250ms;
|
|
204
|
+
--sys-settings-content-max-width-md: 700px;
|
|
205
|
+
--sys-settings-content-max-width-lg: 1200px;
|
|
206
|
+
--sys-settings-content-internal-margin: 16px;
|
|
207
|
+
--sys-settings-content-vertical-spacing: 16px;
|
|
208
|
+
--sys-settings-content-background-color: #F9F9FA;
|
|
209
|
+
--sys-settings-card-border-color: #EAECEF;
|
|
210
|
+
--sys-settings-card-border-radius: 8px;
|
|
211
|
+
--sys-settings-card-background-color: #FFFFFF;
|
|
212
|
+
--sys-settings-card-internal-padding: 16px;
|
|
213
|
+
--sys-settings-card-feature-background-color: #EFEDF8;
|
|
214
|
+
--sys-settings-card-feature-lock-border-color: #E0DDF2;
|
|
204
215
|
--sys-text-color-default: #344563;
|
|
205
216
|
--sys-text-color-light: #5D6A82;
|
|
206
217
|
--sys-text-color-error: #E81313;
|
|
@@ -201,6 +201,17 @@
|
|
|
201
201
|
--sys-icon-sm: 14px;
|
|
202
202
|
--sys-icon-md: 16px;
|
|
203
203
|
--sys-radio-transition-duration: 250ms;
|
|
204
|
+
--sys-settings-content-max-width-md: 700px;
|
|
205
|
+
--sys-settings-content-max-width-lg: 1200px;
|
|
206
|
+
--sys-settings-content-internal-margin: 16px;
|
|
207
|
+
--sys-settings-content-vertical-spacing: 16px;
|
|
208
|
+
--sys-settings-content-background-color: #F9F9FA;
|
|
209
|
+
--sys-settings-card-border-color: #EAECEF;
|
|
210
|
+
--sys-settings-card-border-radius: 8px;
|
|
211
|
+
--sys-settings-card-background-color: #FFFFFF;
|
|
212
|
+
--sys-settings-card-internal-padding: 16px;
|
|
213
|
+
--sys-settings-card-feature-background-color: #EFEDF8;
|
|
214
|
+
--sys-settings-card-feature-lock-border-color: #E0DDF2;
|
|
204
215
|
--sys-text-color-default: #344563;
|
|
205
216
|
--sys-text-color-light: #5D6A82;
|
|
206
217
|
--sys-text-color-error: #E81313;
|
package/package.json
CHANGED
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
{
|
|
2
|
+
"sys": {
|
|
3
|
+
"settings": {
|
|
4
|
+
"content": {
|
|
5
|
+
"maxWidth": {
|
|
6
|
+
"md": {
|
|
7
|
+
"value": "700px"
|
|
8
|
+
},
|
|
9
|
+
"lg": {
|
|
10
|
+
"value": "1200px"
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
"internal": {
|
|
14
|
+
"margin": {
|
|
15
|
+
"value": "{ref.spacing.sm}"
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
"vertical": {
|
|
19
|
+
"spacing": {
|
|
20
|
+
"value": "{ref.spacing.sm}"
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
"background": {
|
|
24
|
+
"color": {
|
|
25
|
+
"value": "{ref.color.grey.bg}"
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
"card": {
|
|
30
|
+
"border": {
|
|
31
|
+
"color": {
|
|
32
|
+
"value": "{ref.color.grey.10}"
|
|
33
|
+
},
|
|
34
|
+
"radius": {
|
|
35
|
+
"value": "{ref.borderRadius.md}"
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
"background": {
|
|
39
|
+
"color": {
|
|
40
|
+
"value": "{ref.color.white}"
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
"internal": {
|
|
44
|
+
"padding": {
|
|
45
|
+
"value": "{ref.spacing.sm}"
|
|
46
|
+
}
|
|
47
|
+
},
|
|
48
|
+
"feature": {
|
|
49
|
+
"background": {
|
|
50
|
+
"color": {
|
|
51
|
+
"value": "{ref.color.purple.10}"
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
},
|
|
55
|
+
"featureLock": {
|
|
56
|
+
"border": {
|
|
57
|
+
"color": {
|
|
58
|
+
"value": "{ref.color.purple.20}"
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
}
|
|
Binary file
|