@cdc/core 4.25.3-6 → 4.25.5-1
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/assets/icon-close.svg +1 -1
- package/components/AdvancedEditor/AdvancedEditor.tsx +11 -9
- package/components/DataTable/DataTable.tsx +50 -31
- package/components/DataTable/components/CellAnchor.tsx +1 -1
- package/components/DataTable/components/ChartHeader.tsx +3 -2
- package/components/DataTable/components/MapHeader.tsx +1 -0
- package/components/DataTable/helpers/chartCellMatrix.tsx +2 -1
- package/components/DataTable/helpers/getChartCellValue.ts +11 -5
- package/components/DataTable/helpers/getDataSeriesColumns.ts +7 -3
- package/components/DataTable/helpers/mapCellMatrix.tsx +80 -39
- package/components/DataTable/helpers/tests/mapCellMatrix.test.ts +80 -0
- package/components/DownloadButton.tsx +17 -2
- package/components/EditorPanel/DataTableEditor.tsx +29 -19
- package/components/EditorPanel/Inputs.tsx +13 -4
- package/components/EditorPanel/VizFilterEditor/NestedDropdownEditor.tsx +2 -1
- package/components/EditorPanel/VizFilterEditor/VizFilterEditor.tsx +26 -1
- package/components/Filters/Filters.tsx +172 -421
- package/components/Filters/components/Dropdown.tsx +39 -0
- package/components/Filters/components/Tabs.tsx +82 -0
- package/components/Filters/helpers/getChangedFilters.ts +31 -0
- package/components/Filters/helpers/getNestedOptions.ts +2 -2
- package/components/Filters/helpers/getNewRuntime.ts +35 -0
- package/components/Filters/helpers/handleSorting.ts +2 -2
- package/components/Filters/helpers/tests/getChangedFilters.test.ts +92 -0
- package/components/Filters/helpers/tests/getNestedOptions.test.ts +31 -0
- package/components/Filters/helpers/tests/getNewRuntime.test.ts +82 -0
- package/components/Filters/index.ts +1 -1
- package/components/Layout/components/Visualization/index.tsx +3 -3
- package/components/Layout/components/Visualization/visualizations.scss +1 -1
- package/components/Legend/Legend.Gradient.tsx +66 -23
- package/components/MediaControls.jsx +14 -7
- package/components/MultiSelect/multiselect.styles.css +2 -0
- package/components/NestedDropdown/NestedDropdown.tsx +2 -2
- package/components/RichTooltip/RichTooltip.tsx +37 -0
- package/components/RichTooltip/richTooltip.css +16 -0
- package/components/Table/Table.tsx +142 -142
- package/components/Table/components/Row.tsx +1 -1
- package/components/Table/table.styles.css +10 -0
- package/components/_stories/DataTable.stories.tsx +9 -2
- package/components/_stories/Table.stories.tsx +1 -1
- package/components/_stories/styles.scss +0 -4
- package/components/elements/Button.jsx +4 -2
- package/components/ui/Accordion.jsx +8 -1
- package/components/ui/Title/index.tsx +4 -1
- package/components/ui/Title/{Title.scss → title.styles.css} +0 -2
- package/components/ui/_stories/Colors.stories.mdx +220 -0
- package/components/ui/_stories/IconGallery.stories.mdx +14 -0
- package/components/ui/_stories/Title.stories.tsx +29 -4
- package/components/ui/accordion.styles.css +3 -0
- package/data/colorPalettes.js +0 -1
- package/dist/cove-main.css +101 -159
- package/dist/cove-main.css.map +1 -1
- package/helpers/DataTransform.ts +2 -2
- package/helpers/addValuesToFilters.ts +1 -1
- package/helpers/constants.ts +6 -0
- package/helpers/cove/accessibility.ts +7 -8
- package/helpers/coveUpdateWorker.ts +17 -8
- package/helpers/filterOrderOptions.ts +17 -0
- package/helpers/formatConfigBeforeSave.ts +30 -8
- package/helpers/isNumber.ts +20 -0
- package/helpers/isRightAlignedTableValue.js +6 -2
- package/helpers/isSolr.ts +13 -0
- package/helpers/labelHash.ts +21 -0
- package/helpers/pivotData.ts +30 -18
- package/helpers/tests/formatConfigBeforeSave.test.ts +68 -0
- package/helpers/tests/pivotData.test.ts +96 -18
- package/helpers/ver/4.25.3.ts +43 -0
- package/helpers/ver/4.25.4.ts +33 -0
- package/helpers/ver/tests/4.25.4.test.ts +24 -0
- package/helpers/ver/tests/versionNeedsUpdate.test.ts +28 -0
- package/helpers/viewports.ts +4 -0
- package/package.json +2 -3
- package/styles/_global-variables.scss +5 -1
- package/styles/_global.scss +18 -9
- package/styles/_reset.scss +0 -6
- package/styles/base.scss +42 -0
- package/styles/filters.scss +5 -11
- package/styles/v2/components/button.scss +48 -12
- package/styles/v2/main.scss +0 -5
- package/styles/v2/themes/_color-definitions.scss +1 -4
- package/types/General.ts +1 -1
- package/types/Legend.ts +1 -0
- package/types/Table.ts +2 -0
- package/LICENSE +0 -201
- package/components/ui/_stories/Colors.stories.tsx +0 -92
- package/components/ui/_stories/Icon.stories.tsx +0 -29
- package/helpers/cove/fontSettings.ts +0 -2
- package/helpers/isNumber.js +0 -24
- package/helpers/isNumberLog.js +0 -18
- package/helpers/isSolr.js +0 -13
package/dist/cove-main.css
CHANGED
|
@@ -8,10 +8,6 @@
|
|
|
8
8
|
font-style: normal;
|
|
9
9
|
text-rendering: optimizeLegibility;
|
|
10
10
|
}
|
|
11
|
-
.cdc-open-viz-module :focus,
|
|
12
|
-
.cdc-open-viz-module [tabindex]:focus-visible {
|
|
13
|
-
outline: 2px solid rgba(255, 102, 1, 0.9) !important;
|
|
14
|
-
}
|
|
15
11
|
.cdc-open-viz-module .outline-none {
|
|
16
12
|
outline: none !important;
|
|
17
13
|
}
|
|
@@ -129,6 +125,7 @@
|
|
|
129
125
|
--darkGray: #333;
|
|
130
126
|
--red: #d8000c;
|
|
131
127
|
--white: #fff;
|
|
128
|
+
--silver: #eee;
|
|
132
129
|
--primary: #005eaa;
|
|
133
130
|
--secondary: #88c3ea;
|
|
134
131
|
--tertiary: #c0e9ff;
|
|
@@ -177,6 +174,7 @@
|
|
|
177
174
|
--cool-gray-50: #71767a;
|
|
178
175
|
--cool-gray-30: #a9aeb1;
|
|
179
176
|
--cool-gray-10: #dfe1e2;
|
|
177
|
+
--colors-blue-vivid-60: #005ea2;
|
|
180
178
|
}
|
|
181
179
|
|
|
182
180
|
:root {
|
|
@@ -200,12 +198,15 @@
|
|
|
200
198
|
--filter-buttons-font-size: 0.889rem;
|
|
201
199
|
--superTitle-font-size: 0.833rem;
|
|
202
200
|
--title-font-size: 1.222rem;
|
|
201
|
+
--territory-label-font-size: 0.809rem;
|
|
202
|
+
--territory-label-font-size-mobile: 0.556rem;
|
|
203
203
|
}
|
|
204
204
|
|
|
205
205
|
.filters-section__wrapper {
|
|
206
206
|
flex-wrap: wrap;
|
|
207
207
|
display: flex;
|
|
208
|
-
gap:
|
|
208
|
+
gap: 1rem 1.5rem;
|
|
209
|
+
margin-bottom: 2rem;
|
|
209
210
|
}
|
|
210
211
|
.filters-section__wrapper label {
|
|
211
212
|
display: inherit;
|
|
@@ -221,9 +222,6 @@
|
|
|
221
222
|
width: 100%;
|
|
222
223
|
font-size: var(--filter-buttons-font-size);
|
|
223
224
|
}
|
|
224
|
-
.filters-section__buttons .apply {
|
|
225
|
-
margin-right: 10px;
|
|
226
|
-
}
|
|
227
225
|
|
|
228
226
|
div.single-filters label {
|
|
229
227
|
width: 100%;
|
|
@@ -270,6 +268,7 @@ div.single-filters > select.cove-form-select, div.single-filters > div.nested-dr
|
|
|
270
268
|
.tab-simple-container .tab.tab--simple {
|
|
271
269
|
background: none;
|
|
272
270
|
border: none;
|
|
271
|
+
border-bottom: 0.3rem solid transparent;
|
|
273
272
|
font-family: var(--app-font-secondary);
|
|
274
273
|
font-size: 1rem;
|
|
275
274
|
font-weight: 300;
|
|
@@ -278,10 +277,6 @@ div.single-filters > select.cove-form-select, div.single-filters > div.nested-dr
|
|
|
278
277
|
cursor: pointer;
|
|
279
278
|
border-radius: 6px 6px 0 0;
|
|
280
279
|
}
|
|
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
280
|
.tab-simple-container .tab.tab--simple:hover {
|
|
286
281
|
color: var(--colors-blue-vivid-60, #005ea2);
|
|
287
282
|
background: var(--colors-cyan-cool-10, #eff9fa);
|
|
@@ -295,13 +290,13 @@ div.single-filters > select.cove-form-select, div.single-filters > div.nested-dr
|
|
|
295
290
|
}
|
|
296
291
|
.tab-simple-container .tab.tab--simple.tab--active {
|
|
297
292
|
font-weight: 500;
|
|
298
|
-
border-bottom:
|
|
293
|
+
border-bottom-color: var(--colors-blue-vivid-60, #005ea2);
|
|
299
294
|
z-index: 1;
|
|
300
295
|
}
|
|
301
296
|
|
|
302
297
|
.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
298
|
font-size: 0.778em;
|
|
304
|
-
padding: 0.5rem 0.
|
|
299
|
+
padding: 0.5rem 0.73em;
|
|
305
300
|
}
|
|
306
301
|
|
|
307
302
|
.single-filters--pill {
|
|
@@ -466,9 +461,6 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
466
461
|
border: rgba(0, 0, 0, 0.7) 1px solid !important;
|
|
467
462
|
outline: 0;
|
|
468
463
|
}
|
|
469
|
-
.cdc-open-viz-module textarea {
|
|
470
|
-
min-height: 140px;
|
|
471
|
-
}
|
|
472
464
|
.cdc-open-viz-module .input-group-text {
|
|
473
465
|
border-top-left-radius: 0;
|
|
474
466
|
border-bottom-left-radius: 0;
|
|
@@ -535,12 +527,23 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
535
527
|
font-family: var(--app-font-secondary);
|
|
536
528
|
font-weight: 300;
|
|
537
529
|
font-size: var(--filter-select-font-size);
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
border
|
|
542
|
-
|
|
543
|
-
|
|
530
|
+
line-height: normal;
|
|
531
|
+
padding-right: 3rem;
|
|
532
|
+
border-radius: 0.333rem;
|
|
533
|
+
border: 1px solid var(--colors-gray-cool-10);
|
|
534
|
+
color: var(--colors-primary-text);
|
|
535
|
+
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>');
|
|
536
|
+
background-repeat: no-repeat;
|
|
537
|
+
background-position: right 0.5rem center;
|
|
538
|
+
background-size: 1em;
|
|
539
|
+
appearance: none;
|
|
540
|
+
-webkit-appearance: none;
|
|
541
|
+
-moz-appearance: none;
|
|
542
|
+
cursor: pointer;
|
|
543
|
+
}
|
|
544
|
+
.cdc-open-viz-module .cove-form-select:focus-visible {
|
|
545
|
+
outline: 2px dashed var(--colors-blue-vivid-60, #005ea2) !important;
|
|
546
|
+
outline-offset: 2px;
|
|
544
547
|
}
|
|
545
548
|
.cdc-open-viz-module .download-buttons {
|
|
546
549
|
display: flex;
|
|
@@ -693,6 +696,48 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
693
696
|
.cdc-open-viz-module .ms-auto {
|
|
694
697
|
margin-left: auto !important;
|
|
695
698
|
}
|
|
699
|
+
.cdc-open-viz-module .pe-0 {
|
|
700
|
+
padding-right: 0 !important;
|
|
701
|
+
}
|
|
702
|
+
.cdc-open-viz-module .pe-1 {
|
|
703
|
+
padding-right: 0.25rem !important;
|
|
704
|
+
}
|
|
705
|
+
.cdc-open-viz-module .pe-2 {
|
|
706
|
+
padding-right: 0.5rem !important;
|
|
707
|
+
}
|
|
708
|
+
.cdc-open-viz-module .pe-3 {
|
|
709
|
+
padding-right: 1rem !important;
|
|
710
|
+
}
|
|
711
|
+
.cdc-open-viz-module .pe-4 {
|
|
712
|
+
padding-right: 1.5rem !important;
|
|
713
|
+
}
|
|
714
|
+
.cdc-open-viz-module .pe-5 {
|
|
715
|
+
padding-right: 3rem !important;
|
|
716
|
+
}
|
|
717
|
+
.cdc-open-viz-module .pe-auto {
|
|
718
|
+
padding-right: auto !important;
|
|
719
|
+
}
|
|
720
|
+
.cdc-open-viz-module .ps-0 {
|
|
721
|
+
padding-left: 0 !important;
|
|
722
|
+
}
|
|
723
|
+
.cdc-open-viz-module .ps-1 {
|
|
724
|
+
padding-left: 0.25rem !important;
|
|
725
|
+
}
|
|
726
|
+
.cdc-open-viz-module .ps-2 {
|
|
727
|
+
padding-left: 0.5rem !important;
|
|
728
|
+
}
|
|
729
|
+
.cdc-open-viz-module .ps-3 {
|
|
730
|
+
padding-left: 1rem !important;
|
|
731
|
+
}
|
|
732
|
+
.cdc-open-viz-module .ps-4 {
|
|
733
|
+
padding-left: 1.5rem !important;
|
|
734
|
+
}
|
|
735
|
+
.cdc-open-viz-module .ps-5 {
|
|
736
|
+
padding-left: 3rem !important;
|
|
737
|
+
}
|
|
738
|
+
.cdc-open-viz-module .ps-auto {
|
|
739
|
+
padding-left: auto !important;
|
|
740
|
+
}
|
|
696
741
|
|
|
697
742
|
.color-palette li.theme-purple,
|
|
698
743
|
.btn.theme-purple {
|
|
@@ -1500,9 +1545,6 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
1500
1545
|
background-color: #fbab18;
|
|
1501
1546
|
color: #fff;
|
|
1502
1547
|
}
|
|
1503
|
-
.cdc-open-viz-module.theme-amber .filters-section button.cove-button:not([disabled]) {
|
|
1504
|
-
background-color: #fbab18 !important;
|
|
1505
|
-
}
|
|
1506
1548
|
.cdc-open-viz-module .theme-amber .single-filters--tab .tab--active:not(.tab--simple) {
|
|
1507
1549
|
border: 1px solid #fbab18;
|
|
1508
1550
|
border-top: 3px solid #fbab18;
|
|
@@ -1519,7 +1561,7 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
1519
1561
|
outline: 2px solid #fbab18;
|
|
1520
1562
|
}
|
|
1521
1563
|
.cdc-open-viz-module .theme-amber .apply:not([disabled]) {
|
|
1522
|
-
background-color: #fbab18
|
|
1564
|
+
background-color: #fbab18;
|
|
1523
1565
|
}
|
|
1524
1566
|
.cdc-open-viz-module.theme-blue .single-filters--tab .tab--active:not(.tab--simple) {
|
|
1525
1567
|
border: 1px solid #005eaa;
|
|
@@ -1533,9 +1575,6 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
1533
1575
|
background-color: #005eaa;
|
|
1534
1576
|
color: #fff;
|
|
1535
1577
|
}
|
|
1536
|
-
.cdc-open-viz-module.theme-blue .filters-section button.cove-button:not([disabled]) {
|
|
1537
|
-
background-color: #005eaa !important;
|
|
1538
|
-
}
|
|
1539
1578
|
.cdc-open-viz-module .theme-blue .single-filters--tab .tab--active:not(.tab--simple) {
|
|
1540
1579
|
border: 1px solid #005eaa;
|
|
1541
1580
|
border-top: 3px solid #005eaa;
|
|
@@ -1552,7 +1591,7 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
1552
1591
|
outline: 2px solid #005eaa;
|
|
1553
1592
|
}
|
|
1554
1593
|
.cdc-open-viz-module .theme-blue .apply:not([disabled]) {
|
|
1555
|
-
background-color: #005eaa
|
|
1594
|
+
background-color: #005eaa;
|
|
1556
1595
|
}
|
|
1557
1596
|
.cdc-open-viz-module.theme-brown .single-filters--tab .tab--active:not(.tab--simple) {
|
|
1558
1597
|
border: 1px solid #705043;
|
|
@@ -1566,9 +1605,6 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
1566
1605
|
background-color: #705043;
|
|
1567
1606
|
color: #fff;
|
|
1568
1607
|
}
|
|
1569
|
-
.cdc-open-viz-module.theme-brown .filters-section button.cove-button:not([disabled]) {
|
|
1570
|
-
background-color: #705043 !important;
|
|
1571
|
-
}
|
|
1572
1608
|
.cdc-open-viz-module .theme-brown .single-filters--tab .tab--active:not(.tab--simple) {
|
|
1573
1609
|
border: 1px solid #705043;
|
|
1574
1610
|
border-top: 3px solid #705043;
|
|
@@ -1585,7 +1621,7 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
1585
1621
|
outline: 2px solid #705043;
|
|
1586
1622
|
}
|
|
1587
1623
|
.cdc-open-viz-module .theme-brown .apply:not([disabled]) {
|
|
1588
|
-
background-color: #705043
|
|
1624
|
+
background-color: #705043;
|
|
1589
1625
|
}
|
|
1590
1626
|
.cdc-open-viz-module.theme-cyan .single-filters--tab .tab--active:not(.tab--simple) {
|
|
1591
1627
|
border: 1px solid #007B91;
|
|
@@ -1599,9 +1635,6 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
1599
1635
|
background-color: #007B91;
|
|
1600
1636
|
color: #fff;
|
|
1601
1637
|
}
|
|
1602
|
-
.cdc-open-viz-module.theme-cyan .filters-section button.cove-button:not([disabled]) {
|
|
1603
|
-
background-color: #007B91 !important;
|
|
1604
|
-
}
|
|
1605
1638
|
.cdc-open-viz-module .theme-cyan .single-filters--tab .tab--active:not(.tab--simple) {
|
|
1606
1639
|
border: 1px solid #007B91;
|
|
1607
1640
|
border-top: 3px solid #007B91;
|
|
@@ -1618,7 +1651,7 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
1618
1651
|
outline: 2px solid #007B91;
|
|
1619
1652
|
}
|
|
1620
1653
|
.cdc-open-viz-module .theme-cyan .apply:not([disabled]) {
|
|
1621
|
-
background-color: #007B91
|
|
1654
|
+
background-color: #007B91;
|
|
1622
1655
|
}
|
|
1623
1656
|
.cdc-open-viz-module.theme-green .single-filters--tab .tab--active:not(.tab--simple) {
|
|
1624
1657
|
border: 1px solid #4b830d;
|
|
@@ -1632,9 +1665,6 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
1632
1665
|
background-color: #4b830d;
|
|
1633
1666
|
color: #fff;
|
|
1634
1667
|
}
|
|
1635
|
-
.cdc-open-viz-module.theme-green .filters-section button.cove-button:not([disabled]) {
|
|
1636
|
-
background-color: #4b830d !important;
|
|
1637
|
-
}
|
|
1638
1668
|
.cdc-open-viz-module .theme-green .single-filters--tab .tab--active:not(.tab--simple) {
|
|
1639
1669
|
border: 1px solid #4b830d;
|
|
1640
1670
|
border-top: 3px solid #4b830d;
|
|
@@ -1651,7 +1681,7 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
1651
1681
|
outline: 2px solid #4b830d;
|
|
1652
1682
|
}
|
|
1653
1683
|
.cdc-open-viz-module .theme-green .apply:not([disabled]) {
|
|
1654
|
-
background-color: #4b830d
|
|
1684
|
+
background-color: #4b830d;
|
|
1655
1685
|
}
|
|
1656
1686
|
.cdc-open-viz-module.theme-indigo .single-filters--tab .tab--active:not(.tab--simple) {
|
|
1657
1687
|
border: 1px solid #26418f;
|
|
@@ -1665,9 +1695,6 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
1665
1695
|
background-color: #26418f;
|
|
1666
1696
|
color: #fff;
|
|
1667
1697
|
}
|
|
1668
|
-
.cdc-open-viz-module.theme-indigo .filters-section button.cove-button:not([disabled]) {
|
|
1669
|
-
background-color: #26418f !important;
|
|
1670
|
-
}
|
|
1671
1698
|
.cdc-open-viz-module .theme-indigo .single-filters--tab .tab--active:not(.tab--simple) {
|
|
1672
1699
|
border: 1px solid #26418f;
|
|
1673
1700
|
border-top: 3px solid #26418f;
|
|
@@ -1684,7 +1711,7 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
1684
1711
|
outline: 2px solid #26418f;
|
|
1685
1712
|
}
|
|
1686
1713
|
.cdc-open-viz-module .theme-indigo .apply:not([disabled]) {
|
|
1687
|
-
background-color: #26418f
|
|
1714
|
+
background-color: #26418f;
|
|
1688
1715
|
}
|
|
1689
1716
|
.cdc-open-viz-module.theme-orange .single-filters--tab .tab--active:not(.tab--simple) {
|
|
1690
1717
|
border: 1px solid #bb4d00;
|
|
@@ -1698,9 +1725,6 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
1698
1725
|
background-color: #bb4d00;
|
|
1699
1726
|
color: #fff;
|
|
1700
1727
|
}
|
|
1701
|
-
.cdc-open-viz-module.theme-orange .filters-section button.cove-button:not([disabled]) {
|
|
1702
|
-
background-color: #bb4d00 !important;
|
|
1703
|
-
}
|
|
1704
1728
|
.cdc-open-viz-module .theme-orange .single-filters--tab .tab--active:not(.tab--simple) {
|
|
1705
1729
|
border: 1px solid #bb4d00;
|
|
1706
1730
|
border-top: 3px solid #bb4d00;
|
|
@@ -1717,7 +1741,7 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
1717
1741
|
outline: 2px solid #bb4d00;
|
|
1718
1742
|
}
|
|
1719
1743
|
.cdc-open-viz-module .theme-orange .apply:not([disabled]) {
|
|
1720
|
-
background-color: #bb4d00
|
|
1744
|
+
background-color: #bb4d00;
|
|
1721
1745
|
}
|
|
1722
1746
|
.cdc-open-viz-module.theme-pink .single-filters--tab .tab--active:not(.tab--simple) {
|
|
1723
1747
|
border: 1px solid #af4448;
|
|
@@ -1731,9 +1755,6 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
1731
1755
|
background-color: #af4448;
|
|
1732
1756
|
color: #fff;
|
|
1733
1757
|
}
|
|
1734
|
-
.cdc-open-viz-module.theme-pink .filters-section button.cove-button:not([disabled]) {
|
|
1735
|
-
background-color: #af4448 !important;
|
|
1736
|
-
}
|
|
1737
1758
|
.cdc-open-viz-module .theme-pink .single-filters--tab .tab--active:not(.tab--simple) {
|
|
1738
1759
|
border: 1px solid #af4448;
|
|
1739
1760
|
border-top: 3px solid #af4448;
|
|
@@ -1750,7 +1771,7 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
1750
1771
|
outline: 2px solid #af4448;
|
|
1751
1772
|
}
|
|
1752
1773
|
.cdc-open-viz-module .theme-pink .apply:not([disabled]) {
|
|
1753
|
-
background-color: #af4448
|
|
1774
|
+
background-color: #af4448;
|
|
1754
1775
|
}
|
|
1755
1776
|
.cdc-open-viz-module.theme-purple .single-filters--tab .tab--active:not(.tab--simple) {
|
|
1756
1777
|
border: 1px solid #712177;
|
|
@@ -1764,9 +1785,6 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
1764
1785
|
background-color: #712177;
|
|
1765
1786
|
color: #fff;
|
|
1766
1787
|
}
|
|
1767
|
-
.cdc-open-viz-module.theme-purple .filters-section button.cove-button:not([disabled]) {
|
|
1768
|
-
background-color: #712177 !important;
|
|
1769
|
-
}
|
|
1770
1788
|
.cdc-open-viz-module .theme-purple .single-filters--tab .tab--active:not(.tab--simple) {
|
|
1771
1789
|
border: 1px solid #712177;
|
|
1772
1790
|
border-top: 3px solid #712177;
|
|
@@ -1783,7 +1801,7 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
1783
1801
|
outline: 2px solid #712177;
|
|
1784
1802
|
}
|
|
1785
1803
|
.cdc-open-viz-module .theme-purple .apply:not([disabled]) {
|
|
1786
|
-
background-color: #712177
|
|
1804
|
+
background-color: #712177;
|
|
1787
1805
|
}
|
|
1788
1806
|
.cdc-open-viz-module.theme-slate .single-filters--tab .tab--active:not(.tab--simple) {
|
|
1789
1807
|
border: 1px solid #29434e;
|
|
@@ -1797,9 +1815,6 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
1797
1815
|
background-color: #29434e;
|
|
1798
1816
|
color: #fff;
|
|
1799
1817
|
}
|
|
1800
|
-
.cdc-open-viz-module.theme-slate .filters-section button.cove-button:not([disabled]) {
|
|
1801
|
-
background-color: #29434e !important;
|
|
1802
|
-
}
|
|
1803
1818
|
.cdc-open-viz-module .theme-slate .single-filters--tab .tab--active:not(.tab--simple) {
|
|
1804
1819
|
border: 1px solid #29434e;
|
|
1805
1820
|
border-top: 3px solid #29434e;
|
|
@@ -1816,7 +1831,7 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
1816
1831
|
outline: 2px solid #29434e;
|
|
1817
1832
|
}
|
|
1818
1833
|
.cdc-open-viz-module .theme-slate .apply:not([disabled]) {
|
|
1819
|
-
background-color: #29434e
|
|
1834
|
+
background-color: #29434e;
|
|
1820
1835
|
}
|
|
1821
1836
|
.cdc-open-viz-module.theme-teal .single-filters--tab .tab--active:not(.tab--simple) {
|
|
1822
1837
|
border: 1px solid #00695c;
|
|
@@ -1830,9 +1845,6 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
1830
1845
|
background-color: #00695c;
|
|
1831
1846
|
color: #fff;
|
|
1832
1847
|
}
|
|
1833
|
-
.cdc-open-viz-module.theme-teal .filters-section button.cove-button:not([disabled]) {
|
|
1834
|
-
background-color: #00695c !important;
|
|
1835
|
-
}
|
|
1836
1848
|
.cdc-open-viz-module .theme-teal .single-filters--tab .tab--active:not(.tab--simple) {
|
|
1837
1849
|
border: 1px solid #00695c;
|
|
1838
1850
|
border-top: 3px solid #00695c;
|
|
@@ -1849,7 +1861,7 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
1849
1861
|
outline: 2px solid #00695c;
|
|
1850
1862
|
}
|
|
1851
1863
|
.cdc-open-viz-module .theme-teal .apply:not([disabled]) {
|
|
1852
|
-
background-color: #00695c
|
|
1864
|
+
background-color: #00695c;
|
|
1853
1865
|
}
|
|
1854
1866
|
|
|
1855
1867
|
:root {
|
|
@@ -3829,9 +3841,6 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
3829
3841
|
background-color: #fbab18;
|
|
3830
3842
|
color: #fff;
|
|
3831
3843
|
}
|
|
3832
|
-
.cdc-open-viz-module.theme-amber .filters-section button.cove-button:not([disabled]) {
|
|
3833
|
-
background-color: #fbab18 !important;
|
|
3834
|
-
}
|
|
3835
3844
|
.cdc-open-viz-module .theme-amber .single-filters--tab .tab--active:not(.tab--simple) {
|
|
3836
3845
|
border: 1px solid #fbab18;
|
|
3837
3846
|
border-top: 3px solid #fbab18;
|
|
@@ -3848,7 +3857,7 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
3848
3857
|
outline: 2px solid #fbab18;
|
|
3849
3858
|
}
|
|
3850
3859
|
.cdc-open-viz-module .theme-amber .apply:not([disabled]) {
|
|
3851
|
-
background-color: #fbab18
|
|
3860
|
+
background-color: #fbab18;
|
|
3852
3861
|
}
|
|
3853
3862
|
.cdc-open-viz-module.theme-blue .single-filters--tab .tab--active:not(.tab--simple) {
|
|
3854
3863
|
border: 1px solid #005eaa;
|
|
@@ -3862,9 +3871,6 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
3862
3871
|
background-color: #005eaa;
|
|
3863
3872
|
color: #fff;
|
|
3864
3873
|
}
|
|
3865
|
-
.cdc-open-viz-module.theme-blue .filters-section button.cove-button:not([disabled]) {
|
|
3866
|
-
background-color: #005eaa !important;
|
|
3867
|
-
}
|
|
3868
3874
|
.cdc-open-viz-module .theme-blue .single-filters--tab .tab--active:not(.tab--simple) {
|
|
3869
3875
|
border: 1px solid #005eaa;
|
|
3870
3876
|
border-top: 3px solid #005eaa;
|
|
@@ -3881,7 +3887,7 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
3881
3887
|
outline: 2px solid #005eaa;
|
|
3882
3888
|
}
|
|
3883
3889
|
.cdc-open-viz-module .theme-blue .apply:not([disabled]) {
|
|
3884
|
-
background-color: #005eaa
|
|
3890
|
+
background-color: #005eaa;
|
|
3885
3891
|
}
|
|
3886
3892
|
.cdc-open-viz-module.theme-brown .single-filters--tab .tab--active:not(.tab--simple) {
|
|
3887
3893
|
border: 1px solid #705043;
|
|
@@ -3895,9 +3901,6 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
3895
3901
|
background-color: #705043;
|
|
3896
3902
|
color: #fff;
|
|
3897
3903
|
}
|
|
3898
|
-
.cdc-open-viz-module.theme-brown .filters-section button.cove-button:not([disabled]) {
|
|
3899
|
-
background-color: #705043 !important;
|
|
3900
|
-
}
|
|
3901
3904
|
.cdc-open-viz-module .theme-brown .single-filters--tab .tab--active:not(.tab--simple) {
|
|
3902
3905
|
border: 1px solid #705043;
|
|
3903
3906
|
border-top: 3px solid #705043;
|
|
@@ -3914,7 +3917,7 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
3914
3917
|
outline: 2px solid #705043;
|
|
3915
3918
|
}
|
|
3916
3919
|
.cdc-open-viz-module .theme-brown .apply:not([disabled]) {
|
|
3917
|
-
background-color: #705043
|
|
3920
|
+
background-color: #705043;
|
|
3918
3921
|
}
|
|
3919
3922
|
.cdc-open-viz-module.theme-cyan .single-filters--tab .tab--active:not(.tab--simple) {
|
|
3920
3923
|
border: 1px solid #007B91;
|
|
@@ -3928,9 +3931,6 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
3928
3931
|
background-color: #007B91;
|
|
3929
3932
|
color: #fff;
|
|
3930
3933
|
}
|
|
3931
|
-
.cdc-open-viz-module.theme-cyan .filters-section button.cove-button:not([disabled]) {
|
|
3932
|
-
background-color: #007B91 !important;
|
|
3933
|
-
}
|
|
3934
3934
|
.cdc-open-viz-module .theme-cyan .single-filters--tab .tab--active:not(.tab--simple) {
|
|
3935
3935
|
border: 1px solid #007B91;
|
|
3936
3936
|
border-top: 3px solid #007B91;
|
|
@@ -3947,7 +3947,7 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
3947
3947
|
outline: 2px solid #007B91;
|
|
3948
3948
|
}
|
|
3949
3949
|
.cdc-open-viz-module .theme-cyan .apply:not([disabled]) {
|
|
3950
|
-
background-color: #007B91
|
|
3950
|
+
background-color: #007B91;
|
|
3951
3951
|
}
|
|
3952
3952
|
.cdc-open-viz-module.theme-green .single-filters--tab .tab--active:not(.tab--simple) {
|
|
3953
3953
|
border: 1px solid #4b830d;
|
|
@@ -3961,9 +3961,6 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
3961
3961
|
background-color: #4b830d;
|
|
3962
3962
|
color: #fff;
|
|
3963
3963
|
}
|
|
3964
|
-
.cdc-open-viz-module.theme-green .filters-section button.cove-button:not([disabled]) {
|
|
3965
|
-
background-color: #4b830d !important;
|
|
3966
|
-
}
|
|
3967
3964
|
.cdc-open-viz-module .theme-green .single-filters--tab .tab--active:not(.tab--simple) {
|
|
3968
3965
|
border: 1px solid #4b830d;
|
|
3969
3966
|
border-top: 3px solid #4b830d;
|
|
@@ -3980,7 +3977,7 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
3980
3977
|
outline: 2px solid #4b830d;
|
|
3981
3978
|
}
|
|
3982
3979
|
.cdc-open-viz-module .theme-green .apply:not([disabled]) {
|
|
3983
|
-
background-color: #4b830d
|
|
3980
|
+
background-color: #4b830d;
|
|
3984
3981
|
}
|
|
3985
3982
|
.cdc-open-viz-module.theme-indigo .single-filters--tab .tab--active:not(.tab--simple) {
|
|
3986
3983
|
border: 1px solid #26418f;
|
|
@@ -3994,9 +3991,6 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
3994
3991
|
background-color: #26418f;
|
|
3995
3992
|
color: #fff;
|
|
3996
3993
|
}
|
|
3997
|
-
.cdc-open-viz-module.theme-indigo .filters-section button.cove-button:not([disabled]) {
|
|
3998
|
-
background-color: #26418f !important;
|
|
3999
|
-
}
|
|
4000
3994
|
.cdc-open-viz-module .theme-indigo .single-filters--tab .tab--active:not(.tab--simple) {
|
|
4001
3995
|
border: 1px solid #26418f;
|
|
4002
3996
|
border-top: 3px solid #26418f;
|
|
@@ -4013,7 +4007,7 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
4013
4007
|
outline: 2px solid #26418f;
|
|
4014
4008
|
}
|
|
4015
4009
|
.cdc-open-viz-module .theme-indigo .apply:not([disabled]) {
|
|
4016
|
-
background-color: #26418f
|
|
4010
|
+
background-color: #26418f;
|
|
4017
4011
|
}
|
|
4018
4012
|
.cdc-open-viz-module.theme-orange .single-filters--tab .tab--active:not(.tab--simple) {
|
|
4019
4013
|
border: 1px solid #bb4d00;
|
|
@@ -4027,9 +4021,6 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
4027
4021
|
background-color: #bb4d00;
|
|
4028
4022
|
color: #fff;
|
|
4029
4023
|
}
|
|
4030
|
-
.cdc-open-viz-module.theme-orange .filters-section button.cove-button:not([disabled]) {
|
|
4031
|
-
background-color: #bb4d00 !important;
|
|
4032
|
-
}
|
|
4033
4024
|
.cdc-open-viz-module .theme-orange .single-filters--tab .tab--active:not(.tab--simple) {
|
|
4034
4025
|
border: 1px solid #bb4d00;
|
|
4035
4026
|
border-top: 3px solid #bb4d00;
|
|
@@ -4046,7 +4037,7 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
4046
4037
|
outline: 2px solid #bb4d00;
|
|
4047
4038
|
}
|
|
4048
4039
|
.cdc-open-viz-module .theme-orange .apply:not([disabled]) {
|
|
4049
|
-
background-color: #bb4d00
|
|
4040
|
+
background-color: #bb4d00;
|
|
4050
4041
|
}
|
|
4051
4042
|
.cdc-open-viz-module.theme-pink .single-filters--tab .tab--active:not(.tab--simple) {
|
|
4052
4043
|
border: 1px solid #af4448;
|
|
@@ -4060,9 +4051,6 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
4060
4051
|
background-color: #af4448;
|
|
4061
4052
|
color: #fff;
|
|
4062
4053
|
}
|
|
4063
|
-
.cdc-open-viz-module.theme-pink .filters-section button.cove-button:not([disabled]) {
|
|
4064
|
-
background-color: #af4448 !important;
|
|
4065
|
-
}
|
|
4066
4054
|
.cdc-open-viz-module .theme-pink .single-filters--tab .tab--active:not(.tab--simple) {
|
|
4067
4055
|
border: 1px solid #af4448;
|
|
4068
4056
|
border-top: 3px solid #af4448;
|
|
@@ -4079,7 +4067,7 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
4079
4067
|
outline: 2px solid #af4448;
|
|
4080
4068
|
}
|
|
4081
4069
|
.cdc-open-viz-module .theme-pink .apply:not([disabled]) {
|
|
4082
|
-
background-color: #af4448
|
|
4070
|
+
background-color: #af4448;
|
|
4083
4071
|
}
|
|
4084
4072
|
.cdc-open-viz-module.theme-purple .single-filters--tab .tab--active:not(.tab--simple) {
|
|
4085
4073
|
border: 1px solid #712177;
|
|
@@ -4093,9 +4081,6 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
4093
4081
|
background-color: #712177;
|
|
4094
4082
|
color: #fff;
|
|
4095
4083
|
}
|
|
4096
|
-
.cdc-open-viz-module.theme-purple .filters-section button.cove-button:not([disabled]) {
|
|
4097
|
-
background-color: #712177 !important;
|
|
4098
|
-
}
|
|
4099
4084
|
.cdc-open-viz-module .theme-purple .single-filters--tab .tab--active:not(.tab--simple) {
|
|
4100
4085
|
border: 1px solid #712177;
|
|
4101
4086
|
border-top: 3px solid #712177;
|
|
@@ -4112,7 +4097,7 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
4112
4097
|
outline: 2px solid #712177;
|
|
4113
4098
|
}
|
|
4114
4099
|
.cdc-open-viz-module .theme-purple .apply:not([disabled]) {
|
|
4115
|
-
background-color: #712177
|
|
4100
|
+
background-color: #712177;
|
|
4116
4101
|
}
|
|
4117
4102
|
.cdc-open-viz-module.theme-slate .single-filters--tab .tab--active:not(.tab--simple) {
|
|
4118
4103
|
border: 1px solid #29434e;
|
|
@@ -4126,9 +4111,6 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
4126
4111
|
background-color: #29434e;
|
|
4127
4112
|
color: #fff;
|
|
4128
4113
|
}
|
|
4129
|
-
.cdc-open-viz-module.theme-slate .filters-section button.cove-button:not([disabled]) {
|
|
4130
|
-
background-color: #29434e !important;
|
|
4131
|
-
}
|
|
4132
4114
|
.cdc-open-viz-module .theme-slate .single-filters--tab .tab--active:not(.tab--simple) {
|
|
4133
4115
|
border: 1px solid #29434e;
|
|
4134
4116
|
border-top: 3px solid #29434e;
|
|
@@ -4145,7 +4127,7 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
4145
4127
|
outline: 2px solid #29434e;
|
|
4146
4128
|
}
|
|
4147
4129
|
.cdc-open-viz-module .theme-slate .apply:not([disabled]) {
|
|
4148
|
-
background-color: #29434e
|
|
4130
|
+
background-color: #29434e;
|
|
4149
4131
|
}
|
|
4150
4132
|
.cdc-open-viz-module.theme-teal .single-filters--tab .tab--active:not(.tab--simple) {
|
|
4151
4133
|
border: 1px solid #00695c;
|
|
@@ -4159,9 +4141,6 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
4159
4141
|
background-color: #00695c;
|
|
4160
4142
|
color: #fff;
|
|
4161
4143
|
}
|
|
4162
|
-
.cdc-open-viz-module.theme-teal .filters-section button.cove-button:not([disabled]) {
|
|
4163
|
-
background-color: #00695c !important;
|
|
4164
|
-
}
|
|
4165
4144
|
.cdc-open-viz-module .theme-teal .single-filters--tab .tab--active:not(.tab--simple) {
|
|
4166
4145
|
border: 1px solid #00695c;
|
|
4167
4146
|
border-top: 3px solid #00695c;
|
|
@@ -4178,7 +4157,7 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
4178
4157
|
outline: 2px solid #00695c;
|
|
4179
4158
|
}
|
|
4180
4159
|
.cdc-open-viz-module .theme-teal .apply:not([disabled]) {
|
|
4181
|
-
background-color: #00695c
|
|
4160
|
+
background-color: #00695c;
|
|
4182
4161
|
}
|
|
4183
4162
|
|
|
4184
4163
|
.cove {
|
|
@@ -4941,9 +4920,6 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
4941
4920
|
background-color: #fbab18;
|
|
4942
4921
|
color: #fff;
|
|
4943
4922
|
}
|
|
4944
|
-
.cove .cdc-open-viz-module.theme-amber .filters-section button.cove-button:not([disabled]) {
|
|
4945
|
-
background-color: #fbab18 !important;
|
|
4946
|
-
}
|
|
4947
4923
|
.cove .cdc-open-viz-module .theme-amber .single-filters--tab .tab--active:not(.tab--simple) {
|
|
4948
4924
|
border: 1px solid #fbab18;
|
|
4949
4925
|
border-top: 3px solid #fbab18;
|
|
@@ -4960,7 +4936,7 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
4960
4936
|
outline: 2px solid #fbab18;
|
|
4961
4937
|
}
|
|
4962
4938
|
.cove .cdc-open-viz-module .theme-amber .apply:not([disabled]) {
|
|
4963
|
-
background-color: #fbab18
|
|
4939
|
+
background-color: #fbab18;
|
|
4964
4940
|
}
|
|
4965
4941
|
.cove .cdc-open-viz-module.theme-blue .single-filters--tab .tab--active:not(.tab--simple) {
|
|
4966
4942
|
border: 1px solid #005eaa;
|
|
@@ -4974,9 +4950,6 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
4974
4950
|
background-color: #005eaa;
|
|
4975
4951
|
color: #fff;
|
|
4976
4952
|
}
|
|
4977
|
-
.cove .cdc-open-viz-module.theme-blue .filters-section button.cove-button:not([disabled]) {
|
|
4978
|
-
background-color: #005eaa !important;
|
|
4979
|
-
}
|
|
4980
4953
|
.cove .cdc-open-viz-module .theme-blue .single-filters--tab .tab--active:not(.tab--simple) {
|
|
4981
4954
|
border: 1px solid #005eaa;
|
|
4982
4955
|
border-top: 3px solid #005eaa;
|
|
@@ -4993,7 +4966,7 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
4993
4966
|
outline: 2px solid #005eaa;
|
|
4994
4967
|
}
|
|
4995
4968
|
.cove .cdc-open-viz-module .theme-blue .apply:not([disabled]) {
|
|
4996
|
-
background-color: #005eaa
|
|
4969
|
+
background-color: #005eaa;
|
|
4997
4970
|
}
|
|
4998
4971
|
.cove .cdc-open-viz-module.theme-brown .single-filters--tab .tab--active:not(.tab--simple) {
|
|
4999
4972
|
border: 1px solid #705043;
|
|
@@ -5007,9 +4980,6 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
5007
4980
|
background-color: #705043;
|
|
5008
4981
|
color: #fff;
|
|
5009
4982
|
}
|
|
5010
|
-
.cove .cdc-open-viz-module.theme-brown .filters-section button.cove-button:not([disabled]) {
|
|
5011
|
-
background-color: #705043 !important;
|
|
5012
|
-
}
|
|
5013
4983
|
.cove .cdc-open-viz-module .theme-brown .single-filters--tab .tab--active:not(.tab--simple) {
|
|
5014
4984
|
border: 1px solid #705043;
|
|
5015
4985
|
border-top: 3px solid #705043;
|
|
@@ -5026,7 +4996,7 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
5026
4996
|
outline: 2px solid #705043;
|
|
5027
4997
|
}
|
|
5028
4998
|
.cove .cdc-open-viz-module .theme-brown .apply:not([disabled]) {
|
|
5029
|
-
background-color: #705043
|
|
4999
|
+
background-color: #705043;
|
|
5030
5000
|
}
|
|
5031
5001
|
.cove .cdc-open-viz-module.theme-cyan .single-filters--tab .tab--active:not(.tab--simple) {
|
|
5032
5002
|
border: 1px solid #007B91;
|
|
@@ -5040,9 +5010,6 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
5040
5010
|
background-color: #007B91;
|
|
5041
5011
|
color: #fff;
|
|
5042
5012
|
}
|
|
5043
|
-
.cove .cdc-open-viz-module.theme-cyan .filters-section button.cove-button:not([disabled]) {
|
|
5044
|
-
background-color: #007B91 !important;
|
|
5045
|
-
}
|
|
5046
5013
|
.cove .cdc-open-viz-module .theme-cyan .single-filters--tab .tab--active:not(.tab--simple) {
|
|
5047
5014
|
border: 1px solid #007B91;
|
|
5048
5015
|
border-top: 3px solid #007B91;
|
|
@@ -5059,7 +5026,7 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
5059
5026
|
outline: 2px solid #007B91;
|
|
5060
5027
|
}
|
|
5061
5028
|
.cove .cdc-open-viz-module .theme-cyan .apply:not([disabled]) {
|
|
5062
|
-
background-color: #007B91
|
|
5029
|
+
background-color: #007B91;
|
|
5063
5030
|
}
|
|
5064
5031
|
.cove .cdc-open-viz-module.theme-green .single-filters--tab .tab--active:not(.tab--simple) {
|
|
5065
5032
|
border: 1px solid #4b830d;
|
|
@@ -5073,9 +5040,6 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
5073
5040
|
background-color: #4b830d;
|
|
5074
5041
|
color: #fff;
|
|
5075
5042
|
}
|
|
5076
|
-
.cove .cdc-open-viz-module.theme-green .filters-section button.cove-button:not([disabled]) {
|
|
5077
|
-
background-color: #4b830d !important;
|
|
5078
|
-
}
|
|
5079
5043
|
.cove .cdc-open-viz-module .theme-green .single-filters--tab .tab--active:not(.tab--simple) {
|
|
5080
5044
|
border: 1px solid #4b830d;
|
|
5081
5045
|
border-top: 3px solid #4b830d;
|
|
@@ -5092,7 +5056,7 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
5092
5056
|
outline: 2px solid #4b830d;
|
|
5093
5057
|
}
|
|
5094
5058
|
.cove .cdc-open-viz-module .theme-green .apply:not([disabled]) {
|
|
5095
|
-
background-color: #4b830d
|
|
5059
|
+
background-color: #4b830d;
|
|
5096
5060
|
}
|
|
5097
5061
|
.cove .cdc-open-viz-module.theme-indigo .single-filters--tab .tab--active:not(.tab--simple) {
|
|
5098
5062
|
border: 1px solid #26418f;
|
|
@@ -5106,9 +5070,6 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
5106
5070
|
background-color: #26418f;
|
|
5107
5071
|
color: #fff;
|
|
5108
5072
|
}
|
|
5109
|
-
.cove .cdc-open-viz-module.theme-indigo .filters-section button.cove-button:not([disabled]) {
|
|
5110
|
-
background-color: #26418f !important;
|
|
5111
|
-
}
|
|
5112
5073
|
.cove .cdc-open-viz-module .theme-indigo .single-filters--tab .tab--active:not(.tab--simple) {
|
|
5113
5074
|
border: 1px solid #26418f;
|
|
5114
5075
|
border-top: 3px solid #26418f;
|
|
@@ -5125,7 +5086,7 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
5125
5086
|
outline: 2px solid #26418f;
|
|
5126
5087
|
}
|
|
5127
5088
|
.cove .cdc-open-viz-module .theme-indigo .apply:not([disabled]) {
|
|
5128
|
-
background-color: #26418f
|
|
5089
|
+
background-color: #26418f;
|
|
5129
5090
|
}
|
|
5130
5091
|
.cove .cdc-open-viz-module.theme-orange .single-filters--tab .tab--active:not(.tab--simple) {
|
|
5131
5092
|
border: 1px solid #bb4d00;
|
|
@@ -5139,9 +5100,6 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
5139
5100
|
background-color: #bb4d00;
|
|
5140
5101
|
color: #fff;
|
|
5141
5102
|
}
|
|
5142
|
-
.cove .cdc-open-viz-module.theme-orange .filters-section button.cove-button:not([disabled]) {
|
|
5143
|
-
background-color: #bb4d00 !important;
|
|
5144
|
-
}
|
|
5145
5103
|
.cove .cdc-open-viz-module .theme-orange .single-filters--tab .tab--active:not(.tab--simple) {
|
|
5146
5104
|
border: 1px solid #bb4d00;
|
|
5147
5105
|
border-top: 3px solid #bb4d00;
|
|
@@ -5158,7 +5116,7 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
5158
5116
|
outline: 2px solid #bb4d00;
|
|
5159
5117
|
}
|
|
5160
5118
|
.cove .cdc-open-viz-module .theme-orange .apply:not([disabled]) {
|
|
5161
|
-
background-color: #bb4d00
|
|
5119
|
+
background-color: #bb4d00;
|
|
5162
5120
|
}
|
|
5163
5121
|
.cove .cdc-open-viz-module.theme-pink .single-filters--tab .tab--active:not(.tab--simple) {
|
|
5164
5122
|
border: 1px solid #af4448;
|
|
@@ -5172,9 +5130,6 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
5172
5130
|
background-color: #af4448;
|
|
5173
5131
|
color: #fff;
|
|
5174
5132
|
}
|
|
5175
|
-
.cove .cdc-open-viz-module.theme-pink .filters-section button.cove-button:not([disabled]) {
|
|
5176
|
-
background-color: #af4448 !important;
|
|
5177
|
-
}
|
|
5178
5133
|
.cove .cdc-open-viz-module .theme-pink .single-filters--tab .tab--active:not(.tab--simple) {
|
|
5179
5134
|
border: 1px solid #af4448;
|
|
5180
5135
|
border-top: 3px solid #af4448;
|
|
@@ -5191,7 +5146,7 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
5191
5146
|
outline: 2px solid #af4448;
|
|
5192
5147
|
}
|
|
5193
5148
|
.cove .cdc-open-viz-module .theme-pink .apply:not([disabled]) {
|
|
5194
|
-
background-color: #af4448
|
|
5149
|
+
background-color: #af4448;
|
|
5195
5150
|
}
|
|
5196
5151
|
.cove .cdc-open-viz-module.theme-purple .single-filters--tab .tab--active:not(.tab--simple) {
|
|
5197
5152
|
border: 1px solid #712177;
|
|
@@ -5205,9 +5160,6 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
5205
5160
|
background-color: #712177;
|
|
5206
5161
|
color: #fff;
|
|
5207
5162
|
}
|
|
5208
|
-
.cove .cdc-open-viz-module.theme-purple .filters-section button.cove-button:not([disabled]) {
|
|
5209
|
-
background-color: #712177 !important;
|
|
5210
|
-
}
|
|
5211
5163
|
.cove .cdc-open-viz-module .theme-purple .single-filters--tab .tab--active:not(.tab--simple) {
|
|
5212
5164
|
border: 1px solid #712177;
|
|
5213
5165
|
border-top: 3px solid #712177;
|
|
@@ -5224,7 +5176,7 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
5224
5176
|
outline: 2px solid #712177;
|
|
5225
5177
|
}
|
|
5226
5178
|
.cove .cdc-open-viz-module .theme-purple .apply:not([disabled]) {
|
|
5227
|
-
background-color: #712177
|
|
5179
|
+
background-color: #712177;
|
|
5228
5180
|
}
|
|
5229
5181
|
.cove .cdc-open-viz-module.theme-slate .single-filters--tab .tab--active:not(.tab--simple) {
|
|
5230
5182
|
border: 1px solid #29434e;
|
|
@@ -5238,9 +5190,6 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
5238
5190
|
background-color: #29434e;
|
|
5239
5191
|
color: #fff;
|
|
5240
5192
|
}
|
|
5241
|
-
.cove .cdc-open-viz-module.theme-slate .filters-section button.cove-button:not([disabled]) {
|
|
5242
|
-
background-color: #29434e !important;
|
|
5243
|
-
}
|
|
5244
5193
|
.cove .cdc-open-viz-module .theme-slate .single-filters--tab .tab--active:not(.tab--simple) {
|
|
5245
5194
|
border: 1px solid #29434e;
|
|
5246
5195
|
border-top: 3px solid #29434e;
|
|
@@ -5257,7 +5206,7 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
5257
5206
|
outline: 2px solid #29434e;
|
|
5258
5207
|
}
|
|
5259
5208
|
.cove .cdc-open-viz-module .theme-slate .apply:not([disabled]) {
|
|
5260
|
-
background-color: #29434e
|
|
5209
|
+
background-color: #29434e;
|
|
5261
5210
|
}
|
|
5262
5211
|
.cove .cdc-open-viz-module.theme-teal .single-filters--tab .tab--active:not(.tab--simple) {
|
|
5263
5212
|
border: 1px solid #00695c;
|
|
@@ -5271,9 +5220,6 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
5271
5220
|
background-color: #00695c;
|
|
5272
5221
|
color: #fff;
|
|
5273
5222
|
}
|
|
5274
|
-
.cove .cdc-open-viz-module.theme-teal .filters-section button.cove-button:not([disabled]) {
|
|
5275
|
-
background-color: #00695c !important;
|
|
5276
|
-
}
|
|
5277
5223
|
.cove .cdc-open-viz-module .theme-teal .single-filters--tab .tab--active:not(.tab--simple) {
|
|
5278
5224
|
border: 1px solid #00695c;
|
|
5279
5225
|
border-top: 3px solid #00695c;
|
|
@@ -5290,7 +5236,7 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
5290
5236
|
outline: 2px solid #00695c;
|
|
5291
5237
|
}
|
|
5292
5238
|
.cove .cdc-open-viz-module .theme-teal .apply:not([disabled]) {
|
|
5293
|
-
background-color: #00695c
|
|
5239
|
+
background-color: #00695c;
|
|
5294
5240
|
}
|
|
5295
5241
|
.cove .cove {
|
|
5296
5242
|
margin: 0;
|
|
@@ -5356,10 +5302,6 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
5356
5302
|
color: #005eaa;
|
|
5357
5303
|
text-decoration: underline;
|
|
5358
5304
|
}
|
|
5359
|
-
.cove :focus,
|
|
5360
|
-
.cove [tabindex]:focus-visible {
|
|
5361
|
-
outline: 2px solid rgba(255, 102, 1, 0.9);
|
|
5362
|
-
}
|
|
5363
5305
|
.cove strong {
|
|
5364
5306
|
font-weight: 600;
|
|
5365
5307
|
}
|