@deque/cauldron-styles 5.0.0-canary.ce15231f → 5.0.0-canary.de1da7f8
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/index.css +37 -13
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
/* color palette */
|
|
9
9
|
--white: #ffffff;
|
|
10
10
|
--dark-workspace-color: #53636e;
|
|
11
|
+
--stroke-light: #b3bfc6;
|
|
11
12
|
--stroke-dark: #5d676f;
|
|
12
13
|
--gray-10: #fdfdfe;
|
|
13
14
|
--gray-20: #f2f2f2;
|
|
@@ -36,7 +37,7 @@
|
|
|
36
37
|
--accent-primary-active: #316091;
|
|
37
38
|
--accent-secondary: var(--gray-20);
|
|
38
39
|
--accent-secondary-active: var(--gray-30);
|
|
39
|
-
--focus-light: #
|
|
40
|
+
--focus-light: #b51ad1;
|
|
40
41
|
--focus-dark: #eb94ff;
|
|
41
42
|
--issue-critical: var(--accent-danger);
|
|
42
43
|
--issue-serious: var(--accent-warning);
|
|
@@ -50,6 +51,9 @@
|
|
|
50
51
|
--header-text-color: var(--gray-80);
|
|
51
52
|
--header-text-color-dark: var(--gray-90);
|
|
52
53
|
|
|
54
|
+
/* background colours */
|
|
55
|
+
--background-light: #f0f2f5;
|
|
56
|
+
|
|
53
57
|
/* accents */
|
|
54
58
|
--error: var(--accent-error);
|
|
55
59
|
--disabled: var(--gray-40);
|
|
@@ -66,6 +70,7 @@
|
|
|
66
70
|
|
|
67
71
|
/* spacing (padding/margin) */
|
|
68
72
|
--space-smallest: 8px;
|
|
73
|
+
--space-smaller: 12px;
|
|
69
74
|
--space-small: 16px;
|
|
70
75
|
--space-medium: 18px;
|
|
71
76
|
--space-large: 24px;
|
|
@@ -81,6 +86,7 @@
|
|
|
81
86
|
--text-size-larger: 56px;
|
|
82
87
|
--text-size-large: 45px;
|
|
83
88
|
--text-size-large-medium: 34px;
|
|
89
|
+
--text-size-medium-large: 32px;
|
|
84
90
|
--text-size-medium: 24px;
|
|
85
91
|
--text-small-medium: 20px;
|
|
86
92
|
--text-size-normal: 18px;
|
|
@@ -88,6 +94,9 @@
|
|
|
88
94
|
--text-size-smaller: 13px;
|
|
89
95
|
--text-size-smallest: 12px;
|
|
90
96
|
|
|
97
|
+
/* fonts */
|
|
98
|
+
--base-font-family: 'Roboto', Helvetica, Arial, sans-serif;
|
|
99
|
+
|
|
91
100
|
/* font weight */
|
|
92
101
|
--font-weight-thin: 100;
|
|
93
102
|
--font-weight-light: 300;
|
|
@@ -96,6 +105,9 @@
|
|
|
96
105
|
--font-weight-bold: 700;
|
|
97
106
|
--font-weight-ultra-bold: 900;
|
|
98
107
|
|
|
108
|
+
/* icon sizes */
|
|
109
|
+
--icon-size: 24px;
|
|
110
|
+
|
|
99
111
|
/* dimensions */
|
|
100
112
|
--border-width: 6px;
|
|
101
113
|
--layout-padding: 9px;
|
|
@@ -151,7 +163,7 @@ html {
|
|
|
151
163
|
}
|
|
152
164
|
|
|
153
165
|
body {
|
|
154
|
-
font-family:
|
|
166
|
+
font-family: var(--base-font-family);
|
|
155
167
|
font-style: normal;
|
|
156
168
|
font-weight: 400;
|
|
157
169
|
color: var(--text-color-base);
|
|
@@ -187,6 +199,11 @@ ul {
|
|
|
187
199
|
padding: 0;
|
|
188
200
|
}
|
|
189
201
|
|
|
202
|
+
button {
|
|
203
|
+
font-family: var(--base-font-family);
|
|
204
|
+
font-weight: 500;
|
|
205
|
+
}
|
|
206
|
+
|
|
190
207
|
button,
|
|
191
208
|
[role='button'] {
|
|
192
209
|
display: inline-block;
|
|
@@ -936,8 +953,8 @@ a.IconButton {
|
|
|
936
953
|
}
|
|
937
954
|
|
|
938
955
|
.Dialog__close svg {
|
|
939
|
-
height:
|
|
940
|
-
width:
|
|
956
|
+
height: var(--icon-size);
|
|
957
|
+
width: var(--icon-size);
|
|
941
958
|
}
|
|
942
959
|
|
|
943
960
|
.Dialog__content {
|
|
@@ -1199,8 +1216,8 @@ a.IconButton {
|
|
|
1199
1216
|
.Pointout__dismiss .Icon svg,
|
|
1200
1217
|
.Pointout__next .Icon svg,
|
|
1201
1218
|
.Pointout__previous .Icon svg {
|
|
1202
|
-
height:
|
|
1203
|
-
width:
|
|
1219
|
+
height: var(--icon-size);
|
|
1220
|
+
width: var(--icon-size);
|
|
1204
1221
|
}
|
|
1205
1222
|
|
|
1206
1223
|
.Pointout__dismiss:hover {
|
|
@@ -1823,7 +1840,7 @@ textarea.Field--has-error:focus:hover,
|
|
|
1823
1840
|
|
|
1824
1841
|
:root {
|
|
1825
1842
|
--link-text-color: var(--gray-90);
|
|
1826
|
-
--link-text-color-hover:
|
|
1843
|
+
--link-text-color-hover: #3873a3;
|
|
1827
1844
|
--link-text-color-light: rgba(60, 122, 174, 0.1);
|
|
1828
1845
|
}
|
|
1829
1846
|
|
|
@@ -1856,7 +1873,7 @@ p .Link {
|
|
|
1856
1873
|
margin: 0 2px;
|
|
1857
1874
|
display: inline;
|
|
1858
1875
|
text-decoration: underline;
|
|
1859
|
-
color: var(--
|
|
1876
|
+
color: var(--link-text-color);
|
|
1860
1877
|
font-weight: var(--font-weight-normal);
|
|
1861
1878
|
}
|
|
1862
1879
|
|
|
@@ -3389,11 +3406,10 @@ button.TooltipTabstop {
|
|
|
3389
3406
|
font-size: var(--text-size-smaller);
|
|
3390
3407
|
border: 1px solid var(--tag-border-color);
|
|
3391
3408
|
border-radius: 11px;
|
|
3392
|
-
display: flex;
|
|
3409
|
+
display: inline-flex;
|
|
3393
3410
|
justify-content: center;
|
|
3394
3411
|
align-items: center;
|
|
3395
3412
|
padding: 2px 8px;
|
|
3396
|
-
width: 90px;
|
|
3397
3413
|
font-weight: var(--font-weight-medium);
|
|
3398
3414
|
}
|
|
3399
3415
|
|
|
@@ -3471,7 +3487,6 @@ button.TooltipTabstop {
|
|
|
3471
3487
|
outline-offset: unset;
|
|
3472
3488
|
}
|
|
3473
3489
|
|
|
3474
|
-
.TableHeader,
|
|
3475
3490
|
.TableHeader--sort-ascending,
|
|
3476
3491
|
.TableHeader--sort-descending {
|
|
3477
3492
|
background: var(--table-header-sorting-background-color);
|
|
@@ -3782,10 +3797,11 @@ button.TooltipTabstop {
|
|
|
3782
3797
|
--panel-border-color: var(--gray-40);
|
|
3783
3798
|
--panel-background-color: var(--white);
|
|
3784
3799
|
--panel-heading-color: var(--gray-90);
|
|
3800
|
+
--panel-padding: var(--space-small);
|
|
3785
3801
|
}
|
|
3786
3802
|
|
|
3787
3803
|
.Panel {
|
|
3788
|
-
padding: var(--
|
|
3804
|
+
padding: var(--panel-padding);
|
|
3789
3805
|
border: 1px solid var(--panel-border-color);
|
|
3790
3806
|
border-radius: 3px;
|
|
3791
3807
|
box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.15);
|
|
@@ -3814,7 +3830,7 @@ fieldset.Panel {
|
|
|
3814
3830
|
}
|
|
3815
3831
|
|
|
3816
3832
|
.Panel--collapsed {
|
|
3817
|
-
padding: 12px;
|
|
3833
|
+
--panel-padding: 12px;
|
|
3818
3834
|
}
|
|
3819
3835
|
|
|
3820
3836
|
.Panel--collapsed .Panel__Heading {
|
|
@@ -4171,6 +4187,7 @@ fieldset.Panel {
|
|
|
4171
4187
|
list-style-type: none;
|
|
4172
4188
|
padding: 0;
|
|
4173
4189
|
margin: 0;
|
|
4190
|
+
flex-wrap: wrap;
|
|
4174
4191
|
}
|
|
4175
4192
|
|
|
4176
4193
|
.Breadcrumb__Separator {
|
|
@@ -4186,6 +4203,8 @@ fieldset.Panel {
|
|
|
4186
4203
|
.Breadcrumb__Item {
|
|
4187
4204
|
font-weight: 500;
|
|
4188
4205
|
color: var(--link-text-color);
|
|
4206
|
+
display: flex;
|
|
4207
|
+
flex-wrap: nowrap;
|
|
4189
4208
|
}
|
|
4190
4209
|
|
|
4191
4210
|
:root {
|
|
@@ -4245,6 +4264,11 @@ fieldset.Panel {
|
|
|
4245
4264
|
.TwoColumnPanel__Right {
|
|
4246
4265
|
flex: 1;
|
|
4247
4266
|
align-content: flex-start;
|
|
4267
|
+
overflow-x: auto;
|
|
4268
|
+
}
|
|
4269
|
+
|
|
4270
|
+
.TwoColumnPanel__Right > *:not(.TwoColumnPanel__Header) {
|
|
4271
|
+
overflow-x: auto;
|
|
4248
4272
|
}
|
|
4249
4273
|
|
|
4250
4274
|
.TwoColumnPanel__Left,
|
package/package.json
CHANGED