@deque/cauldron-styles 4.0.0-canary.debe968f → 4.1.0-canary.20bef562
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 +317 -13
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -381,7 +381,7 @@ p {
|
|
|
381
381
|
position: relative;
|
|
382
382
|
text-align: center;
|
|
383
383
|
text-transform: uppercase;
|
|
384
|
-
height: 36px;
|
|
384
|
+
min-height: 36px;
|
|
385
385
|
min-width: 100px;
|
|
386
386
|
display: inline-grid;
|
|
387
387
|
grid-auto-flow: column;
|
|
@@ -1441,6 +1441,7 @@ ul.semantic-only {
|
|
|
1441
1441
|
--field-background-color-disabled: #f7f7f7;
|
|
1442
1442
|
--field-required-text-color: var(--gray-60);
|
|
1443
1443
|
--field-label-text-color: var(--gray-90);
|
|
1444
|
+
--field-label-description-text-color: var(--gray-60);
|
|
1444
1445
|
--input-min-width: 250px;
|
|
1445
1446
|
}
|
|
1446
1447
|
|
|
@@ -1456,6 +1457,7 @@ ul.semantic-only {
|
|
|
1456
1457
|
--field-background-color-disabled: #5d676f;
|
|
1457
1458
|
--field-required-text-color: var(--white);
|
|
1458
1459
|
--field-label-text-color: var(--white);
|
|
1460
|
+
--field-label-description-text-color: rgba(255, 255, 255, 0.8);
|
|
1459
1461
|
}
|
|
1460
1462
|
|
|
1461
1463
|
input,
|
|
@@ -1581,7 +1583,6 @@ textarea.Field--has-error:focus:hover,
|
|
|
1581
1583
|
}
|
|
1582
1584
|
|
|
1583
1585
|
.Error {
|
|
1584
|
-
min-height: var(--space-large);
|
|
1585
1586
|
color: var(--error);
|
|
1586
1587
|
text-align: left;
|
|
1587
1588
|
font-size: var(--text-size-smallest);
|
|
@@ -1593,7 +1594,7 @@ textarea.Field--has-error:focus:hover,
|
|
|
1593
1594
|
display: block;
|
|
1594
1595
|
position: relative;
|
|
1595
1596
|
box-sizing: border-box;
|
|
1596
|
-
margin-bottom: var(--space-
|
|
1597
|
+
margin-bottom: var(--space-small);
|
|
1597
1598
|
}
|
|
1598
1599
|
|
|
1599
1600
|
.Field.is--flex-row {
|
|
@@ -1611,6 +1612,7 @@ textarea.Field--has-error:focus:hover,
|
|
|
1611
1612
|
margin-bottom: 0;
|
|
1612
1613
|
flex-direction: row-reverse;
|
|
1613
1614
|
justify-content: flex-end;
|
|
1615
|
+
flex-wrap: wrap;
|
|
1614
1616
|
}
|
|
1615
1617
|
|
|
1616
1618
|
.Checkbox {
|
|
@@ -1634,7 +1636,7 @@ textarea.Field--has-error:focus:hover,
|
|
|
1634
1636
|
text-align: left;
|
|
1635
1637
|
color: var(--field-label-text-color);
|
|
1636
1638
|
font-size: var(--text-size-small);
|
|
1637
|
-
font-weight: var(--font-weight-
|
|
1639
|
+
font-weight: var(--font-weight-medium);
|
|
1638
1640
|
padding-bottom: var(--space-half);
|
|
1639
1641
|
cursor: default;
|
|
1640
1642
|
}
|
|
@@ -1694,6 +1696,28 @@ textarea.Field--has-error:focus:hover,
|
|
|
1694
1696
|
border: 1px solid var(--field-border-color);
|
|
1695
1697
|
}
|
|
1696
1698
|
|
|
1699
|
+
.Field__labelDescription {
|
|
1700
|
+
flex-basis: 100%;
|
|
1701
|
+
color: var(--field-label-description-text-color);
|
|
1702
|
+
font-size: var(--text-size-small);
|
|
1703
|
+
font-weight: var(--font-weight-normal);
|
|
1704
|
+
line-height: 1;
|
|
1705
|
+
margin-left: calc(24px + 2px + var(--space-half));
|
|
1706
|
+
cursor: default;
|
|
1707
|
+
}
|
|
1708
|
+
|
|
1709
|
+
.Icon + .Error {
|
|
1710
|
+
flex-basis: 100%;
|
|
1711
|
+
margin-top: var(--space-smallest);
|
|
1712
|
+
}
|
|
1713
|
+
|
|
1714
|
+
.Field__labelDescription + .Error {
|
|
1715
|
+
border-top: 1px solid var(--error);
|
|
1716
|
+
margin-left: calc(24px + 2px + var(--space-half));
|
|
1717
|
+
padding: 4px 0;
|
|
1718
|
+
margin-top: 4px;
|
|
1719
|
+
}
|
|
1720
|
+
|
|
1697
1721
|
.Radio__overlay,
|
|
1698
1722
|
.Checkbox__overlay {
|
|
1699
1723
|
border: 1px solid transparent;
|
|
@@ -1726,7 +1750,6 @@ textarea.Field--has-error:focus:hover,
|
|
|
1726
1750
|
-webkit-appearance: none;
|
|
1727
1751
|
-moz-appearance: none;
|
|
1728
1752
|
appearance: none;
|
|
1729
|
-
border: 0;
|
|
1730
1753
|
}
|
|
1731
1754
|
|
|
1732
1755
|
.Checkbox__overlay.Checkbox__overlay--focused,
|
|
@@ -1757,8 +1780,6 @@ textarea.Field--has-error:focus:hover,
|
|
|
1757
1780
|
-webkit-appearance: none;
|
|
1758
1781
|
-moz-appearance: none;
|
|
1759
1782
|
appearance: none;
|
|
1760
|
-
width: 2px;
|
|
1761
|
-
border: 0;
|
|
1762
1783
|
}
|
|
1763
1784
|
|
|
1764
1785
|
.Checkbox__overlay.Icon--checkbox-checked {
|
|
@@ -1965,7 +1986,7 @@ p .Link {
|
|
|
1965
1986
|
.Field__select {
|
|
1966
1987
|
display: flex;
|
|
1967
1988
|
flex-direction: column;
|
|
1968
|
-
margin-bottom: var(--space-
|
|
1989
|
+
margin-bottom: var(--space-small);
|
|
1969
1990
|
}
|
|
1970
1991
|
|
|
1971
1992
|
.Field__select--disabled {
|
|
@@ -2246,10 +2267,6 @@ p .Link {
|
|
|
2246
2267
|
box-sizing: border-box;
|
|
2247
2268
|
}
|
|
2248
2269
|
|
|
2249
|
-
.Card__content ul li {
|
|
2250
|
-
border-bottom: 1px solid var(--list-separator);
|
|
2251
|
-
}
|
|
2252
|
-
|
|
2253
2270
|
.Card__footer {
|
|
2254
2271
|
padding: var(--space-small);
|
|
2255
2272
|
text-align: center;
|
|
@@ -2294,6 +2311,7 @@ p .Link {
|
|
|
2294
2311
|
background: transparent;
|
|
2295
2312
|
border: 0;
|
|
2296
2313
|
height: calc(var(--text-size-small) + 9px);
|
|
2314
|
+
color: currentColor;
|
|
2297
2315
|
}
|
|
2298
2316
|
|
|
2299
2317
|
.Toast__dismiss:focus {
|
|
@@ -2362,6 +2380,8 @@ p .Link {
|
|
|
2362
2380
|
|
|
2363
2381
|
.Tooltip--hidden {
|
|
2364
2382
|
visibility: hidden;
|
|
2383
|
+
/* Take the tooltip out of the DOM layout flow so it doesn't reserve space when hidden */
|
|
2384
|
+
position: fixed !important;
|
|
2365
2385
|
}
|
|
2366
2386
|
|
|
2367
2387
|
.TooltipInfo {
|
|
@@ -3267,6 +3287,7 @@ button.TooltipTabstop {
|
|
|
3267
3287
|
--table-header-background-color: var(--gray-20);
|
|
3268
3288
|
--table-header-sorting-background-color: #caddec;
|
|
3269
3289
|
--table-header-sorting-text-color: var(--gray-90);
|
|
3290
|
+
--table-header-background-color-hover: #dddddd;
|
|
3270
3291
|
--table-cell-text-color: var(--gray-60);
|
|
3271
3292
|
--table-cell-background-color: var(--white);
|
|
3272
3293
|
--table-row-border-color: var(--gray-40);
|
|
@@ -3279,6 +3300,7 @@ button.TooltipTabstop {
|
|
|
3279
3300
|
--table-header-background-color: var(--accent-dark);
|
|
3280
3301
|
--table-header-sorting-background-color: #53636e;
|
|
3281
3302
|
--table-header-sorting-text-color: var(--white);
|
|
3303
|
+
--table-header-background-color-hover: #53636e;
|
|
3282
3304
|
--table-cell-text-color: var(--accent-light);
|
|
3283
3305
|
--table-cell-background-color: var(--accent-medium);
|
|
3284
3306
|
--table-row-border-color: #5d676f;
|
|
@@ -3286,11 +3308,11 @@ button.TooltipTabstop {
|
|
|
3286
3308
|
}
|
|
3287
3309
|
|
|
3288
3310
|
.Table {
|
|
3311
|
+
table-layout: auto;
|
|
3289
3312
|
font-size: var(--text-size-small);
|
|
3290
3313
|
border-collapse: collapse;
|
|
3291
3314
|
text-align: left;
|
|
3292
3315
|
width: 100%;
|
|
3293
|
-
table-layout: fixed;
|
|
3294
3316
|
overflow-wrap: break-word;
|
|
3295
3317
|
}
|
|
3296
3318
|
|
|
@@ -3320,6 +3342,7 @@ button.TooltipTabstop {
|
|
|
3320
3342
|
|
|
3321
3343
|
.TableHeader__sort-button:hover {
|
|
3322
3344
|
cursor: pointer;
|
|
3345
|
+
background-color: var(--table-header-background-color-hover);
|
|
3323
3346
|
}
|
|
3324
3347
|
|
|
3325
3348
|
.TableHeader__sort-button:focus {
|
|
@@ -3976,9 +3999,290 @@ fieldset.Panel {
|
|
|
3976
3999
|
|
|
3977
4000
|
.Breadcrumb__Link {
|
|
3978
4001
|
font-weight: 400;
|
|
4002
|
+
padding: 0;
|
|
3979
4003
|
}
|
|
3980
4004
|
|
|
3981
4005
|
.Breadcrumb__Item {
|
|
3982
4006
|
font-weight: 500;
|
|
3983
4007
|
color: var(--link-text-color);
|
|
3984
4008
|
}
|
|
4009
|
+
|
|
4010
|
+
:root {
|
|
4011
|
+
--two-column-panel-border-color: var(--gray-40);
|
|
4012
|
+
--two-column-panel-background-color: #fff;
|
|
4013
|
+
--two-column-panel-border-radius: 3px;
|
|
4014
|
+
--two-column-panel-header-height: 3.125rem;
|
|
4015
|
+
--two-column-panel-animation-timing: 0.25s;
|
|
4016
|
+
--two-column-panel-left-column-width: 17.5rem;
|
|
4017
|
+
--two-column-panel-header-text-color: var(--gray-90);
|
|
4018
|
+
--two-column-panel-accent-text-color: var(--text-color-base);
|
|
4019
|
+
--two-column-panel-list-background-color: var(
|
|
4020
|
+
--two-column-panel-background-color
|
|
4021
|
+
);
|
|
4022
|
+
--two-column-panel-group-heading-background-color: var(--accent-secondary);
|
|
4023
|
+
--two-column-panel-group-heading-text-color: var(--text-base);
|
|
4024
|
+
}
|
|
4025
|
+
|
|
4026
|
+
.cauldron--theme-dark {
|
|
4027
|
+
--two-column-panel-border-color: #5d676f;
|
|
4028
|
+
--two-column-panel-background-color: var(--accent-medium);
|
|
4029
|
+
--two-column-panel-header-text-color: #fff;
|
|
4030
|
+
--two-column-panel-accent-text-color: #fff;
|
|
4031
|
+
--two-column-panel-list-background-color: var(--accent-dark);
|
|
4032
|
+
--two-column-panel-group-heading-background-color: #b3bfc6;
|
|
4033
|
+
--two-column-panel-group-heading-text-color: var(--accent-dark);
|
|
4034
|
+
}
|
|
4035
|
+
|
|
4036
|
+
.TwoColumnPanel {
|
|
4037
|
+
display: flex;
|
|
4038
|
+
border: 1px solid var(--two-column-panel-border-color);
|
|
4039
|
+
background-color: var(--two-column-panel-background-color);
|
|
4040
|
+
border-radius: var(--two-column-panel-border-radius);
|
|
4041
|
+
box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
|
|
4042
|
+
}
|
|
4043
|
+
|
|
4044
|
+
.TwoColumnPanel__Header {
|
|
4045
|
+
padding: 0 var(--space-small);
|
|
4046
|
+
border-bottom: 1px solid var(--two-column-panel-border-color);
|
|
4047
|
+
height: var(--two-column-panel-header-height);
|
|
4048
|
+
line-height: var(--two-column-panel-header-height);
|
|
4049
|
+
font-weight: 500;
|
|
4050
|
+
color: var(--two-column-panel-header-text-color);
|
|
4051
|
+
flex: 1;
|
|
4052
|
+
}
|
|
4053
|
+
|
|
4054
|
+
.TwoColumnPanel__Left {
|
|
4055
|
+
position: relative;
|
|
4056
|
+
width: var(--two-column-panel-left-column-width);
|
|
4057
|
+
border-right: 1px solid var(--two-column-panel-border-color);
|
|
4058
|
+
background-color: var(--two-column-panel-background-color);
|
|
4059
|
+
border-top-left-radius: var(--two-column-panel-border-radius);
|
|
4060
|
+
border-bottom-left-radius: var(--two-column-panel-border-radius);
|
|
4061
|
+
align-content: start;
|
|
4062
|
+
}
|
|
4063
|
+
|
|
4064
|
+
.TwoColumnPanel__Right {
|
|
4065
|
+
flex: 1;
|
|
4066
|
+
align-content: flex-start;
|
|
4067
|
+
}
|
|
4068
|
+
|
|
4069
|
+
.TwoColumnPanel__Left,
|
|
4070
|
+
.TwoColumnPanel__Right {
|
|
4071
|
+
display: flex;
|
|
4072
|
+
flex-direction: row;
|
|
4073
|
+
flex-wrap: wrap;
|
|
4074
|
+
}
|
|
4075
|
+
|
|
4076
|
+
.TwoColumnPanel__Right .TwoColumnPanel__Header {
|
|
4077
|
+
flex: 1;
|
|
4078
|
+
font-size: var(--text-size-normal);
|
|
4079
|
+
}
|
|
4080
|
+
|
|
4081
|
+
.TwoColumnPanel__Left .TwoColumnPanel__Header ~ * {
|
|
4082
|
+
flex-basis: 100%;
|
|
4083
|
+
}
|
|
4084
|
+
|
|
4085
|
+
.TwoColumnPanel__Left ul li {
|
|
4086
|
+
list-style-type: none;
|
|
4087
|
+
color: var(--gray-90);
|
|
4088
|
+
font-weight: 500;
|
|
4089
|
+
text-decoration: none;
|
|
4090
|
+
background-color: var(--two-column-panel-list-background-color);
|
|
4091
|
+
transition: ease-in-out 100ms background-color;
|
|
4092
|
+
height: 4.1875rem;
|
|
4093
|
+
flex-direction: column;
|
|
4094
|
+
align-items: flex-start;
|
|
4095
|
+
border-top: 1px solid var(--two-column-panel-border-color);
|
|
4096
|
+
}
|
|
4097
|
+
|
|
4098
|
+
.TwoColumnPanel__Left ul li a {
|
|
4099
|
+
display: flex;
|
|
4100
|
+
flex-direction: column;
|
|
4101
|
+
padding: var(--space-small);
|
|
4102
|
+
text-decoration: none;
|
|
4103
|
+
height: 100%;
|
|
4104
|
+
}
|
|
4105
|
+
|
|
4106
|
+
.TwoColumnPanel__Left ul li a:last-child {
|
|
4107
|
+
box-shadow: 0px 1px 0px 0px var(--two-column-panel-border-color);
|
|
4108
|
+
}
|
|
4109
|
+
|
|
4110
|
+
.TwoColumnPanel__Left ul li a[aria-current]:not([aria-current='false']) {
|
|
4111
|
+
box-shadow: inset 4px 0 0 var(--tab-shadow-color);
|
|
4112
|
+
}
|
|
4113
|
+
|
|
4114
|
+
.TwoColumnPanel__Left
|
|
4115
|
+
ul
|
|
4116
|
+
li
|
|
4117
|
+
a[aria-current]:not([aria-current='false']):last-child {
|
|
4118
|
+
box-shadow: inset 4px 0 0 var(--tab-shadow-color),
|
|
4119
|
+
0px 1px 0px 0px var(--two-column-panel-border-color);
|
|
4120
|
+
}
|
|
4121
|
+
|
|
4122
|
+
.TwoColumnPanel__Left ul li em {
|
|
4123
|
+
color: var(--two-column-panel-accent-text-color);
|
|
4124
|
+
font-size: var(--text-size-smaller);
|
|
4125
|
+
font-style: normal;
|
|
4126
|
+
font-weight: 300;
|
|
4127
|
+
display: block;
|
|
4128
|
+
}
|
|
4129
|
+
|
|
4130
|
+
.TwoColumnPanel__Left ul li:hover {
|
|
4131
|
+
background-color: var(--tab-inactive-background-color);
|
|
4132
|
+
}
|
|
4133
|
+
|
|
4134
|
+
.TwoColumnPanel__Left ul li:first-child {
|
|
4135
|
+
border-top: none;
|
|
4136
|
+
}
|
|
4137
|
+
|
|
4138
|
+
.TwoColumnPanel__Left ul li:last-child {
|
|
4139
|
+
border-bottom: none;
|
|
4140
|
+
}
|
|
4141
|
+
|
|
4142
|
+
.TwoColumnPanel__GroupHeader {
|
|
4143
|
+
border-top: 1px solid var(--two-column-panel-border-color);
|
|
4144
|
+
border-bottom: 1px solid var(--two-column-panel-border-color);
|
|
4145
|
+
background: var(--two-column-panel-group-heading-background-color);
|
|
4146
|
+
text-transform: uppercase;
|
|
4147
|
+
font-size: var(--text-size-smaller);
|
|
4148
|
+
font-weight: 500;
|
|
4149
|
+
padding: var(--space-smallest) var(--space-small);
|
|
4150
|
+
color: var(--two-column-panel-group-heading-text-color);
|
|
4151
|
+
position: sticky;
|
|
4152
|
+
top: 0;
|
|
4153
|
+
}
|
|
4154
|
+
|
|
4155
|
+
.TwoColumnPanel__GroupHeader h1,
|
|
4156
|
+
.TwoColumnPanel__GroupHeader h2,
|
|
4157
|
+
.TwoColumnPanel__GroupHeader h3,
|
|
4158
|
+
.TwoColumnPanel__GroupHeader h4,
|
|
4159
|
+
.TwoColumnPanel__GroupHeader h5,
|
|
4160
|
+
.TwoColumnPanel__GroupHeader h6 {
|
|
4161
|
+
color: inherit;
|
|
4162
|
+
font-size: var(--text-size-smaller);
|
|
4163
|
+
font-weight: 500;
|
|
4164
|
+
margin: 0;
|
|
4165
|
+
padding: 0;
|
|
4166
|
+
}
|
|
4167
|
+
|
|
4168
|
+
.TwoColumnPanel__Header + .TwoColumnPanel__GroupHeader,
|
|
4169
|
+
.TwoColumnPanel__GroupHeader:first-child {
|
|
4170
|
+
border-top: none;
|
|
4171
|
+
}
|
|
4172
|
+
|
|
4173
|
+
.TwoColumnPanel__Right .TwoColumnPanel__Header ~ * {
|
|
4174
|
+
display: flex;
|
|
4175
|
+
flex-direction: column;
|
|
4176
|
+
width: unset;
|
|
4177
|
+
min-height: unset;
|
|
4178
|
+
flex-basis: 100%;
|
|
4179
|
+
border: none;
|
|
4180
|
+
padding: var(--space-small);
|
|
4181
|
+
}
|
|
4182
|
+
|
|
4183
|
+
.TwoColumnPanel__Right .TwoColumnPanel__Header ~ * > :last-child {
|
|
4184
|
+
padding-bottom: 0;
|
|
4185
|
+
margin-bottom: 0;
|
|
4186
|
+
}
|
|
4187
|
+
|
|
4188
|
+
.TwoColumnPanel__ButtonToggle button,
|
|
4189
|
+
.TwoColumnPanel__Close button {
|
|
4190
|
+
background-color: transparent;
|
|
4191
|
+
border: none;
|
|
4192
|
+
border-bottom: 1px solid var(--two-column-panel-border-color);
|
|
4193
|
+
height: var(--two-column-panel-header-height);
|
|
4194
|
+
width: var(--two-column-panel-header-height);
|
|
4195
|
+
}
|
|
4196
|
+
|
|
4197
|
+
.TwoColumnPanel__ButtonToggle button {
|
|
4198
|
+
border-right: 1px solid var(--two-column-panel-border-color);
|
|
4199
|
+
}
|
|
4200
|
+
|
|
4201
|
+
.TwoColumnPanel__Close {
|
|
4202
|
+
position: absolute;
|
|
4203
|
+
top: 0;
|
|
4204
|
+
right: 0;
|
|
4205
|
+
display: none;
|
|
4206
|
+
}
|
|
4207
|
+
|
|
4208
|
+
.TwoColumnPanel__ButtonToggle button:focus,
|
|
4209
|
+
.TwoColumnPanel__Close button:focus {
|
|
4210
|
+
position: relative;
|
|
4211
|
+
/* TODO: fix this z-index */
|
|
4212
|
+
z-index: 2;
|
|
4213
|
+
}
|
|
4214
|
+
|
|
4215
|
+
.TwoColumnPanel__ButtonToggle button:hover {
|
|
4216
|
+
background-color: var(--tab-inactive-background-color);
|
|
4217
|
+
}
|
|
4218
|
+
|
|
4219
|
+
/* Panel show/hide transitions */
|
|
4220
|
+
|
|
4221
|
+
.TwoColumnPanel__Left {
|
|
4222
|
+
transition: opacity ease-in-out var(--two-column-panel-animation-timing);
|
|
4223
|
+
}
|
|
4224
|
+
|
|
4225
|
+
.TwoColumnPanel--hide .TwoColumnPanel__Left {
|
|
4226
|
+
opacity: 0;
|
|
4227
|
+
}
|
|
4228
|
+
|
|
4229
|
+
.TwoColumnPanel--show .TwoColumnPanel__Left {
|
|
4230
|
+
opacity: 1;
|
|
4231
|
+
animation: TwoColumnPanel--fade-in ease-in-out
|
|
4232
|
+
var(--two-column-panel-animation-timing);
|
|
4233
|
+
}
|
|
4234
|
+
|
|
4235
|
+
@keyframes TwoColumnPanel--fade-in {
|
|
4236
|
+
from {
|
|
4237
|
+
opacity: 0;
|
|
4238
|
+
}
|
|
4239
|
+
to {
|
|
4240
|
+
opacity: 1;
|
|
4241
|
+
}
|
|
4242
|
+
}
|
|
4243
|
+
|
|
4244
|
+
@media (prefers-reduced-motion) {
|
|
4245
|
+
.TwoColumnPanel__Left {
|
|
4246
|
+
transition: none !important;
|
|
4247
|
+
animation: none !important;
|
|
4248
|
+
}
|
|
4249
|
+
}
|
|
4250
|
+
|
|
4251
|
+
@media (max-width: 45rem) {
|
|
4252
|
+
.TwoColumnPanel__Close {
|
|
4253
|
+
display: block;
|
|
4254
|
+
}
|
|
4255
|
+
|
|
4256
|
+
.TwoColumnPanel__Left {
|
|
4257
|
+
position: relative;
|
|
4258
|
+
z-index: 1;
|
|
4259
|
+
box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
|
|
4260
|
+
transition: transform cubic-bezier(0.5, 0.5, 0, 1)
|
|
4261
|
+
var(--two-column-panel-animation-timing);
|
|
4262
|
+
}
|
|
4263
|
+
|
|
4264
|
+
.TwoColumnPanel--hide .TwoColumnPanel__Left,
|
|
4265
|
+
.TwoColumnPanel--show .TwoColumnPanel__Left {
|
|
4266
|
+
margin-left: calc(var(--two-column-panel-left-column-width) * -1);
|
|
4267
|
+
animation: none;
|
|
4268
|
+
opacity: 1;
|
|
4269
|
+
}
|
|
4270
|
+
|
|
4271
|
+
.TwoColumnPanel__Right .TwoColumnPanel__Header {
|
|
4272
|
+
border-top: 1px solid var(--two-column-panel-border-color);
|
|
4273
|
+
flex-basis: 100%;
|
|
4274
|
+
font-size: var(--text-size-small);
|
|
4275
|
+
}
|
|
4276
|
+
|
|
4277
|
+
.TwoColumnPanel__ButtonToggle button {
|
|
4278
|
+
border-bottom: none;
|
|
4279
|
+
}
|
|
4280
|
+
|
|
4281
|
+
.TwoColumnPanel--show .TwoColumnPanel__Left {
|
|
4282
|
+
transform: translateX(100%);
|
|
4283
|
+
}
|
|
4284
|
+
|
|
4285
|
+
.TwoColumnPanel--hide .TwoColumnPanel__Left {
|
|
4286
|
+
transform: translateX(-10vw);
|
|
4287
|
+
}
|
|
4288
|
+
}
|
package/package.json
CHANGED