@deque/cauldron-styles 3.0.1-canary.ec8e93ab → 4.0.0-canary.2be1dbda
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 +412 -96
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -122,6 +122,11 @@
|
|
|
122
122
|
|
|
123
123
|
.cauldron--theme-dark {
|
|
124
124
|
--workspace-background-color: var(--dark-workspace-color);
|
|
125
|
+
color-scheme: dark;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.cauldron--theme-light {
|
|
129
|
+
color-scheme: light;
|
|
125
130
|
}
|
|
126
131
|
|
|
127
132
|
html {
|
|
@@ -210,7 +215,7 @@ p {
|
|
|
210
215
|
padding: var(--layout-padding) var(--layout-padding) 0 var(--layout-padding);
|
|
211
216
|
position: fixed;
|
|
212
217
|
overflow-x: hidden;
|
|
213
|
-
overflow-y:
|
|
218
|
+
overflow-y: auto;
|
|
214
219
|
-webkit-overflow-scrolling: touch;
|
|
215
220
|
right: 0;
|
|
216
221
|
bottom: 0;
|
|
@@ -230,7 +235,7 @@ p {
|
|
|
230
235
|
|
|
231
236
|
.Layout .Main:focus {
|
|
232
237
|
outline: 0;
|
|
233
|
-
border-left-color: var(--
|
|
238
|
+
border-left-color: var(--gray-90);
|
|
234
239
|
}
|
|
235
240
|
|
|
236
241
|
/* the left-bar style focus indication */
|
|
@@ -294,6 +299,10 @@ p {
|
|
|
294
299
|
color: var(--white);
|
|
295
300
|
}
|
|
296
301
|
|
|
302
|
+
.cauldron--theme-dark .Layout .Main:focus {
|
|
303
|
+
border-left-color: var(--white);
|
|
304
|
+
}
|
|
305
|
+
|
|
297
306
|
:root {
|
|
298
307
|
--alert-warning-background-color: #d93251;
|
|
299
308
|
--alert-warning-header-text-color: #fff;
|
|
@@ -1575,7 +1584,6 @@ textarea.Field--has-error:focus:hover,
|
|
|
1575
1584
|
min-height: var(--space-large);
|
|
1576
1585
|
color: var(--error);
|
|
1577
1586
|
text-align: left;
|
|
1578
|
-
margin-bottom: var(--space-smallest);
|
|
1579
1587
|
font-size: var(--text-size-smallest);
|
|
1580
1588
|
font-weight: var(--font-weight-normal);
|
|
1581
1589
|
padding-left: var(--space-half);
|
|
@@ -1585,6 +1593,7 @@ textarea.Field--has-error:focus:hover,
|
|
|
1585
1593
|
display: block;
|
|
1586
1594
|
position: relative;
|
|
1587
1595
|
box-sizing: border-box;
|
|
1596
|
+
margin-bottom: var(--space-smallest);
|
|
1588
1597
|
}
|
|
1589
1598
|
|
|
1590
1599
|
.Field.is--flex-row {
|
|
@@ -1604,6 +1613,10 @@ textarea.Field--has-error:focus:hover,
|
|
|
1604
1613
|
justify-content: flex-end;
|
|
1605
1614
|
}
|
|
1606
1615
|
|
|
1616
|
+
.Checkbox {
|
|
1617
|
+
margin-bottom: var(--space-smallest);
|
|
1618
|
+
}
|
|
1619
|
+
|
|
1607
1620
|
.Checkbox + .Checkbox,
|
|
1608
1621
|
.Radio + .Radio {
|
|
1609
1622
|
margin-top: var(--space-smallest);
|
|
@@ -1788,12 +1801,18 @@ textarea.Field--has-error:focus:hover,
|
|
|
1788
1801
|
}
|
|
1789
1802
|
|
|
1790
1803
|
:root {
|
|
1791
|
-
--link-text-color: var(--
|
|
1804
|
+
--link-text-color: var(--gray-90);
|
|
1805
|
+
--link-text-color-hover: var(--accent-primary);
|
|
1792
1806
|
--link-text-color-light: rgba(60, 122, 174, 0.1);
|
|
1793
1807
|
}
|
|
1794
1808
|
|
|
1809
|
+
.cauldron--theme-dark {
|
|
1810
|
+
--link-text-color: var(--white);
|
|
1811
|
+
--link-text-color-hover: var(--accent-light);
|
|
1812
|
+
}
|
|
1813
|
+
|
|
1795
1814
|
.Link {
|
|
1796
|
-
text-decoration:
|
|
1815
|
+
text-decoration: underline;
|
|
1797
1816
|
color: var(--link-text-color);
|
|
1798
1817
|
font-weight: var(--font-weight-medium);
|
|
1799
1818
|
display: inline-block;
|
|
@@ -1820,14 +1839,6 @@ p .Link {
|
|
|
1820
1839
|
font-weight: var(--font-weight-normal);
|
|
1821
1840
|
}
|
|
1822
1841
|
|
|
1823
|
-
.cauldron--theme-dark .Link {
|
|
1824
|
-
--link-text-color: var(--accent-light);
|
|
1825
|
-
}
|
|
1826
|
-
|
|
1827
|
-
.cauldron--theme-dark .Link:hover {
|
|
1828
|
-
--link-text-color: var(--white);
|
|
1829
|
-
}
|
|
1830
|
-
|
|
1831
1842
|
.OptionsMenu {
|
|
1832
1843
|
position: relative;
|
|
1833
1844
|
width: 34px;
|
|
@@ -1954,6 +1965,7 @@ p .Link {
|
|
|
1954
1965
|
.Field__select {
|
|
1955
1966
|
display: flex;
|
|
1956
1967
|
flex-direction: column;
|
|
1968
|
+
margin-bottom: var(--space-smallest);
|
|
1957
1969
|
}
|
|
1958
1970
|
|
|
1959
1971
|
.Field__select--disabled {
|
|
@@ -2778,88 +2790,138 @@ button.TooltipTabstop {
|
|
|
2778
2790
|
color: var(--text-color-light);
|
|
2779
2791
|
}
|
|
2780
2792
|
|
|
2793
|
+
:root {
|
|
2794
|
+
--loader-ring-size: 104px;
|
|
2795
|
+
--loader-ring-thickness: 10px;
|
|
2796
|
+
--loader-inner-ring-size: 4px;
|
|
2797
|
+
--loader-ring-color: var(--accent-primary);
|
|
2798
|
+
--loader-inner-ring-color: #fff;
|
|
2799
|
+
--loader-logo-color: var(--accent-primary);
|
|
2800
|
+
--loader-text-color: var(--gray-90);
|
|
2801
|
+
--loader-overlay-border-color: var(--gray-40);
|
|
2802
|
+
--loader-overlay-background-color: var(--workspace-background-color);
|
|
2803
|
+
}
|
|
2804
|
+
|
|
2805
|
+
.cauldron--theme-dark {
|
|
2806
|
+
--loader-ring-color: var(--accent-dark);
|
|
2807
|
+
--loader-inner-ring-color: var(--accent-info);
|
|
2808
|
+
--loader-logo-color: var(--white);
|
|
2809
|
+
--loader-text-color: var(--white);
|
|
2810
|
+
--loader-overlay-border-color: #5d676e;
|
|
2811
|
+
--loader-overlay-background-color: var(--accent-medium);
|
|
2812
|
+
}
|
|
2813
|
+
|
|
2814
|
+
.Loader--large {
|
|
2815
|
+
--loader-ring-size: 192px;
|
|
2816
|
+
--loader-ring-thickness: 16px;
|
|
2817
|
+
--loader-inner-ring-size: calc(var(--loader-ring-thickness) * 0.5);
|
|
2818
|
+
}
|
|
2819
|
+
|
|
2820
|
+
.Loader {
|
|
2821
|
+
margin: 50px auto;
|
|
2822
|
+
position: relative;
|
|
2823
|
+
display: flex;
|
|
2824
|
+
height: var(--loader-ring-size);
|
|
2825
|
+
width: var(--loader-ring-size);
|
|
2826
|
+
align-items: center;
|
|
2827
|
+
justify-content: center;
|
|
2828
|
+
}
|
|
2829
|
+
|
|
2830
|
+
.Loader:before,
|
|
2831
|
+
.Loader:after {
|
|
2832
|
+
content: '';
|
|
2833
|
+
display: block;
|
|
2834
|
+
border-radius: 50%;
|
|
2835
|
+
}
|
|
2836
|
+
|
|
2837
|
+
.Loader:before {
|
|
2838
|
+
height: var(--loader-ring-size);
|
|
2839
|
+
width: var(--loader-ring-size);
|
|
2840
|
+
border: var(--loader-ring-thickness) solid var(--loader-ring-color);
|
|
2841
|
+
position: absolute;
|
|
2842
|
+
}
|
|
2843
|
+
|
|
2844
|
+
.Loader:after {
|
|
2845
|
+
--size: calc(
|
|
2846
|
+
var(--loader-ring-size) - var(--loader-ring-thickness) +
|
|
2847
|
+
var(--loader-inner-ring-size)
|
|
2848
|
+
);
|
|
2849
|
+
height: var(--size);
|
|
2850
|
+
width: var(--size);
|
|
2851
|
+
border: var(--loader-inner-ring-size) solid transparent;
|
|
2852
|
+
border-top: var(--loader-inner-ring-size) solid var(--loader-inner-ring-color);
|
|
2853
|
+
animation: spin 1.5s linear infinite;
|
|
2854
|
+
}
|
|
2855
|
+
|
|
2781
2856
|
.Loader__overlay {
|
|
2782
|
-
background: var(--
|
|
2857
|
+
background: var(--loader-overlay-background-color);
|
|
2783
2858
|
position: absolute;
|
|
2784
2859
|
display: inline-flex;
|
|
2785
2860
|
flex-direction: column;
|
|
2786
2861
|
align-items: center;
|
|
2787
|
-
border:
|
|
2862
|
+
border: 1px solid var(--loader-overlay-border-color);
|
|
2788
2863
|
border-radius: 3px;
|
|
2789
2864
|
top: 50%;
|
|
2790
2865
|
left: 50%;
|
|
2791
2866
|
transform: translate(-50%, -50%);
|
|
2792
|
-
|
|
2793
|
-
|
|
2794
|
-
|
|
2795
|
-
padding: 1em;
|
|
2796
|
-
padding-top: 0;
|
|
2867
|
+
width: 260px;
|
|
2868
|
+
padding: var(--space-large) var(--space-small) var(--space-small)
|
|
2869
|
+
var(--space-small);
|
|
2797
2870
|
z-index: var(--z-index-loader);
|
|
2871
|
+
box-shadow: 1px 1px 7px 0 rgba(0, 0, 0, 0.3);
|
|
2872
|
+
font-size: var(--text-size-smaller);
|
|
2873
|
+
color: var(--text-color-base);
|
|
2874
|
+
text-align: center;
|
|
2798
2875
|
}
|
|
2799
2876
|
|
|
2800
2877
|
.cauldron--theme-dark .Loader__overlay {
|
|
2801
|
-
|
|
2878
|
+
color: var(--accent-light);
|
|
2802
2879
|
}
|
|
2803
2880
|
|
|
2804
|
-
.
|
|
2805
|
-
|
|
2806
|
-
|
|
2807
|
-
|
|
2808
|
-
height:
|
|
2809
|
-
|
|
2810
|
-
|
|
2811
|
-
background: linear-gradient(
|
|
2812
|
-
to right,
|
|
2813
|
-
var(--gray-60) 10%,
|
|
2814
|
-
rgba(255, 255, 255, 0) 42%
|
|
2815
|
-
);
|
|
2816
|
-
transform: translateZ(0);
|
|
2817
|
-
position: relative;
|
|
2818
|
-
animation: load 1.4s linear infinite;
|
|
2881
|
+
.Loader__overlay__loader {
|
|
2882
|
+
display: flex;
|
|
2883
|
+
align-items: center;
|
|
2884
|
+
justify-content: center;
|
|
2885
|
+
min-height: var(--loader-ring-size);
|
|
2886
|
+
min-width: var(--loader-ring-size);
|
|
2887
|
+
margin-bottom: var(--space-small);
|
|
2819
2888
|
}
|
|
2820
2889
|
|
|
2821
|
-
.
|
|
2822
|
-
|
|
2823
|
-
|
|
2824
|
-
background: var(--gray-60);
|
|
2825
|
-
border-radius: 100% 0 0 0;
|
|
2826
|
-
position: absolute;
|
|
2827
|
-
top: 0;
|
|
2828
|
-
left: 0;
|
|
2829
|
-
content: '';
|
|
2890
|
+
.Loader__overlay--large .Loader__overlay__loader {
|
|
2891
|
+
min-height: 192px;
|
|
2892
|
+
min-width: 192px;
|
|
2830
2893
|
}
|
|
2831
2894
|
|
|
2832
|
-
.
|
|
2833
|
-
|
|
2834
|
-
|
|
2835
|
-
|
|
2836
|
-
|
|
2837
|
-
|
|
2838
|
-
margin:
|
|
2895
|
+
.Loader__overlay__label {
|
|
2896
|
+
color: var(--loader-text-color);
|
|
2897
|
+
font-size: var(--text-size-normal);
|
|
2898
|
+
}
|
|
2899
|
+
|
|
2900
|
+
.Loader__overlay > *:last-child {
|
|
2901
|
+
margin-bottom: 0;
|
|
2902
|
+
padding-bottom: 0;
|
|
2903
|
+
}
|
|
2904
|
+
|
|
2905
|
+
.Loader__overlay .Loader {
|
|
2839
2906
|
position: absolute;
|
|
2840
|
-
|
|
2841
|
-
left: 0;
|
|
2842
|
-
bottom: 0;
|
|
2843
|
-
right: 0;
|
|
2907
|
+
margin: 0;
|
|
2844
2908
|
}
|
|
2845
2909
|
|
|
2846
|
-
.
|
|
2847
|
-
|
|
2848
|
-
|
|
2849
|
-
|
|
2850
|
-
var(--workspace-background-color) 45%
|
|
2851
|
-
);
|
|
2910
|
+
.Loader__overlay svg {
|
|
2911
|
+
color: var(--loader-logo-color);
|
|
2912
|
+
height: calc(var(--loader-ring-size) * 0.7);
|
|
2913
|
+
width: calc(var(--loader-ring-size) * 0.7);
|
|
2852
2914
|
}
|
|
2853
2915
|
|
|
2854
|
-
.
|
|
2855
|
-
|
|
2916
|
+
.Loader__overlay--large svg {
|
|
2917
|
+
height: 120px;
|
|
2918
|
+
width: 120px;
|
|
2856
2919
|
}
|
|
2857
2920
|
|
|
2858
|
-
@keyframes
|
|
2921
|
+
@keyframes spin {
|
|
2859
2922
|
0% {
|
|
2860
2923
|
transform: rotate(0deg);
|
|
2861
2924
|
}
|
|
2862
|
-
|
|
2863
2925
|
100% {
|
|
2864
2926
|
transform: rotate(360deg);
|
|
2865
2927
|
}
|
|
@@ -3080,12 +3142,25 @@ button.TooltipTabstop {
|
|
|
3080
3142
|
width: fit-content;
|
|
3081
3143
|
}
|
|
3082
3144
|
|
|
3145
|
+
.Tabs--vertical {
|
|
3146
|
+
display: inline-flex;
|
|
3147
|
+
}
|
|
3148
|
+
|
|
3149
|
+
.Tabs--vertical ~ .TabPanel {
|
|
3150
|
+
vertical-align: top;
|
|
3151
|
+
display: inline-block;
|
|
3152
|
+
}
|
|
3153
|
+
|
|
3083
3154
|
.Tablist {
|
|
3084
3155
|
display: flex;
|
|
3085
3156
|
flex-direction: row;
|
|
3086
3157
|
border-left: 1px solid var(--tabs-border-color);
|
|
3087
3158
|
}
|
|
3088
3159
|
|
|
3160
|
+
.Tabs--vertical .Tablist {
|
|
3161
|
+
flex-direction: column;
|
|
3162
|
+
}
|
|
3163
|
+
|
|
3089
3164
|
.Tab {
|
|
3090
3165
|
display: flex;
|
|
3091
3166
|
justify-content: center;
|
|
@@ -3101,6 +3176,18 @@ button.TooltipTabstop {
|
|
|
3101
3176
|
padding: var(--space-small);
|
|
3102
3177
|
}
|
|
3103
3178
|
|
|
3179
|
+
.Tabs--vertical .Tab {
|
|
3180
|
+
justify-content: flex-start;
|
|
3181
|
+
}
|
|
3182
|
+
|
|
3183
|
+
.Tabs--vertical .Tab {
|
|
3184
|
+
border-right: none;
|
|
3185
|
+
}
|
|
3186
|
+
|
|
3187
|
+
.cauldron--theme-light .Tabs--vertical .Tab:last-child {
|
|
3188
|
+
border-bottom: 1px solid var(--tabs-border-color);
|
|
3189
|
+
}
|
|
3190
|
+
|
|
3104
3191
|
.Tab:hover {
|
|
3105
3192
|
cursor: pointer;
|
|
3106
3193
|
background-color: var(--tab-active-background-color);
|
|
@@ -3112,10 +3199,14 @@ button.TooltipTabstop {
|
|
|
3112
3199
|
background-color: var(--tab-active-background-color);
|
|
3113
3200
|
font-weight: bold;
|
|
3114
3201
|
text-decoration: none;
|
|
3115
|
-
box-shadow: inset
|
|
3202
|
+
box-shadow: inset 0 4px 0 var(--tab-shadow-color);
|
|
3116
3203
|
z-index: 1;
|
|
3117
3204
|
}
|
|
3118
3205
|
|
|
3206
|
+
.Tabs--vertical .Tab--active {
|
|
3207
|
+
box-shadow: inset 4px 0 0 var(--tab-shadow-color);
|
|
3208
|
+
}
|
|
3209
|
+
|
|
3119
3210
|
.TabPanel {
|
|
3120
3211
|
overflow-wrap: break-word;
|
|
3121
3212
|
color: var(--tabs-active-text-color);
|
|
@@ -3129,7 +3220,7 @@ button.TooltipTabstop {
|
|
|
3129
3220
|
}
|
|
3130
3221
|
|
|
3131
3222
|
.TabPanel--hidden {
|
|
3132
|
-
display: none;
|
|
3223
|
+
display: none !important;
|
|
3133
3224
|
}
|
|
3134
3225
|
|
|
3135
3226
|
.Tabs--thin .Tab {
|
|
@@ -3141,33 +3232,57 @@ button.TooltipTabstop {
|
|
|
3141
3232
|
--tag-text-color: var(--gray-90);
|
|
3142
3233
|
--tag-label-text-color: var(--gray-60);
|
|
3143
3234
|
--tag-background-color: var(--gray-20);
|
|
3235
|
+
--tag-border-color: var(--gray-90);
|
|
3236
|
+
}
|
|
3237
|
+
|
|
3238
|
+
.cauldron--theme-dark {
|
|
3239
|
+
--tag-text-color: var(--white);
|
|
3240
|
+
--tag-label-text-color: var(--accent-light);
|
|
3241
|
+
--tag-background-color: var(--accent-medium);
|
|
3242
|
+
--tag-border-color: var(--accent-medium);
|
|
3144
3243
|
}
|
|
3145
3244
|
|
|
3146
3245
|
.Tag {
|
|
3147
3246
|
color: var(--tag-text-color);
|
|
3148
3247
|
background-color: var(--tag-background-color);
|
|
3149
3248
|
font-size: var(--text-size-smaller);
|
|
3150
|
-
border: 1px solid
|
|
3249
|
+
border: 1px solid var(--tag-border-color);
|
|
3151
3250
|
border-radius: 11px;
|
|
3152
3251
|
display: flex;
|
|
3153
3252
|
justify-content: center;
|
|
3154
3253
|
align-items: center;
|
|
3155
3254
|
padding: 2px 8px;
|
|
3156
3255
|
width: 90px;
|
|
3256
|
+
font-weight: var(--font-weight-medium);
|
|
3157
3257
|
}
|
|
3158
3258
|
|
|
3159
3259
|
.Tag__label {
|
|
3160
3260
|
color: var(--tag-label-text-color);
|
|
3161
3261
|
margin-right: 3px;
|
|
3262
|
+
font-weight: var(--font-weight-normal);
|
|
3162
3263
|
}
|
|
3163
3264
|
|
|
3164
3265
|
:root {
|
|
3165
3266
|
--table-header-text-color: var(--gray-90);
|
|
3166
3267
|
--table-header-background-color: var(--gray-20);
|
|
3268
|
+
--table-header-sorting-background-color: #caddec;
|
|
3269
|
+
--table-header-sorting-text-color: var(--gray-90);
|
|
3167
3270
|
--table-cell-text-color: var(--gray-60);
|
|
3168
3271
|
--table-cell-background-color: var(--white);
|
|
3169
3272
|
--table-row-border-color: var(--gray-40);
|
|
3170
3273
|
--table-space: 11px;
|
|
3274
|
+
--table-header-sorting-border-color: var(--gray-90);
|
|
3275
|
+
}
|
|
3276
|
+
|
|
3277
|
+
.cauldron--theme-dark {
|
|
3278
|
+
--table-header-text-color: var(--white);
|
|
3279
|
+
--table-header-background-color: var(--accent-dark);
|
|
3280
|
+
--table-header-sorting-background-color: #53636e;
|
|
3281
|
+
--table-header-sorting-text-color: var(--white);
|
|
3282
|
+
--table-cell-text-color: var(--accent-light);
|
|
3283
|
+
--table-cell-background-color: var(--accent-medium);
|
|
3284
|
+
--table-row-border-color: #5d676f;
|
|
3285
|
+
--table-header-sorting-border-color: var(--accent-info);
|
|
3171
3286
|
}
|
|
3172
3287
|
|
|
3173
3288
|
.Table {
|
|
@@ -3181,12 +3296,53 @@ button.TooltipTabstop {
|
|
|
3181
3296
|
|
|
3182
3297
|
.TableHeader {
|
|
3183
3298
|
background: var(--table-header-background-color);
|
|
3184
|
-
font-
|
|
3185
|
-
font-weight: var(--font-weight-bold);
|
|
3299
|
+
font-weight: var(--font-weight-medium);
|
|
3186
3300
|
color: var(--table-header-text-color);
|
|
3187
3301
|
border-bottom: 2px solid var(--table-row-border-color);
|
|
3188
3302
|
}
|
|
3189
3303
|
|
|
3304
|
+
.TableHeader[aria-sort] {
|
|
3305
|
+
padding: 0;
|
|
3306
|
+
}
|
|
3307
|
+
|
|
3308
|
+
.TableHeader .TableHeader__sort-button {
|
|
3309
|
+
background-color: transparent;
|
|
3310
|
+
font-family: inherit;
|
|
3311
|
+
width: 100%;
|
|
3312
|
+
font-size: var(--text-size-small);
|
|
3313
|
+
font-weight: var(--font-weight-medium);
|
|
3314
|
+
color: var(--table-header-text-color);
|
|
3315
|
+
display: flex;
|
|
3316
|
+
align-items: center;
|
|
3317
|
+
justify-content: space-between;
|
|
3318
|
+
padding: var(--table-space) var(--space-smallest);
|
|
3319
|
+
}
|
|
3320
|
+
|
|
3321
|
+
.TableHeader__sort-button:hover {
|
|
3322
|
+
cursor: pointer;
|
|
3323
|
+
}
|
|
3324
|
+
|
|
3325
|
+
.TableHeader__sort-button:focus {
|
|
3326
|
+
outline-offset: unset;
|
|
3327
|
+
}
|
|
3328
|
+
|
|
3329
|
+
.TableHeader--sort-ascending,
|
|
3330
|
+
.TableHeader--sort-descending {
|
|
3331
|
+
background: var(--table-header-sorting-background-color);
|
|
3332
|
+
border-bottom: 2px solid var(--table-header-sorting-border-color);
|
|
3333
|
+
}
|
|
3334
|
+
|
|
3335
|
+
.TableHeader--sort-ascending .TableHeader__sort-button,
|
|
3336
|
+
.TableHeader--sort-decscending .TableHeader__sort-button {
|
|
3337
|
+
color: var(--table-header-sorting-text-color);
|
|
3338
|
+
}
|
|
3339
|
+
|
|
3340
|
+
/* compensate the gap in height between TableHeader and Icon */
|
|
3341
|
+
|
|
3342
|
+
.TableHeader__sort-button span {
|
|
3343
|
+
margin: calc(var(--space-half) * -1) 0;
|
|
3344
|
+
}
|
|
3345
|
+
|
|
3190
3346
|
.TableCell {
|
|
3191
3347
|
background: var(--table-cell-background-color);
|
|
3192
3348
|
color: var(--table-cell-text-color);
|
|
@@ -3203,14 +3359,23 @@ button.TooltipTabstop {
|
|
|
3203
3359
|
}
|
|
3204
3360
|
|
|
3205
3361
|
:root {
|
|
3206
|
-
--data-list-
|
|
3362
|
+
--data-list-background-color: var(--gray-20);
|
|
3363
|
+
--data-list-value-background-color: var(--white);
|
|
3207
3364
|
--data-list-border-color: var(--gray-40);
|
|
3208
3365
|
--data-list-text-color: var(--gray-90);
|
|
3209
|
-
--data-list-value-text-color: var(--gray-
|
|
3366
|
+
--data-list-value-text-color: var(--gray-80);
|
|
3210
3367
|
--data-list-space: 11px;
|
|
3211
3368
|
--data-list-value-width: 187px;
|
|
3212
3369
|
}
|
|
3213
3370
|
|
|
3371
|
+
.cauldron--theme-dark {
|
|
3372
|
+
--data-list-background-color: var(--accent-dark);
|
|
3373
|
+
--data-list-value-background-color: var(--accent-medium);
|
|
3374
|
+
--data-list-text-color: var(--white);
|
|
3375
|
+
--data-list-value-text-color: var(--accent-light);
|
|
3376
|
+
--data-list-border-color: #5d676f;
|
|
3377
|
+
}
|
|
3378
|
+
|
|
3214
3379
|
.DescriptionList {
|
|
3215
3380
|
color: var(--data-list-text-color);
|
|
3216
3381
|
font-size: var(--text-size-small);
|
|
@@ -3229,6 +3394,7 @@ button.TooltipTabstop {
|
|
|
3229
3394
|
padding: var(--data-list-space);
|
|
3230
3395
|
border-top: 1px solid var(--data-list-border-color);
|
|
3231
3396
|
border-bottom: 1px solid var(--data-list-border-color);
|
|
3397
|
+
background-color: var(--data-list-value-background-color);
|
|
3232
3398
|
}
|
|
3233
3399
|
|
|
3234
3400
|
.DescriptionList__item {
|
|
@@ -3240,6 +3406,7 @@ button.TooltipTabstop {
|
|
|
3240
3406
|
border: 0;
|
|
3241
3407
|
margin-bottom: var(--space-small);
|
|
3242
3408
|
display: block;
|
|
3409
|
+
background-color: var(--data-list-value-background-color);
|
|
3243
3410
|
}
|
|
3244
3411
|
|
|
3245
3412
|
.DescriptionList__item:first-child {
|
|
@@ -3259,12 +3426,11 @@ button.TooltipTabstop {
|
|
|
3259
3426
|
}
|
|
3260
3427
|
|
|
3261
3428
|
.DescriptionList__term {
|
|
3262
|
-
background-color: var(--data-list-
|
|
3429
|
+
background-color: var(--data-list-background-color);
|
|
3263
3430
|
width: var(--data-list-value-width);
|
|
3264
|
-
font-weight: var(--font-weight-
|
|
3431
|
+
font-weight: var(--font-weight-medium);
|
|
3265
3432
|
border-right: 1px solid var(--data-list-border-color);
|
|
3266
3433
|
flex: 0 0 auto;
|
|
3267
|
-
font-family: 'Lato', sans-serif;
|
|
3268
3434
|
}
|
|
3269
3435
|
|
|
3270
3436
|
.DescriptionList--collapsed .DescriptionList__term {
|
|
@@ -3274,7 +3440,10 @@ button.TooltipTabstop {
|
|
|
3274
3440
|
}
|
|
3275
3441
|
|
|
3276
3442
|
.DescriptionList__details {
|
|
3443
|
+
width: 100%;
|
|
3277
3444
|
color: var(--data-list-value-text-color);
|
|
3445
|
+
background-color: var(--data-list-value-background-color);
|
|
3446
|
+
font-weight: var(--font-weight-normal);
|
|
3278
3447
|
}
|
|
3279
3448
|
|
|
3280
3449
|
.DescriptionList__term,
|
|
@@ -3292,6 +3461,13 @@ button.TooltipTabstop {
|
|
|
3292
3461
|
font-size: var(--text-size-small);
|
|
3293
3462
|
}
|
|
3294
3463
|
|
|
3464
|
+
/* Temporary solution for insufficient color contrast until proper dark mode is implemented. */
|
|
3465
|
+
|
|
3466
|
+
.cauldron--theme-dark .DescriptionList__details,
|
|
3467
|
+
.cauldron--theme-dark .DescriptionList--collapsed .DescriptionList__term {
|
|
3468
|
+
color: var(--white);
|
|
3469
|
+
}
|
|
3470
|
+
|
|
3295
3471
|
.Stepper {
|
|
3296
3472
|
--step-indicator-size: 2em;
|
|
3297
3473
|
--step-line-height: 0.53em;
|
|
@@ -3414,58 +3590,110 @@ button.TooltipTabstop {
|
|
|
3414
3590
|
|
|
3415
3591
|
:root {
|
|
3416
3592
|
--panel-border-color: var(--gray-40);
|
|
3417
|
-
--panel-
|
|
3418
|
-
--panel-
|
|
3419
|
-
--panel-content-background-color: var(--white);
|
|
3420
|
-
--panel-content-color: var(--gray-60);
|
|
3593
|
+
--panel-background-color: var(--white);
|
|
3594
|
+
--panel-heading-color: var(--gray-90);
|
|
3421
3595
|
}
|
|
3422
3596
|
|
|
3423
3597
|
.Panel {
|
|
3598
|
+
padding: var(--space-large);
|
|
3424
3599
|
border: 1px solid var(--panel-border-color);
|
|
3600
|
+
border-radius: 3px;
|
|
3601
|
+
box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.15);
|
|
3602
|
+
background-color: var(--panel-background-color);
|
|
3603
|
+
}
|
|
3604
|
+
|
|
3605
|
+
.Panel__Heading,
|
|
3606
|
+
.Panel legend {
|
|
3607
|
+
font-size: var(--text-size-medium);
|
|
3608
|
+
color: var(--panel-heading-color);
|
|
3609
|
+
padding: 0;
|
|
3610
|
+
margin: 0 0 var(--space-large) 0;
|
|
3611
|
+
font-weight: var(--font-weight-bold);
|
|
3612
|
+
}
|
|
3613
|
+
|
|
3614
|
+
fieldset.Panel {
|
|
3615
|
+
position: relative;
|
|
3616
|
+
padding-top: 76px;
|
|
3617
|
+
}
|
|
3618
|
+
|
|
3619
|
+
/* reset absurd browser-default legend styles */
|
|
3620
|
+
|
|
3621
|
+
.Panel legend {
|
|
3622
|
+
position: absolute;
|
|
3623
|
+
top: var(--space-large);
|
|
3624
|
+
}
|
|
3625
|
+
|
|
3626
|
+
.Panel--collapsed {
|
|
3627
|
+
padding: 12px;
|
|
3425
3628
|
}
|
|
3426
3629
|
|
|
3427
|
-
.
|
|
3428
|
-
|
|
3429
|
-
|
|
3630
|
+
.Panel--collapsed .Panel__Heading {
|
|
3631
|
+
margin: 0 0 12px 0;
|
|
3632
|
+
font-size: var(--text-size-normal);
|
|
3633
|
+
}
|
|
3634
|
+
|
|
3635
|
+
/* Dark Theme */
|
|
3636
|
+
|
|
3637
|
+
.cauldron--theme-dark {
|
|
3638
|
+
--panel-border-color: #5d676f;
|
|
3639
|
+
--panel-background-color: var(--accent-medium);
|
|
3640
|
+
--panel-heading-color: var(--accent-light);
|
|
3641
|
+
}
|
|
3642
|
+
|
|
3643
|
+
:root {
|
|
3644
|
+
--issue-panel-border-color: var(--gray-40);
|
|
3645
|
+
--issue-panel-header-background-color: var(--gray-20);
|
|
3646
|
+
--issue-panel-header-color: var(--gray-90);
|
|
3647
|
+
--issue-panel-content-background-color: var(--white);
|
|
3648
|
+
--issue-panel-content-color: var(--gray-60);
|
|
3649
|
+
}
|
|
3650
|
+
|
|
3651
|
+
.IssuePanel {
|
|
3652
|
+
border: 1px solid var(--issue-panel-border-color);
|
|
3653
|
+
}
|
|
3654
|
+
|
|
3655
|
+
.IssuePanel__Header {
|
|
3656
|
+
background-color: var(--issue-panel-header-background-color);
|
|
3657
|
+
color: var(--issue-panel-header-color);
|
|
3430
3658
|
font-size: var(--text-size-normal);
|
|
3431
3659
|
display: flex;
|
|
3432
|
-
border-bottom: 1px solid var(--panel-border-color);
|
|
3660
|
+
border-bottom: 1px solid var(--issue-panel-border-color);
|
|
3433
3661
|
align-items: center;
|
|
3434
3662
|
padding: var(--space-half) 0;
|
|
3435
3663
|
}
|
|
3436
3664
|
|
|
3437
|
-
.
|
|
3665
|
+
.IssuePanel__Header-title {
|
|
3438
3666
|
flex-grow: 1;
|
|
3439
3667
|
display: flex;
|
|
3440
3668
|
font-weight: var(--font-weight-bold);
|
|
3441
3669
|
padding-left: var(--space-small);
|
|
3442
3670
|
}
|
|
3443
3671
|
|
|
3444
|
-
.
|
|
3672
|
+
.IssuePanel__Header-actions {
|
|
3445
3673
|
flex-grow: 1;
|
|
3446
3674
|
text-align: right;
|
|
3447
3675
|
margin-right: var(--space-smallest);
|
|
3448
3676
|
}
|
|
3449
3677
|
|
|
3450
|
-
.
|
|
3678
|
+
.IssuePanel__Content {
|
|
3451
3679
|
font-size: var(--text-size-smaller);
|
|
3452
|
-
background-color: var(--panel-content-background-color);
|
|
3453
|
-
color: var(--panel-content-color);
|
|
3680
|
+
background-color: var(--issue-panel-content-background-color);
|
|
3681
|
+
color: var(--issue-panel-content-color);
|
|
3454
3682
|
padding: var(--space-small);
|
|
3455
3683
|
}
|
|
3456
3684
|
|
|
3457
3685
|
/* Dark Theme */
|
|
3458
3686
|
|
|
3459
3687
|
.cauldron--theme-dark {
|
|
3460
|
-
--panel-border-color: #5d676f;
|
|
3461
|
-
--panel-header-background-color: var(--accent-dark);
|
|
3462
|
-
--panel-header-color: var(--white);
|
|
3463
|
-
--panel-content-background-color: var(--accent-medium);
|
|
3464
|
-
--panel-content-color: var(--accent-light);
|
|
3688
|
+
--issue-panel-border-color: #5d676f;
|
|
3689
|
+
--issue-panel-header-background-color: var(--accent-dark);
|
|
3690
|
+
--issue-panel-header-color: var(--white);
|
|
3691
|
+
--issue-panel-content-background-color: var(--accent-medium);
|
|
3692
|
+
--issue-panel-content-color: var(--accent-light);
|
|
3465
3693
|
}
|
|
3466
3694
|
|
|
3467
|
-
.cauldron--theme-dark .
|
|
3468
|
-
border-bottom: 1px solid var(--panel-border-color);
|
|
3695
|
+
.cauldron--theme-dark .IssuePanel__Header {
|
|
3696
|
+
border-bottom: 1px solid var(--issue-panel-border-color);
|
|
3469
3697
|
}
|
|
3470
3698
|
|
|
3471
3699
|
:root {
|
|
@@ -3666,3 +3894,91 @@ button.TooltipTabstop {
|
|
|
3666
3894
|
.Address {
|
|
3667
3895
|
line-height: var(--address-line-height);
|
|
3668
3896
|
}
|
|
3897
|
+
|
|
3898
|
+
.Pagination > ul {
|
|
3899
|
+
list-style-type: none;
|
|
3900
|
+
display: flex;
|
|
3901
|
+
align-items: center;
|
|
3902
|
+
font-size: var(--text-size-small);
|
|
3903
|
+
}
|
|
3904
|
+
|
|
3905
|
+
.Pagination > ul > li {
|
|
3906
|
+
margin-right: 5px;
|
|
3907
|
+
}
|
|
3908
|
+
|
|
3909
|
+
.Pagination button {
|
|
3910
|
+
height: 2.26rem;
|
|
3911
|
+
width: 2.26rem;
|
|
3912
|
+
border-radius: 2px;
|
|
3913
|
+
display: flex;
|
|
3914
|
+
justify-content: center;
|
|
3915
|
+
align-items: center;
|
|
3916
|
+
/* light theme-specific styles */
|
|
3917
|
+
background: var(--gray-20);
|
|
3918
|
+
border: 1px solid var(--gray-40);
|
|
3919
|
+
color: var(--gray-90);
|
|
3920
|
+
}
|
|
3921
|
+
|
|
3922
|
+
.Pagination button[aria-disabled='true'] {
|
|
3923
|
+
color: var(--gray-40);
|
|
3924
|
+
margin: 2px;
|
|
3925
|
+
}
|
|
3926
|
+
|
|
3927
|
+
.Pagination button .Icon {
|
|
3928
|
+
width: auto;
|
|
3929
|
+
height: auto;
|
|
3930
|
+
}
|
|
3931
|
+
|
|
3932
|
+
.Pagination [role='log'] {
|
|
3933
|
+
margin-left: calc(var(--space-medium) - 5px);
|
|
3934
|
+
margin-right: calc(var(--space-medium) - 5px);
|
|
3935
|
+
color: var(--gray-60);
|
|
3936
|
+
}
|
|
3937
|
+
|
|
3938
|
+
.Pagination [role='log'] strong {
|
|
3939
|
+
color: var(--gray-90);
|
|
3940
|
+
}
|
|
3941
|
+
|
|
3942
|
+
/*
|
|
3943
|
+
* dark theme
|
|
3944
|
+
*/
|
|
3945
|
+
|
|
3946
|
+
.cauldron--theme-dark .Pagination button {
|
|
3947
|
+
background-color: var(--accent-medium);
|
|
3948
|
+
border-color: transparent;
|
|
3949
|
+
}
|
|
3950
|
+
|
|
3951
|
+
.cauldron--theme-dark .Pagination button[aria-disabled='true'] {
|
|
3952
|
+
color: #5d676f;
|
|
3953
|
+
}
|
|
3954
|
+
|
|
3955
|
+
.cauldron--theme-dark .Pagination [role='log'] {
|
|
3956
|
+
color: var(--accent-light);
|
|
3957
|
+
font-variant-numeric: tabular-nums;
|
|
3958
|
+
}
|
|
3959
|
+
|
|
3960
|
+
.cauldron--theme-dark .Pagination [role='log'] strong {
|
|
3961
|
+
color: var(--white);
|
|
3962
|
+
}
|
|
3963
|
+
|
|
3964
|
+
.Breadcrumb ol {
|
|
3965
|
+
display: flex;
|
|
3966
|
+
align-items: center;
|
|
3967
|
+
list-style-type: none;
|
|
3968
|
+
padding: 0;
|
|
3969
|
+
margin: 0;
|
|
3970
|
+
}
|
|
3971
|
+
|
|
3972
|
+
.Breadcrumb__Separator {
|
|
3973
|
+
color: var(--gray-40);
|
|
3974
|
+
padding: 0 var(--space-half);
|
|
3975
|
+
}
|
|
3976
|
+
|
|
3977
|
+
.Breadcrumb__Link {
|
|
3978
|
+
font-weight: 400;
|
|
3979
|
+
}
|
|
3980
|
+
|
|
3981
|
+
.Breadcrumb__Item {
|
|
3982
|
+
font-weight: 500;
|
|
3983
|
+
color: var(--link-text-color);
|
|
3984
|
+
}
|
package/package.json
CHANGED