@cdc/core 4.24.12 → 4.25.2-25
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/components/DataTable/DataTable.tsx +58 -45
- package/components/DataTable/DataTableStandAlone.tsx +3 -3
- package/components/DataTable/components/ChartHeader.tsx +26 -6
- package/components/DataTable/components/ExpandCollapse.tsx +1 -4
- package/components/DataTable/components/MapHeader.tsx +5 -1
- package/components/DataTable/data-table.css +3 -8
- package/components/DataTable/helpers/chartCellMatrix.tsx +14 -5
- package/components/DataTable/helpers/customSort.ts +2 -2
- package/components/DataTable/helpers/mapCellMatrix.tsx +83 -60
- package/components/DataTable/types/TableConfig.ts +0 -1
- package/components/EditorPanel/FootnotesEditor.tsx +49 -7
- package/components/EditorPanel/Inputs.tsx +4 -0
- package/components/EditorPanel/VizFilterEditor/VizFilterEditor.tsx +16 -3
- package/components/Filters/Filters.tsx +95 -51
- package/components/Filters/helpers/filterWrapping.ts +43 -0
- package/components/Filters/helpers/handleSorting.ts +6 -0
- package/components/Filters/helpers/tests/handleSorting.test.ts +26 -0
- package/components/Footnotes/Footnotes.tsx +1 -1
- package/components/Layout/components/Visualization/index.tsx +18 -4
- package/components/Layout/components/Visualization/visualizations.scss +1 -1
- package/components/Legend/Legend.Gradient.tsx +1 -4
- package/components/Legend/index.tsx +1 -1
- package/components/LegendShape.tsx +2 -3
- package/components/MediaControls.jsx +32 -8
- package/components/NestedDropdown/NestedDropdown.tsx +25 -17
- package/components/NestedDropdown/nesteddropdown.styles.css +13 -7
- package/components/Table/Table.tsx +11 -11
- package/components/Table/components/Row.tsx +14 -5
- package/components/_stories/DataTable.stories.tsx +1 -2
- package/components/elements/Button.jsx +38 -19
- package/components/elements/Confirm.tsx +45 -0
- package/components/elements/Error.tsx +24 -0
- package/components/managers/DataDesigner.tsx +198 -143
- package/components/ui/Title/Title.scss +12 -5
- package/components/ui/Title/index.tsx +1 -1
- package/dist/cove-main.css +260 -723
- package/dist/cove-main.css.map +1 -1
- package/helpers/DataTransform.ts +55 -61
- package/helpers/addValuesToFilters.ts +45 -16
- package/helpers/cove/accessibility.ts +24 -0
- package/helpers/cove/fontSettings.ts +1 -1
- package/helpers/cove/number.ts +1 -7
- package/helpers/coveUpdateWorker.ts +5 -1
- package/helpers/displayDataAsText.ts +64 -0
- package/helpers/filterVizData.ts +2 -2
- package/helpers/formatConfigBeforeSave.ts +17 -2
- package/helpers/isOlderVersion.ts +20 -0
- package/helpers/isRightAlignedTableValue.js +14 -0
- package/helpers/missingRequiredSections.ts +20 -0
- package/helpers/queryStringUtils.ts +7 -0
- package/helpers/tests/addValuesToFilters.test.ts +19 -1
- package/helpers/useDataVizClasses.ts +8 -4
- package/helpers/ver/4.24.10.ts +12 -0
- package/helpers/ver/4.24.11.ts +18 -0
- package/helpers/ver/4.24.7.ts +19 -1
- package/helpers/ver/4.25.1.ts +18 -0
- package/package.json +2 -2
- package/styles/_button-section.scss +2 -5
- package/styles/_global-variables.scss +17 -7
- package/styles/_global.scss +8 -12
- package/styles/_reset.scss +4 -5
- package/styles/_typography.scss +0 -20
- package/styles/_variables.scss +0 -3
- package/styles/base.scss +44 -5
- package/styles/cove-main.scss +1 -1
- package/styles/filters.scss +65 -6
- package/styles/v2/base/_general.scss +3 -2
- package/styles/v2/components/button.scss +0 -1
- package/styles/v2/main.scss +3 -4
- package/styles/v2/themes/_color-definitions.scss +4 -4
- package/styles/v2/utils/index.scss +0 -1
- package/types/BoxPlot.ts +1 -0
- package/types/Runtime.ts +1 -0
- package/types/Table.ts +0 -1
- package/types/Version.ts +1 -1
- package/types/VizFilter.ts +3 -1
- package/styles/v2/utils/_spacers.scss +0 -31
package/dist/cove-main.css
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
2
|
.cdc-open-viz-module {
|
|
3
3
|
margin: 0;
|
|
4
|
-
font:
|
|
4
|
+
font-family: var(--app-font-main);
|
|
5
|
+
font-size: 1em;
|
|
6
|
+
line-height: 1.5;
|
|
5
7
|
font-weight: 400;
|
|
6
8
|
font-style: normal;
|
|
7
9
|
text-rendering: optimizeLegibility;
|
|
8
|
-
-webkit-font-smoothing: antialiased;
|
|
9
|
-
color: #111;
|
|
10
10
|
}
|
|
11
11
|
.cdc-open-viz-module :focus,
|
|
12
12
|
.cdc-open-viz-module [tabindex]:focus-visible {
|
|
@@ -87,7 +87,7 @@
|
|
|
87
87
|
margin: 0;
|
|
88
88
|
padding: 0;
|
|
89
89
|
border: 0;
|
|
90
|
-
font-family:
|
|
90
|
+
font-family: var(--app-font-main);
|
|
91
91
|
font-weight: normal;
|
|
92
92
|
vertical-align: baseline;
|
|
93
93
|
}
|
|
@@ -182,31 +182,36 @@
|
|
|
182
182
|
:root {
|
|
183
183
|
--editorContentPadding: 30px;
|
|
184
184
|
--editorWidth: 350px;
|
|
185
|
+
--space-between-legend-item-rows: 1rem;
|
|
186
|
+
--space-between-legend-item-columns: 1.5rem;
|
|
185
187
|
--breakpoint-xs: 480px;
|
|
186
188
|
--breakpoint-sm: 768px;
|
|
187
189
|
--breakpoint-md: 960px;
|
|
188
190
|
--breakpoint-lg: 1170px;
|
|
189
191
|
--breakpoint-xl: 1280px;
|
|
190
|
-
--font-
|
|
192
|
+
--app-font-main: "Nunito", sans-serif;
|
|
193
|
+
--app-font-secondary: "Poppins", sans-serif;
|
|
194
|
+
--legend-title-font-size: 1rem;
|
|
195
|
+
--legend-description-font-size: 1rem;
|
|
196
|
+
--legend-item-font-size: 0.889rem;
|
|
197
|
+
--download-link-font-size: 0.772rem;
|
|
198
|
+
--filter-select-font-size: 0.833rem;
|
|
199
|
+
--filter-label-font-size: 0.889rem;
|
|
200
|
+
--filter-buttons-font-size: 0.889rem;
|
|
201
|
+
--superTitle-font-size: 0.833rem;
|
|
202
|
+
--title-font-size: 1.222rem;
|
|
191
203
|
}
|
|
192
204
|
|
|
193
|
-
@media (max-width: 576px) {
|
|
194
|
-
:root {
|
|
195
|
-
--font-size: 13px;
|
|
196
|
-
}
|
|
197
|
-
}
|
|
198
205
|
.filters-section__wrapper {
|
|
199
206
|
flex-wrap: wrap;
|
|
200
207
|
display: flex;
|
|
201
|
-
gap:
|
|
202
|
-
margin-top: 15px;
|
|
203
|
-
margin-bottom: 15px;
|
|
208
|
+
gap: 18px 27px;
|
|
204
209
|
}
|
|
205
210
|
.filters-section__wrapper label {
|
|
206
211
|
display: inherit;
|
|
207
212
|
margin-bottom: 5px;
|
|
208
|
-
font-weight:
|
|
209
|
-
font-size:
|
|
213
|
+
font-weight: 700;
|
|
214
|
+
font-size: var(--filter-label-font-size);
|
|
210
215
|
}
|
|
211
216
|
.filters-section__intro-text {
|
|
212
217
|
display: block;
|
|
@@ -214,6 +219,7 @@
|
|
|
214
219
|
}
|
|
215
220
|
.filters-section__buttons {
|
|
216
221
|
width: 100%;
|
|
222
|
+
font-size: var(--filter-buttons-font-size);
|
|
217
223
|
}
|
|
218
224
|
.filters-section__buttons .apply {
|
|
219
225
|
margin-right: 10px;
|
|
@@ -221,11 +227,15 @@
|
|
|
221
227
|
|
|
222
228
|
div.single-filters label {
|
|
223
229
|
width: 100%;
|
|
230
|
+
font-weight: 700;
|
|
224
231
|
}
|
|
225
232
|
div.single-filters__tab-bar:first-child {
|
|
226
233
|
border-top-left-radius: 15px;
|
|
227
234
|
border-bottom-left-radius: 15px;
|
|
228
235
|
}
|
|
236
|
+
div.single-filters > select.cove-form-select, div.single-filters > div.nested-dropdown {
|
|
237
|
+
width: fit-content;
|
|
238
|
+
}
|
|
229
239
|
|
|
230
240
|
.single-filters--tab {
|
|
231
241
|
width: 100%;
|
|
@@ -241,11 +251,59 @@ div.single-filters__tab-bar:first-child {
|
|
|
241
251
|
border-top-left-radius: 5px;
|
|
242
252
|
border-top-right-radius: 5px;
|
|
243
253
|
margin-top: 5px;
|
|
254
|
+
font-family: var(--app-font-secondary);
|
|
255
|
+
font-size: 1rem;
|
|
256
|
+
text-align: center;
|
|
244
257
|
}
|
|
245
258
|
.single-filters--tab .tab--active {
|
|
246
259
|
border-bottom: none;
|
|
247
260
|
}
|
|
248
261
|
|
|
262
|
+
.single-filters--tab-simple {
|
|
263
|
+
flex-basis: 100%;
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
.tab-simple-container {
|
|
267
|
+
border-bottom: 1px solid var(--cool-gray-10);
|
|
268
|
+
flex-wrap: wrap;
|
|
269
|
+
}
|
|
270
|
+
.tab-simple-container .tab.tab--simple {
|
|
271
|
+
background: none;
|
|
272
|
+
border: none;
|
|
273
|
+
font-family: var(--app-font-secondary);
|
|
274
|
+
font-size: 1rem;
|
|
275
|
+
font-weight: 300;
|
|
276
|
+
padding: 0.5rem 1rem;
|
|
277
|
+
width: auto;
|
|
278
|
+
cursor: pointer;
|
|
279
|
+
border-radius: 6px 6px 0 0;
|
|
280
|
+
}
|
|
281
|
+
.tab-simple-container .tab.tab--simple.xs, .tab-simple-container .tab.tab--simple.xxs {
|
|
282
|
+
font-size: 0.778em;
|
|
283
|
+
padding: 0.5rem 0.778em;
|
|
284
|
+
}
|
|
285
|
+
.tab-simple-container .tab.tab--simple:hover {
|
|
286
|
+
color: var(--colors-blue-vivid-60, #005ea2);
|
|
287
|
+
background: var(--colors-cyan-cool-10, #eff9fa);
|
|
288
|
+
}
|
|
289
|
+
.tab-simple-container .tab.tab--simple:focus:not(:focus-visible) {
|
|
290
|
+
outline: none !important;
|
|
291
|
+
}
|
|
292
|
+
.tab-simple-container .tab.tab--simple:focus-visible {
|
|
293
|
+
outline: 2px dashed var(--colors-blue-vivid-60, #005ea2) !important;
|
|
294
|
+
outline-offset: 3px;
|
|
295
|
+
}
|
|
296
|
+
.tab-simple-container .tab.tab--simple.tab--active {
|
|
297
|
+
font-weight: 500;
|
|
298
|
+
border-bottom: 0.3rem solid var(--colors-blue-vivid-60, #005ea2);
|
|
299
|
+
z-index: 1;
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
.cdc-open-viz-module.xs .single-filters--tab-simple .tab-simple-container .tab.tab--simple, .cdc-open-viz-module.xxs .single-filters--tab-simple .tab-simple-container .tab.tab--simple {
|
|
303
|
+
font-size: 0.778em;
|
|
304
|
+
padding: 0.5rem 0.778em;
|
|
305
|
+
}
|
|
306
|
+
|
|
249
307
|
.single-filters--pill {
|
|
250
308
|
width: 100%;
|
|
251
309
|
display: flex;
|
|
@@ -297,16 +355,11 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
297
355
|
|
|
298
356
|
.cdc-open-viz-module {
|
|
299
357
|
position: relative;
|
|
300
|
-
color: #333;
|
|
301
|
-
font-size: 14px !important;
|
|
302
358
|
line-height: 1.4;
|
|
303
359
|
-webkit-print-color-adjust: exact !important; /* Chrome, Safari 6 – 15.3, Edge */
|
|
304
360
|
color-adjust: exact !important; /* Firefox 48 – 96 */
|
|
305
361
|
print-color-adjust: exact !important; /* Firefox 97+, Safari 15.4+ */
|
|
306
362
|
}
|
|
307
|
-
.cdc-open-viz-module.md, .cdc-open-viz-module.lg {
|
|
308
|
-
font-size: 16px !important;
|
|
309
|
-
}
|
|
310
363
|
.cdc-open-viz-module strong {
|
|
311
364
|
font-weight: 600;
|
|
312
365
|
}
|
|
@@ -462,15 +515,10 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
462
515
|
}
|
|
463
516
|
.cdc-open-viz-module section.introText {
|
|
464
517
|
width: 100%;
|
|
465
|
-
margin-bottom: 25px;
|
|
466
518
|
}
|
|
467
519
|
.cdc-open-viz-module section.footnotes {
|
|
468
|
-
border-top: 1px solid
|
|
469
|
-
|
|
470
|
-
padding: 15px;
|
|
471
|
-
}
|
|
472
|
-
.cdc-open-viz-module .cdc-chart-inner-container .subtext {
|
|
473
|
-
margin-top: 20px;
|
|
520
|
+
border-top: 1px solid var(--cool-gray-10);
|
|
521
|
+
width: 100%;
|
|
474
522
|
}
|
|
475
523
|
.cdc-open-viz-module .margin-left-href {
|
|
476
524
|
margin-left: 15px;
|
|
@@ -484,12 +532,15 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
484
532
|
border-color: rgb(0, 79.9, 144.5);
|
|
485
533
|
}
|
|
486
534
|
.cdc-open-viz-module .cove-form-select {
|
|
535
|
+
font-family: var(--app-font-secondary);
|
|
536
|
+
font-weight: 300;
|
|
537
|
+
font-size: var(--filter-select-font-size);
|
|
487
538
|
display: block;
|
|
488
539
|
width: 100%;
|
|
489
540
|
padding: 0.375rem 0.75rem;
|
|
490
541
|
border-radius: 0.25rem;
|
|
491
|
-
border: 1px solid var(--
|
|
492
|
-
color: var(--
|
|
542
|
+
border: 1px solid var(--cool-gray-10);
|
|
543
|
+
color: var(--cool-gray-90);
|
|
493
544
|
}
|
|
494
545
|
.cdc-open-viz-module .download-buttons {
|
|
495
546
|
display: flex;
|
|
@@ -506,7 +557,7 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
506
557
|
display: flex;
|
|
507
558
|
justify-content: flex-end;
|
|
508
559
|
width: 100%;
|
|
509
|
-
|
|
560
|
+
line-height: 1;
|
|
510
561
|
}
|
|
511
562
|
.cdc-open-viz-module .download-links.brush-active {
|
|
512
563
|
margin-top: 2em;
|
|
@@ -515,10 +566,7 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
515
566
|
margin-right: 10px;
|
|
516
567
|
}
|
|
517
568
|
.cdc-open-viz-module .download-links a {
|
|
518
|
-
font-size:
|
|
519
|
-
}
|
|
520
|
-
.cdc-open-viz-module .download-links.below-table {
|
|
521
|
-
margin-top: 5px;
|
|
569
|
+
font-size: var(--download-link-font-size);
|
|
522
570
|
}
|
|
523
571
|
.cdc-open-viz-module .cdc-dashboard-inner-container .download-links {
|
|
524
572
|
padding: unset;
|
|
@@ -600,21 +648,50 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
600
648
|
.cdc-open-viz-module.cdc-map-outer-container .editor-panel .series-item--chart:last-child, .cdc-open-viz-module.type-chart .editor-panel .series-item--chart:last-child {
|
|
601
649
|
padding-bottom: 5px;
|
|
602
650
|
}
|
|
603
|
-
.cdc-open-viz-module
|
|
604
|
-
|
|
651
|
+
.cdc-open-viz-module input[type=range] {
|
|
652
|
+
appearance: auto !important;
|
|
605
653
|
}
|
|
606
|
-
.cdc-open-viz-module.
|
|
607
|
-
|
|
654
|
+
.cdc-open-viz-module .me-0 {
|
|
655
|
+
margin-right: 0 !important;
|
|
608
656
|
}
|
|
609
|
-
.cdc-open-viz-module
|
|
610
|
-
|
|
657
|
+
.cdc-open-viz-module .me-1 {
|
|
658
|
+
margin-right: 0.25rem !important;
|
|
611
659
|
}
|
|
612
|
-
.cdc-open-viz-module .
|
|
613
|
-
|
|
614
|
-
font-size: 0.9em !important;
|
|
660
|
+
.cdc-open-viz-module .me-2 {
|
|
661
|
+
margin-right: 0.5rem !important;
|
|
615
662
|
}
|
|
616
|
-
.cdc-open-viz-module
|
|
617
|
-
|
|
663
|
+
.cdc-open-viz-module .me-3 {
|
|
664
|
+
margin-right: 1rem !important;
|
|
665
|
+
}
|
|
666
|
+
.cdc-open-viz-module .me-4 {
|
|
667
|
+
margin-right: 1.5rem !important;
|
|
668
|
+
}
|
|
669
|
+
.cdc-open-viz-module .me-5 {
|
|
670
|
+
margin-right: 3rem !important;
|
|
671
|
+
}
|
|
672
|
+
.cdc-open-viz-module .me-auto {
|
|
673
|
+
margin-right: auto !important;
|
|
674
|
+
}
|
|
675
|
+
.cdc-open-viz-module .ms-0 {
|
|
676
|
+
margin-left: 0 !important;
|
|
677
|
+
}
|
|
678
|
+
.cdc-open-viz-module .ms-1 {
|
|
679
|
+
margin-left: 0.25rem !important;
|
|
680
|
+
}
|
|
681
|
+
.cdc-open-viz-module .ms-2 {
|
|
682
|
+
margin-left: 0.5rem !important;
|
|
683
|
+
}
|
|
684
|
+
.cdc-open-viz-module .ms-3 {
|
|
685
|
+
margin-left: 1rem !important;
|
|
686
|
+
}
|
|
687
|
+
.cdc-open-viz-module .ms-4 {
|
|
688
|
+
margin-left: 1.5rem !important;
|
|
689
|
+
}
|
|
690
|
+
.cdc-open-viz-module .ms-5 {
|
|
691
|
+
margin-left: 3rem !important;
|
|
692
|
+
}
|
|
693
|
+
.cdc-open-viz-module .ms-auto {
|
|
694
|
+
margin-left: auto !important;
|
|
618
695
|
}
|
|
619
696
|
|
|
620
697
|
.color-palette li.theme-purple,
|
|
@@ -1411,12 +1488,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
1411
1488
|
border-color: #4ebaaa;
|
|
1412
1489
|
}
|
|
1413
1490
|
|
|
1414
|
-
.cdc-open-viz-module.theme-amber .single-filters--tab .tab--active {
|
|
1491
|
+
.cdc-open-viz-module.theme-amber .single-filters--tab .tab--active:not(.tab--simple) {
|
|
1415
1492
|
border: 1px solid #fbab18;
|
|
1416
1493
|
border-top: 3px solid #fbab18;
|
|
1417
1494
|
border-bottom: none;
|
|
1418
1495
|
}
|
|
1419
|
-
.cdc-open-viz-module.theme-amber .single-filters--tab .tab:not(.tab--active) {
|
|
1496
|
+
.cdc-open-viz-module.theme-amber .single-filters--tab .tab:not(.tab--active):not(.tab--simple) {
|
|
1420
1497
|
border-bottom: 1px solid #fbab18;
|
|
1421
1498
|
}
|
|
1422
1499
|
.cdc-open-viz-module.theme-amber .single-filters--pill .pill--active {
|
|
@@ -1426,12 +1503,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
1426
1503
|
.cdc-open-viz-module.theme-amber .filters-section button.cove-button:not([disabled]) {
|
|
1427
1504
|
background-color: #fbab18 !important;
|
|
1428
1505
|
}
|
|
1429
|
-
.cdc-open-viz-module .theme-amber .single-filters--tab .tab--active {
|
|
1506
|
+
.cdc-open-viz-module .theme-amber .single-filters--tab .tab--active:not(.tab--simple) {
|
|
1430
1507
|
border: 1px solid #fbab18;
|
|
1431
1508
|
border-top: 3px solid #fbab18;
|
|
1432
1509
|
border-bottom: none;
|
|
1433
1510
|
}
|
|
1434
|
-
.cdc-open-viz-module .theme-amber .single-filters--tab .tab:not(.tab--active) {
|
|
1511
|
+
.cdc-open-viz-module .theme-amber .single-filters--tab .tab:not(.tab--active):not(.tab--simple) {
|
|
1435
1512
|
border-bottom: 1px solid #fbab18;
|
|
1436
1513
|
}
|
|
1437
1514
|
.cdc-open-viz-module .theme-amber .single-filters--pill .pill--active {
|
|
@@ -1444,12 +1521,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
1444
1521
|
.cdc-open-viz-module .theme-amber .apply:not([disabled]) {
|
|
1445
1522
|
background-color: #fbab18 !important;
|
|
1446
1523
|
}
|
|
1447
|
-
.cdc-open-viz-module.theme-blue .single-filters--tab .tab--active {
|
|
1524
|
+
.cdc-open-viz-module.theme-blue .single-filters--tab .tab--active:not(.tab--simple) {
|
|
1448
1525
|
border: 1px solid #005eaa;
|
|
1449
1526
|
border-top: 3px solid #005eaa;
|
|
1450
1527
|
border-bottom: none;
|
|
1451
1528
|
}
|
|
1452
|
-
.cdc-open-viz-module.theme-blue .single-filters--tab .tab:not(.tab--active) {
|
|
1529
|
+
.cdc-open-viz-module.theme-blue .single-filters--tab .tab:not(.tab--active):not(.tab--simple) {
|
|
1453
1530
|
border-bottom: 1px solid #005eaa;
|
|
1454
1531
|
}
|
|
1455
1532
|
.cdc-open-viz-module.theme-blue .single-filters--pill .pill--active {
|
|
@@ -1459,12 +1536,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
1459
1536
|
.cdc-open-viz-module.theme-blue .filters-section button.cove-button:not([disabled]) {
|
|
1460
1537
|
background-color: #005eaa !important;
|
|
1461
1538
|
}
|
|
1462
|
-
.cdc-open-viz-module .theme-blue .single-filters--tab .tab--active {
|
|
1539
|
+
.cdc-open-viz-module .theme-blue .single-filters--tab .tab--active:not(.tab--simple) {
|
|
1463
1540
|
border: 1px solid #005eaa;
|
|
1464
1541
|
border-top: 3px solid #005eaa;
|
|
1465
1542
|
border-bottom: none;
|
|
1466
1543
|
}
|
|
1467
|
-
.cdc-open-viz-module .theme-blue .single-filters--tab .tab:not(.tab--active) {
|
|
1544
|
+
.cdc-open-viz-module .theme-blue .single-filters--tab .tab:not(.tab--active):not(.tab--simple) {
|
|
1468
1545
|
border-bottom: 1px solid #005eaa;
|
|
1469
1546
|
}
|
|
1470
1547
|
.cdc-open-viz-module .theme-blue .single-filters--pill .pill--active {
|
|
@@ -1477,12 +1554,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
1477
1554
|
.cdc-open-viz-module .theme-blue .apply:not([disabled]) {
|
|
1478
1555
|
background-color: #005eaa !important;
|
|
1479
1556
|
}
|
|
1480
|
-
.cdc-open-viz-module.theme-brown .single-filters--tab .tab--active {
|
|
1557
|
+
.cdc-open-viz-module.theme-brown .single-filters--tab .tab--active:not(.tab--simple) {
|
|
1481
1558
|
border: 1px solid #705043;
|
|
1482
1559
|
border-top: 3px solid #705043;
|
|
1483
1560
|
border-bottom: none;
|
|
1484
1561
|
}
|
|
1485
|
-
.cdc-open-viz-module.theme-brown .single-filters--tab .tab:not(.tab--active) {
|
|
1562
|
+
.cdc-open-viz-module.theme-brown .single-filters--tab .tab:not(.tab--active):not(.tab--simple) {
|
|
1486
1563
|
border-bottom: 1px solid #705043;
|
|
1487
1564
|
}
|
|
1488
1565
|
.cdc-open-viz-module.theme-brown .single-filters--pill .pill--active {
|
|
@@ -1492,12 +1569,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
1492
1569
|
.cdc-open-viz-module.theme-brown .filters-section button.cove-button:not([disabled]) {
|
|
1493
1570
|
background-color: #705043 !important;
|
|
1494
1571
|
}
|
|
1495
|
-
.cdc-open-viz-module .theme-brown .single-filters--tab .tab--active {
|
|
1572
|
+
.cdc-open-viz-module .theme-brown .single-filters--tab .tab--active:not(.tab--simple) {
|
|
1496
1573
|
border: 1px solid #705043;
|
|
1497
1574
|
border-top: 3px solid #705043;
|
|
1498
1575
|
border-bottom: none;
|
|
1499
1576
|
}
|
|
1500
|
-
.cdc-open-viz-module .theme-brown .single-filters--tab .tab:not(.tab--active) {
|
|
1577
|
+
.cdc-open-viz-module .theme-brown .single-filters--tab .tab:not(.tab--active):not(.tab--simple) {
|
|
1501
1578
|
border-bottom: 1px solid #705043;
|
|
1502
1579
|
}
|
|
1503
1580
|
.cdc-open-viz-module .theme-brown .single-filters--pill .pill--active {
|
|
@@ -1510,12 +1587,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
1510
1587
|
.cdc-open-viz-module .theme-brown .apply:not([disabled]) {
|
|
1511
1588
|
background-color: #705043 !important;
|
|
1512
1589
|
}
|
|
1513
|
-
.cdc-open-viz-module.theme-cyan .single-filters--tab .tab--active {
|
|
1590
|
+
.cdc-open-viz-module.theme-cyan .single-filters--tab .tab--active:not(.tab--simple) {
|
|
1514
1591
|
border: 1px solid #007B91;
|
|
1515
1592
|
border-top: 3px solid #007B91;
|
|
1516
1593
|
border-bottom: none;
|
|
1517
1594
|
}
|
|
1518
|
-
.cdc-open-viz-module.theme-cyan .single-filters--tab .tab:not(.tab--active) {
|
|
1595
|
+
.cdc-open-viz-module.theme-cyan .single-filters--tab .tab:not(.tab--active):not(.tab--simple) {
|
|
1519
1596
|
border-bottom: 1px solid #007B91;
|
|
1520
1597
|
}
|
|
1521
1598
|
.cdc-open-viz-module.theme-cyan .single-filters--pill .pill--active {
|
|
@@ -1525,12 +1602,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
1525
1602
|
.cdc-open-viz-module.theme-cyan .filters-section button.cove-button:not([disabled]) {
|
|
1526
1603
|
background-color: #007B91 !important;
|
|
1527
1604
|
}
|
|
1528
|
-
.cdc-open-viz-module .theme-cyan .single-filters--tab .tab--active {
|
|
1605
|
+
.cdc-open-viz-module .theme-cyan .single-filters--tab .tab--active:not(.tab--simple) {
|
|
1529
1606
|
border: 1px solid #007B91;
|
|
1530
1607
|
border-top: 3px solid #007B91;
|
|
1531
1608
|
border-bottom: none;
|
|
1532
1609
|
}
|
|
1533
|
-
.cdc-open-viz-module .theme-cyan .single-filters--tab .tab:not(.tab--active) {
|
|
1610
|
+
.cdc-open-viz-module .theme-cyan .single-filters--tab .tab:not(.tab--active):not(.tab--simple) {
|
|
1534
1611
|
border-bottom: 1px solid #007B91;
|
|
1535
1612
|
}
|
|
1536
1613
|
.cdc-open-viz-module .theme-cyan .single-filters--pill .pill--active {
|
|
@@ -1543,12 +1620,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
1543
1620
|
.cdc-open-viz-module .theme-cyan .apply:not([disabled]) {
|
|
1544
1621
|
background-color: #007B91 !important;
|
|
1545
1622
|
}
|
|
1546
|
-
.cdc-open-viz-module.theme-green .single-filters--tab .tab--active {
|
|
1623
|
+
.cdc-open-viz-module.theme-green .single-filters--tab .tab--active:not(.tab--simple) {
|
|
1547
1624
|
border: 1px solid #4b830d;
|
|
1548
1625
|
border-top: 3px solid #4b830d;
|
|
1549
1626
|
border-bottom: none;
|
|
1550
1627
|
}
|
|
1551
|
-
.cdc-open-viz-module.theme-green .single-filters--tab .tab:not(.tab--active) {
|
|
1628
|
+
.cdc-open-viz-module.theme-green .single-filters--tab .tab:not(.tab--active):not(.tab--simple) {
|
|
1552
1629
|
border-bottom: 1px solid #4b830d;
|
|
1553
1630
|
}
|
|
1554
1631
|
.cdc-open-viz-module.theme-green .single-filters--pill .pill--active {
|
|
@@ -1558,12 +1635,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
1558
1635
|
.cdc-open-viz-module.theme-green .filters-section button.cove-button:not([disabled]) {
|
|
1559
1636
|
background-color: #4b830d !important;
|
|
1560
1637
|
}
|
|
1561
|
-
.cdc-open-viz-module .theme-green .single-filters--tab .tab--active {
|
|
1638
|
+
.cdc-open-viz-module .theme-green .single-filters--tab .tab--active:not(.tab--simple) {
|
|
1562
1639
|
border: 1px solid #4b830d;
|
|
1563
1640
|
border-top: 3px solid #4b830d;
|
|
1564
1641
|
border-bottom: none;
|
|
1565
1642
|
}
|
|
1566
|
-
.cdc-open-viz-module .theme-green .single-filters--tab .tab:not(.tab--active) {
|
|
1643
|
+
.cdc-open-viz-module .theme-green .single-filters--tab .tab:not(.tab--active):not(.tab--simple) {
|
|
1567
1644
|
border-bottom: 1px solid #4b830d;
|
|
1568
1645
|
}
|
|
1569
1646
|
.cdc-open-viz-module .theme-green .single-filters--pill .pill--active {
|
|
@@ -1576,12 +1653,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
1576
1653
|
.cdc-open-viz-module .theme-green .apply:not([disabled]) {
|
|
1577
1654
|
background-color: #4b830d !important;
|
|
1578
1655
|
}
|
|
1579
|
-
.cdc-open-viz-module.theme-indigo .single-filters--tab .tab--active {
|
|
1656
|
+
.cdc-open-viz-module.theme-indigo .single-filters--tab .tab--active:not(.tab--simple) {
|
|
1580
1657
|
border: 1px solid #26418f;
|
|
1581
1658
|
border-top: 3px solid #26418f;
|
|
1582
1659
|
border-bottom: none;
|
|
1583
1660
|
}
|
|
1584
|
-
.cdc-open-viz-module.theme-indigo .single-filters--tab .tab:not(.tab--active) {
|
|
1661
|
+
.cdc-open-viz-module.theme-indigo .single-filters--tab .tab:not(.tab--active):not(.tab--simple) {
|
|
1585
1662
|
border-bottom: 1px solid #26418f;
|
|
1586
1663
|
}
|
|
1587
1664
|
.cdc-open-viz-module.theme-indigo .single-filters--pill .pill--active {
|
|
@@ -1591,12 +1668,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
1591
1668
|
.cdc-open-viz-module.theme-indigo .filters-section button.cove-button:not([disabled]) {
|
|
1592
1669
|
background-color: #26418f !important;
|
|
1593
1670
|
}
|
|
1594
|
-
.cdc-open-viz-module .theme-indigo .single-filters--tab .tab--active {
|
|
1671
|
+
.cdc-open-viz-module .theme-indigo .single-filters--tab .tab--active:not(.tab--simple) {
|
|
1595
1672
|
border: 1px solid #26418f;
|
|
1596
1673
|
border-top: 3px solid #26418f;
|
|
1597
1674
|
border-bottom: none;
|
|
1598
1675
|
}
|
|
1599
|
-
.cdc-open-viz-module .theme-indigo .single-filters--tab .tab:not(.tab--active) {
|
|
1676
|
+
.cdc-open-viz-module .theme-indigo .single-filters--tab .tab:not(.tab--active):not(.tab--simple) {
|
|
1600
1677
|
border-bottom: 1px solid #26418f;
|
|
1601
1678
|
}
|
|
1602
1679
|
.cdc-open-viz-module .theme-indigo .single-filters--pill .pill--active {
|
|
@@ -1609,12 +1686,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
1609
1686
|
.cdc-open-viz-module .theme-indigo .apply:not([disabled]) {
|
|
1610
1687
|
background-color: #26418f !important;
|
|
1611
1688
|
}
|
|
1612
|
-
.cdc-open-viz-module.theme-orange .single-filters--tab .tab--active {
|
|
1689
|
+
.cdc-open-viz-module.theme-orange .single-filters--tab .tab--active:not(.tab--simple) {
|
|
1613
1690
|
border: 1px solid #bb4d00;
|
|
1614
1691
|
border-top: 3px solid #bb4d00;
|
|
1615
1692
|
border-bottom: none;
|
|
1616
1693
|
}
|
|
1617
|
-
.cdc-open-viz-module.theme-orange .single-filters--tab .tab:not(.tab--active) {
|
|
1694
|
+
.cdc-open-viz-module.theme-orange .single-filters--tab .tab:not(.tab--active):not(.tab--simple) {
|
|
1618
1695
|
border-bottom: 1px solid #bb4d00;
|
|
1619
1696
|
}
|
|
1620
1697
|
.cdc-open-viz-module.theme-orange .single-filters--pill .pill--active {
|
|
@@ -1624,12 +1701,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
1624
1701
|
.cdc-open-viz-module.theme-orange .filters-section button.cove-button:not([disabled]) {
|
|
1625
1702
|
background-color: #bb4d00 !important;
|
|
1626
1703
|
}
|
|
1627
|
-
.cdc-open-viz-module .theme-orange .single-filters--tab .tab--active {
|
|
1704
|
+
.cdc-open-viz-module .theme-orange .single-filters--tab .tab--active:not(.tab--simple) {
|
|
1628
1705
|
border: 1px solid #bb4d00;
|
|
1629
1706
|
border-top: 3px solid #bb4d00;
|
|
1630
1707
|
border-bottom: none;
|
|
1631
1708
|
}
|
|
1632
|
-
.cdc-open-viz-module .theme-orange .single-filters--tab .tab:not(.tab--active) {
|
|
1709
|
+
.cdc-open-viz-module .theme-orange .single-filters--tab .tab:not(.tab--active):not(.tab--simple) {
|
|
1633
1710
|
border-bottom: 1px solid #bb4d00;
|
|
1634
1711
|
}
|
|
1635
1712
|
.cdc-open-viz-module .theme-orange .single-filters--pill .pill--active {
|
|
@@ -1642,12 +1719,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
1642
1719
|
.cdc-open-viz-module .theme-orange .apply:not([disabled]) {
|
|
1643
1720
|
background-color: #bb4d00 !important;
|
|
1644
1721
|
}
|
|
1645
|
-
.cdc-open-viz-module.theme-pink .single-filters--tab .tab--active {
|
|
1722
|
+
.cdc-open-viz-module.theme-pink .single-filters--tab .tab--active:not(.tab--simple) {
|
|
1646
1723
|
border: 1px solid #af4448;
|
|
1647
1724
|
border-top: 3px solid #af4448;
|
|
1648
1725
|
border-bottom: none;
|
|
1649
1726
|
}
|
|
1650
|
-
.cdc-open-viz-module.theme-pink .single-filters--tab .tab:not(.tab--active) {
|
|
1727
|
+
.cdc-open-viz-module.theme-pink .single-filters--tab .tab:not(.tab--active):not(.tab--simple) {
|
|
1651
1728
|
border-bottom: 1px solid #af4448;
|
|
1652
1729
|
}
|
|
1653
1730
|
.cdc-open-viz-module.theme-pink .single-filters--pill .pill--active {
|
|
@@ -1657,12 +1734,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
1657
1734
|
.cdc-open-viz-module.theme-pink .filters-section button.cove-button:not([disabled]) {
|
|
1658
1735
|
background-color: #af4448 !important;
|
|
1659
1736
|
}
|
|
1660
|
-
.cdc-open-viz-module .theme-pink .single-filters--tab .tab--active {
|
|
1737
|
+
.cdc-open-viz-module .theme-pink .single-filters--tab .tab--active:not(.tab--simple) {
|
|
1661
1738
|
border: 1px solid #af4448;
|
|
1662
1739
|
border-top: 3px solid #af4448;
|
|
1663
1740
|
border-bottom: none;
|
|
1664
1741
|
}
|
|
1665
|
-
.cdc-open-viz-module .theme-pink .single-filters--tab .tab:not(.tab--active) {
|
|
1742
|
+
.cdc-open-viz-module .theme-pink .single-filters--tab .tab:not(.tab--active):not(.tab--simple) {
|
|
1666
1743
|
border-bottom: 1px solid #af4448;
|
|
1667
1744
|
}
|
|
1668
1745
|
.cdc-open-viz-module .theme-pink .single-filters--pill .pill--active {
|
|
@@ -1675,12 +1752,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
1675
1752
|
.cdc-open-viz-module .theme-pink .apply:not([disabled]) {
|
|
1676
1753
|
background-color: #af4448 !important;
|
|
1677
1754
|
}
|
|
1678
|
-
.cdc-open-viz-module.theme-purple .single-filters--tab .tab--active {
|
|
1755
|
+
.cdc-open-viz-module.theme-purple .single-filters--tab .tab--active:not(.tab--simple) {
|
|
1679
1756
|
border: 1px solid #712177;
|
|
1680
1757
|
border-top: 3px solid #712177;
|
|
1681
1758
|
border-bottom: none;
|
|
1682
1759
|
}
|
|
1683
|
-
.cdc-open-viz-module.theme-purple .single-filters--tab .tab:not(.tab--active) {
|
|
1760
|
+
.cdc-open-viz-module.theme-purple .single-filters--tab .tab:not(.tab--active):not(.tab--simple) {
|
|
1684
1761
|
border-bottom: 1px solid #712177;
|
|
1685
1762
|
}
|
|
1686
1763
|
.cdc-open-viz-module.theme-purple .single-filters--pill .pill--active {
|
|
@@ -1690,12 +1767,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
1690
1767
|
.cdc-open-viz-module.theme-purple .filters-section button.cove-button:not([disabled]) {
|
|
1691
1768
|
background-color: #712177 !important;
|
|
1692
1769
|
}
|
|
1693
|
-
.cdc-open-viz-module .theme-purple .single-filters--tab .tab--active {
|
|
1770
|
+
.cdc-open-viz-module .theme-purple .single-filters--tab .tab--active:not(.tab--simple) {
|
|
1694
1771
|
border: 1px solid #712177;
|
|
1695
1772
|
border-top: 3px solid #712177;
|
|
1696
1773
|
border-bottom: none;
|
|
1697
1774
|
}
|
|
1698
|
-
.cdc-open-viz-module .theme-purple .single-filters--tab .tab:not(.tab--active) {
|
|
1775
|
+
.cdc-open-viz-module .theme-purple .single-filters--tab .tab:not(.tab--active):not(.tab--simple) {
|
|
1699
1776
|
border-bottom: 1px solid #712177;
|
|
1700
1777
|
}
|
|
1701
1778
|
.cdc-open-viz-module .theme-purple .single-filters--pill .pill--active {
|
|
@@ -1708,12 +1785,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
1708
1785
|
.cdc-open-viz-module .theme-purple .apply:not([disabled]) {
|
|
1709
1786
|
background-color: #712177 !important;
|
|
1710
1787
|
}
|
|
1711
|
-
.cdc-open-viz-module.theme-slate .single-filters--tab .tab--active {
|
|
1788
|
+
.cdc-open-viz-module.theme-slate .single-filters--tab .tab--active:not(.tab--simple) {
|
|
1712
1789
|
border: 1px solid #29434e;
|
|
1713
1790
|
border-top: 3px solid #29434e;
|
|
1714
1791
|
border-bottom: none;
|
|
1715
1792
|
}
|
|
1716
|
-
.cdc-open-viz-module.theme-slate .single-filters--tab .tab:not(.tab--active) {
|
|
1793
|
+
.cdc-open-viz-module.theme-slate .single-filters--tab .tab:not(.tab--active):not(.tab--simple) {
|
|
1717
1794
|
border-bottom: 1px solid #29434e;
|
|
1718
1795
|
}
|
|
1719
1796
|
.cdc-open-viz-module.theme-slate .single-filters--pill .pill--active {
|
|
@@ -1723,12 +1800,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
1723
1800
|
.cdc-open-viz-module.theme-slate .filters-section button.cove-button:not([disabled]) {
|
|
1724
1801
|
background-color: #29434e !important;
|
|
1725
1802
|
}
|
|
1726
|
-
.cdc-open-viz-module .theme-slate .single-filters--tab .tab--active {
|
|
1803
|
+
.cdc-open-viz-module .theme-slate .single-filters--tab .tab--active:not(.tab--simple) {
|
|
1727
1804
|
border: 1px solid #29434e;
|
|
1728
1805
|
border-top: 3px solid #29434e;
|
|
1729
1806
|
border-bottom: none;
|
|
1730
1807
|
}
|
|
1731
|
-
.cdc-open-viz-module .theme-slate .single-filters--tab .tab:not(.tab--active) {
|
|
1808
|
+
.cdc-open-viz-module .theme-slate .single-filters--tab .tab:not(.tab--active):not(.tab--simple) {
|
|
1732
1809
|
border-bottom: 1px solid #29434e;
|
|
1733
1810
|
}
|
|
1734
1811
|
.cdc-open-viz-module .theme-slate .single-filters--pill .pill--active {
|
|
@@ -1741,12 +1818,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
1741
1818
|
.cdc-open-viz-module .theme-slate .apply:not([disabled]) {
|
|
1742
1819
|
background-color: #29434e !important;
|
|
1743
1820
|
}
|
|
1744
|
-
.cdc-open-viz-module.theme-teal .single-filters--tab .tab--active {
|
|
1821
|
+
.cdc-open-viz-module.theme-teal .single-filters--tab .tab--active:not(.tab--simple) {
|
|
1745
1822
|
border: 1px solid #00695c;
|
|
1746
1823
|
border-top: 3px solid #00695c;
|
|
1747
1824
|
border-bottom: none;
|
|
1748
1825
|
}
|
|
1749
|
-
.cdc-open-viz-module.theme-teal .single-filters--tab .tab:not(.tab--active) {
|
|
1826
|
+
.cdc-open-viz-module.theme-teal .single-filters--tab .tab:not(.tab--active):not(.tab--simple) {
|
|
1750
1827
|
border-bottom: 1px solid #00695c;
|
|
1751
1828
|
}
|
|
1752
1829
|
.cdc-open-viz-module.theme-teal .single-filters--pill .pill--active {
|
|
@@ -1756,12 +1833,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
1756
1833
|
.cdc-open-viz-module.theme-teal .filters-section button.cove-button:not([disabled]) {
|
|
1757
1834
|
background-color: #00695c !important;
|
|
1758
1835
|
}
|
|
1759
|
-
.cdc-open-viz-module .theme-teal .single-filters--tab .tab--active {
|
|
1836
|
+
.cdc-open-viz-module .theme-teal .single-filters--tab .tab--active:not(.tab--simple) {
|
|
1760
1837
|
border: 1px solid #00695c;
|
|
1761
1838
|
border-top: 3px solid #00695c;
|
|
1762
1839
|
border-bottom: none;
|
|
1763
1840
|
}
|
|
1764
|
-
.cdc-open-viz-module .theme-teal .single-filters--tab .tab:not(.tab--active) {
|
|
1841
|
+
.cdc-open-viz-module .theme-teal .single-filters--tab .tab:not(.tab--active):not(.tab--simple) {
|
|
1765
1842
|
border-bottom: 1px solid #00695c;
|
|
1766
1843
|
}
|
|
1767
1844
|
.cdc-open-viz-module .theme-teal .single-filters--pill .pill--active {
|
|
@@ -3002,546 +3079,6 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
3002
3079
|
grid-row-start: 13;
|
|
3003
3080
|
}
|
|
3004
3081
|
}
|
|
3005
|
-
.p-0 {
|
|
3006
|
-
padding: 0px !important;
|
|
3007
|
-
}
|
|
3008
|
-
|
|
3009
|
-
.p-1 {
|
|
3010
|
-
padding: 8px !important;
|
|
3011
|
-
}
|
|
3012
|
-
|
|
3013
|
-
.p-2 {
|
|
3014
|
-
padding: 16px !important;
|
|
3015
|
-
}
|
|
3016
|
-
|
|
3017
|
-
.p-3 {
|
|
3018
|
-
padding: 24px !important;
|
|
3019
|
-
}
|
|
3020
|
-
|
|
3021
|
-
.p-4 {
|
|
3022
|
-
padding: 32px !important;
|
|
3023
|
-
}
|
|
3024
|
-
|
|
3025
|
-
.p-5 {
|
|
3026
|
-
padding: 40px !important;
|
|
3027
|
-
}
|
|
3028
|
-
|
|
3029
|
-
.p-6 {
|
|
3030
|
-
padding: 48px !important;
|
|
3031
|
-
}
|
|
3032
|
-
|
|
3033
|
-
.p-7 {
|
|
3034
|
-
padding: 56px !important;
|
|
3035
|
-
}
|
|
3036
|
-
|
|
3037
|
-
.p-8 {
|
|
3038
|
-
padding: 64px !important;
|
|
3039
|
-
}
|
|
3040
|
-
|
|
3041
|
-
.pt-0 {
|
|
3042
|
-
padding-top: 0px !important;
|
|
3043
|
-
}
|
|
3044
|
-
|
|
3045
|
-
.pt-1 {
|
|
3046
|
-
padding-top: 8px !important;
|
|
3047
|
-
}
|
|
3048
|
-
|
|
3049
|
-
.pt-2 {
|
|
3050
|
-
padding-top: 16px !important;
|
|
3051
|
-
}
|
|
3052
|
-
|
|
3053
|
-
.pt-3 {
|
|
3054
|
-
padding-top: 24px !important;
|
|
3055
|
-
}
|
|
3056
|
-
|
|
3057
|
-
.pt-4 {
|
|
3058
|
-
padding-top: 32px !important;
|
|
3059
|
-
}
|
|
3060
|
-
|
|
3061
|
-
.pt-5 {
|
|
3062
|
-
padding-top: 40px !important;
|
|
3063
|
-
}
|
|
3064
|
-
|
|
3065
|
-
.pt-6 {
|
|
3066
|
-
padding-top: 48px !important;
|
|
3067
|
-
}
|
|
3068
|
-
|
|
3069
|
-
.pt-7 {
|
|
3070
|
-
padding-top: 56px !important;
|
|
3071
|
-
}
|
|
3072
|
-
|
|
3073
|
-
.pt-8 {
|
|
3074
|
-
padding-top: 64px !important;
|
|
3075
|
-
}
|
|
3076
|
-
|
|
3077
|
-
.pr-0 {
|
|
3078
|
-
padding-right: 0px !important;
|
|
3079
|
-
}
|
|
3080
|
-
|
|
3081
|
-
.pr-1 {
|
|
3082
|
-
padding-right: 8px !important;
|
|
3083
|
-
}
|
|
3084
|
-
|
|
3085
|
-
.pr-2 {
|
|
3086
|
-
padding-right: 16px !important;
|
|
3087
|
-
}
|
|
3088
|
-
|
|
3089
|
-
.pr-3 {
|
|
3090
|
-
padding-right: 24px !important;
|
|
3091
|
-
}
|
|
3092
|
-
|
|
3093
|
-
.pr-4 {
|
|
3094
|
-
padding-right: 32px !important;
|
|
3095
|
-
}
|
|
3096
|
-
|
|
3097
|
-
.pr-5 {
|
|
3098
|
-
padding-right: 40px !important;
|
|
3099
|
-
}
|
|
3100
|
-
|
|
3101
|
-
.pr-6 {
|
|
3102
|
-
padding-right: 48px !important;
|
|
3103
|
-
}
|
|
3104
|
-
|
|
3105
|
-
.pr-7 {
|
|
3106
|
-
padding-right: 56px !important;
|
|
3107
|
-
}
|
|
3108
|
-
|
|
3109
|
-
.pr-8 {
|
|
3110
|
-
padding-right: 64px !important;
|
|
3111
|
-
}
|
|
3112
|
-
|
|
3113
|
-
.pb-0 {
|
|
3114
|
-
padding-bottom: 0px !important;
|
|
3115
|
-
}
|
|
3116
|
-
|
|
3117
|
-
.pb-1 {
|
|
3118
|
-
padding-bottom: 8px !important;
|
|
3119
|
-
}
|
|
3120
|
-
|
|
3121
|
-
.pb-2 {
|
|
3122
|
-
padding-bottom: 16px !important;
|
|
3123
|
-
}
|
|
3124
|
-
|
|
3125
|
-
.pb-3 {
|
|
3126
|
-
padding-bottom: 24px !important;
|
|
3127
|
-
}
|
|
3128
|
-
|
|
3129
|
-
.pb-4 {
|
|
3130
|
-
padding-bottom: 32px !important;
|
|
3131
|
-
}
|
|
3132
|
-
|
|
3133
|
-
.pb-5 {
|
|
3134
|
-
padding-bottom: 40px !important;
|
|
3135
|
-
}
|
|
3136
|
-
|
|
3137
|
-
.pb-6 {
|
|
3138
|
-
padding-bottom: 48px !important;
|
|
3139
|
-
}
|
|
3140
|
-
|
|
3141
|
-
.pb-7 {
|
|
3142
|
-
padding-bottom: 56px !important;
|
|
3143
|
-
}
|
|
3144
|
-
|
|
3145
|
-
.pb-8 {
|
|
3146
|
-
padding-bottom: 64px !important;
|
|
3147
|
-
}
|
|
3148
|
-
|
|
3149
|
-
.pl-0 {
|
|
3150
|
-
padding-left: 0px !important;
|
|
3151
|
-
}
|
|
3152
|
-
|
|
3153
|
-
.pl-1 {
|
|
3154
|
-
padding-left: 8px !important;
|
|
3155
|
-
}
|
|
3156
|
-
|
|
3157
|
-
.pl-2 {
|
|
3158
|
-
padding-left: 16px !important;
|
|
3159
|
-
}
|
|
3160
|
-
|
|
3161
|
-
.pl-3 {
|
|
3162
|
-
padding-left: 24px !important;
|
|
3163
|
-
}
|
|
3164
|
-
|
|
3165
|
-
.pl-4 {
|
|
3166
|
-
padding-left: 32px !important;
|
|
3167
|
-
}
|
|
3168
|
-
|
|
3169
|
-
.pl-5 {
|
|
3170
|
-
padding-left: 40px !important;
|
|
3171
|
-
}
|
|
3172
|
-
|
|
3173
|
-
.pl-6 {
|
|
3174
|
-
padding-left: 48px !important;
|
|
3175
|
-
}
|
|
3176
|
-
|
|
3177
|
-
.pl-7 {
|
|
3178
|
-
padding-left: 56px !important;
|
|
3179
|
-
}
|
|
3180
|
-
|
|
3181
|
-
.pl-8 {
|
|
3182
|
-
padding-left: 64px !important;
|
|
3183
|
-
}
|
|
3184
|
-
|
|
3185
|
-
.px-0 {
|
|
3186
|
-
padding-left: 0px !important;
|
|
3187
|
-
padding-right: 0px !important;
|
|
3188
|
-
}
|
|
3189
|
-
|
|
3190
|
-
.px-1 {
|
|
3191
|
-
padding-left: 8px !important;
|
|
3192
|
-
padding-right: 8px !important;
|
|
3193
|
-
}
|
|
3194
|
-
|
|
3195
|
-
.px-2 {
|
|
3196
|
-
padding-left: 16px !important;
|
|
3197
|
-
padding-right: 16px !important;
|
|
3198
|
-
}
|
|
3199
|
-
|
|
3200
|
-
.px-3 {
|
|
3201
|
-
padding-left: 24px !important;
|
|
3202
|
-
padding-right: 24px !important;
|
|
3203
|
-
}
|
|
3204
|
-
|
|
3205
|
-
.px-4 {
|
|
3206
|
-
padding-left: 32px !important;
|
|
3207
|
-
padding-right: 32px !important;
|
|
3208
|
-
}
|
|
3209
|
-
|
|
3210
|
-
.px-5 {
|
|
3211
|
-
padding-left: 40px !important;
|
|
3212
|
-
padding-right: 40px !important;
|
|
3213
|
-
}
|
|
3214
|
-
|
|
3215
|
-
.px-6 {
|
|
3216
|
-
padding-left: 48px !important;
|
|
3217
|
-
padding-right: 48px !important;
|
|
3218
|
-
}
|
|
3219
|
-
|
|
3220
|
-
.px-7 {
|
|
3221
|
-
padding-left: 56px !important;
|
|
3222
|
-
padding-right: 56px !important;
|
|
3223
|
-
}
|
|
3224
|
-
|
|
3225
|
-
.px-8 {
|
|
3226
|
-
padding-left: 64px !important;
|
|
3227
|
-
padding-right: 64px !important;
|
|
3228
|
-
}
|
|
3229
|
-
|
|
3230
|
-
.py-0 {
|
|
3231
|
-
padding-top: 0px !important;
|
|
3232
|
-
padding-bottom: 0px !important;
|
|
3233
|
-
}
|
|
3234
|
-
|
|
3235
|
-
.py-1 {
|
|
3236
|
-
padding-top: 8px !important;
|
|
3237
|
-
padding-bottom: 8px !important;
|
|
3238
|
-
}
|
|
3239
|
-
|
|
3240
|
-
.py-2 {
|
|
3241
|
-
padding-top: 16px !important;
|
|
3242
|
-
padding-bottom: 16px !important;
|
|
3243
|
-
}
|
|
3244
|
-
|
|
3245
|
-
.py-3 {
|
|
3246
|
-
padding-top: 24px !important;
|
|
3247
|
-
padding-bottom: 24px !important;
|
|
3248
|
-
}
|
|
3249
|
-
|
|
3250
|
-
.py-4 {
|
|
3251
|
-
padding-top: 32px !important;
|
|
3252
|
-
padding-bottom: 32px !important;
|
|
3253
|
-
}
|
|
3254
|
-
|
|
3255
|
-
.py-5 {
|
|
3256
|
-
padding-top: 40px !important;
|
|
3257
|
-
padding-bottom: 40px !important;
|
|
3258
|
-
}
|
|
3259
|
-
|
|
3260
|
-
.py-6 {
|
|
3261
|
-
padding-top: 48px !important;
|
|
3262
|
-
padding-bottom: 48px !important;
|
|
3263
|
-
}
|
|
3264
|
-
|
|
3265
|
-
.py-7 {
|
|
3266
|
-
padding-top: 56px !important;
|
|
3267
|
-
padding-bottom: 56px !important;
|
|
3268
|
-
}
|
|
3269
|
-
|
|
3270
|
-
.py-8 {
|
|
3271
|
-
padding-top: 64px !important;
|
|
3272
|
-
padding-bottom: 64px !important;
|
|
3273
|
-
}
|
|
3274
|
-
|
|
3275
|
-
.m-0 {
|
|
3276
|
-
margin: 0px !important;
|
|
3277
|
-
}
|
|
3278
|
-
|
|
3279
|
-
.m-1 {
|
|
3280
|
-
margin: 8px !important;
|
|
3281
|
-
}
|
|
3282
|
-
|
|
3283
|
-
.m-2 {
|
|
3284
|
-
margin: 16px !important;
|
|
3285
|
-
}
|
|
3286
|
-
|
|
3287
|
-
.m-3 {
|
|
3288
|
-
margin: 24px !important;
|
|
3289
|
-
}
|
|
3290
|
-
|
|
3291
|
-
.m-4 {
|
|
3292
|
-
margin: 32px !important;
|
|
3293
|
-
}
|
|
3294
|
-
|
|
3295
|
-
.m-5 {
|
|
3296
|
-
margin: 40px !important;
|
|
3297
|
-
}
|
|
3298
|
-
|
|
3299
|
-
.m-6 {
|
|
3300
|
-
margin: 48px !important;
|
|
3301
|
-
}
|
|
3302
|
-
|
|
3303
|
-
.m-7 {
|
|
3304
|
-
margin: 56px !important;
|
|
3305
|
-
}
|
|
3306
|
-
|
|
3307
|
-
.m-8 {
|
|
3308
|
-
margin: 64px !important;
|
|
3309
|
-
}
|
|
3310
|
-
|
|
3311
|
-
.mt-0 {
|
|
3312
|
-
margin-top: 0px !important;
|
|
3313
|
-
}
|
|
3314
|
-
|
|
3315
|
-
.mt-1 {
|
|
3316
|
-
margin-top: 8px !important;
|
|
3317
|
-
}
|
|
3318
|
-
|
|
3319
|
-
.mt-2 {
|
|
3320
|
-
margin-top: 16px !important;
|
|
3321
|
-
}
|
|
3322
|
-
|
|
3323
|
-
.mt-3 {
|
|
3324
|
-
margin-top: 24px !important;
|
|
3325
|
-
}
|
|
3326
|
-
|
|
3327
|
-
.mt-4 {
|
|
3328
|
-
margin-top: 32px !important;
|
|
3329
|
-
}
|
|
3330
|
-
|
|
3331
|
-
.mt-5 {
|
|
3332
|
-
margin-top: 40px !important;
|
|
3333
|
-
}
|
|
3334
|
-
|
|
3335
|
-
.mt-6 {
|
|
3336
|
-
margin-top: 48px !important;
|
|
3337
|
-
}
|
|
3338
|
-
|
|
3339
|
-
.mt-7 {
|
|
3340
|
-
margin-top: 56px !important;
|
|
3341
|
-
}
|
|
3342
|
-
|
|
3343
|
-
.mt-8 {
|
|
3344
|
-
margin-top: 64px !important;
|
|
3345
|
-
}
|
|
3346
|
-
|
|
3347
|
-
.mr-0 {
|
|
3348
|
-
margin-right: 0px !important;
|
|
3349
|
-
}
|
|
3350
|
-
|
|
3351
|
-
.mr-1 {
|
|
3352
|
-
margin-right: 8px !important;
|
|
3353
|
-
}
|
|
3354
|
-
|
|
3355
|
-
.mr-2 {
|
|
3356
|
-
margin-right: 16px !important;
|
|
3357
|
-
}
|
|
3358
|
-
|
|
3359
|
-
.mr-3 {
|
|
3360
|
-
margin-right: 24px !important;
|
|
3361
|
-
}
|
|
3362
|
-
|
|
3363
|
-
.mr-4 {
|
|
3364
|
-
margin-right: 32px !important;
|
|
3365
|
-
}
|
|
3366
|
-
|
|
3367
|
-
.mr-5 {
|
|
3368
|
-
margin-right: 40px !important;
|
|
3369
|
-
}
|
|
3370
|
-
|
|
3371
|
-
.mr-6 {
|
|
3372
|
-
margin-right: 48px !important;
|
|
3373
|
-
}
|
|
3374
|
-
|
|
3375
|
-
.mr-7 {
|
|
3376
|
-
margin-right: 56px !important;
|
|
3377
|
-
}
|
|
3378
|
-
|
|
3379
|
-
.mr-8 {
|
|
3380
|
-
margin-right: 64px !important;
|
|
3381
|
-
}
|
|
3382
|
-
|
|
3383
|
-
.mb-0 {
|
|
3384
|
-
margin-bottom: 0px !important;
|
|
3385
|
-
}
|
|
3386
|
-
|
|
3387
|
-
.mb-1 {
|
|
3388
|
-
margin-bottom: 8px !important;
|
|
3389
|
-
}
|
|
3390
|
-
|
|
3391
|
-
.mb-2 {
|
|
3392
|
-
margin-bottom: 16px !important;
|
|
3393
|
-
}
|
|
3394
|
-
|
|
3395
|
-
.mb-3 {
|
|
3396
|
-
margin-bottom: 24px !important;
|
|
3397
|
-
}
|
|
3398
|
-
|
|
3399
|
-
.mb-4 {
|
|
3400
|
-
margin-bottom: 32px !important;
|
|
3401
|
-
}
|
|
3402
|
-
|
|
3403
|
-
.mb-5 {
|
|
3404
|
-
margin-bottom: 40px !important;
|
|
3405
|
-
}
|
|
3406
|
-
|
|
3407
|
-
.mb-6 {
|
|
3408
|
-
margin-bottom: 48px !important;
|
|
3409
|
-
}
|
|
3410
|
-
|
|
3411
|
-
.mb-7 {
|
|
3412
|
-
margin-bottom: 56px !important;
|
|
3413
|
-
}
|
|
3414
|
-
|
|
3415
|
-
.mb-8 {
|
|
3416
|
-
margin-bottom: 64px !important;
|
|
3417
|
-
}
|
|
3418
|
-
|
|
3419
|
-
.ml-0 {
|
|
3420
|
-
margin-left: 0px !important;
|
|
3421
|
-
}
|
|
3422
|
-
|
|
3423
|
-
.ml-1 {
|
|
3424
|
-
margin-left: 8px !important;
|
|
3425
|
-
}
|
|
3426
|
-
|
|
3427
|
-
.ml-2 {
|
|
3428
|
-
margin-left: 16px !important;
|
|
3429
|
-
}
|
|
3430
|
-
|
|
3431
|
-
.ml-3 {
|
|
3432
|
-
margin-left: 24px !important;
|
|
3433
|
-
}
|
|
3434
|
-
|
|
3435
|
-
.ml-4 {
|
|
3436
|
-
margin-left: 32px !important;
|
|
3437
|
-
}
|
|
3438
|
-
|
|
3439
|
-
.ml-5 {
|
|
3440
|
-
margin-left: 40px !important;
|
|
3441
|
-
}
|
|
3442
|
-
|
|
3443
|
-
.ml-6 {
|
|
3444
|
-
margin-left: 48px !important;
|
|
3445
|
-
}
|
|
3446
|
-
|
|
3447
|
-
.ml-7 {
|
|
3448
|
-
margin-left: 56px !important;
|
|
3449
|
-
}
|
|
3450
|
-
|
|
3451
|
-
.ml-8 {
|
|
3452
|
-
margin-left: 64px !important;
|
|
3453
|
-
}
|
|
3454
|
-
|
|
3455
|
-
.mx-0 {
|
|
3456
|
-
margin-left: 0px !important;
|
|
3457
|
-
margin-right: 0px !important;
|
|
3458
|
-
}
|
|
3459
|
-
|
|
3460
|
-
.mx-1 {
|
|
3461
|
-
margin-left: 8px !important;
|
|
3462
|
-
margin-right: 8px !important;
|
|
3463
|
-
}
|
|
3464
|
-
|
|
3465
|
-
.mx-2 {
|
|
3466
|
-
margin-left: 16px !important;
|
|
3467
|
-
margin-right: 16px !important;
|
|
3468
|
-
}
|
|
3469
|
-
|
|
3470
|
-
.mx-3 {
|
|
3471
|
-
margin-left: 24px !important;
|
|
3472
|
-
margin-right: 24px !important;
|
|
3473
|
-
}
|
|
3474
|
-
|
|
3475
|
-
.mx-4 {
|
|
3476
|
-
margin-left: 32px !important;
|
|
3477
|
-
margin-right: 32px !important;
|
|
3478
|
-
}
|
|
3479
|
-
|
|
3480
|
-
.mx-5 {
|
|
3481
|
-
margin-left: 40px !important;
|
|
3482
|
-
margin-right: 40px !important;
|
|
3483
|
-
}
|
|
3484
|
-
|
|
3485
|
-
.mx-6 {
|
|
3486
|
-
margin-left: 48px !important;
|
|
3487
|
-
margin-right: 48px !important;
|
|
3488
|
-
}
|
|
3489
|
-
|
|
3490
|
-
.mx-7 {
|
|
3491
|
-
margin-left: 56px !important;
|
|
3492
|
-
margin-right: 56px !important;
|
|
3493
|
-
}
|
|
3494
|
-
|
|
3495
|
-
.mx-8 {
|
|
3496
|
-
margin-left: 64px !important;
|
|
3497
|
-
margin-right: 64px !important;
|
|
3498
|
-
}
|
|
3499
|
-
|
|
3500
|
-
.mx-0 {
|
|
3501
|
-
margin-top: 0px !important;
|
|
3502
|
-
margin-bottom: 0px !important;
|
|
3503
|
-
}
|
|
3504
|
-
|
|
3505
|
-
.mx-1 {
|
|
3506
|
-
margin-top: 8px !important;
|
|
3507
|
-
margin-bottom: 8px !important;
|
|
3508
|
-
}
|
|
3509
|
-
|
|
3510
|
-
.mx-2 {
|
|
3511
|
-
margin-top: 16px !important;
|
|
3512
|
-
margin-bottom: 16px !important;
|
|
3513
|
-
}
|
|
3514
|
-
|
|
3515
|
-
.mx-3 {
|
|
3516
|
-
margin-top: 24px !important;
|
|
3517
|
-
margin-bottom: 24px !important;
|
|
3518
|
-
}
|
|
3519
|
-
|
|
3520
|
-
.mx-4 {
|
|
3521
|
-
margin-top: 32px !important;
|
|
3522
|
-
margin-bottom: 32px !important;
|
|
3523
|
-
}
|
|
3524
|
-
|
|
3525
|
-
.mx-5 {
|
|
3526
|
-
margin-top: 40px !important;
|
|
3527
|
-
margin-bottom: 40px !important;
|
|
3528
|
-
}
|
|
3529
|
-
|
|
3530
|
-
.mx-6 {
|
|
3531
|
-
margin-top: 48px !important;
|
|
3532
|
-
margin-bottom: 48px !important;
|
|
3533
|
-
}
|
|
3534
|
-
|
|
3535
|
-
.mx-7 {
|
|
3536
|
-
margin-top: 56px !important;
|
|
3537
|
-
margin-bottom: 56px !important;
|
|
3538
|
-
}
|
|
3539
|
-
|
|
3540
|
-
.mx-8 {
|
|
3541
|
-
margin-top: 64px !important;
|
|
3542
|
-
margin-bottom: 64px !important;
|
|
3543
|
-
}
|
|
3544
|
-
|
|
3545
3082
|
.markup-include .theme-amber,
|
|
3546
3083
|
.type-waffle-chart .theme-amber,
|
|
3547
3084
|
.type-data-bite .theme-amber,
|
|
@@ -4280,12 +3817,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
4280
3817
|
border-color: #4ebaaa;
|
|
4281
3818
|
}
|
|
4282
3819
|
|
|
4283
|
-
.cdc-open-viz-module.theme-amber .single-filters--tab .tab--active {
|
|
3820
|
+
.cdc-open-viz-module.theme-amber .single-filters--tab .tab--active:not(.tab--simple) {
|
|
4284
3821
|
border: 1px solid #fbab18;
|
|
4285
3822
|
border-top: 3px solid #fbab18;
|
|
4286
3823
|
border-bottom: none;
|
|
4287
3824
|
}
|
|
4288
|
-
.cdc-open-viz-module.theme-amber .single-filters--tab .tab:not(.tab--active) {
|
|
3825
|
+
.cdc-open-viz-module.theme-amber .single-filters--tab .tab:not(.tab--active):not(.tab--simple) {
|
|
4289
3826
|
border-bottom: 1px solid #fbab18;
|
|
4290
3827
|
}
|
|
4291
3828
|
.cdc-open-viz-module.theme-amber .single-filters--pill .pill--active {
|
|
@@ -4295,12 +3832,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
4295
3832
|
.cdc-open-viz-module.theme-amber .filters-section button.cove-button:not([disabled]) {
|
|
4296
3833
|
background-color: #fbab18 !important;
|
|
4297
3834
|
}
|
|
4298
|
-
.cdc-open-viz-module .theme-amber .single-filters--tab .tab--active {
|
|
3835
|
+
.cdc-open-viz-module .theme-amber .single-filters--tab .tab--active:not(.tab--simple) {
|
|
4299
3836
|
border: 1px solid #fbab18;
|
|
4300
3837
|
border-top: 3px solid #fbab18;
|
|
4301
3838
|
border-bottom: none;
|
|
4302
3839
|
}
|
|
4303
|
-
.cdc-open-viz-module .theme-amber .single-filters--tab .tab:not(.tab--active) {
|
|
3840
|
+
.cdc-open-viz-module .theme-amber .single-filters--tab .tab:not(.tab--active):not(.tab--simple) {
|
|
4304
3841
|
border-bottom: 1px solid #fbab18;
|
|
4305
3842
|
}
|
|
4306
3843
|
.cdc-open-viz-module .theme-amber .single-filters--pill .pill--active {
|
|
@@ -4313,12 +3850,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
4313
3850
|
.cdc-open-viz-module .theme-amber .apply:not([disabled]) {
|
|
4314
3851
|
background-color: #fbab18 !important;
|
|
4315
3852
|
}
|
|
4316
|
-
.cdc-open-viz-module.theme-blue .single-filters--tab .tab--active {
|
|
3853
|
+
.cdc-open-viz-module.theme-blue .single-filters--tab .tab--active:not(.tab--simple) {
|
|
4317
3854
|
border: 1px solid #005eaa;
|
|
4318
3855
|
border-top: 3px solid #005eaa;
|
|
4319
3856
|
border-bottom: none;
|
|
4320
3857
|
}
|
|
4321
|
-
.cdc-open-viz-module.theme-blue .single-filters--tab .tab:not(.tab--active) {
|
|
3858
|
+
.cdc-open-viz-module.theme-blue .single-filters--tab .tab:not(.tab--active):not(.tab--simple) {
|
|
4322
3859
|
border-bottom: 1px solid #005eaa;
|
|
4323
3860
|
}
|
|
4324
3861
|
.cdc-open-viz-module.theme-blue .single-filters--pill .pill--active {
|
|
@@ -4328,12 +3865,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
4328
3865
|
.cdc-open-viz-module.theme-blue .filters-section button.cove-button:not([disabled]) {
|
|
4329
3866
|
background-color: #005eaa !important;
|
|
4330
3867
|
}
|
|
4331
|
-
.cdc-open-viz-module .theme-blue .single-filters--tab .tab--active {
|
|
3868
|
+
.cdc-open-viz-module .theme-blue .single-filters--tab .tab--active:not(.tab--simple) {
|
|
4332
3869
|
border: 1px solid #005eaa;
|
|
4333
3870
|
border-top: 3px solid #005eaa;
|
|
4334
3871
|
border-bottom: none;
|
|
4335
3872
|
}
|
|
4336
|
-
.cdc-open-viz-module .theme-blue .single-filters--tab .tab:not(.tab--active) {
|
|
3873
|
+
.cdc-open-viz-module .theme-blue .single-filters--tab .tab:not(.tab--active):not(.tab--simple) {
|
|
4337
3874
|
border-bottom: 1px solid #005eaa;
|
|
4338
3875
|
}
|
|
4339
3876
|
.cdc-open-viz-module .theme-blue .single-filters--pill .pill--active {
|
|
@@ -4346,12 +3883,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
4346
3883
|
.cdc-open-viz-module .theme-blue .apply:not([disabled]) {
|
|
4347
3884
|
background-color: #005eaa !important;
|
|
4348
3885
|
}
|
|
4349
|
-
.cdc-open-viz-module.theme-brown .single-filters--tab .tab--active {
|
|
3886
|
+
.cdc-open-viz-module.theme-brown .single-filters--tab .tab--active:not(.tab--simple) {
|
|
4350
3887
|
border: 1px solid #705043;
|
|
4351
3888
|
border-top: 3px solid #705043;
|
|
4352
3889
|
border-bottom: none;
|
|
4353
3890
|
}
|
|
4354
|
-
.cdc-open-viz-module.theme-brown .single-filters--tab .tab:not(.tab--active) {
|
|
3891
|
+
.cdc-open-viz-module.theme-brown .single-filters--tab .tab:not(.tab--active):not(.tab--simple) {
|
|
4355
3892
|
border-bottom: 1px solid #705043;
|
|
4356
3893
|
}
|
|
4357
3894
|
.cdc-open-viz-module.theme-brown .single-filters--pill .pill--active {
|
|
@@ -4361,12 +3898,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
4361
3898
|
.cdc-open-viz-module.theme-brown .filters-section button.cove-button:not([disabled]) {
|
|
4362
3899
|
background-color: #705043 !important;
|
|
4363
3900
|
}
|
|
4364
|
-
.cdc-open-viz-module .theme-brown .single-filters--tab .tab--active {
|
|
3901
|
+
.cdc-open-viz-module .theme-brown .single-filters--tab .tab--active:not(.tab--simple) {
|
|
4365
3902
|
border: 1px solid #705043;
|
|
4366
3903
|
border-top: 3px solid #705043;
|
|
4367
3904
|
border-bottom: none;
|
|
4368
3905
|
}
|
|
4369
|
-
.cdc-open-viz-module .theme-brown .single-filters--tab .tab:not(.tab--active) {
|
|
3906
|
+
.cdc-open-viz-module .theme-brown .single-filters--tab .tab:not(.tab--active):not(.tab--simple) {
|
|
4370
3907
|
border-bottom: 1px solid #705043;
|
|
4371
3908
|
}
|
|
4372
3909
|
.cdc-open-viz-module .theme-brown .single-filters--pill .pill--active {
|
|
@@ -4379,12 +3916,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
4379
3916
|
.cdc-open-viz-module .theme-brown .apply:not([disabled]) {
|
|
4380
3917
|
background-color: #705043 !important;
|
|
4381
3918
|
}
|
|
4382
|
-
.cdc-open-viz-module.theme-cyan .single-filters--tab .tab--active {
|
|
3919
|
+
.cdc-open-viz-module.theme-cyan .single-filters--tab .tab--active:not(.tab--simple) {
|
|
4383
3920
|
border: 1px solid #007B91;
|
|
4384
3921
|
border-top: 3px solid #007B91;
|
|
4385
3922
|
border-bottom: none;
|
|
4386
3923
|
}
|
|
4387
|
-
.cdc-open-viz-module.theme-cyan .single-filters--tab .tab:not(.tab--active) {
|
|
3924
|
+
.cdc-open-viz-module.theme-cyan .single-filters--tab .tab:not(.tab--active):not(.tab--simple) {
|
|
4388
3925
|
border-bottom: 1px solid #007B91;
|
|
4389
3926
|
}
|
|
4390
3927
|
.cdc-open-viz-module.theme-cyan .single-filters--pill .pill--active {
|
|
@@ -4394,12 +3931,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
4394
3931
|
.cdc-open-viz-module.theme-cyan .filters-section button.cove-button:not([disabled]) {
|
|
4395
3932
|
background-color: #007B91 !important;
|
|
4396
3933
|
}
|
|
4397
|
-
.cdc-open-viz-module .theme-cyan .single-filters--tab .tab--active {
|
|
3934
|
+
.cdc-open-viz-module .theme-cyan .single-filters--tab .tab--active:not(.tab--simple) {
|
|
4398
3935
|
border: 1px solid #007B91;
|
|
4399
3936
|
border-top: 3px solid #007B91;
|
|
4400
3937
|
border-bottom: none;
|
|
4401
3938
|
}
|
|
4402
|
-
.cdc-open-viz-module .theme-cyan .single-filters--tab .tab:not(.tab--active) {
|
|
3939
|
+
.cdc-open-viz-module .theme-cyan .single-filters--tab .tab:not(.tab--active):not(.tab--simple) {
|
|
4403
3940
|
border-bottom: 1px solid #007B91;
|
|
4404
3941
|
}
|
|
4405
3942
|
.cdc-open-viz-module .theme-cyan .single-filters--pill .pill--active {
|
|
@@ -4412,12 +3949,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
4412
3949
|
.cdc-open-viz-module .theme-cyan .apply:not([disabled]) {
|
|
4413
3950
|
background-color: #007B91 !important;
|
|
4414
3951
|
}
|
|
4415
|
-
.cdc-open-viz-module.theme-green .single-filters--tab .tab--active {
|
|
3952
|
+
.cdc-open-viz-module.theme-green .single-filters--tab .tab--active:not(.tab--simple) {
|
|
4416
3953
|
border: 1px solid #4b830d;
|
|
4417
3954
|
border-top: 3px solid #4b830d;
|
|
4418
3955
|
border-bottom: none;
|
|
4419
3956
|
}
|
|
4420
|
-
.cdc-open-viz-module.theme-green .single-filters--tab .tab:not(.tab--active) {
|
|
3957
|
+
.cdc-open-viz-module.theme-green .single-filters--tab .tab:not(.tab--active):not(.tab--simple) {
|
|
4421
3958
|
border-bottom: 1px solid #4b830d;
|
|
4422
3959
|
}
|
|
4423
3960
|
.cdc-open-viz-module.theme-green .single-filters--pill .pill--active {
|
|
@@ -4427,12 +3964,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
4427
3964
|
.cdc-open-viz-module.theme-green .filters-section button.cove-button:not([disabled]) {
|
|
4428
3965
|
background-color: #4b830d !important;
|
|
4429
3966
|
}
|
|
4430
|
-
.cdc-open-viz-module .theme-green .single-filters--tab .tab--active {
|
|
3967
|
+
.cdc-open-viz-module .theme-green .single-filters--tab .tab--active:not(.tab--simple) {
|
|
4431
3968
|
border: 1px solid #4b830d;
|
|
4432
3969
|
border-top: 3px solid #4b830d;
|
|
4433
3970
|
border-bottom: none;
|
|
4434
3971
|
}
|
|
4435
|
-
.cdc-open-viz-module .theme-green .single-filters--tab .tab:not(.tab--active) {
|
|
3972
|
+
.cdc-open-viz-module .theme-green .single-filters--tab .tab:not(.tab--active):not(.tab--simple) {
|
|
4436
3973
|
border-bottom: 1px solid #4b830d;
|
|
4437
3974
|
}
|
|
4438
3975
|
.cdc-open-viz-module .theme-green .single-filters--pill .pill--active {
|
|
@@ -4445,12 +3982,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
4445
3982
|
.cdc-open-viz-module .theme-green .apply:not([disabled]) {
|
|
4446
3983
|
background-color: #4b830d !important;
|
|
4447
3984
|
}
|
|
4448
|
-
.cdc-open-viz-module.theme-indigo .single-filters--tab .tab--active {
|
|
3985
|
+
.cdc-open-viz-module.theme-indigo .single-filters--tab .tab--active:not(.tab--simple) {
|
|
4449
3986
|
border: 1px solid #26418f;
|
|
4450
3987
|
border-top: 3px solid #26418f;
|
|
4451
3988
|
border-bottom: none;
|
|
4452
3989
|
}
|
|
4453
|
-
.cdc-open-viz-module.theme-indigo .single-filters--tab .tab:not(.tab--active) {
|
|
3990
|
+
.cdc-open-viz-module.theme-indigo .single-filters--tab .tab:not(.tab--active):not(.tab--simple) {
|
|
4454
3991
|
border-bottom: 1px solid #26418f;
|
|
4455
3992
|
}
|
|
4456
3993
|
.cdc-open-viz-module.theme-indigo .single-filters--pill .pill--active {
|
|
@@ -4460,12 +3997,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
4460
3997
|
.cdc-open-viz-module.theme-indigo .filters-section button.cove-button:not([disabled]) {
|
|
4461
3998
|
background-color: #26418f !important;
|
|
4462
3999
|
}
|
|
4463
|
-
.cdc-open-viz-module .theme-indigo .single-filters--tab .tab--active {
|
|
4000
|
+
.cdc-open-viz-module .theme-indigo .single-filters--tab .tab--active:not(.tab--simple) {
|
|
4464
4001
|
border: 1px solid #26418f;
|
|
4465
4002
|
border-top: 3px solid #26418f;
|
|
4466
4003
|
border-bottom: none;
|
|
4467
4004
|
}
|
|
4468
|
-
.cdc-open-viz-module .theme-indigo .single-filters--tab .tab:not(.tab--active) {
|
|
4005
|
+
.cdc-open-viz-module .theme-indigo .single-filters--tab .tab:not(.tab--active):not(.tab--simple) {
|
|
4469
4006
|
border-bottom: 1px solid #26418f;
|
|
4470
4007
|
}
|
|
4471
4008
|
.cdc-open-viz-module .theme-indigo .single-filters--pill .pill--active {
|
|
@@ -4478,12 +4015,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
4478
4015
|
.cdc-open-viz-module .theme-indigo .apply:not([disabled]) {
|
|
4479
4016
|
background-color: #26418f !important;
|
|
4480
4017
|
}
|
|
4481
|
-
.cdc-open-viz-module.theme-orange .single-filters--tab .tab--active {
|
|
4018
|
+
.cdc-open-viz-module.theme-orange .single-filters--tab .tab--active:not(.tab--simple) {
|
|
4482
4019
|
border: 1px solid #bb4d00;
|
|
4483
4020
|
border-top: 3px solid #bb4d00;
|
|
4484
4021
|
border-bottom: none;
|
|
4485
4022
|
}
|
|
4486
|
-
.cdc-open-viz-module.theme-orange .single-filters--tab .tab:not(.tab--active) {
|
|
4023
|
+
.cdc-open-viz-module.theme-orange .single-filters--tab .tab:not(.tab--active):not(.tab--simple) {
|
|
4487
4024
|
border-bottom: 1px solid #bb4d00;
|
|
4488
4025
|
}
|
|
4489
4026
|
.cdc-open-viz-module.theme-orange .single-filters--pill .pill--active {
|
|
@@ -4493,12 +4030,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
4493
4030
|
.cdc-open-viz-module.theme-orange .filters-section button.cove-button:not([disabled]) {
|
|
4494
4031
|
background-color: #bb4d00 !important;
|
|
4495
4032
|
}
|
|
4496
|
-
.cdc-open-viz-module .theme-orange .single-filters--tab .tab--active {
|
|
4033
|
+
.cdc-open-viz-module .theme-orange .single-filters--tab .tab--active:not(.tab--simple) {
|
|
4497
4034
|
border: 1px solid #bb4d00;
|
|
4498
4035
|
border-top: 3px solid #bb4d00;
|
|
4499
4036
|
border-bottom: none;
|
|
4500
4037
|
}
|
|
4501
|
-
.cdc-open-viz-module .theme-orange .single-filters--tab .tab:not(.tab--active) {
|
|
4038
|
+
.cdc-open-viz-module .theme-orange .single-filters--tab .tab:not(.tab--active):not(.tab--simple) {
|
|
4502
4039
|
border-bottom: 1px solid #bb4d00;
|
|
4503
4040
|
}
|
|
4504
4041
|
.cdc-open-viz-module .theme-orange .single-filters--pill .pill--active {
|
|
@@ -4511,12 +4048,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
4511
4048
|
.cdc-open-viz-module .theme-orange .apply:not([disabled]) {
|
|
4512
4049
|
background-color: #bb4d00 !important;
|
|
4513
4050
|
}
|
|
4514
|
-
.cdc-open-viz-module.theme-pink .single-filters--tab .tab--active {
|
|
4051
|
+
.cdc-open-viz-module.theme-pink .single-filters--tab .tab--active:not(.tab--simple) {
|
|
4515
4052
|
border: 1px solid #af4448;
|
|
4516
4053
|
border-top: 3px solid #af4448;
|
|
4517
4054
|
border-bottom: none;
|
|
4518
4055
|
}
|
|
4519
|
-
.cdc-open-viz-module.theme-pink .single-filters--tab .tab:not(.tab--active) {
|
|
4056
|
+
.cdc-open-viz-module.theme-pink .single-filters--tab .tab:not(.tab--active):not(.tab--simple) {
|
|
4520
4057
|
border-bottom: 1px solid #af4448;
|
|
4521
4058
|
}
|
|
4522
4059
|
.cdc-open-viz-module.theme-pink .single-filters--pill .pill--active {
|
|
@@ -4526,12 +4063,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
4526
4063
|
.cdc-open-viz-module.theme-pink .filters-section button.cove-button:not([disabled]) {
|
|
4527
4064
|
background-color: #af4448 !important;
|
|
4528
4065
|
}
|
|
4529
|
-
.cdc-open-viz-module .theme-pink .single-filters--tab .tab--active {
|
|
4066
|
+
.cdc-open-viz-module .theme-pink .single-filters--tab .tab--active:not(.tab--simple) {
|
|
4530
4067
|
border: 1px solid #af4448;
|
|
4531
4068
|
border-top: 3px solid #af4448;
|
|
4532
4069
|
border-bottom: none;
|
|
4533
4070
|
}
|
|
4534
|
-
.cdc-open-viz-module .theme-pink .single-filters--tab .tab:not(.tab--active) {
|
|
4071
|
+
.cdc-open-viz-module .theme-pink .single-filters--tab .tab:not(.tab--active):not(.tab--simple) {
|
|
4535
4072
|
border-bottom: 1px solid #af4448;
|
|
4536
4073
|
}
|
|
4537
4074
|
.cdc-open-viz-module .theme-pink .single-filters--pill .pill--active {
|
|
@@ -4544,12 +4081,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
4544
4081
|
.cdc-open-viz-module .theme-pink .apply:not([disabled]) {
|
|
4545
4082
|
background-color: #af4448 !important;
|
|
4546
4083
|
}
|
|
4547
|
-
.cdc-open-viz-module.theme-purple .single-filters--tab .tab--active {
|
|
4084
|
+
.cdc-open-viz-module.theme-purple .single-filters--tab .tab--active:not(.tab--simple) {
|
|
4548
4085
|
border: 1px solid #712177;
|
|
4549
4086
|
border-top: 3px solid #712177;
|
|
4550
4087
|
border-bottom: none;
|
|
4551
4088
|
}
|
|
4552
|
-
.cdc-open-viz-module.theme-purple .single-filters--tab .tab:not(.tab--active) {
|
|
4089
|
+
.cdc-open-viz-module.theme-purple .single-filters--tab .tab:not(.tab--active):not(.tab--simple) {
|
|
4553
4090
|
border-bottom: 1px solid #712177;
|
|
4554
4091
|
}
|
|
4555
4092
|
.cdc-open-viz-module.theme-purple .single-filters--pill .pill--active {
|
|
@@ -4559,12 +4096,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
4559
4096
|
.cdc-open-viz-module.theme-purple .filters-section button.cove-button:not([disabled]) {
|
|
4560
4097
|
background-color: #712177 !important;
|
|
4561
4098
|
}
|
|
4562
|
-
.cdc-open-viz-module .theme-purple .single-filters--tab .tab--active {
|
|
4099
|
+
.cdc-open-viz-module .theme-purple .single-filters--tab .tab--active:not(.tab--simple) {
|
|
4563
4100
|
border: 1px solid #712177;
|
|
4564
4101
|
border-top: 3px solid #712177;
|
|
4565
4102
|
border-bottom: none;
|
|
4566
4103
|
}
|
|
4567
|
-
.cdc-open-viz-module .theme-purple .single-filters--tab .tab:not(.tab--active) {
|
|
4104
|
+
.cdc-open-viz-module .theme-purple .single-filters--tab .tab:not(.tab--active):not(.tab--simple) {
|
|
4568
4105
|
border-bottom: 1px solid #712177;
|
|
4569
4106
|
}
|
|
4570
4107
|
.cdc-open-viz-module .theme-purple .single-filters--pill .pill--active {
|
|
@@ -4577,12 +4114,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
4577
4114
|
.cdc-open-viz-module .theme-purple .apply:not([disabled]) {
|
|
4578
4115
|
background-color: #712177 !important;
|
|
4579
4116
|
}
|
|
4580
|
-
.cdc-open-viz-module.theme-slate .single-filters--tab .tab--active {
|
|
4117
|
+
.cdc-open-viz-module.theme-slate .single-filters--tab .tab--active:not(.tab--simple) {
|
|
4581
4118
|
border: 1px solid #29434e;
|
|
4582
4119
|
border-top: 3px solid #29434e;
|
|
4583
4120
|
border-bottom: none;
|
|
4584
4121
|
}
|
|
4585
|
-
.cdc-open-viz-module.theme-slate .single-filters--tab .tab:not(.tab--active) {
|
|
4122
|
+
.cdc-open-viz-module.theme-slate .single-filters--tab .tab:not(.tab--active):not(.tab--simple) {
|
|
4586
4123
|
border-bottom: 1px solid #29434e;
|
|
4587
4124
|
}
|
|
4588
4125
|
.cdc-open-viz-module.theme-slate .single-filters--pill .pill--active {
|
|
@@ -4592,12 +4129,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
4592
4129
|
.cdc-open-viz-module.theme-slate .filters-section button.cove-button:not([disabled]) {
|
|
4593
4130
|
background-color: #29434e !important;
|
|
4594
4131
|
}
|
|
4595
|
-
.cdc-open-viz-module .theme-slate .single-filters--tab .tab--active {
|
|
4132
|
+
.cdc-open-viz-module .theme-slate .single-filters--tab .tab--active:not(.tab--simple) {
|
|
4596
4133
|
border: 1px solid #29434e;
|
|
4597
4134
|
border-top: 3px solid #29434e;
|
|
4598
4135
|
border-bottom: none;
|
|
4599
4136
|
}
|
|
4600
|
-
.cdc-open-viz-module .theme-slate .single-filters--tab .tab:not(.tab--active) {
|
|
4137
|
+
.cdc-open-viz-module .theme-slate .single-filters--tab .tab:not(.tab--active):not(.tab--simple) {
|
|
4601
4138
|
border-bottom: 1px solid #29434e;
|
|
4602
4139
|
}
|
|
4603
4140
|
.cdc-open-viz-module .theme-slate .single-filters--pill .pill--active {
|
|
@@ -4610,12 +4147,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
4610
4147
|
.cdc-open-viz-module .theme-slate .apply:not([disabled]) {
|
|
4611
4148
|
background-color: #29434e !important;
|
|
4612
4149
|
}
|
|
4613
|
-
.cdc-open-viz-module.theme-teal .single-filters--tab .tab--active {
|
|
4150
|
+
.cdc-open-viz-module.theme-teal .single-filters--tab .tab--active:not(.tab--simple) {
|
|
4614
4151
|
border: 1px solid #00695c;
|
|
4615
4152
|
border-top: 3px solid #00695c;
|
|
4616
4153
|
border-bottom: none;
|
|
4617
4154
|
}
|
|
4618
|
-
.cdc-open-viz-module.theme-teal .single-filters--tab .tab:not(.tab--active) {
|
|
4155
|
+
.cdc-open-viz-module.theme-teal .single-filters--tab .tab:not(.tab--active):not(.tab--simple) {
|
|
4619
4156
|
border-bottom: 1px solid #00695c;
|
|
4620
4157
|
}
|
|
4621
4158
|
.cdc-open-viz-module.theme-teal .single-filters--pill .pill--active {
|
|
@@ -4625,12 +4162,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
4625
4162
|
.cdc-open-viz-module.theme-teal .filters-section button.cove-button:not([disabled]) {
|
|
4626
4163
|
background-color: #00695c !important;
|
|
4627
4164
|
}
|
|
4628
|
-
.cdc-open-viz-module .theme-teal .single-filters--tab .tab--active {
|
|
4165
|
+
.cdc-open-viz-module .theme-teal .single-filters--tab .tab--active:not(.tab--simple) {
|
|
4629
4166
|
border: 1px solid #00695c;
|
|
4630
4167
|
border-top: 3px solid #00695c;
|
|
4631
4168
|
border-bottom: none;
|
|
4632
4169
|
}
|
|
4633
|
-
.cdc-open-viz-module .theme-teal .single-filters--tab .tab:not(.tab--active) {
|
|
4170
|
+
.cdc-open-viz-module .theme-teal .single-filters--tab .tab:not(.tab--active):not(.tab--simple) {
|
|
4634
4171
|
border-bottom: 1px solid #00695c;
|
|
4635
4172
|
}
|
|
4636
4173
|
.cdc-open-viz-module .theme-teal .single-filters--pill .pill--active {
|
|
@@ -4645,16 +4182,15 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
4645
4182
|
}
|
|
4646
4183
|
|
|
4647
4184
|
.cove {
|
|
4648
|
-
color: #333;
|
|
4649
4185
|
font-size: 16px;
|
|
4650
4186
|
line-height: 1.4;
|
|
4651
4187
|
margin: 0;
|
|
4652
|
-
font:
|
|
4188
|
+
font-family: var(--app-font-main);
|
|
4189
|
+
font-size: 1em;
|
|
4190
|
+
line-height: 1.5;
|
|
4653
4191
|
font-weight: 400;
|
|
4654
4192
|
font-style: normal;
|
|
4655
4193
|
text-rendering: optimizeLegibility;
|
|
4656
|
-
-webkit-font-smoothing: antialiased;
|
|
4657
|
-
color: #111;
|
|
4658
4194
|
}
|
|
4659
4195
|
.cove .markup-include .theme-amber,
|
|
4660
4196
|
.cove .type-waffle-chart .theme-amber,
|
|
@@ -5393,12 +4929,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
5393
4929
|
.cove .cove.theme-teal .cove-component__header {
|
|
5394
4930
|
border-color: #4ebaaa;
|
|
5395
4931
|
}
|
|
5396
|
-
.cove .cdc-open-viz-module.theme-amber .single-filters--tab .tab--active {
|
|
4932
|
+
.cove .cdc-open-viz-module.theme-amber .single-filters--tab .tab--active:not(.tab--simple) {
|
|
5397
4933
|
border: 1px solid #fbab18;
|
|
5398
4934
|
border-top: 3px solid #fbab18;
|
|
5399
4935
|
border-bottom: none;
|
|
5400
4936
|
}
|
|
5401
|
-
.cove .cdc-open-viz-module.theme-amber .single-filters--tab .tab:not(.tab--active) {
|
|
4937
|
+
.cove .cdc-open-viz-module.theme-amber .single-filters--tab .tab:not(.tab--active):not(.tab--simple) {
|
|
5402
4938
|
border-bottom: 1px solid #fbab18;
|
|
5403
4939
|
}
|
|
5404
4940
|
.cove .cdc-open-viz-module.theme-amber .single-filters--pill .pill--active {
|
|
@@ -5408,12 +4944,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
5408
4944
|
.cove .cdc-open-viz-module.theme-amber .filters-section button.cove-button:not([disabled]) {
|
|
5409
4945
|
background-color: #fbab18 !important;
|
|
5410
4946
|
}
|
|
5411
|
-
.cove .cdc-open-viz-module .theme-amber .single-filters--tab .tab--active {
|
|
4947
|
+
.cove .cdc-open-viz-module .theme-amber .single-filters--tab .tab--active:not(.tab--simple) {
|
|
5412
4948
|
border: 1px solid #fbab18;
|
|
5413
4949
|
border-top: 3px solid #fbab18;
|
|
5414
4950
|
border-bottom: none;
|
|
5415
4951
|
}
|
|
5416
|
-
.cove .cdc-open-viz-module .theme-amber .single-filters--tab .tab:not(.tab--active) {
|
|
4952
|
+
.cove .cdc-open-viz-module .theme-amber .single-filters--tab .tab:not(.tab--active):not(.tab--simple) {
|
|
5417
4953
|
border-bottom: 1px solid #fbab18;
|
|
5418
4954
|
}
|
|
5419
4955
|
.cove .cdc-open-viz-module .theme-amber .single-filters--pill .pill--active {
|
|
@@ -5426,12 +4962,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
5426
4962
|
.cove .cdc-open-viz-module .theme-amber .apply:not([disabled]) {
|
|
5427
4963
|
background-color: #fbab18 !important;
|
|
5428
4964
|
}
|
|
5429
|
-
.cove .cdc-open-viz-module.theme-blue .single-filters--tab .tab--active {
|
|
4965
|
+
.cove .cdc-open-viz-module.theme-blue .single-filters--tab .tab--active:not(.tab--simple) {
|
|
5430
4966
|
border: 1px solid #005eaa;
|
|
5431
4967
|
border-top: 3px solid #005eaa;
|
|
5432
4968
|
border-bottom: none;
|
|
5433
4969
|
}
|
|
5434
|
-
.cove .cdc-open-viz-module.theme-blue .single-filters--tab .tab:not(.tab--active) {
|
|
4970
|
+
.cove .cdc-open-viz-module.theme-blue .single-filters--tab .tab:not(.tab--active):not(.tab--simple) {
|
|
5435
4971
|
border-bottom: 1px solid #005eaa;
|
|
5436
4972
|
}
|
|
5437
4973
|
.cove .cdc-open-viz-module.theme-blue .single-filters--pill .pill--active {
|
|
@@ -5441,12 +4977,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
5441
4977
|
.cove .cdc-open-viz-module.theme-blue .filters-section button.cove-button:not([disabled]) {
|
|
5442
4978
|
background-color: #005eaa !important;
|
|
5443
4979
|
}
|
|
5444
|
-
.cove .cdc-open-viz-module .theme-blue .single-filters--tab .tab--active {
|
|
4980
|
+
.cove .cdc-open-viz-module .theme-blue .single-filters--tab .tab--active:not(.tab--simple) {
|
|
5445
4981
|
border: 1px solid #005eaa;
|
|
5446
4982
|
border-top: 3px solid #005eaa;
|
|
5447
4983
|
border-bottom: none;
|
|
5448
4984
|
}
|
|
5449
|
-
.cove .cdc-open-viz-module .theme-blue .single-filters--tab .tab:not(.tab--active) {
|
|
4985
|
+
.cove .cdc-open-viz-module .theme-blue .single-filters--tab .tab:not(.tab--active):not(.tab--simple) {
|
|
5450
4986
|
border-bottom: 1px solid #005eaa;
|
|
5451
4987
|
}
|
|
5452
4988
|
.cove .cdc-open-viz-module .theme-blue .single-filters--pill .pill--active {
|
|
@@ -5459,12 +4995,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
5459
4995
|
.cove .cdc-open-viz-module .theme-blue .apply:not([disabled]) {
|
|
5460
4996
|
background-color: #005eaa !important;
|
|
5461
4997
|
}
|
|
5462
|
-
.cove .cdc-open-viz-module.theme-brown .single-filters--tab .tab--active {
|
|
4998
|
+
.cove .cdc-open-viz-module.theme-brown .single-filters--tab .tab--active:not(.tab--simple) {
|
|
5463
4999
|
border: 1px solid #705043;
|
|
5464
5000
|
border-top: 3px solid #705043;
|
|
5465
5001
|
border-bottom: none;
|
|
5466
5002
|
}
|
|
5467
|
-
.cove .cdc-open-viz-module.theme-brown .single-filters--tab .tab:not(.tab--active) {
|
|
5003
|
+
.cove .cdc-open-viz-module.theme-brown .single-filters--tab .tab:not(.tab--active):not(.tab--simple) {
|
|
5468
5004
|
border-bottom: 1px solid #705043;
|
|
5469
5005
|
}
|
|
5470
5006
|
.cove .cdc-open-viz-module.theme-brown .single-filters--pill .pill--active {
|
|
@@ -5474,12 +5010,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
5474
5010
|
.cove .cdc-open-viz-module.theme-brown .filters-section button.cove-button:not([disabled]) {
|
|
5475
5011
|
background-color: #705043 !important;
|
|
5476
5012
|
}
|
|
5477
|
-
.cove .cdc-open-viz-module .theme-brown .single-filters--tab .tab--active {
|
|
5013
|
+
.cove .cdc-open-viz-module .theme-brown .single-filters--tab .tab--active:not(.tab--simple) {
|
|
5478
5014
|
border: 1px solid #705043;
|
|
5479
5015
|
border-top: 3px solid #705043;
|
|
5480
5016
|
border-bottom: none;
|
|
5481
5017
|
}
|
|
5482
|
-
.cove .cdc-open-viz-module .theme-brown .single-filters--tab .tab:not(.tab--active) {
|
|
5018
|
+
.cove .cdc-open-viz-module .theme-brown .single-filters--tab .tab:not(.tab--active):not(.tab--simple) {
|
|
5483
5019
|
border-bottom: 1px solid #705043;
|
|
5484
5020
|
}
|
|
5485
5021
|
.cove .cdc-open-viz-module .theme-brown .single-filters--pill .pill--active {
|
|
@@ -5492,12 +5028,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
5492
5028
|
.cove .cdc-open-viz-module .theme-brown .apply:not([disabled]) {
|
|
5493
5029
|
background-color: #705043 !important;
|
|
5494
5030
|
}
|
|
5495
|
-
.cove .cdc-open-viz-module.theme-cyan .single-filters--tab .tab--active {
|
|
5031
|
+
.cove .cdc-open-viz-module.theme-cyan .single-filters--tab .tab--active:not(.tab--simple) {
|
|
5496
5032
|
border: 1px solid #007B91;
|
|
5497
5033
|
border-top: 3px solid #007B91;
|
|
5498
5034
|
border-bottom: none;
|
|
5499
5035
|
}
|
|
5500
|
-
.cove .cdc-open-viz-module.theme-cyan .single-filters--tab .tab:not(.tab--active) {
|
|
5036
|
+
.cove .cdc-open-viz-module.theme-cyan .single-filters--tab .tab:not(.tab--active):not(.tab--simple) {
|
|
5501
5037
|
border-bottom: 1px solid #007B91;
|
|
5502
5038
|
}
|
|
5503
5039
|
.cove .cdc-open-viz-module.theme-cyan .single-filters--pill .pill--active {
|
|
@@ -5507,12 +5043,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
5507
5043
|
.cove .cdc-open-viz-module.theme-cyan .filters-section button.cove-button:not([disabled]) {
|
|
5508
5044
|
background-color: #007B91 !important;
|
|
5509
5045
|
}
|
|
5510
|
-
.cove .cdc-open-viz-module .theme-cyan .single-filters--tab .tab--active {
|
|
5046
|
+
.cove .cdc-open-viz-module .theme-cyan .single-filters--tab .tab--active:not(.tab--simple) {
|
|
5511
5047
|
border: 1px solid #007B91;
|
|
5512
5048
|
border-top: 3px solid #007B91;
|
|
5513
5049
|
border-bottom: none;
|
|
5514
5050
|
}
|
|
5515
|
-
.cove .cdc-open-viz-module .theme-cyan .single-filters--tab .tab:not(.tab--active) {
|
|
5051
|
+
.cove .cdc-open-viz-module .theme-cyan .single-filters--tab .tab:not(.tab--active):not(.tab--simple) {
|
|
5516
5052
|
border-bottom: 1px solid #007B91;
|
|
5517
5053
|
}
|
|
5518
5054
|
.cove .cdc-open-viz-module .theme-cyan .single-filters--pill .pill--active {
|
|
@@ -5525,12 +5061,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
5525
5061
|
.cove .cdc-open-viz-module .theme-cyan .apply:not([disabled]) {
|
|
5526
5062
|
background-color: #007B91 !important;
|
|
5527
5063
|
}
|
|
5528
|
-
.cove .cdc-open-viz-module.theme-green .single-filters--tab .tab--active {
|
|
5064
|
+
.cove .cdc-open-viz-module.theme-green .single-filters--tab .tab--active:not(.tab--simple) {
|
|
5529
5065
|
border: 1px solid #4b830d;
|
|
5530
5066
|
border-top: 3px solid #4b830d;
|
|
5531
5067
|
border-bottom: none;
|
|
5532
5068
|
}
|
|
5533
|
-
.cove .cdc-open-viz-module.theme-green .single-filters--tab .tab:not(.tab--active) {
|
|
5069
|
+
.cove .cdc-open-viz-module.theme-green .single-filters--tab .tab:not(.tab--active):not(.tab--simple) {
|
|
5534
5070
|
border-bottom: 1px solid #4b830d;
|
|
5535
5071
|
}
|
|
5536
5072
|
.cove .cdc-open-viz-module.theme-green .single-filters--pill .pill--active {
|
|
@@ -5540,12 +5076,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
5540
5076
|
.cove .cdc-open-viz-module.theme-green .filters-section button.cove-button:not([disabled]) {
|
|
5541
5077
|
background-color: #4b830d !important;
|
|
5542
5078
|
}
|
|
5543
|
-
.cove .cdc-open-viz-module .theme-green .single-filters--tab .tab--active {
|
|
5079
|
+
.cove .cdc-open-viz-module .theme-green .single-filters--tab .tab--active:not(.tab--simple) {
|
|
5544
5080
|
border: 1px solid #4b830d;
|
|
5545
5081
|
border-top: 3px solid #4b830d;
|
|
5546
5082
|
border-bottom: none;
|
|
5547
5083
|
}
|
|
5548
|
-
.cove .cdc-open-viz-module .theme-green .single-filters--tab .tab:not(.tab--active) {
|
|
5084
|
+
.cove .cdc-open-viz-module .theme-green .single-filters--tab .tab:not(.tab--active):not(.tab--simple) {
|
|
5549
5085
|
border-bottom: 1px solid #4b830d;
|
|
5550
5086
|
}
|
|
5551
5087
|
.cove .cdc-open-viz-module .theme-green .single-filters--pill .pill--active {
|
|
@@ -5558,12 +5094,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
5558
5094
|
.cove .cdc-open-viz-module .theme-green .apply:not([disabled]) {
|
|
5559
5095
|
background-color: #4b830d !important;
|
|
5560
5096
|
}
|
|
5561
|
-
.cove .cdc-open-viz-module.theme-indigo .single-filters--tab .tab--active {
|
|
5097
|
+
.cove .cdc-open-viz-module.theme-indigo .single-filters--tab .tab--active:not(.tab--simple) {
|
|
5562
5098
|
border: 1px solid #26418f;
|
|
5563
5099
|
border-top: 3px solid #26418f;
|
|
5564
5100
|
border-bottom: none;
|
|
5565
5101
|
}
|
|
5566
|
-
.cove .cdc-open-viz-module.theme-indigo .single-filters--tab .tab:not(.tab--active) {
|
|
5102
|
+
.cove .cdc-open-viz-module.theme-indigo .single-filters--tab .tab:not(.tab--active):not(.tab--simple) {
|
|
5567
5103
|
border-bottom: 1px solid #26418f;
|
|
5568
5104
|
}
|
|
5569
5105
|
.cove .cdc-open-viz-module.theme-indigo .single-filters--pill .pill--active {
|
|
@@ -5573,12 +5109,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
5573
5109
|
.cove .cdc-open-viz-module.theme-indigo .filters-section button.cove-button:not([disabled]) {
|
|
5574
5110
|
background-color: #26418f !important;
|
|
5575
5111
|
}
|
|
5576
|
-
.cove .cdc-open-viz-module .theme-indigo .single-filters--tab .tab--active {
|
|
5112
|
+
.cove .cdc-open-viz-module .theme-indigo .single-filters--tab .tab--active:not(.tab--simple) {
|
|
5577
5113
|
border: 1px solid #26418f;
|
|
5578
5114
|
border-top: 3px solid #26418f;
|
|
5579
5115
|
border-bottom: none;
|
|
5580
5116
|
}
|
|
5581
|
-
.cove .cdc-open-viz-module .theme-indigo .single-filters--tab .tab:not(.tab--active) {
|
|
5117
|
+
.cove .cdc-open-viz-module .theme-indigo .single-filters--tab .tab:not(.tab--active):not(.tab--simple) {
|
|
5582
5118
|
border-bottom: 1px solid #26418f;
|
|
5583
5119
|
}
|
|
5584
5120
|
.cove .cdc-open-viz-module .theme-indigo .single-filters--pill .pill--active {
|
|
@@ -5591,12 +5127,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
5591
5127
|
.cove .cdc-open-viz-module .theme-indigo .apply:not([disabled]) {
|
|
5592
5128
|
background-color: #26418f !important;
|
|
5593
5129
|
}
|
|
5594
|
-
.cove .cdc-open-viz-module.theme-orange .single-filters--tab .tab--active {
|
|
5130
|
+
.cove .cdc-open-viz-module.theme-orange .single-filters--tab .tab--active:not(.tab--simple) {
|
|
5595
5131
|
border: 1px solid #bb4d00;
|
|
5596
5132
|
border-top: 3px solid #bb4d00;
|
|
5597
5133
|
border-bottom: none;
|
|
5598
5134
|
}
|
|
5599
|
-
.cove .cdc-open-viz-module.theme-orange .single-filters--tab .tab:not(.tab--active) {
|
|
5135
|
+
.cove .cdc-open-viz-module.theme-orange .single-filters--tab .tab:not(.tab--active):not(.tab--simple) {
|
|
5600
5136
|
border-bottom: 1px solid #bb4d00;
|
|
5601
5137
|
}
|
|
5602
5138
|
.cove .cdc-open-viz-module.theme-orange .single-filters--pill .pill--active {
|
|
@@ -5606,12 +5142,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
5606
5142
|
.cove .cdc-open-viz-module.theme-orange .filters-section button.cove-button:not([disabled]) {
|
|
5607
5143
|
background-color: #bb4d00 !important;
|
|
5608
5144
|
}
|
|
5609
|
-
.cove .cdc-open-viz-module .theme-orange .single-filters--tab .tab--active {
|
|
5145
|
+
.cove .cdc-open-viz-module .theme-orange .single-filters--tab .tab--active:not(.tab--simple) {
|
|
5610
5146
|
border: 1px solid #bb4d00;
|
|
5611
5147
|
border-top: 3px solid #bb4d00;
|
|
5612
5148
|
border-bottom: none;
|
|
5613
5149
|
}
|
|
5614
|
-
.cove .cdc-open-viz-module .theme-orange .single-filters--tab .tab:not(.tab--active) {
|
|
5150
|
+
.cove .cdc-open-viz-module .theme-orange .single-filters--tab .tab:not(.tab--active):not(.tab--simple) {
|
|
5615
5151
|
border-bottom: 1px solid #bb4d00;
|
|
5616
5152
|
}
|
|
5617
5153
|
.cove .cdc-open-viz-module .theme-orange .single-filters--pill .pill--active {
|
|
@@ -5624,12 +5160,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
5624
5160
|
.cove .cdc-open-viz-module .theme-orange .apply:not([disabled]) {
|
|
5625
5161
|
background-color: #bb4d00 !important;
|
|
5626
5162
|
}
|
|
5627
|
-
.cove .cdc-open-viz-module.theme-pink .single-filters--tab .tab--active {
|
|
5163
|
+
.cove .cdc-open-viz-module.theme-pink .single-filters--tab .tab--active:not(.tab--simple) {
|
|
5628
5164
|
border: 1px solid #af4448;
|
|
5629
5165
|
border-top: 3px solid #af4448;
|
|
5630
5166
|
border-bottom: none;
|
|
5631
5167
|
}
|
|
5632
|
-
.cove .cdc-open-viz-module.theme-pink .single-filters--tab .tab:not(.tab--active) {
|
|
5168
|
+
.cove .cdc-open-viz-module.theme-pink .single-filters--tab .tab:not(.tab--active):not(.tab--simple) {
|
|
5633
5169
|
border-bottom: 1px solid #af4448;
|
|
5634
5170
|
}
|
|
5635
5171
|
.cove .cdc-open-viz-module.theme-pink .single-filters--pill .pill--active {
|
|
@@ -5639,12 +5175,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
5639
5175
|
.cove .cdc-open-viz-module.theme-pink .filters-section button.cove-button:not([disabled]) {
|
|
5640
5176
|
background-color: #af4448 !important;
|
|
5641
5177
|
}
|
|
5642
|
-
.cove .cdc-open-viz-module .theme-pink .single-filters--tab .tab--active {
|
|
5178
|
+
.cove .cdc-open-viz-module .theme-pink .single-filters--tab .tab--active:not(.tab--simple) {
|
|
5643
5179
|
border: 1px solid #af4448;
|
|
5644
5180
|
border-top: 3px solid #af4448;
|
|
5645
5181
|
border-bottom: none;
|
|
5646
5182
|
}
|
|
5647
|
-
.cove .cdc-open-viz-module .theme-pink .single-filters--tab .tab:not(.tab--active) {
|
|
5183
|
+
.cove .cdc-open-viz-module .theme-pink .single-filters--tab .tab:not(.tab--active):not(.tab--simple) {
|
|
5648
5184
|
border-bottom: 1px solid #af4448;
|
|
5649
5185
|
}
|
|
5650
5186
|
.cove .cdc-open-viz-module .theme-pink .single-filters--pill .pill--active {
|
|
@@ -5657,12 +5193,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
5657
5193
|
.cove .cdc-open-viz-module .theme-pink .apply:not([disabled]) {
|
|
5658
5194
|
background-color: #af4448 !important;
|
|
5659
5195
|
}
|
|
5660
|
-
.cove .cdc-open-viz-module.theme-purple .single-filters--tab .tab--active {
|
|
5196
|
+
.cove .cdc-open-viz-module.theme-purple .single-filters--tab .tab--active:not(.tab--simple) {
|
|
5661
5197
|
border: 1px solid #712177;
|
|
5662
5198
|
border-top: 3px solid #712177;
|
|
5663
5199
|
border-bottom: none;
|
|
5664
5200
|
}
|
|
5665
|
-
.cove .cdc-open-viz-module.theme-purple .single-filters--tab .tab:not(.tab--active) {
|
|
5201
|
+
.cove .cdc-open-viz-module.theme-purple .single-filters--tab .tab:not(.tab--active):not(.tab--simple) {
|
|
5666
5202
|
border-bottom: 1px solid #712177;
|
|
5667
5203
|
}
|
|
5668
5204
|
.cove .cdc-open-viz-module.theme-purple .single-filters--pill .pill--active {
|
|
@@ -5672,12 +5208,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
5672
5208
|
.cove .cdc-open-viz-module.theme-purple .filters-section button.cove-button:not([disabled]) {
|
|
5673
5209
|
background-color: #712177 !important;
|
|
5674
5210
|
}
|
|
5675
|
-
.cove .cdc-open-viz-module .theme-purple .single-filters--tab .tab--active {
|
|
5211
|
+
.cove .cdc-open-viz-module .theme-purple .single-filters--tab .tab--active:not(.tab--simple) {
|
|
5676
5212
|
border: 1px solid #712177;
|
|
5677
5213
|
border-top: 3px solid #712177;
|
|
5678
5214
|
border-bottom: none;
|
|
5679
5215
|
}
|
|
5680
|
-
.cove .cdc-open-viz-module .theme-purple .single-filters--tab .tab:not(.tab--active) {
|
|
5216
|
+
.cove .cdc-open-viz-module .theme-purple .single-filters--tab .tab:not(.tab--active):not(.tab--simple) {
|
|
5681
5217
|
border-bottom: 1px solid #712177;
|
|
5682
5218
|
}
|
|
5683
5219
|
.cove .cdc-open-viz-module .theme-purple .single-filters--pill .pill--active {
|
|
@@ -5690,12 +5226,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
5690
5226
|
.cove .cdc-open-viz-module .theme-purple .apply:not([disabled]) {
|
|
5691
5227
|
background-color: #712177 !important;
|
|
5692
5228
|
}
|
|
5693
|
-
.cove .cdc-open-viz-module.theme-slate .single-filters--tab .tab--active {
|
|
5229
|
+
.cove .cdc-open-viz-module.theme-slate .single-filters--tab .tab--active:not(.tab--simple) {
|
|
5694
5230
|
border: 1px solid #29434e;
|
|
5695
5231
|
border-top: 3px solid #29434e;
|
|
5696
5232
|
border-bottom: none;
|
|
5697
5233
|
}
|
|
5698
|
-
.cove .cdc-open-viz-module.theme-slate .single-filters--tab .tab:not(.tab--active) {
|
|
5234
|
+
.cove .cdc-open-viz-module.theme-slate .single-filters--tab .tab:not(.tab--active):not(.tab--simple) {
|
|
5699
5235
|
border-bottom: 1px solid #29434e;
|
|
5700
5236
|
}
|
|
5701
5237
|
.cove .cdc-open-viz-module.theme-slate .single-filters--pill .pill--active {
|
|
@@ -5705,12 +5241,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
5705
5241
|
.cove .cdc-open-viz-module.theme-slate .filters-section button.cove-button:not([disabled]) {
|
|
5706
5242
|
background-color: #29434e !important;
|
|
5707
5243
|
}
|
|
5708
|
-
.cove .cdc-open-viz-module .theme-slate .single-filters--tab .tab--active {
|
|
5244
|
+
.cove .cdc-open-viz-module .theme-slate .single-filters--tab .tab--active:not(.tab--simple) {
|
|
5709
5245
|
border: 1px solid #29434e;
|
|
5710
5246
|
border-top: 3px solid #29434e;
|
|
5711
5247
|
border-bottom: none;
|
|
5712
5248
|
}
|
|
5713
|
-
.cove .cdc-open-viz-module .theme-slate .single-filters--tab .tab:not(.tab--active) {
|
|
5249
|
+
.cove .cdc-open-viz-module .theme-slate .single-filters--tab .tab:not(.tab--active):not(.tab--simple) {
|
|
5714
5250
|
border-bottom: 1px solid #29434e;
|
|
5715
5251
|
}
|
|
5716
5252
|
.cove .cdc-open-viz-module .theme-slate .single-filters--pill .pill--active {
|
|
@@ -5723,12 +5259,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
5723
5259
|
.cove .cdc-open-viz-module .theme-slate .apply:not([disabled]) {
|
|
5724
5260
|
background-color: #29434e !important;
|
|
5725
5261
|
}
|
|
5726
|
-
.cove .cdc-open-viz-module.theme-teal .single-filters--tab .tab--active {
|
|
5262
|
+
.cove .cdc-open-viz-module.theme-teal .single-filters--tab .tab--active:not(.tab--simple) {
|
|
5727
5263
|
border: 1px solid #00695c;
|
|
5728
5264
|
border-top: 3px solid #00695c;
|
|
5729
5265
|
border-bottom: none;
|
|
5730
5266
|
}
|
|
5731
|
-
.cove .cdc-open-viz-module.theme-teal .single-filters--tab .tab:not(.tab--active) {
|
|
5267
|
+
.cove .cdc-open-viz-module.theme-teal .single-filters--tab .tab:not(.tab--active):not(.tab--simple) {
|
|
5732
5268
|
border-bottom: 1px solid #00695c;
|
|
5733
5269
|
}
|
|
5734
5270
|
.cove .cdc-open-viz-module.theme-teal .single-filters--pill .pill--active {
|
|
@@ -5738,12 +5274,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
5738
5274
|
.cove .cdc-open-viz-module.theme-teal .filters-section button.cove-button:not([disabled]) {
|
|
5739
5275
|
background-color: #00695c !important;
|
|
5740
5276
|
}
|
|
5741
|
-
.cove .cdc-open-viz-module .theme-teal .single-filters--tab .tab--active {
|
|
5277
|
+
.cove .cdc-open-viz-module .theme-teal .single-filters--tab .tab--active:not(.tab--simple) {
|
|
5742
5278
|
border: 1px solid #00695c;
|
|
5743
5279
|
border-top: 3px solid #00695c;
|
|
5744
5280
|
border-bottom: none;
|
|
5745
5281
|
}
|
|
5746
|
-
.cove .cdc-open-viz-module .theme-teal .single-filters--tab .tab:not(.tab--active) {
|
|
5282
|
+
.cove .cdc-open-viz-module .theme-teal .single-filters--tab .tab:not(.tab--active):not(.tab--simple) {
|
|
5747
5283
|
border-bottom: 1px solid #00695c;
|
|
5748
5284
|
}
|
|
5749
5285
|
.cove .cdc-open-viz-module .theme-teal .single-filters--pill .pill--active {
|
|
@@ -5758,13 +5294,14 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
5758
5294
|
}
|
|
5759
5295
|
.cove .cove {
|
|
5760
5296
|
margin: 0;
|
|
5761
|
-
font:
|
|
5297
|
+
font-family: var(--app-font-main);
|
|
5298
|
+
font-size: 1em;
|
|
5299
|
+
line-height: 1.5;
|
|
5762
5300
|
font-weight: 400;
|
|
5763
5301
|
font-style: normal;
|
|
5764
5302
|
line-height: 1.4;
|
|
5765
5303
|
color: #333;
|
|
5766
5304
|
text-rendering: optimizeLegibility;
|
|
5767
|
-
-webkit-font-smoothing: antialiased;
|
|
5768
5305
|
}
|
|
5769
5306
|
.cove .cove small {
|
|
5770
5307
|
display: block;
|