@deque/cauldron-styles 4.5.0 → 4.6.0-canary.18f99f9b
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 +252 -59
- package/package.json +2 -2
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-dark: #5d676f;
|
|
11
12
|
--gray-10: #fdfdfe;
|
|
12
13
|
--gray-20: #f2f2f2;
|
|
13
14
|
--gray-30: #e0e0e0;
|
|
@@ -20,6 +21,7 @@
|
|
|
20
21
|
--accent-light: #d4dde0;
|
|
21
22
|
--accent-success: #a5db75;
|
|
22
23
|
--accent-success-light: #d1ffa4;
|
|
24
|
+
--accent-success-dark: #57a711;
|
|
23
25
|
--accent-error: #d93251;
|
|
24
26
|
--accent-error-active: #c92e40;
|
|
25
27
|
--accent-danger: #fe6d6b;
|
|
@@ -35,6 +37,10 @@
|
|
|
35
37
|
--accent-secondary-active: var(--gray-30);
|
|
36
38
|
--focus-light: #c11bde;
|
|
37
39
|
--focus-dark: #eb94ff;
|
|
40
|
+
--issue-critical: #ed5959;
|
|
41
|
+
--issue-serious: #f3826b;
|
|
42
|
+
--issue-moderate: #ffdd76;
|
|
43
|
+
--issue-minor: #d3dde0;
|
|
38
44
|
|
|
39
45
|
/* text colours */
|
|
40
46
|
--text-color-base: var(--gray-60);
|
|
@@ -110,6 +116,10 @@
|
|
|
110
116
|
--z-index-top-bar: 25;
|
|
111
117
|
/* ensure this is 1 higher than the top bar z-index */
|
|
112
118
|
--z-index-skip-container: calc(var(--z-index-top-bar) + 1);
|
|
119
|
+
|
|
120
|
+
/* radio card */
|
|
121
|
+
--radio-card-width: 255px;
|
|
122
|
+
--radio-card-height: 229px;
|
|
113
123
|
}
|
|
114
124
|
|
|
115
125
|
.cauldron--theme-dark {
|
|
@@ -389,6 +399,10 @@ p {
|
|
|
389
399
|
gap: 8px;
|
|
390
400
|
}
|
|
391
401
|
|
|
402
|
+
.Button--tag {
|
|
403
|
+
position: relative;
|
|
404
|
+
}
|
|
405
|
+
|
|
392
406
|
button.Link {
|
|
393
407
|
cursor: pointer;
|
|
394
408
|
}
|
|
@@ -403,7 +417,8 @@ button.Link {
|
|
|
403
417
|
.Button--primary:before,
|
|
404
418
|
.Button--secondary:before,
|
|
405
419
|
.Button--clear:before,
|
|
406
|
-
.Button--error:before
|
|
420
|
+
.Button--error:before,
|
|
421
|
+
.Button--tag:before {
|
|
407
422
|
content: '';
|
|
408
423
|
position: absolute;
|
|
409
424
|
top: -2px;
|
|
@@ -414,6 +429,10 @@ button.Link {
|
|
|
414
429
|
pointer-events: none;
|
|
415
430
|
}
|
|
416
431
|
|
|
432
|
+
.Button--tag:before {
|
|
433
|
+
border-radius: 11px;
|
|
434
|
+
}
|
|
435
|
+
|
|
417
436
|
.Button--primary:not([disabled]):not([aria-disabled='true']):hover:before {
|
|
418
437
|
box-shadow: 0 0 0 1px var(--button-outline-color-primary);
|
|
419
438
|
}
|
|
@@ -426,9 +445,14 @@ button.Link {
|
|
|
426
445
|
box-shadow: 0 0 0 1px var(--button-outline-color-error);
|
|
427
446
|
}
|
|
428
447
|
|
|
448
|
+
.Button--tag:not([disabled]):not([aria-disabled='true']):hover:before {
|
|
449
|
+
box-shadow: 0 0 0 1px var(--button-outline-color-primary);
|
|
450
|
+
}
|
|
451
|
+
|
|
429
452
|
.Button--primary:focus:before,
|
|
430
453
|
.Button--secondary:focus:before,
|
|
431
|
-
.Button--error:focus:before
|
|
454
|
+
.Button--error:focus:before,
|
|
455
|
+
.Button--tag:focus:before {
|
|
432
456
|
box-shadow: 0 0 1px 2px var(--button-focus-ring-color, --focus);
|
|
433
457
|
}
|
|
434
458
|
|
|
@@ -479,6 +503,11 @@ button.Link {
|
|
|
479
503
|
background-color: var(--button-background-color-error-active);
|
|
480
504
|
}
|
|
481
505
|
|
|
506
|
+
.Button--tag[aria-disabled='true'],
|
|
507
|
+
.Button--tag[disabled] {
|
|
508
|
+
color: var(--disabled);
|
|
509
|
+
}
|
|
510
|
+
|
|
482
511
|
.Button--primary .Icon,
|
|
483
512
|
.Button--secondary .Icon,
|
|
484
513
|
.Button--clear .Icon,
|
|
@@ -563,7 +592,8 @@ button.Link {
|
|
|
563
592
|
.cauldron--theme-dark .Button--secondary[aria-disabled='true'],
|
|
564
593
|
.cauldron--theme-dark .Button--secondary[disabled],
|
|
565
594
|
.cauldron--theme-dark .Button--error[aria-disabled='true'],
|
|
566
|
-
.cauldron--theme-dark .Button--error[disabled]
|
|
595
|
+
.cauldron--theme-dark .Button--error[disabled],
|
|
596
|
+
.cauldron--theme-dark .Button--tag[disabled] {
|
|
567
597
|
color: var(--dark-workspace-color);
|
|
568
598
|
}
|
|
569
599
|
|
|
@@ -603,6 +633,12 @@ button.Link {
|
|
|
603
633
|
0 0 0 2px var(--accent-danger);
|
|
604
634
|
}
|
|
605
635
|
|
|
636
|
+
.cauldron--theme-dark
|
|
637
|
+
.Button--tag:not([disabled]):not([aria-disabled='true']):hover:before {
|
|
638
|
+
box-shadow: 0 0 0 1px var(--dark-workspace-color),
|
|
639
|
+
0 0 0 2px var(--accent-info);
|
|
640
|
+
}
|
|
641
|
+
|
|
606
642
|
:root {
|
|
607
643
|
--icon-button-background-color-primary: var(
|
|
608
644
|
--button-background-color-primary
|
|
@@ -997,52 +1033,6 @@ button.Link {
|
|
|
997
1033
|
border-top: none;
|
|
998
1034
|
}
|
|
999
1035
|
|
|
1000
|
-
.Dropdown {
|
|
1001
|
-
position: absolute;
|
|
1002
|
-
padding: 8px;
|
|
1003
|
-
background-color: var(--white);
|
|
1004
|
-
box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.3);
|
|
1005
|
-
border: 1px solid var(--field-border-color);
|
|
1006
|
-
color: var(--text-color-base);
|
|
1007
|
-
display: none;
|
|
1008
|
-
list-style: none;
|
|
1009
|
-
}
|
|
1010
|
-
|
|
1011
|
-
.Dropdown.Dropdown--active {
|
|
1012
|
-
display: block;
|
|
1013
|
-
}
|
|
1014
|
-
|
|
1015
|
-
.Dropdown:focus {
|
|
1016
|
-
outline: 0;
|
|
1017
|
-
border: 1px solid var(--text-color-base);
|
|
1018
|
-
}
|
|
1019
|
-
|
|
1020
|
-
.Dropdown [role='menuitem'] {
|
|
1021
|
-
font-size: var(--text-size-small);
|
|
1022
|
-
font-weight: var(--font-weight-normal);
|
|
1023
|
-
padding: 2px var(--space-smallest);
|
|
1024
|
-
cursor: default;
|
|
1025
|
-
}
|
|
1026
|
-
|
|
1027
|
-
.Dropdown [role='menuitem']:hover,
|
|
1028
|
-
.Dropdown [role='menuitem']:focus {
|
|
1029
|
-
background-color: var(--link-text-color-light);
|
|
1030
|
-
outline: 0;
|
|
1031
|
-
}
|
|
1032
|
-
|
|
1033
|
-
.Dropdown [role='menuitem'][aria-disabled='true'] {
|
|
1034
|
-
color: var(--disabled);
|
|
1035
|
-
}
|
|
1036
|
-
|
|
1037
|
-
.Dropdown [role='menuitem'][aria-disabled='true']:hover {
|
|
1038
|
-
background-color: transparent;
|
|
1039
|
-
}
|
|
1040
|
-
|
|
1041
|
-
.TopBar .Dropdown {
|
|
1042
|
-
top: var(--top-bar-height);
|
|
1043
|
-
right: 0;
|
|
1044
|
-
}
|
|
1045
|
-
|
|
1046
1036
|
:root {
|
|
1047
1037
|
--pointout-border-color: var(--accent-success);
|
|
1048
1038
|
--pointout-background-color: var(--accent-medium);
|
|
@@ -1859,6 +1849,24 @@ p .Link {
|
|
|
1859
1849
|
font-weight: var(--font-weight-normal);
|
|
1860
1850
|
}
|
|
1861
1851
|
|
|
1852
|
+
:root {
|
|
1853
|
+
--options-menu-text-color: var(--gray-90);
|
|
1854
|
+
--options-menu-disabled-text-color: var(--disabled);
|
|
1855
|
+
--options-menu-background-color: var(--white);
|
|
1856
|
+
--options-menu-hover-background-color: var(--gray-20);
|
|
1857
|
+
--options-menu-active-border-color: var(--accent-primary);
|
|
1858
|
+
--options-menu-border-color: var(--gray-40);
|
|
1859
|
+
}
|
|
1860
|
+
|
|
1861
|
+
.cauldron--theme-dark {
|
|
1862
|
+
--options-menu-text-color: var(--white);
|
|
1863
|
+
--options-menu-disabled-text-color: rgba(255, 255, 255, 0.5);
|
|
1864
|
+
--options-menu-background-color: var(--accent-dark);
|
|
1865
|
+
--options-menu-hover-background-color: var(--accent-medium);
|
|
1866
|
+
--options-menu-active-border-color: var(--accent-info);
|
|
1867
|
+
--options-menu-border-color: var(--stroke-dark);
|
|
1868
|
+
}
|
|
1869
|
+
|
|
1862
1870
|
.OptionsMenu {
|
|
1863
1871
|
position: relative;
|
|
1864
1872
|
width: 34px;
|
|
@@ -1867,10 +1875,10 @@ p .Link {
|
|
|
1867
1875
|
|
|
1868
1876
|
.OptionsMenu__trigger {
|
|
1869
1877
|
font-size: var(--text-small-medium);
|
|
1870
|
-
color: var(--
|
|
1878
|
+
color: var(--options-menu-text-color);
|
|
1871
1879
|
border-radius: 3px;
|
|
1872
|
-
background-color: var(--
|
|
1873
|
-
border: 1px solid var(--
|
|
1880
|
+
background-color: var(--options-menu-background-color);
|
|
1881
|
+
border: 1px solid var(--options-menu-border-color);
|
|
1874
1882
|
box-sizing: border-box;
|
|
1875
1883
|
height: 34px;
|
|
1876
1884
|
width: 34px;
|
|
@@ -1879,21 +1887,27 @@ p .Link {
|
|
|
1879
1887
|
align-items: center;
|
|
1880
1888
|
}
|
|
1881
1889
|
|
|
1890
|
+
.OptionsMenu__trigger ~ .OptionsMenu__list {
|
|
1891
|
+
top: 33px;
|
|
1892
|
+
}
|
|
1893
|
+
|
|
1882
1894
|
.OptionsMenu__list {
|
|
1895
|
+
color: var(--options-menu-text-color);
|
|
1883
1896
|
display: none;
|
|
1884
1897
|
position: absolute;
|
|
1898
|
+
font-size: var(--text-size-smaller);
|
|
1885
1899
|
list-style-type: none;
|
|
1886
1900
|
margin: 0;
|
|
1887
1901
|
padding: 0;
|
|
1888
|
-
background-color: var(--
|
|
1889
|
-
top: 33px;
|
|
1902
|
+
background-color: var(--options-menu-background-color);
|
|
1890
1903
|
right: 0;
|
|
1891
1904
|
left: auto;
|
|
1892
|
-
border: 1px solid var(--
|
|
1905
|
+
border: 1px solid var(--options-menu-border-color);
|
|
1893
1906
|
z-index: var(--z-index-listbox);
|
|
1894
1907
|
min-width: 150px;
|
|
1895
1908
|
max-height: 140px;
|
|
1896
1909
|
overflow-y: auto;
|
|
1910
|
+
box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.15);
|
|
1897
1911
|
}
|
|
1898
1912
|
|
|
1899
1913
|
.OptionsMenu__list[aria-expanded='true'] {
|
|
@@ -1901,15 +1915,20 @@ p .Link {
|
|
|
1901
1915
|
}
|
|
1902
1916
|
|
|
1903
1917
|
.OptionsMenu__list-item {
|
|
1904
|
-
font-size: var(--text-size-small);
|
|
1905
1918
|
font-weight: var(--font-weight-normal);
|
|
1906
|
-
padding:
|
|
1919
|
+
padding: var(--space-smallest) calc(var(--space-smallest) + var(--space-half));
|
|
1907
1920
|
cursor: default;
|
|
1921
|
+
border-bottom: 1px solid var(--options-menu-border-color);
|
|
1922
|
+
position: relative;
|
|
1923
|
+
}
|
|
1924
|
+
|
|
1925
|
+
.OptionsMenu__list-item:last-child {
|
|
1926
|
+
border-bottom: none;
|
|
1908
1927
|
}
|
|
1909
1928
|
|
|
1910
1929
|
.OptionsMenu__list-item:hover,
|
|
1911
1930
|
.OptionsMenu__list-item:focus {
|
|
1912
|
-
background-color: var(--
|
|
1931
|
+
background-color: var(--options-menu-hover-background-color);
|
|
1913
1932
|
outline: 0;
|
|
1914
1933
|
}
|
|
1915
1934
|
|
|
@@ -1918,7 +1937,7 @@ p .Link {
|
|
|
1918
1937
|
}
|
|
1919
1938
|
|
|
1920
1939
|
.OptionsMenu__list-item[aria-disabled='true'] {
|
|
1921
|
-
color: var(--disabled);
|
|
1940
|
+
color: var(--options-menu-disabled-text-color);
|
|
1922
1941
|
}
|
|
1923
1942
|
|
|
1924
1943
|
.OptionsMenu__list-item[aria-disabled='true']:hover {
|
|
@@ -2189,6 +2208,96 @@ p .Link {
|
|
|
2189
2208
|
background-color: var(--accent-dark);
|
|
2190
2209
|
}
|
|
2191
2210
|
|
|
2211
|
+
.RadioCard__overlay {
|
|
2212
|
+
border-radius: 50%;
|
|
2213
|
+
}
|
|
2214
|
+
|
|
2215
|
+
.RadioCard input[type='radio'] {
|
|
2216
|
+
position: absolute;
|
|
2217
|
+
opacity: 0;
|
|
2218
|
+
-webkit-appearance: none;
|
|
2219
|
+
-moz-appearance: none;
|
|
2220
|
+
appearance: none;
|
|
2221
|
+
height: 1px;
|
|
2222
|
+
width: 1px;
|
|
2223
|
+
}
|
|
2224
|
+
|
|
2225
|
+
.RadioCard__overlay.RadioCard__overlay--focused {
|
|
2226
|
+
border: 1px solid var(--focus);
|
|
2227
|
+
box-shadow: inset 0 0 0 1px var(--focus), 0 0 4px 2px var(--focus-glow);
|
|
2228
|
+
}
|
|
2229
|
+
|
|
2230
|
+
.RadioCard__overlay--checked.RadioCard__overlay--checked {
|
|
2231
|
+
background-color: var(--gray-20);
|
|
2232
|
+
}
|
|
2233
|
+
|
|
2234
|
+
.RadioCard__overlay.RadioCard__overlay--disabled,
|
|
2235
|
+
.RadioCard__overlay.RadioCard__overlay--disabled:hover {
|
|
2236
|
+
background-color: var(--gray-30);
|
|
2237
|
+
}
|
|
2238
|
+
|
|
2239
|
+
.RadioCardGroup {
|
|
2240
|
+
display: flex;
|
|
2241
|
+
gap: var(--space-large);
|
|
2242
|
+
flex-wrap: wrap;
|
|
2243
|
+
}
|
|
2244
|
+
|
|
2245
|
+
.RadioCardGroup .Radio + .Radio {
|
|
2246
|
+
margin-top: 0;
|
|
2247
|
+
}
|
|
2248
|
+
|
|
2249
|
+
.RadioCardGroup__Base {
|
|
2250
|
+
text-align: center;
|
|
2251
|
+
}
|
|
2252
|
+
|
|
2253
|
+
.RadioCardGroup__Checked {
|
|
2254
|
+
display: flex;
|
|
2255
|
+
justify-content: flex-end;
|
|
2256
|
+
min-height: 44px;
|
|
2257
|
+
}
|
|
2258
|
+
|
|
2259
|
+
.RadioCardGroup__Icon.Icon svg {
|
|
2260
|
+
color: var(--accent-success-dark);
|
|
2261
|
+
height: 44px;
|
|
2262
|
+
width: 44px;
|
|
2263
|
+
}
|
|
2264
|
+
|
|
2265
|
+
.RadioCardGroup__Card.Card--simple {
|
|
2266
|
+
width: var(--radio-card-width);
|
|
2267
|
+
height: var(--radio-card-height);
|
|
2268
|
+
align-content: center;
|
|
2269
|
+
}
|
|
2270
|
+
|
|
2271
|
+
.RadioCardGroup__Card:hover {
|
|
2272
|
+
background-color: var(--gray-20);
|
|
2273
|
+
}
|
|
2274
|
+
|
|
2275
|
+
.Radio__overlay--checked.Radio__overlay--checked {
|
|
2276
|
+
background-color: var(--gray-20);
|
|
2277
|
+
}
|
|
2278
|
+
|
|
2279
|
+
.RadioCardGroup__Image * {
|
|
2280
|
+
max-width: 100%;
|
|
2281
|
+
}
|
|
2282
|
+
|
|
2283
|
+
.RadioCardGroup__Image {
|
|
2284
|
+
width: 100px;
|
|
2285
|
+
height: 100px;
|
|
2286
|
+
display: flex;
|
|
2287
|
+
align-items: center;
|
|
2288
|
+
justify-content: center;
|
|
2289
|
+
margin: 0 auto;
|
|
2290
|
+
}
|
|
2291
|
+
|
|
2292
|
+
.RadioCardGroup__Label {
|
|
2293
|
+
font-size: var(--text-size-medium);
|
|
2294
|
+
font-weight: var(--font-weight-bold);
|
|
2295
|
+
color: var(--field-label-text-color);
|
|
2296
|
+
margin-top: var(--space-small);
|
|
2297
|
+
display: flex;
|
|
2298
|
+
justify-content: center;
|
|
2299
|
+
}
|
|
2300
|
+
|
|
2192
2301
|
:root {
|
|
2193
2302
|
--tile-background-color: var(--white);
|
|
2194
2303
|
--list-separator: rgba(153, 153, 153, 0.15);
|
|
@@ -2687,6 +2796,11 @@ button.TooltipTabstop {
|
|
|
2687
2796
|
border-left: 1px solid var(--top-bar-menuitem-separator);
|
|
2688
2797
|
}
|
|
2689
2798
|
|
|
2799
|
+
.TopBar .OptionsMenu__list {
|
|
2800
|
+
top: var(--top-bar-height);
|
|
2801
|
+
right: 0;
|
|
2802
|
+
}
|
|
2803
|
+
|
|
2690
2804
|
/* Dark Theme */
|
|
2691
2805
|
|
|
2692
2806
|
.cauldron--theme-dark {
|
|
@@ -4301,3 +4415,82 @@ fieldset.Panel {
|
|
|
4301
4415
|
display: none;
|
|
4302
4416
|
}
|
|
4303
4417
|
}
|
|
4418
|
+
|
|
4419
|
+
:root {
|
|
4420
|
+
--accordion-trigger-background-color: var(--white);
|
|
4421
|
+
--accordion-trigger-background-color-expanded: var(--gray-20);
|
|
4422
|
+
--accordion-trigger-text-color: var(--gray-90);
|
|
4423
|
+
--accordion-trigger-text-color-hover: var(--accent-primary);
|
|
4424
|
+
--accordion-trigger-box-shadow-hover: var(--accent-primary);
|
|
4425
|
+
--accordion-trigger-border-color: var(--gray-40);
|
|
4426
|
+
--accordion-trigger-icon-color: var(--gray-90);
|
|
4427
|
+
--accordion-panel-background-color: var(--white);
|
|
4428
|
+
--accordion-panel-text-color: var(--gray-90);
|
|
4429
|
+
--accordion-panel-border-color: var(--gray-40);
|
|
4430
|
+
--accordion-box-shadow-color: rgba(0, 0, 0, 0.15);
|
|
4431
|
+
}
|
|
4432
|
+
|
|
4433
|
+
.cauldron--theme-dark {
|
|
4434
|
+
--accordion-trigger-background-color: var(--accent-medium);
|
|
4435
|
+
--accordion-trigger-background-color-expanded: var(--accent-dark);
|
|
4436
|
+
--accordion-trigger-text-color: var(--white);
|
|
4437
|
+
--accordion-trigger-text-color-hover: var(--accent-light);
|
|
4438
|
+
--accordion-trigger-box-shadow-hover: var(--accent-info);
|
|
4439
|
+
--accordion-trigger-border-color: var(--stroke-dark);
|
|
4440
|
+
--accordion-trigger-icon-color: var(--white);
|
|
4441
|
+
--accordion-panel-background-color: var(--accent-medium);
|
|
4442
|
+
--accordion-panel-text-color: var(--white);
|
|
4443
|
+
--accordion-panel-border-color: var(--stroke-dark);
|
|
4444
|
+
}
|
|
4445
|
+
|
|
4446
|
+
.Accordion > :is(h1, h2, h3, h4, h5, h6):first-of-type {
|
|
4447
|
+
all: unset;
|
|
4448
|
+
}
|
|
4449
|
+
|
|
4450
|
+
.Accordion__trigger[type='button'] {
|
|
4451
|
+
background: var(--accordion-trigger-background-color);
|
|
4452
|
+
padding: calc(var(--space-small) - var(--space-half));
|
|
4453
|
+
width: 100%;
|
|
4454
|
+
display: flex;
|
|
4455
|
+
align-items: center;
|
|
4456
|
+
border-radius: 3px;
|
|
4457
|
+
border: 1px solid var(--accordion-trigger-border-color);
|
|
4458
|
+
font-size: var(--text-size-small);
|
|
4459
|
+
margin-top: var(--space-small);
|
|
4460
|
+
color: var(--accordion-trigger-text-color);
|
|
4461
|
+
-webkit-text-decoration: underline solid var(--accordion-trigger-text-color);
|
|
4462
|
+
text-decoration: underline solid var(--accordion-trigger-text-color);
|
|
4463
|
+
}
|
|
4464
|
+
|
|
4465
|
+
button.Accordion__trigger[aria-expanded='true'] {
|
|
4466
|
+
border-bottom-right-radius: 0;
|
|
4467
|
+
border-bottom-left-radius: 0;
|
|
4468
|
+
background: var(--accordion-trigger-background-color-expanded);
|
|
4469
|
+
}
|
|
4470
|
+
|
|
4471
|
+
button.Accordion__trigger:hover {
|
|
4472
|
+
box-shadow: inset 8px 0 0 -4px var(--accordion-trigger-box-shadow-hover);
|
|
4473
|
+
color: var(--accordion-trigger-text-color-hover);
|
|
4474
|
+
transition: all 0.2s ease-in-out;
|
|
4475
|
+
-webkit-text-decoration: underline solid var(--accordion-trigger-text-color-hover);
|
|
4476
|
+
text-decoration: underline solid var(--accordion-trigger-text-color-hover);
|
|
4477
|
+
}
|
|
4478
|
+
|
|
4479
|
+
button.Accordion__trigger:hover .Icon {
|
|
4480
|
+
color: var(--accordion-trigger-icon-color);
|
|
4481
|
+
}
|
|
4482
|
+
|
|
4483
|
+
.Accordion .Icon {
|
|
4484
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
4485
|
+
transition-duration: 0.2s;
|
|
4486
|
+
}
|
|
4487
|
+
|
|
4488
|
+
.Accordion__panel {
|
|
4489
|
+
background: var(--accordion-panel-background-color);
|
|
4490
|
+
color: var(--accordion-panel-text-color);
|
|
4491
|
+
padding: var(--space-small);
|
|
4492
|
+
border: 1px solid var(--accordion-panel-border-color);
|
|
4493
|
+
border-top: 0;
|
|
4494
|
+
border-radius: 0 0 3px 3px;
|
|
4495
|
+
box-shadow: 0 2px 3px 0 var(--accordion-box-shadow-color);
|
|
4496
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deque/cauldron-styles",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.6.0-canary.18f99f9b",
|
|
4
4
|
"license": "MPL-2.0",
|
|
5
5
|
"description": "deque cauldron pattern library styles",
|
|
6
6
|
"repository": "https://github.com/dequelabs/cauldron",
|
|
@@ -22,4 +22,4 @@
|
|
|
22
22
|
"postcss-cli": "^7.1.1",
|
|
23
23
|
"postcss-import": "^12.0.1"
|
|
24
24
|
}
|
|
25
|
-
}
|
|
25
|
+
}
|