@deque/cauldron-styles 5.0.0-canary.97d52033 → 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 +18 -2
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -3406,11 +3406,10 @@ button.TooltipTabstop {
|
|
|
3406
3406
|
font-size: var(--text-size-smaller);
|
|
3407
3407
|
border: 1px solid var(--tag-border-color);
|
|
3408
3408
|
border-radius: 11px;
|
|
3409
|
-
display: flex;
|
|
3409
|
+
display: inline-flex;
|
|
3410
3410
|
justify-content: center;
|
|
3411
3411
|
align-items: center;
|
|
3412
3412
|
padding: 2px 8px;
|
|
3413
|
-
width: 90px;
|
|
3414
3413
|
font-weight: var(--font-weight-medium);
|
|
3415
3414
|
}
|
|
3416
3415
|
|
|
@@ -3955,6 +3954,18 @@ fieldset.Panel {
|
|
|
3955
3954
|
transition: background-color 0.3s ease;
|
|
3956
3955
|
}
|
|
3957
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
|
+
|
|
3958
3969
|
.NavBar > ul > li:first-child:not(.NavBar__trigger) {
|
|
3959
3970
|
border-left: 1px solid var(--top-nav-box-shadow-color);
|
|
3960
3971
|
}
|
|
@@ -4265,6 +4276,11 @@ fieldset.Panel {
|
|
|
4265
4276
|
.TwoColumnPanel__Right {
|
|
4266
4277
|
flex: 1;
|
|
4267
4278
|
align-content: flex-start;
|
|
4279
|
+
overflow-x: auto;
|
|
4280
|
+
}
|
|
4281
|
+
|
|
4282
|
+
.TwoColumnPanel__Right > *:not(.TwoColumnPanel__Header) {
|
|
4283
|
+
overflow-x: auto;
|
|
4268
4284
|
}
|
|
4269
4285
|
|
|
4270
4286
|
.TwoColumnPanel__Left,
|
package/package.json
CHANGED