@cdc/core 4.25.1 → 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 +32 -9
- package/components/DataTable/components/ChartHeader.tsx +25 -6
- package/components/DataTable/components/MapHeader.tsx +5 -1
- package/components/DataTable/data-table.css +1 -1
- package/components/DataTable/helpers/chartCellMatrix.tsx +14 -5
- package/components/EditorPanel/Inputs.tsx +4 -0
- package/components/EditorPanel/VizFilterEditor/VizFilterEditor.tsx +1 -1
- package/components/Filters/Filters.tsx +55 -17
- package/components/Filters/helpers/filterWrapping.ts +43 -0
- package/components/Filters/helpers/handleSorting.ts +1 -0
- package/components/Filters/helpers/tests/handleSorting.test.ts +26 -0
- package/components/NestedDropdown/NestedDropdown.tsx +18 -5
- package/components/NestedDropdown/nesteddropdown.styles.css +2 -2
- package/components/Table/Table.tsx +11 -5
- package/components/Table/components/Row.tsx +14 -2
- package/dist/cove-main.css +183 -132
- package/dist/cove-main.css.map +1 -1
- package/helpers/DataTransform.ts +11 -9
- package/helpers/formatConfigBeforeSave.ts +1 -1
- package/helpers/isRightAlignedTableValue.js +14 -0
- package/helpers/queryStringUtils.ts +7 -0
- package/helpers/ver/4.24.7.ts +19 -1
- package/package.json +2 -2
- package/styles/filters.scss +60 -0
- package/styles/v2/themes/_color-definitions.scss +4 -4
- package/types/VizFilter.ts +1 -0
package/dist/cove-main.css
CHANGED
|
@@ -233,6 +233,9 @@ div.single-filters__tab-bar:first-child {
|
|
|
233
233
|
border-top-left-radius: 15px;
|
|
234
234
|
border-bottom-left-radius: 15px;
|
|
235
235
|
}
|
|
236
|
+
div.single-filters > select.cove-form-select, div.single-filters > div.nested-dropdown {
|
|
237
|
+
width: fit-content;
|
|
238
|
+
}
|
|
236
239
|
|
|
237
240
|
.single-filters--tab {
|
|
238
241
|
width: 100%;
|
|
@@ -248,11 +251,59 @@ div.single-filters__tab-bar:first-child {
|
|
|
248
251
|
border-top-left-radius: 5px;
|
|
249
252
|
border-top-right-radius: 5px;
|
|
250
253
|
margin-top: 5px;
|
|
254
|
+
font-family: var(--app-font-secondary);
|
|
255
|
+
font-size: 1rem;
|
|
256
|
+
text-align: center;
|
|
251
257
|
}
|
|
252
258
|
.single-filters--tab .tab--active {
|
|
253
259
|
border-bottom: none;
|
|
254
260
|
}
|
|
255
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
|
+
|
|
256
307
|
.single-filters--pill {
|
|
257
308
|
width: 100%;
|
|
258
309
|
display: flex;
|
|
@@ -1437,12 +1488,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
1437
1488
|
border-color: #4ebaaa;
|
|
1438
1489
|
}
|
|
1439
1490
|
|
|
1440
|
-
.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) {
|
|
1441
1492
|
border: 1px solid #fbab18;
|
|
1442
1493
|
border-top: 3px solid #fbab18;
|
|
1443
1494
|
border-bottom: none;
|
|
1444
1495
|
}
|
|
1445
|
-
.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) {
|
|
1446
1497
|
border-bottom: 1px solid #fbab18;
|
|
1447
1498
|
}
|
|
1448
1499
|
.cdc-open-viz-module.theme-amber .single-filters--pill .pill--active {
|
|
@@ -1452,12 +1503,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
1452
1503
|
.cdc-open-viz-module.theme-amber .filters-section button.cove-button:not([disabled]) {
|
|
1453
1504
|
background-color: #fbab18 !important;
|
|
1454
1505
|
}
|
|
1455
|
-
.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) {
|
|
1456
1507
|
border: 1px solid #fbab18;
|
|
1457
1508
|
border-top: 3px solid #fbab18;
|
|
1458
1509
|
border-bottom: none;
|
|
1459
1510
|
}
|
|
1460
|
-
.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) {
|
|
1461
1512
|
border-bottom: 1px solid #fbab18;
|
|
1462
1513
|
}
|
|
1463
1514
|
.cdc-open-viz-module .theme-amber .single-filters--pill .pill--active {
|
|
@@ -1470,12 +1521,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
1470
1521
|
.cdc-open-viz-module .theme-amber .apply:not([disabled]) {
|
|
1471
1522
|
background-color: #fbab18 !important;
|
|
1472
1523
|
}
|
|
1473
|
-
.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) {
|
|
1474
1525
|
border: 1px solid #005eaa;
|
|
1475
1526
|
border-top: 3px solid #005eaa;
|
|
1476
1527
|
border-bottom: none;
|
|
1477
1528
|
}
|
|
1478
|
-
.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) {
|
|
1479
1530
|
border-bottom: 1px solid #005eaa;
|
|
1480
1531
|
}
|
|
1481
1532
|
.cdc-open-viz-module.theme-blue .single-filters--pill .pill--active {
|
|
@@ -1485,12 +1536,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
1485
1536
|
.cdc-open-viz-module.theme-blue .filters-section button.cove-button:not([disabled]) {
|
|
1486
1537
|
background-color: #005eaa !important;
|
|
1487
1538
|
}
|
|
1488
|
-
.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) {
|
|
1489
1540
|
border: 1px solid #005eaa;
|
|
1490
1541
|
border-top: 3px solid #005eaa;
|
|
1491
1542
|
border-bottom: none;
|
|
1492
1543
|
}
|
|
1493
|
-
.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) {
|
|
1494
1545
|
border-bottom: 1px solid #005eaa;
|
|
1495
1546
|
}
|
|
1496
1547
|
.cdc-open-viz-module .theme-blue .single-filters--pill .pill--active {
|
|
@@ -1503,12 +1554,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
1503
1554
|
.cdc-open-viz-module .theme-blue .apply:not([disabled]) {
|
|
1504
1555
|
background-color: #005eaa !important;
|
|
1505
1556
|
}
|
|
1506
|
-
.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) {
|
|
1507
1558
|
border: 1px solid #705043;
|
|
1508
1559
|
border-top: 3px solid #705043;
|
|
1509
1560
|
border-bottom: none;
|
|
1510
1561
|
}
|
|
1511
|
-
.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) {
|
|
1512
1563
|
border-bottom: 1px solid #705043;
|
|
1513
1564
|
}
|
|
1514
1565
|
.cdc-open-viz-module.theme-brown .single-filters--pill .pill--active {
|
|
@@ -1518,12 +1569,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
1518
1569
|
.cdc-open-viz-module.theme-brown .filters-section button.cove-button:not([disabled]) {
|
|
1519
1570
|
background-color: #705043 !important;
|
|
1520
1571
|
}
|
|
1521
|
-
.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) {
|
|
1522
1573
|
border: 1px solid #705043;
|
|
1523
1574
|
border-top: 3px solid #705043;
|
|
1524
1575
|
border-bottom: none;
|
|
1525
1576
|
}
|
|
1526
|
-
.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) {
|
|
1527
1578
|
border-bottom: 1px solid #705043;
|
|
1528
1579
|
}
|
|
1529
1580
|
.cdc-open-viz-module .theme-brown .single-filters--pill .pill--active {
|
|
@@ -1536,12 +1587,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
1536
1587
|
.cdc-open-viz-module .theme-brown .apply:not([disabled]) {
|
|
1537
1588
|
background-color: #705043 !important;
|
|
1538
1589
|
}
|
|
1539
|
-
.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) {
|
|
1540
1591
|
border: 1px solid #007B91;
|
|
1541
1592
|
border-top: 3px solid #007B91;
|
|
1542
1593
|
border-bottom: none;
|
|
1543
1594
|
}
|
|
1544
|
-
.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) {
|
|
1545
1596
|
border-bottom: 1px solid #007B91;
|
|
1546
1597
|
}
|
|
1547
1598
|
.cdc-open-viz-module.theme-cyan .single-filters--pill .pill--active {
|
|
@@ -1551,12 +1602,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
1551
1602
|
.cdc-open-viz-module.theme-cyan .filters-section button.cove-button:not([disabled]) {
|
|
1552
1603
|
background-color: #007B91 !important;
|
|
1553
1604
|
}
|
|
1554
|
-
.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) {
|
|
1555
1606
|
border: 1px solid #007B91;
|
|
1556
1607
|
border-top: 3px solid #007B91;
|
|
1557
1608
|
border-bottom: none;
|
|
1558
1609
|
}
|
|
1559
|
-
.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) {
|
|
1560
1611
|
border-bottom: 1px solid #007B91;
|
|
1561
1612
|
}
|
|
1562
1613
|
.cdc-open-viz-module .theme-cyan .single-filters--pill .pill--active {
|
|
@@ -1569,12 +1620,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
1569
1620
|
.cdc-open-viz-module .theme-cyan .apply:not([disabled]) {
|
|
1570
1621
|
background-color: #007B91 !important;
|
|
1571
1622
|
}
|
|
1572
|
-
.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) {
|
|
1573
1624
|
border: 1px solid #4b830d;
|
|
1574
1625
|
border-top: 3px solid #4b830d;
|
|
1575
1626
|
border-bottom: none;
|
|
1576
1627
|
}
|
|
1577
|
-
.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) {
|
|
1578
1629
|
border-bottom: 1px solid #4b830d;
|
|
1579
1630
|
}
|
|
1580
1631
|
.cdc-open-viz-module.theme-green .single-filters--pill .pill--active {
|
|
@@ -1584,12 +1635,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
1584
1635
|
.cdc-open-viz-module.theme-green .filters-section button.cove-button:not([disabled]) {
|
|
1585
1636
|
background-color: #4b830d !important;
|
|
1586
1637
|
}
|
|
1587
|
-
.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) {
|
|
1588
1639
|
border: 1px solid #4b830d;
|
|
1589
1640
|
border-top: 3px solid #4b830d;
|
|
1590
1641
|
border-bottom: none;
|
|
1591
1642
|
}
|
|
1592
|
-
.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) {
|
|
1593
1644
|
border-bottom: 1px solid #4b830d;
|
|
1594
1645
|
}
|
|
1595
1646
|
.cdc-open-viz-module .theme-green .single-filters--pill .pill--active {
|
|
@@ -1602,12 +1653,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
1602
1653
|
.cdc-open-viz-module .theme-green .apply:not([disabled]) {
|
|
1603
1654
|
background-color: #4b830d !important;
|
|
1604
1655
|
}
|
|
1605
|
-
.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) {
|
|
1606
1657
|
border: 1px solid #26418f;
|
|
1607
1658
|
border-top: 3px solid #26418f;
|
|
1608
1659
|
border-bottom: none;
|
|
1609
1660
|
}
|
|
1610
|
-
.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) {
|
|
1611
1662
|
border-bottom: 1px solid #26418f;
|
|
1612
1663
|
}
|
|
1613
1664
|
.cdc-open-viz-module.theme-indigo .single-filters--pill .pill--active {
|
|
@@ -1617,12 +1668,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
1617
1668
|
.cdc-open-viz-module.theme-indigo .filters-section button.cove-button:not([disabled]) {
|
|
1618
1669
|
background-color: #26418f !important;
|
|
1619
1670
|
}
|
|
1620
|
-
.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) {
|
|
1621
1672
|
border: 1px solid #26418f;
|
|
1622
1673
|
border-top: 3px solid #26418f;
|
|
1623
1674
|
border-bottom: none;
|
|
1624
1675
|
}
|
|
1625
|
-
.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) {
|
|
1626
1677
|
border-bottom: 1px solid #26418f;
|
|
1627
1678
|
}
|
|
1628
1679
|
.cdc-open-viz-module .theme-indigo .single-filters--pill .pill--active {
|
|
@@ -1635,12 +1686,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
1635
1686
|
.cdc-open-viz-module .theme-indigo .apply:not([disabled]) {
|
|
1636
1687
|
background-color: #26418f !important;
|
|
1637
1688
|
}
|
|
1638
|
-
.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) {
|
|
1639
1690
|
border: 1px solid #bb4d00;
|
|
1640
1691
|
border-top: 3px solid #bb4d00;
|
|
1641
1692
|
border-bottom: none;
|
|
1642
1693
|
}
|
|
1643
|
-
.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) {
|
|
1644
1695
|
border-bottom: 1px solid #bb4d00;
|
|
1645
1696
|
}
|
|
1646
1697
|
.cdc-open-viz-module.theme-orange .single-filters--pill .pill--active {
|
|
@@ -1650,12 +1701,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
1650
1701
|
.cdc-open-viz-module.theme-orange .filters-section button.cove-button:not([disabled]) {
|
|
1651
1702
|
background-color: #bb4d00 !important;
|
|
1652
1703
|
}
|
|
1653
|
-
.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) {
|
|
1654
1705
|
border: 1px solid #bb4d00;
|
|
1655
1706
|
border-top: 3px solid #bb4d00;
|
|
1656
1707
|
border-bottom: none;
|
|
1657
1708
|
}
|
|
1658
|
-
.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) {
|
|
1659
1710
|
border-bottom: 1px solid #bb4d00;
|
|
1660
1711
|
}
|
|
1661
1712
|
.cdc-open-viz-module .theme-orange .single-filters--pill .pill--active {
|
|
@@ -1668,12 +1719,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
1668
1719
|
.cdc-open-viz-module .theme-orange .apply:not([disabled]) {
|
|
1669
1720
|
background-color: #bb4d00 !important;
|
|
1670
1721
|
}
|
|
1671
|
-
.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) {
|
|
1672
1723
|
border: 1px solid #af4448;
|
|
1673
1724
|
border-top: 3px solid #af4448;
|
|
1674
1725
|
border-bottom: none;
|
|
1675
1726
|
}
|
|
1676
|
-
.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) {
|
|
1677
1728
|
border-bottom: 1px solid #af4448;
|
|
1678
1729
|
}
|
|
1679
1730
|
.cdc-open-viz-module.theme-pink .single-filters--pill .pill--active {
|
|
@@ -1683,12 +1734,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
1683
1734
|
.cdc-open-viz-module.theme-pink .filters-section button.cove-button:not([disabled]) {
|
|
1684
1735
|
background-color: #af4448 !important;
|
|
1685
1736
|
}
|
|
1686
|
-
.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) {
|
|
1687
1738
|
border: 1px solid #af4448;
|
|
1688
1739
|
border-top: 3px solid #af4448;
|
|
1689
1740
|
border-bottom: none;
|
|
1690
1741
|
}
|
|
1691
|
-
.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) {
|
|
1692
1743
|
border-bottom: 1px solid #af4448;
|
|
1693
1744
|
}
|
|
1694
1745
|
.cdc-open-viz-module .theme-pink .single-filters--pill .pill--active {
|
|
@@ -1701,12 +1752,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
1701
1752
|
.cdc-open-viz-module .theme-pink .apply:not([disabled]) {
|
|
1702
1753
|
background-color: #af4448 !important;
|
|
1703
1754
|
}
|
|
1704
|
-
.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) {
|
|
1705
1756
|
border: 1px solid #712177;
|
|
1706
1757
|
border-top: 3px solid #712177;
|
|
1707
1758
|
border-bottom: none;
|
|
1708
1759
|
}
|
|
1709
|
-
.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) {
|
|
1710
1761
|
border-bottom: 1px solid #712177;
|
|
1711
1762
|
}
|
|
1712
1763
|
.cdc-open-viz-module.theme-purple .single-filters--pill .pill--active {
|
|
@@ -1716,12 +1767,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
1716
1767
|
.cdc-open-viz-module.theme-purple .filters-section button.cove-button:not([disabled]) {
|
|
1717
1768
|
background-color: #712177 !important;
|
|
1718
1769
|
}
|
|
1719
|
-
.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) {
|
|
1720
1771
|
border: 1px solid #712177;
|
|
1721
1772
|
border-top: 3px solid #712177;
|
|
1722
1773
|
border-bottom: none;
|
|
1723
1774
|
}
|
|
1724
|
-
.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) {
|
|
1725
1776
|
border-bottom: 1px solid #712177;
|
|
1726
1777
|
}
|
|
1727
1778
|
.cdc-open-viz-module .theme-purple .single-filters--pill .pill--active {
|
|
@@ -1734,12 +1785,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
1734
1785
|
.cdc-open-viz-module .theme-purple .apply:not([disabled]) {
|
|
1735
1786
|
background-color: #712177 !important;
|
|
1736
1787
|
}
|
|
1737
|
-
.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) {
|
|
1738
1789
|
border: 1px solid #29434e;
|
|
1739
1790
|
border-top: 3px solid #29434e;
|
|
1740
1791
|
border-bottom: none;
|
|
1741
1792
|
}
|
|
1742
|
-
.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) {
|
|
1743
1794
|
border-bottom: 1px solid #29434e;
|
|
1744
1795
|
}
|
|
1745
1796
|
.cdc-open-viz-module.theme-slate .single-filters--pill .pill--active {
|
|
@@ -1749,12 +1800,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
1749
1800
|
.cdc-open-viz-module.theme-slate .filters-section button.cove-button:not([disabled]) {
|
|
1750
1801
|
background-color: #29434e !important;
|
|
1751
1802
|
}
|
|
1752
|
-
.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) {
|
|
1753
1804
|
border: 1px solid #29434e;
|
|
1754
1805
|
border-top: 3px solid #29434e;
|
|
1755
1806
|
border-bottom: none;
|
|
1756
1807
|
}
|
|
1757
|
-
.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) {
|
|
1758
1809
|
border-bottom: 1px solid #29434e;
|
|
1759
1810
|
}
|
|
1760
1811
|
.cdc-open-viz-module .theme-slate .single-filters--pill .pill--active {
|
|
@@ -1767,12 +1818,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
1767
1818
|
.cdc-open-viz-module .theme-slate .apply:not([disabled]) {
|
|
1768
1819
|
background-color: #29434e !important;
|
|
1769
1820
|
}
|
|
1770
|
-
.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) {
|
|
1771
1822
|
border: 1px solid #00695c;
|
|
1772
1823
|
border-top: 3px solid #00695c;
|
|
1773
1824
|
border-bottom: none;
|
|
1774
1825
|
}
|
|
1775
|
-
.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) {
|
|
1776
1827
|
border-bottom: 1px solid #00695c;
|
|
1777
1828
|
}
|
|
1778
1829
|
.cdc-open-viz-module.theme-teal .single-filters--pill .pill--active {
|
|
@@ -1782,12 +1833,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
1782
1833
|
.cdc-open-viz-module.theme-teal .filters-section button.cove-button:not([disabled]) {
|
|
1783
1834
|
background-color: #00695c !important;
|
|
1784
1835
|
}
|
|
1785
|
-
.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) {
|
|
1786
1837
|
border: 1px solid #00695c;
|
|
1787
1838
|
border-top: 3px solid #00695c;
|
|
1788
1839
|
border-bottom: none;
|
|
1789
1840
|
}
|
|
1790
|
-
.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) {
|
|
1791
1842
|
border-bottom: 1px solid #00695c;
|
|
1792
1843
|
}
|
|
1793
1844
|
.cdc-open-viz-module .theme-teal .single-filters--pill .pill--active {
|
|
@@ -3766,12 +3817,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
3766
3817
|
border-color: #4ebaaa;
|
|
3767
3818
|
}
|
|
3768
3819
|
|
|
3769
|
-
.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) {
|
|
3770
3821
|
border: 1px solid #fbab18;
|
|
3771
3822
|
border-top: 3px solid #fbab18;
|
|
3772
3823
|
border-bottom: none;
|
|
3773
3824
|
}
|
|
3774
|
-
.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) {
|
|
3775
3826
|
border-bottom: 1px solid #fbab18;
|
|
3776
3827
|
}
|
|
3777
3828
|
.cdc-open-viz-module.theme-amber .single-filters--pill .pill--active {
|
|
@@ -3781,12 +3832,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
3781
3832
|
.cdc-open-viz-module.theme-amber .filters-section button.cove-button:not([disabled]) {
|
|
3782
3833
|
background-color: #fbab18 !important;
|
|
3783
3834
|
}
|
|
3784
|
-
.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) {
|
|
3785
3836
|
border: 1px solid #fbab18;
|
|
3786
3837
|
border-top: 3px solid #fbab18;
|
|
3787
3838
|
border-bottom: none;
|
|
3788
3839
|
}
|
|
3789
|
-
.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) {
|
|
3790
3841
|
border-bottom: 1px solid #fbab18;
|
|
3791
3842
|
}
|
|
3792
3843
|
.cdc-open-viz-module .theme-amber .single-filters--pill .pill--active {
|
|
@@ -3799,12 +3850,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
3799
3850
|
.cdc-open-viz-module .theme-amber .apply:not([disabled]) {
|
|
3800
3851
|
background-color: #fbab18 !important;
|
|
3801
3852
|
}
|
|
3802
|
-
.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) {
|
|
3803
3854
|
border: 1px solid #005eaa;
|
|
3804
3855
|
border-top: 3px solid #005eaa;
|
|
3805
3856
|
border-bottom: none;
|
|
3806
3857
|
}
|
|
3807
|
-
.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) {
|
|
3808
3859
|
border-bottom: 1px solid #005eaa;
|
|
3809
3860
|
}
|
|
3810
3861
|
.cdc-open-viz-module.theme-blue .single-filters--pill .pill--active {
|
|
@@ -3814,12 +3865,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
3814
3865
|
.cdc-open-viz-module.theme-blue .filters-section button.cove-button:not([disabled]) {
|
|
3815
3866
|
background-color: #005eaa !important;
|
|
3816
3867
|
}
|
|
3817
|
-
.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) {
|
|
3818
3869
|
border: 1px solid #005eaa;
|
|
3819
3870
|
border-top: 3px solid #005eaa;
|
|
3820
3871
|
border-bottom: none;
|
|
3821
3872
|
}
|
|
3822
|
-
.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) {
|
|
3823
3874
|
border-bottom: 1px solid #005eaa;
|
|
3824
3875
|
}
|
|
3825
3876
|
.cdc-open-viz-module .theme-blue .single-filters--pill .pill--active {
|
|
@@ -3832,12 +3883,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
3832
3883
|
.cdc-open-viz-module .theme-blue .apply:not([disabled]) {
|
|
3833
3884
|
background-color: #005eaa !important;
|
|
3834
3885
|
}
|
|
3835
|
-
.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) {
|
|
3836
3887
|
border: 1px solid #705043;
|
|
3837
3888
|
border-top: 3px solid #705043;
|
|
3838
3889
|
border-bottom: none;
|
|
3839
3890
|
}
|
|
3840
|
-
.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) {
|
|
3841
3892
|
border-bottom: 1px solid #705043;
|
|
3842
3893
|
}
|
|
3843
3894
|
.cdc-open-viz-module.theme-brown .single-filters--pill .pill--active {
|
|
@@ -3847,12 +3898,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
3847
3898
|
.cdc-open-viz-module.theme-brown .filters-section button.cove-button:not([disabled]) {
|
|
3848
3899
|
background-color: #705043 !important;
|
|
3849
3900
|
}
|
|
3850
|
-
.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) {
|
|
3851
3902
|
border: 1px solid #705043;
|
|
3852
3903
|
border-top: 3px solid #705043;
|
|
3853
3904
|
border-bottom: none;
|
|
3854
3905
|
}
|
|
3855
|
-
.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) {
|
|
3856
3907
|
border-bottom: 1px solid #705043;
|
|
3857
3908
|
}
|
|
3858
3909
|
.cdc-open-viz-module .theme-brown .single-filters--pill .pill--active {
|
|
@@ -3865,12 +3916,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
3865
3916
|
.cdc-open-viz-module .theme-brown .apply:not([disabled]) {
|
|
3866
3917
|
background-color: #705043 !important;
|
|
3867
3918
|
}
|
|
3868
|
-
.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) {
|
|
3869
3920
|
border: 1px solid #007B91;
|
|
3870
3921
|
border-top: 3px solid #007B91;
|
|
3871
3922
|
border-bottom: none;
|
|
3872
3923
|
}
|
|
3873
|
-
.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) {
|
|
3874
3925
|
border-bottom: 1px solid #007B91;
|
|
3875
3926
|
}
|
|
3876
3927
|
.cdc-open-viz-module.theme-cyan .single-filters--pill .pill--active {
|
|
@@ -3880,12 +3931,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
3880
3931
|
.cdc-open-viz-module.theme-cyan .filters-section button.cove-button:not([disabled]) {
|
|
3881
3932
|
background-color: #007B91 !important;
|
|
3882
3933
|
}
|
|
3883
|
-
.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) {
|
|
3884
3935
|
border: 1px solid #007B91;
|
|
3885
3936
|
border-top: 3px solid #007B91;
|
|
3886
3937
|
border-bottom: none;
|
|
3887
3938
|
}
|
|
3888
|
-
.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) {
|
|
3889
3940
|
border-bottom: 1px solid #007B91;
|
|
3890
3941
|
}
|
|
3891
3942
|
.cdc-open-viz-module .theme-cyan .single-filters--pill .pill--active {
|
|
@@ -3898,12 +3949,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
3898
3949
|
.cdc-open-viz-module .theme-cyan .apply:not([disabled]) {
|
|
3899
3950
|
background-color: #007B91 !important;
|
|
3900
3951
|
}
|
|
3901
|
-
.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) {
|
|
3902
3953
|
border: 1px solid #4b830d;
|
|
3903
3954
|
border-top: 3px solid #4b830d;
|
|
3904
3955
|
border-bottom: none;
|
|
3905
3956
|
}
|
|
3906
|
-
.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) {
|
|
3907
3958
|
border-bottom: 1px solid #4b830d;
|
|
3908
3959
|
}
|
|
3909
3960
|
.cdc-open-viz-module.theme-green .single-filters--pill .pill--active {
|
|
@@ -3913,12 +3964,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
3913
3964
|
.cdc-open-viz-module.theme-green .filters-section button.cove-button:not([disabled]) {
|
|
3914
3965
|
background-color: #4b830d !important;
|
|
3915
3966
|
}
|
|
3916
|
-
.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) {
|
|
3917
3968
|
border: 1px solid #4b830d;
|
|
3918
3969
|
border-top: 3px solid #4b830d;
|
|
3919
3970
|
border-bottom: none;
|
|
3920
3971
|
}
|
|
3921
|
-
.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) {
|
|
3922
3973
|
border-bottom: 1px solid #4b830d;
|
|
3923
3974
|
}
|
|
3924
3975
|
.cdc-open-viz-module .theme-green .single-filters--pill .pill--active {
|
|
@@ -3931,12 +3982,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
3931
3982
|
.cdc-open-viz-module .theme-green .apply:not([disabled]) {
|
|
3932
3983
|
background-color: #4b830d !important;
|
|
3933
3984
|
}
|
|
3934
|
-
.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) {
|
|
3935
3986
|
border: 1px solid #26418f;
|
|
3936
3987
|
border-top: 3px solid #26418f;
|
|
3937
3988
|
border-bottom: none;
|
|
3938
3989
|
}
|
|
3939
|
-
.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) {
|
|
3940
3991
|
border-bottom: 1px solid #26418f;
|
|
3941
3992
|
}
|
|
3942
3993
|
.cdc-open-viz-module.theme-indigo .single-filters--pill .pill--active {
|
|
@@ -3946,12 +3997,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
3946
3997
|
.cdc-open-viz-module.theme-indigo .filters-section button.cove-button:not([disabled]) {
|
|
3947
3998
|
background-color: #26418f !important;
|
|
3948
3999
|
}
|
|
3949
|
-
.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) {
|
|
3950
4001
|
border: 1px solid #26418f;
|
|
3951
4002
|
border-top: 3px solid #26418f;
|
|
3952
4003
|
border-bottom: none;
|
|
3953
4004
|
}
|
|
3954
|
-
.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) {
|
|
3955
4006
|
border-bottom: 1px solid #26418f;
|
|
3956
4007
|
}
|
|
3957
4008
|
.cdc-open-viz-module .theme-indigo .single-filters--pill .pill--active {
|
|
@@ -3964,12 +4015,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
3964
4015
|
.cdc-open-viz-module .theme-indigo .apply:not([disabled]) {
|
|
3965
4016
|
background-color: #26418f !important;
|
|
3966
4017
|
}
|
|
3967
|
-
.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) {
|
|
3968
4019
|
border: 1px solid #bb4d00;
|
|
3969
4020
|
border-top: 3px solid #bb4d00;
|
|
3970
4021
|
border-bottom: none;
|
|
3971
4022
|
}
|
|
3972
|
-
.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) {
|
|
3973
4024
|
border-bottom: 1px solid #bb4d00;
|
|
3974
4025
|
}
|
|
3975
4026
|
.cdc-open-viz-module.theme-orange .single-filters--pill .pill--active {
|
|
@@ -3979,12 +4030,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
3979
4030
|
.cdc-open-viz-module.theme-orange .filters-section button.cove-button:not([disabled]) {
|
|
3980
4031
|
background-color: #bb4d00 !important;
|
|
3981
4032
|
}
|
|
3982
|
-
.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) {
|
|
3983
4034
|
border: 1px solid #bb4d00;
|
|
3984
4035
|
border-top: 3px solid #bb4d00;
|
|
3985
4036
|
border-bottom: none;
|
|
3986
4037
|
}
|
|
3987
|
-
.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) {
|
|
3988
4039
|
border-bottom: 1px solid #bb4d00;
|
|
3989
4040
|
}
|
|
3990
4041
|
.cdc-open-viz-module .theme-orange .single-filters--pill .pill--active {
|
|
@@ -3997,12 +4048,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
3997
4048
|
.cdc-open-viz-module .theme-orange .apply:not([disabled]) {
|
|
3998
4049
|
background-color: #bb4d00 !important;
|
|
3999
4050
|
}
|
|
4000
|
-
.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) {
|
|
4001
4052
|
border: 1px solid #af4448;
|
|
4002
4053
|
border-top: 3px solid #af4448;
|
|
4003
4054
|
border-bottom: none;
|
|
4004
4055
|
}
|
|
4005
|
-
.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) {
|
|
4006
4057
|
border-bottom: 1px solid #af4448;
|
|
4007
4058
|
}
|
|
4008
4059
|
.cdc-open-viz-module.theme-pink .single-filters--pill .pill--active {
|
|
@@ -4012,12 +4063,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
4012
4063
|
.cdc-open-viz-module.theme-pink .filters-section button.cove-button:not([disabled]) {
|
|
4013
4064
|
background-color: #af4448 !important;
|
|
4014
4065
|
}
|
|
4015
|
-
.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) {
|
|
4016
4067
|
border: 1px solid #af4448;
|
|
4017
4068
|
border-top: 3px solid #af4448;
|
|
4018
4069
|
border-bottom: none;
|
|
4019
4070
|
}
|
|
4020
|
-
.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) {
|
|
4021
4072
|
border-bottom: 1px solid #af4448;
|
|
4022
4073
|
}
|
|
4023
4074
|
.cdc-open-viz-module .theme-pink .single-filters--pill .pill--active {
|
|
@@ -4030,12 +4081,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
4030
4081
|
.cdc-open-viz-module .theme-pink .apply:not([disabled]) {
|
|
4031
4082
|
background-color: #af4448 !important;
|
|
4032
4083
|
}
|
|
4033
|
-
.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) {
|
|
4034
4085
|
border: 1px solid #712177;
|
|
4035
4086
|
border-top: 3px solid #712177;
|
|
4036
4087
|
border-bottom: none;
|
|
4037
4088
|
}
|
|
4038
|
-
.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) {
|
|
4039
4090
|
border-bottom: 1px solid #712177;
|
|
4040
4091
|
}
|
|
4041
4092
|
.cdc-open-viz-module.theme-purple .single-filters--pill .pill--active {
|
|
@@ -4045,12 +4096,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
4045
4096
|
.cdc-open-viz-module.theme-purple .filters-section button.cove-button:not([disabled]) {
|
|
4046
4097
|
background-color: #712177 !important;
|
|
4047
4098
|
}
|
|
4048
|
-
.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) {
|
|
4049
4100
|
border: 1px solid #712177;
|
|
4050
4101
|
border-top: 3px solid #712177;
|
|
4051
4102
|
border-bottom: none;
|
|
4052
4103
|
}
|
|
4053
|
-
.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) {
|
|
4054
4105
|
border-bottom: 1px solid #712177;
|
|
4055
4106
|
}
|
|
4056
4107
|
.cdc-open-viz-module .theme-purple .single-filters--pill .pill--active {
|
|
@@ -4063,12 +4114,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
4063
4114
|
.cdc-open-viz-module .theme-purple .apply:not([disabled]) {
|
|
4064
4115
|
background-color: #712177 !important;
|
|
4065
4116
|
}
|
|
4066
|
-
.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) {
|
|
4067
4118
|
border: 1px solid #29434e;
|
|
4068
4119
|
border-top: 3px solid #29434e;
|
|
4069
4120
|
border-bottom: none;
|
|
4070
4121
|
}
|
|
4071
|
-
.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) {
|
|
4072
4123
|
border-bottom: 1px solid #29434e;
|
|
4073
4124
|
}
|
|
4074
4125
|
.cdc-open-viz-module.theme-slate .single-filters--pill .pill--active {
|
|
@@ -4078,12 +4129,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
4078
4129
|
.cdc-open-viz-module.theme-slate .filters-section button.cove-button:not([disabled]) {
|
|
4079
4130
|
background-color: #29434e !important;
|
|
4080
4131
|
}
|
|
4081
|
-
.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) {
|
|
4082
4133
|
border: 1px solid #29434e;
|
|
4083
4134
|
border-top: 3px solid #29434e;
|
|
4084
4135
|
border-bottom: none;
|
|
4085
4136
|
}
|
|
4086
|
-
.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) {
|
|
4087
4138
|
border-bottom: 1px solid #29434e;
|
|
4088
4139
|
}
|
|
4089
4140
|
.cdc-open-viz-module .theme-slate .single-filters--pill .pill--active {
|
|
@@ -4096,12 +4147,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
4096
4147
|
.cdc-open-viz-module .theme-slate .apply:not([disabled]) {
|
|
4097
4148
|
background-color: #29434e !important;
|
|
4098
4149
|
}
|
|
4099
|
-
.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) {
|
|
4100
4151
|
border: 1px solid #00695c;
|
|
4101
4152
|
border-top: 3px solid #00695c;
|
|
4102
4153
|
border-bottom: none;
|
|
4103
4154
|
}
|
|
4104
|
-
.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) {
|
|
4105
4156
|
border-bottom: 1px solid #00695c;
|
|
4106
4157
|
}
|
|
4107
4158
|
.cdc-open-viz-module.theme-teal .single-filters--pill .pill--active {
|
|
@@ -4111,12 +4162,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
4111
4162
|
.cdc-open-viz-module.theme-teal .filters-section button.cove-button:not([disabled]) {
|
|
4112
4163
|
background-color: #00695c !important;
|
|
4113
4164
|
}
|
|
4114
|
-
.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) {
|
|
4115
4166
|
border: 1px solid #00695c;
|
|
4116
4167
|
border-top: 3px solid #00695c;
|
|
4117
4168
|
border-bottom: none;
|
|
4118
4169
|
}
|
|
4119
|
-
.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) {
|
|
4120
4171
|
border-bottom: 1px solid #00695c;
|
|
4121
4172
|
}
|
|
4122
4173
|
.cdc-open-viz-module .theme-teal .single-filters--pill .pill--active {
|
|
@@ -4878,12 +4929,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
4878
4929
|
.cove .cove.theme-teal .cove-component__header {
|
|
4879
4930
|
border-color: #4ebaaa;
|
|
4880
4931
|
}
|
|
4881
|
-
.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) {
|
|
4882
4933
|
border: 1px solid #fbab18;
|
|
4883
4934
|
border-top: 3px solid #fbab18;
|
|
4884
4935
|
border-bottom: none;
|
|
4885
4936
|
}
|
|
4886
|
-
.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) {
|
|
4887
4938
|
border-bottom: 1px solid #fbab18;
|
|
4888
4939
|
}
|
|
4889
4940
|
.cove .cdc-open-viz-module.theme-amber .single-filters--pill .pill--active {
|
|
@@ -4893,12 +4944,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
4893
4944
|
.cove .cdc-open-viz-module.theme-amber .filters-section button.cove-button:not([disabled]) {
|
|
4894
4945
|
background-color: #fbab18 !important;
|
|
4895
4946
|
}
|
|
4896
|
-
.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) {
|
|
4897
4948
|
border: 1px solid #fbab18;
|
|
4898
4949
|
border-top: 3px solid #fbab18;
|
|
4899
4950
|
border-bottom: none;
|
|
4900
4951
|
}
|
|
4901
|
-
.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) {
|
|
4902
4953
|
border-bottom: 1px solid #fbab18;
|
|
4903
4954
|
}
|
|
4904
4955
|
.cove .cdc-open-viz-module .theme-amber .single-filters--pill .pill--active {
|
|
@@ -4911,12 +4962,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
4911
4962
|
.cove .cdc-open-viz-module .theme-amber .apply:not([disabled]) {
|
|
4912
4963
|
background-color: #fbab18 !important;
|
|
4913
4964
|
}
|
|
4914
|
-
.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) {
|
|
4915
4966
|
border: 1px solid #005eaa;
|
|
4916
4967
|
border-top: 3px solid #005eaa;
|
|
4917
4968
|
border-bottom: none;
|
|
4918
4969
|
}
|
|
4919
|
-
.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) {
|
|
4920
4971
|
border-bottom: 1px solid #005eaa;
|
|
4921
4972
|
}
|
|
4922
4973
|
.cove .cdc-open-viz-module.theme-blue .single-filters--pill .pill--active {
|
|
@@ -4926,12 +4977,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
4926
4977
|
.cove .cdc-open-viz-module.theme-blue .filters-section button.cove-button:not([disabled]) {
|
|
4927
4978
|
background-color: #005eaa !important;
|
|
4928
4979
|
}
|
|
4929
|
-
.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) {
|
|
4930
4981
|
border: 1px solid #005eaa;
|
|
4931
4982
|
border-top: 3px solid #005eaa;
|
|
4932
4983
|
border-bottom: none;
|
|
4933
4984
|
}
|
|
4934
|
-
.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) {
|
|
4935
4986
|
border-bottom: 1px solid #005eaa;
|
|
4936
4987
|
}
|
|
4937
4988
|
.cove .cdc-open-viz-module .theme-blue .single-filters--pill .pill--active {
|
|
@@ -4944,12 +4995,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
4944
4995
|
.cove .cdc-open-viz-module .theme-blue .apply:not([disabled]) {
|
|
4945
4996
|
background-color: #005eaa !important;
|
|
4946
4997
|
}
|
|
4947
|
-
.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) {
|
|
4948
4999
|
border: 1px solid #705043;
|
|
4949
5000
|
border-top: 3px solid #705043;
|
|
4950
5001
|
border-bottom: none;
|
|
4951
5002
|
}
|
|
4952
|
-
.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) {
|
|
4953
5004
|
border-bottom: 1px solid #705043;
|
|
4954
5005
|
}
|
|
4955
5006
|
.cove .cdc-open-viz-module.theme-brown .single-filters--pill .pill--active {
|
|
@@ -4959,12 +5010,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
4959
5010
|
.cove .cdc-open-viz-module.theme-brown .filters-section button.cove-button:not([disabled]) {
|
|
4960
5011
|
background-color: #705043 !important;
|
|
4961
5012
|
}
|
|
4962
|
-
.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) {
|
|
4963
5014
|
border: 1px solid #705043;
|
|
4964
5015
|
border-top: 3px solid #705043;
|
|
4965
5016
|
border-bottom: none;
|
|
4966
5017
|
}
|
|
4967
|
-
.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) {
|
|
4968
5019
|
border-bottom: 1px solid #705043;
|
|
4969
5020
|
}
|
|
4970
5021
|
.cove .cdc-open-viz-module .theme-brown .single-filters--pill .pill--active {
|
|
@@ -4977,12 +5028,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
4977
5028
|
.cove .cdc-open-viz-module .theme-brown .apply:not([disabled]) {
|
|
4978
5029
|
background-color: #705043 !important;
|
|
4979
5030
|
}
|
|
4980
|
-
.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) {
|
|
4981
5032
|
border: 1px solid #007B91;
|
|
4982
5033
|
border-top: 3px solid #007B91;
|
|
4983
5034
|
border-bottom: none;
|
|
4984
5035
|
}
|
|
4985
|
-
.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) {
|
|
4986
5037
|
border-bottom: 1px solid #007B91;
|
|
4987
5038
|
}
|
|
4988
5039
|
.cove .cdc-open-viz-module.theme-cyan .single-filters--pill .pill--active {
|
|
@@ -4992,12 +5043,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
4992
5043
|
.cove .cdc-open-viz-module.theme-cyan .filters-section button.cove-button:not([disabled]) {
|
|
4993
5044
|
background-color: #007B91 !important;
|
|
4994
5045
|
}
|
|
4995
|
-
.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) {
|
|
4996
5047
|
border: 1px solid #007B91;
|
|
4997
5048
|
border-top: 3px solid #007B91;
|
|
4998
5049
|
border-bottom: none;
|
|
4999
5050
|
}
|
|
5000
|
-
.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) {
|
|
5001
5052
|
border-bottom: 1px solid #007B91;
|
|
5002
5053
|
}
|
|
5003
5054
|
.cove .cdc-open-viz-module .theme-cyan .single-filters--pill .pill--active {
|
|
@@ -5010,12 +5061,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
5010
5061
|
.cove .cdc-open-viz-module .theme-cyan .apply:not([disabled]) {
|
|
5011
5062
|
background-color: #007B91 !important;
|
|
5012
5063
|
}
|
|
5013
|
-
.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) {
|
|
5014
5065
|
border: 1px solid #4b830d;
|
|
5015
5066
|
border-top: 3px solid #4b830d;
|
|
5016
5067
|
border-bottom: none;
|
|
5017
5068
|
}
|
|
5018
|
-
.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) {
|
|
5019
5070
|
border-bottom: 1px solid #4b830d;
|
|
5020
5071
|
}
|
|
5021
5072
|
.cove .cdc-open-viz-module.theme-green .single-filters--pill .pill--active {
|
|
@@ -5025,12 +5076,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
5025
5076
|
.cove .cdc-open-viz-module.theme-green .filters-section button.cove-button:not([disabled]) {
|
|
5026
5077
|
background-color: #4b830d !important;
|
|
5027
5078
|
}
|
|
5028
|
-
.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) {
|
|
5029
5080
|
border: 1px solid #4b830d;
|
|
5030
5081
|
border-top: 3px solid #4b830d;
|
|
5031
5082
|
border-bottom: none;
|
|
5032
5083
|
}
|
|
5033
|
-
.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) {
|
|
5034
5085
|
border-bottom: 1px solid #4b830d;
|
|
5035
5086
|
}
|
|
5036
5087
|
.cove .cdc-open-viz-module .theme-green .single-filters--pill .pill--active {
|
|
@@ -5043,12 +5094,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
5043
5094
|
.cove .cdc-open-viz-module .theme-green .apply:not([disabled]) {
|
|
5044
5095
|
background-color: #4b830d !important;
|
|
5045
5096
|
}
|
|
5046
|
-
.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) {
|
|
5047
5098
|
border: 1px solid #26418f;
|
|
5048
5099
|
border-top: 3px solid #26418f;
|
|
5049
5100
|
border-bottom: none;
|
|
5050
5101
|
}
|
|
5051
|
-
.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) {
|
|
5052
5103
|
border-bottom: 1px solid #26418f;
|
|
5053
5104
|
}
|
|
5054
5105
|
.cove .cdc-open-viz-module.theme-indigo .single-filters--pill .pill--active {
|
|
@@ -5058,12 +5109,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
5058
5109
|
.cove .cdc-open-viz-module.theme-indigo .filters-section button.cove-button:not([disabled]) {
|
|
5059
5110
|
background-color: #26418f !important;
|
|
5060
5111
|
}
|
|
5061
|
-
.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) {
|
|
5062
5113
|
border: 1px solid #26418f;
|
|
5063
5114
|
border-top: 3px solid #26418f;
|
|
5064
5115
|
border-bottom: none;
|
|
5065
5116
|
}
|
|
5066
|
-
.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) {
|
|
5067
5118
|
border-bottom: 1px solid #26418f;
|
|
5068
5119
|
}
|
|
5069
5120
|
.cove .cdc-open-viz-module .theme-indigo .single-filters--pill .pill--active {
|
|
@@ -5076,12 +5127,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
5076
5127
|
.cove .cdc-open-viz-module .theme-indigo .apply:not([disabled]) {
|
|
5077
5128
|
background-color: #26418f !important;
|
|
5078
5129
|
}
|
|
5079
|
-
.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) {
|
|
5080
5131
|
border: 1px solid #bb4d00;
|
|
5081
5132
|
border-top: 3px solid #bb4d00;
|
|
5082
5133
|
border-bottom: none;
|
|
5083
5134
|
}
|
|
5084
|
-
.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) {
|
|
5085
5136
|
border-bottom: 1px solid #bb4d00;
|
|
5086
5137
|
}
|
|
5087
5138
|
.cove .cdc-open-viz-module.theme-orange .single-filters--pill .pill--active {
|
|
@@ -5091,12 +5142,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
5091
5142
|
.cove .cdc-open-viz-module.theme-orange .filters-section button.cove-button:not([disabled]) {
|
|
5092
5143
|
background-color: #bb4d00 !important;
|
|
5093
5144
|
}
|
|
5094
|
-
.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) {
|
|
5095
5146
|
border: 1px solid #bb4d00;
|
|
5096
5147
|
border-top: 3px solid #bb4d00;
|
|
5097
5148
|
border-bottom: none;
|
|
5098
5149
|
}
|
|
5099
|
-
.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) {
|
|
5100
5151
|
border-bottom: 1px solid #bb4d00;
|
|
5101
5152
|
}
|
|
5102
5153
|
.cove .cdc-open-viz-module .theme-orange .single-filters--pill .pill--active {
|
|
@@ -5109,12 +5160,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
5109
5160
|
.cove .cdc-open-viz-module .theme-orange .apply:not([disabled]) {
|
|
5110
5161
|
background-color: #bb4d00 !important;
|
|
5111
5162
|
}
|
|
5112
|
-
.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) {
|
|
5113
5164
|
border: 1px solid #af4448;
|
|
5114
5165
|
border-top: 3px solid #af4448;
|
|
5115
5166
|
border-bottom: none;
|
|
5116
5167
|
}
|
|
5117
|
-
.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) {
|
|
5118
5169
|
border-bottom: 1px solid #af4448;
|
|
5119
5170
|
}
|
|
5120
5171
|
.cove .cdc-open-viz-module.theme-pink .single-filters--pill .pill--active {
|
|
@@ -5124,12 +5175,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
5124
5175
|
.cove .cdc-open-viz-module.theme-pink .filters-section button.cove-button:not([disabled]) {
|
|
5125
5176
|
background-color: #af4448 !important;
|
|
5126
5177
|
}
|
|
5127
|
-
.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) {
|
|
5128
5179
|
border: 1px solid #af4448;
|
|
5129
5180
|
border-top: 3px solid #af4448;
|
|
5130
5181
|
border-bottom: none;
|
|
5131
5182
|
}
|
|
5132
|
-
.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) {
|
|
5133
5184
|
border-bottom: 1px solid #af4448;
|
|
5134
5185
|
}
|
|
5135
5186
|
.cove .cdc-open-viz-module .theme-pink .single-filters--pill .pill--active {
|
|
@@ -5142,12 +5193,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
5142
5193
|
.cove .cdc-open-viz-module .theme-pink .apply:not([disabled]) {
|
|
5143
5194
|
background-color: #af4448 !important;
|
|
5144
5195
|
}
|
|
5145
|
-
.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) {
|
|
5146
5197
|
border: 1px solid #712177;
|
|
5147
5198
|
border-top: 3px solid #712177;
|
|
5148
5199
|
border-bottom: none;
|
|
5149
5200
|
}
|
|
5150
|
-
.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) {
|
|
5151
5202
|
border-bottom: 1px solid #712177;
|
|
5152
5203
|
}
|
|
5153
5204
|
.cove .cdc-open-viz-module.theme-purple .single-filters--pill .pill--active {
|
|
@@ -5157,12 +5208,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
5157
5208
|
.cove .cdc-open-viz-module.theme-purple .filters-section button.cove-button:not([disabled]) {
|
|
5158
5209
|
background-color: #712177 !important;
|
|
5159
5210
|
}
|
|
5160
|
-
.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) {
|
|
5161
5212
|
border: 1px solid #712177;
|
|
5162
5213
|
border-top: 3px solid #712177;
|
|
5163
5214
|
border-bottom: none;
|
|
5164
5215
|
}
|
|
5165
|
-
.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) {
|
|
5166
5217
|
border-bottom: 1px solid #712177;
|
|
5167
5218
|
}
|
|
5168
5219
|
.cove .cdc-open-viz-module .theme-purple .single-filters--pill .pill--active {
|
|
@@ -5175,12 +5226,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
5175
5226
|
.cove .cdc-open-viz-module .theme-purple .apply:not([disabled]) {
|
|
5176
5227
|
background-color: #712177 !important;
|
|
5177
5228
|
}
|
|
5178
|
-
.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) {
|
|
5179
5230
|
border: 1px solid #29434e;
|
|
5180
5231
|
border-top: 3px solid #29434e;
|
|
5181
5232
|
border-bottom: none;
|
|
5182
5233
|
}
|
|
5183
|
-
.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) {
|
|
5184
5235
|
border-bottom: 1px solid #29434e;
|
|
5185
5236
|
}
|
|
5186
5237
|
.cove .cdc-open-viz-module.theme-slate .single-filters--pill .pill--active {
|
|
@@ -5190,12 +5241,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
5190
5241
|
.cove .cdc-open-viz-module.theme-slate .filters-section button.cove-button:not([disabled]) {
|
|
5191
5242
|
background-color: #29434e !important;
|
|
5192
5243
|
}
|
|
5193
|
-
.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) {
|
|
5194
5245
|
border: 1px solid #29434e;
|
|
5195
5246
|
border-top: 3px solid #29434e;
|
|
5196
5247
|
border-bottom: none;
|
|
5197
5248
|
}
|
|
5198
|
-
.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) {
|
|
5199
5250
|
border-bottom: 1px solid #29434e;
|
|
5200
5251
|
}
|
|
5201
5252
|
.cove .cdc-open-viz-module .theme-slate .single-filters--pill .pill--active {
|
|
@@ -5208,12 +5259,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
5208
5259
|
.cove .cdc-open-viz-module .theme-slate .apply:not([disabled]) {
|
|
5209
5260
|
background-color: #29434e !important;
|
|
5210
5261
|
}
|
|
5211
|
-
.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) {
|
|
5212
5263
|
border: 1px solid #00695c;
|
|
5213
5264
|
border-top: 3px solid #00695c;
|
|
5214
5265
|
border-bottom: none;
|
|
5215
5266
|
}
|
|
5216
|
-
.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) {
|
|
5217
5268
|
border-bottom: 1px solid #00695c;
|
|
5218
5269
|
}
|
|
5219
5270
|
.cove .cdc-open-viz-module.theme-teal .single-filters--pill .pill--active {
|
|
@@ -5223,12 +5274,12 @@ body.post-type-cdc_visualization .cdc-editor .configure .editor-panel {
|
|
|
5223
5274
|
.cove .cdc-open-viz-module.theme-teal .filters-section button.cove-button:not([disabled]) {
|
|
5224
5275
|
background-color: #00695c !important;
|
|
5225
5276
|
}
|
|
5226
|
-
.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) {
|
|
5227
5278
|
border: 1px solid #00695c;
|
|
5228
5279
|
border-top: 3px solid #00695c;
|
|
5229
5280
|
border-bottom: none;
|
|
5230
5281
|
}
|
|
5231
|
-
.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) {
|
|
5232
5283
|
border-bottom: 1px solid #00695c;
|
|
5233
5284
|
}
|
|
5234
5285
|
.cove .cdc-open-viz-module .theme-teal .single-filters--pill .pill--active {
|