@cdc/core 4.25.2-25 → 4.25.3

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