@deque/cauldron-styles 5.0.0-canary.905c1ed1 → 5.0.0-canary.9ce83000
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 -9
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -94,6 +94,9 @@
|
|
|
94
94
|
--text-size-smaller: 13px;
|
|
95
95
|
--text-size-smallest: 12px;
|
|
96
96
|
|
|
97
|
+
/* fonts */
|
|
98
|
+
--base-font-family: 'Roboto', Helvetica, Arial, sans-serif;
|
|
99
|
+
|
|
97
100
|
/* font weight */
|
|
98
101
|
--font-weight-thin: 100;
|
|
99
102
|
--font-weight-light: 300;
|
|
@@ -102,6 +105,9 @@
|
|
|
102
105
|
--font-weight-bold: 700;
|
|
103
106
|
--font-weight-ultra-bold: 900;
|
|
104
107
|
|
|
108
|
+
/* icon sizes */
|
|
109
|
+
--icon-size: 24px;
|
|
110
|
+
|
|
105
111
|
/* dimensions */
|
|
106
112
|
--border-width: 6px;
|
|
107
113
|
--layout-padding: 9px;
|
|
@@ -157,7 +163,7 @@ html {
|
|
|
157
163
|
}
|
|
158
164
|
|
|
159
165
|
body {
|
|
160
|
-
font-family:
|
|
166
|
+
font-family: var(--base-font-family);
|
|
161
167
|
font-style: normal;
|
|
162
168
|
font-weight: 400;
|
|
163
169
|
color: var(--text-color-base);
|
|
@@ -193,6 +199,11 @@ ul {
|
|
|
193
199
|
padding: 0;
|
|
194
200
|
}
|
|
195
201
|
|
|
202
|
+
button {
|
|
203
|
+
font-family: var(--base-font-family);
|
|
204
|
+
font-weight: 500;
|
|
205
|
+
}
|
|
206
|
+
|
|
196
207
|
button,
|
|
197
208
|
[role='button'] {
|
|
198
209
|
display: inline-block;
|
|
@@ -942,8 +953,8 @@ a.IconButton {
|
|
|
942
953
|
}
|
|
943
954
|
|
|
944
955
|
.Dialog__close svg {
|
|
945
|
-
height:
|
|
946
|
-
width:
|
|
956
|
+
height: var(--icon-size);
|
|
957
|
+
width: var(--icon-size);
|
|
947
958
|
}
|
|
948
959
|
|
|
949
960
|
.Dialog__content {
|
|
@@ -1205,8 +1216,8 @@ a.IconButton {
|
|
|
1205
1216
|
.Pointout__dismiss .Icon svg,
|
|
1206
1217
|
.Pointout__next .Icon svg,
|
|
1207
1218
|
.Pointout__previous .Icon svg {
|
|
1208
|
-
height:
|
|
1209
|
-
width:
|
|
1219
|
+
height: var(--icon-size);
|
|
1220
|
+
width: var(--icon-size);
|
|
1210
1221
|
}
|
|
1211
1222
|
|
|
1212
1223
|
.Pointout__dismiss:hover {
|
|
@@ -3395,11 +3406,10 @@ button.TooltipTabstop {
|
|
|
3395
3406
|
font-size: var(--text-size-smaller);
|
|
3396
3407
|
border: 1px solid var(--tag-border-color);
|
|
3397
3408
|
border-radius: 11px;
|
|
3398
|
-
display: flex;
|
|
3409
|
+
display: inline-flex;
|
|
3399
3410
|
justify-content: center;
|
|
3400
3411
|
align-items: center;
|
|
3401
3412
|
padding: 2px 8px;
|
|
3402
|
-
width: 90px;
|
|
3403
3413
|
font-weight: var(--font-weight-medium);
|
|
3404
3414
|
}
|
|
3405
3415
|
|
|
@@ -3787,10 +3797,11 @@ button.TooltipTabstop {
|
|
|
3787
3797
|
--panel-border-color: var(--gray-40);
|
|
3788
3798
|
--panel-background-color: var(--white);
|
|
3789
3799
|
--panel-heading-color: var(--gray-90);
|
|
3800
|
+
--panel-padding: var(--space-small);
|
|
3790
3801
|
}
|
|
3791
3802
|
|
|
3792
3803
|
.Panel {
|
|
3793
|
-
padding: var(--
|
|
3804
|
+
padding: var(--panel-padding);
|
|
3794
3805
|
border: 1px solid var(--panel-border-color);
|
|
3795
3806
|
border-radius: 3px;
|
|
3796
3807
|
box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.15);
|
|
@@ -3819,7 +3830,7 @@ fieldset.Panel {
|
|
|
3819
3830
|
}
|
|
3820
3831
|
|
|
3821
3832
|
.Panel--collapsed {
|
|
3822
|
-
padding: 12px;
|
|
3833
|
+
--panel-padding: 12px;
|
|
3823
3834
|
}
|
|
3824
3835
|
|
|
3825
3836
|
.Panel--collapsed .Panel__Heading {
|
|
@@ -3943,6 +3954,18 @@ fieldset.Panel {
|
|
|
3943
3954
|
transition: background-color 0.3s ease;
|
|
3944
3955
|
}
|
|
3945
3956
|
|
|
3957
|
+
.NavBar > ul > .NavItem {
|
|
3958
|
+
font-weight: var(--font-weight-normal);
|
|
3959
|
+
}
|
|
3960
|
+
|
|
3961
|
+
.NavBar > ul > .NavItem--active {
|
|
3962
|
+
font-weight: var(--font-weight-medium);
|
|
3963
|
+
}
|
|
3964
|
+
|
|
3965
|
+
.NavBar > ul > .NavItem a {
|
|
3966
|
+
font-weight: inherit;
|
|
3967
|
+
}
|
|
3968
|
+
|
|
3946
3969
|
.NavBar > ul > li:first-child:not(.NavBar__trigger) {
|
|
3947
3970
|
border-left: 1px solid var(--top-nav-box-shadow-color);
|
|
3948
3971
|
}
|
|
@@ -4253,6 +4276,11 @@ fieldset.Panel {
|
|
|
4253
4276
|
.TwoColumnPanel__Right {
|
|
4254
4277
|
flex: 1;
|
|
4255
4278
|
align-content: flex-start;
|
|
4279
|
+
overflow-x: auto;
|
|
4280
|
+
}
|
|
4281
|
+
|
|
4282
|
+
.TwoColumnPanel__Right > *:not(.TwoColumnPanel__Header) {
|
|
4283
|
+
overflow-x: auto;
|
|
4256
4284
|
}
|
|
4257
4285
|
|
|
4258
4286
|
.TwoColumnPanel__Left,
|
package/package.json
CHANGED