@northdata/fomantic-ui 2.9.418 → 2.9.420

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 (34) hide show
  1. package/lib/semantic-ui/dist/components/accordion.css +52 -0
  2. package/lib/semantic-ui/dist/components/accordion.min.css +1 -1
  3. package/lib/semantic-ui/dist/components/button.css +322 -7
  4. package/lib/semantic-ui/dist/components/button.min.css +1 -1
  5. package/lib/semantic-ui/dist/components/header.css +13 -13
  6. package/lib/semantic-ui/dist/components/header.min.css +1 -1
  7. package/lib/semantic-ui/dist/components/icon.css +17 -8
  8. package/lib/semantic-ui/dist/components/icon.min.css +1 -1
  9. package/lib/semantic-ui/dist/components/input.css +12 -12
  10. package/lib/semantic-ui/dist/components/input.min.css +1 -1
  11. package/lib/semantic-ui/dist/components/label.css +36 -36
  12. package/lib/semantic-ui/dist/components/label.min.css +1 -1
  13. package/lib/semantic-ui/dist/components/list.css +17 -12
  14. package/lib/semantic-ui/dist/components/list.min.css +1 -1
  15. package/lib/semantic-ui/dist/components/message.css +48 -7
  16. package/lib/semantic-ui/dist/components/message.min.css +1 -1
  17. package/lib/semantic-ui/dist/components/modal.css +8 -2
  18. package/lib/semantic-ui/dist/components/modal.min.css +1 -1
  19. package/lib/semantic-ui/dist/components/table.css +462 -38
  20. package/lib/semantic-ui/dist/components/table.min.css +1 -1
  21. package/lib/semantic-ui/dist/components/toast.css +288 -0
  22. package/lib/semantic-ui/dist/components/toast.js +964 -0
  23. package/lib/semantic-ui/dist/components/toast.min.css +9 -0
  24. package/lib/semantic-ui/dist/components/toast.min.js +11 -0
  25. package/lib/semantic-ui/dist/less/site/site.variables +5 -3
  26. package/lib/semantic-ui/dist/less/site/variation.variables +14 -14
  27. package/lib/semantic-ui/dist/semantic-packed.css +1424 -138
  28. package/lib/semantic-ui/dist/semantic.css +1549 -215
  29. package/lib/semantic-ui/dist/semantic.full.css +1741 -543
  30. package/lib/semantic-ui/dist/semantic.full.min.css +1 -1
  31. package/lib/semantic-ui/dist/semantic.js +965 -0
  32. package/lib/semantic-ui/dist/semantic.min.css +18 -10
  33. package/lib/semantic-ui/dist/semantic.min.js +1 -1
  34. package/package.json +2 -2
@@ -699,7 +699,7 @@ input::selection {
699
699
  }
700
700
 
701
701
  .ui.button:hover .icon {
702
- opacity: 0.85;
702
+ opacity: 1;
703
703
  }
704
704
 
705
705
  /* --------------
@@ -714,7 +714,7 @@ input::selection {
714
714
  }
715
715
 
716
716
  .ui.button:focus .icon {
717
- opacity: 0.85;
717
+ opacity: 1;
718
718
  }
719
719
 
720
720
  /* --------------
@@ -805,11 +805,19 @@ input::selection {
805
805
  box-shadow: none;
806
806
  }
807
807
 
808
+ .ui.basic.loading.button::before {
809
+ border-color: rgba(0, 0, 0, 0.1);
810
+ }
811
+
812
+ .ui.basic.loading.button::after {
813
+ border-color: #a3b3c0;
814
+ }
815
+
808
816
  /* -------------------
809
817
  Disabled
810
818
  -------------------- */
811
819
 
812
- .ui.buttons .disabled.button,
820
+ .ui.buttons .disabled.button:not(.basic),
813
821
  .ui.disabled.button,
814
822
  .ui.button:disabled,
815
823
  .ui.disabled.button:hover,
@@ -821,6 +829,12 @@ input::selection {
821
829
  pointer-events: none !important;
822
830
  }
823
831
 
832
+ /* Basic Group With Disabled */
833
+
834
+ .ui.basic.buttons .ui.disabled.button {
835
+ border-color: rgba(34, 36, 38, 0.5);
836
+ }
837
+
824
838
  /*******************************
825
839
  Types
826
840
  *******************************/
@@ -888,7 +902,7 @@ input::selection {
888
902
 
889
903
  .ui.button > .icon:not(.button) {
890
904
  height: auto;
891
- opacity: 0.8;
905
+ opacity: 1;
892
906
  transition: opacity 0.1s ease;
893
907
  color: "";
894
908
  }
@@ -1058,11 +1072,99 @@ input::selection {
1058
1072
  .ui.animated.icon.button > .content > .icon,
1059
1073
  .ui.icon.buttons .button > .icon,
1060
1074
  .ui.icon.button > .icon {
1061
- opacity: 0.9;
1075
+ opacity: 1;
1062
1076
  margin: 0 !important;
1063
1077
  vertical-align: top;
1064
1078
  }
1065
1079
 
1080
+ /* -------------------
1081
+ Basic
1082
+ -------------------- */
1083
+
1084
+ .ui.basic.buttons .button,
1085
+ .ui.basic.button {
1086
+ background: #fff none;
1087
+ color: rgba(0, 0, 0, 0.6);
1088
+ font-weight: normal;
1089
+ border-radius: 0;
1090
+ text-transform: none;
1091
+ text-shadow: none !important;
1092
+ box-shadow: 0 0 0 1px rgba(34, 36, 38, 0.15) inset;
1093
+ }
1094
+
1095
+ .ui.basic.buttons {
1096
+ box-shadow: none;
1097
+ border: 1px solid rgba(0, 0, 0, 0.1);
1098
+ border-radius: 0;
1099
+ border-right: none;
1100
+ }
1101
+
1102
+ .ui.basic.buttons .button {
1103
+ border-radius: 0;
1104
+ }
1105
+
1106
+ .ui.basic.buttons .button:hover,
1107
+ .ui.basic.button:hover {
1108
+ background: #f9fafb;
1109
+ color: rgba(0, 0, 0, 0.8);
1110
+ box-shadow: 0 0 0 1px rgba(34, 36, 38, 0.35) inset, 0 0 0 0 rgba(34, 36, 38, 0.15) inset;
1111
+ }
1112
+
1113
+ .ui.basic.buttons .button:focus,
1114
+ .ui.basic.button:focus {
1115
+ background: #f9fafb;
1116
+ color: rgba(0, 0, 0, 0.8);
1117
+ box-shadow: 0 0 0 1px rgba(34, 36, 38, 0.35) inset, 0 0 0 0 rgba(34, 36, 38, 0.15) inset;
1118
+ }
1119
+
1120
+ .ui.basic.buttons .button:active,
1121
+ .ui.basic.button:active {
1122
+ background: #f8f8f8;
1123
+ color: rgba(0, 0, 0, 0.9);
1124
+ box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15) inset, 0 1px 4px 0 rgba(34, 36, 38, 0.15) inset;
1125
+ }
1126
+
1127
+ .ui.basic.buttons .active.button,
1128
+ .ui.basic.active.button {
1129
+ background: rgba(0, 0, 0, 0.05);
1130
+ box-shadow: "";
1131
+ color: rgba(0, 0, 0, 0.95);
1132
+ }
1133
+
1134
+ .ui.basic.buttons .active.button:hover,
1135
+ .ui.basic.active.button:hover {
1136
+ background-color: rgba(0, 0, 0, 0.05);
1137
+ }
1138
+
1139
+ .ui.basic.buttons .button:hover {
1140
+ box-shadow: 0 0 0 1px rgba(34, 36, 38, 0.35) inset, 0 0 0 0 rgba(34, 36, 38, 0.15) inset;
1141
+ }
1142
+
1143
+ .ui.basic.buttons .button:active {
1144
+ box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15) inset, 0 1px 4px 0 rgba(34, 36, 38, 0.15) inset;
1145
+ }
1146
+
1147
+ .ui.basic.buttons .active.button {
1148
+ box-shadow: "";
1149
+ }
1150
+
1151
+ /* Basic Group */
1152
+
1153
+ .ui.basic.buttons .button:not(.basic) {
1154
+ border-right: 1px solid rgba(0, 0, 0, 0.1);
1155
+ box-shadow: none;
1156
+ }
1157
+
1158
+ .ui.basic.vertical.buttons .button {
1159
+ border-left: none;
1160
+ border-left-width: 0;
1161
+ border-top: 1px solid rgba(0, 0, 0, 0.1);
1162
+ }
1163
+
1164
+ .ui.basic.vertical.buttons:not(.spaced):not(.circular) .button:first-child {
1165
+ border-top: none;
1166
+ }
1167
+
1066
1168
  /* --------------
1067
1169
  Labeled Icon
1068
1170
  --------------- */
@@ -1177,6 +1279,18 @@ input::selection {
1177
1279
  margin-bottom: 0.25em;
1178
1280
  }
1179
1281
 
1282
+ .ui.circular.basic.buttons {
1283
+ border: none;
1284
+ }
1285
+
1286
+ .ui.circular.basic.buttons .button {
1287
+ border: 1px solid rgba(0, 0, 0, 0.1);
1288
+ }
1289
+
1290
+ .ui.circular.basic.buttons .button.basic {
1291
+ border: none;
1292
+ }
1293
+
1180
1294
  .ui.two.buttons {
1181
1295
  width: 100%;
1182
1296
  }
@@ -1355,6 +1469,42 @@ input::selection {
1355
1469
  text-shadow: none;
1356
1470
  }
1357
1471
 
1472
+ /* Basic */
1473
+
1474
+ .ui.basic.primary.buttons .button,
1475
+ .ui.basic.primary.button {
1476
+ background: transparent;
1477
+ box-shadow: 0 0 0 1px #007388 inset;
1478
+ color: #007388;
1479
+ }
1480
+
1481
+ .ui.basic.primary.buttons .button:hover,
1482
+ .ui.basic.primary.button:hover {
1483
+ background: transparent;
1484
+ box-shadow: 0 0 0 1px #005d6f inset;
1485
+ color: #005d6f;
1486
+ }
1487
+
1488
+ .ui.basic.primary.buttons .button:focus,
1489
+ .ui.basic.primary.button:focus {
1490
+ background: transparent;
1491
+ box-shadow: 0 0 0 1px #00505f inset;
1492
+ color: #005d6f;
1493
+ }
1494
+
1495
+ .ui.basic.primary.buttons .active.button,
1496
+ .ui.basic.primary.active.button {
1497
+ background: transparent;
1498
+ box-shadow: 0 0 0 1px #005d6f inset;
1499
+ color: #004855;
1500
+ }
1501
+
1502
+ .ui.basic.primary.buttons .button:active,
1503
+ .ui.basic.primary.button:active {
1504
+ box-shadow: 0 0 0 1px #004855 inset;
1505
+ color: #004855;
1506
+ }
1507
+
1358
1508
  .ui.secondary.buttons .button,
1359
1509
  .ui.secondary.button {
1360
1510
  background-color: #294755;
@@ -1397,6 +1547,42 @@ input::selection {
1397
1547
  text-shadow: none;
1398
1548
  }
1399
1549
 
1550
+ /* Basic */
1551
+
1552
+ .ui.basic.secondary.buttons .button,
1553
+ .ui.basic.secondary.button {
1554
+ background: transparent;
1555
+ box-shadow: 0 0 0 1px #294755 inset;
1556
+ color: #294755;
1557
+ }
1558
+
1559
+ .ui.basic.secondary.buttons .button:hover,
1560
+ .ui.basic.secondary.button:hover {
1561
+ background: transparent;
1562
+ box-shadow: 0 0 0 1px #2f5669 inset;
1563
+ color: #2f5669;
1564
+ }
1565
+
1566
+ .ui.basic.secondary.buttons .button:focus,
1567
+ .ui.basic.secondary.button:focus {
1568
+ background: transparent;
1569
+ box-shadow: 0 0 0 1px #306076 inset;
1570
+ color: #2f5669;
1571
+ }
1572
+
1573
+ .ui.basic.secondary.buttons .active.button,
1574
+ .ui.basic.secondary.active.button {
1575
+ background: transparent;
1576
+ box-shadow: 0 0 0 1px #2d576a inset;
1577
+ color: #3a6477;
1578
+ }
1579
+
1580
+ .ui.basic.secondary.buttons .button:active,
1581
+ .ui.basic.secondary.button:active {
1582
+ box-shadow: 0 0 0 1px #3a6477 inset;
1583
+ color: #3a6477;
1584
+ }
1585
+
1400
1586
  .ui.green.buttons .button,
1401
1587
  .ui.green.button {
1402
1588
  background-color: #81b08c;
@@ -1439,6 +1625,42 @@ input::selection {
1439
1625
  text-shadow: none;
1440
1626
  }
1441
1627
 
1628
+ /* Basic */
1629
+
1630
+ .ui.basic.green.buttons .button,
1631
+ .ui.basic.green.button {
1632
+ background: transparent;
1633
+ box-shadow: 0 0 0 1px #81b08c inset;
1634
+ color: #81b08c;
1635
+ }
1636
+
1637
+ .ui.basic.green.buttons .button:hover,
1638
+ .ui.basic.green.button:hover {
1639
+ background: transparent;
1640
+ box-shadow: 0 0 0 1px #6fa97c inset;
1641
+ color: #6fa97c;
1642
+ }
1643
+
1644
+ .ui.basic.green.buttons .button:focus,
1645
+ .ui.basic.green.button:focus {
1646
+ background: transparent;
1647
+ box-shadow: 0 0 0 1px #62a672 inset;
1648
+ color: #6fa97c;
1649
+ }
1650
+
1651
+ .ui.basic.green.buttons .active.button,
1652
+ .ui.basic.green.active.button {
1653
+ background: transparent;
1654
+ box-shadow: 0 0 0 1px #6daa7c inset;
1655
+ color: #629c70;
1656
+ }
1657
+
1658
+ .ui.basic.green.buttons .button:active,
1659
+ .ui.basic.green.button:active {
1660
+ box-shadow: 0 0 0 1px #629c70 inset;
1661
+ color: #629c70;
1662
+ }
1663
+
1442
1664
  .ui.red.buttons .button,
1443
1665
  .ui.red.button {
1444
1666
  background-color: #af4e4a;
@@ -1481,6 +1703,42 @@ input::selection {
1481
1703
  text-shadow: none;
1482
1704
  }
1483
1705
 
1706
+ /* Basic */
1707
+
1708
+ .ui.basic.red.buttons .button,
1709
+ .ui.basic.red.button {
1710
+ background: transparent;
1711
+ box-shadow: 0 0 0 1px #af4e4a inset;
1712
+ color: #af4e4a;
1713
+ }
1714
+
1715
+ .ui.basic.red.buttons .button:hover,
1716
+ .ui.basic.red.button:hover {
1717
+ background: transparent;
1718
+ box-shadow: 0 0 0 1px #a2423e inset;
1719
+ color: #a2423e;
1720
+ }
1721
+
1722
+ .ui.basic.red.buttons .button:focus,
1723
+ .ui.basic.red.button:focus {
1724
+ background: transparent;
1725
+ box-shadow: 0 0 0 1px #9b3935 inset;
1726
+ color: #a2423e;
1727
+ }
1728
+
1729
+ .ui.basic.red.buttons .active.button,
1730
+ .ui.basic.red.active.button {
1731
+ background: transparent;
1732
+ box-shadow: 0 0 0 1px #a4403c inset;
1733
+ color: #8b3e3b;
1734
+ }
1735
+
1736
+ .ui.basic.red.buttons .button:active,
1737
+ .ui.basic.red.button:active {
1738
+ box-shadow: 0 0 0 1px #8b3e3b inset;
1739
+ color: #8b3e3b;
1740
+ }
1741
+
1484
1742
  /* Standard */
1485
1743
 
1486
1744
  .ui.positive.buttons .button,
@@ -1525,6 +1783,46 @@ input::selection {
1525
1783
  text-shadow: none;
1526
1784
  }
1527
1785
 
1786
+ /* Basic */
1787
+
1788
+ .ui.basic.positive.buttons .button,
1789
+ .ui.basic.positive.button {
1790
+ background: transparent;
1791
+ box-shadow: 0 0 0 1px #81b08c inset;
1792
+ color: #81b08c;
1793
+ }
1794
+
1795
+ .ui.basic.positive.buttons .button:hover,
1796
+ .ui.basic.positive.button:hover {
1797
+ background: transparent;
1798
+ box-shadow: 0 0 0 1px #6fa97c inset;
1799
+ color: #6fa97c;
1800
+ }
1801
+
1802
+ .ui.basic.positive.buttons .button:focus,
1803
+ .ui.basic.positive.button:focus {
1804
+ background: transparent;
1805
+ box-shadow: 0 0 0 1px #62a672 inset;
1806
+ color: #6fa97c;
1807
+ }
1808
+
1809
+ .ui.basic.positive.buttons .active.button,
1810
+ .ui.basic.positive.active.button {
1811
+ background: transparent;
1812
+ box-shadow: 0 0 0 1px #6daa7c inset;
1813
+ color: #629c70;
1814
+ }
1815
+
1816
+ .ui.basic.positive.buttons .button:active,
1817
+ .ui.basic.positive.button:active {
1818
+ box-shadow: 0 0 0 1px #629c70 inset;
1819
+ color: #629c70;
1820
+ }
1821
+
1822
+ .ui.buttons:not(.vertical) > .basic.positive.button:not(:first-child) {
1823
+ margin-left: -1px;
1824
+ }
1825
+
1528
1826
  /* Standard */
1529
1827
 
1530
1828
  .ui.negative.buttons .button,
@@ -1569,6 +1867,46 @@ input::selection {
1569
1867
  text-shadow: none;
1570
1868
  }
1571
1869
 
1870
+ /* Basic */
1871
+
1872
+ .ui.basic.negative.buttons .button,
1873
+ .ui.basic.negative.button {
1874
+ background: transparent;
1875
+ box-shadow: 0 0 0 1px #af4e4a inset;
1876
+ color: #af4e4a;
1877
+ }
1878
+
1879
+ .ui.basic.negative.buttons .button:hover,
1880
+ .ui.basic.negative.button:hover {
1881
+ background: transparent;
1882
+ box-shadow: 0 0 0 1px #a2423e inset;
1883
+ color: #a2423e;
1884
+ }
1885
+
1886
+ .ui.basic.negative.buttons .button:focus,
1887
+ .ui.basic.negative.button:focus {
1888
+ background: transparent;
1889
+ box-shadow: 0 0 0 1px #9b3935 inset;
1890
+ color: #a2423e;
1891
+ }
1892
+
1893
+ .ui.basic.negative.buttons .active.button,
1894
+ .ui.basic.negative.active.button {
1895
+ background: transparent;
1896
+ box-shadow: 0 0 0 1px #a4403c inset;
1897
+ color: #8b3e3b;
1898
+ }
1899
+
1900
+ .ui.basic.negative.buttons .button:active,
1901
+ .ui.basic.negative.button:active {
1902
+ box-shadow: 0 0 0 1px #8b3e3b inset;
1903
+ color: #8b3e3b;
1904
+ }
1905
+
1906
+ .ui.buttons:not(.vertical) > .basic.negative.button:not(:first-child) {
1907
+ margin-left: -1px;
1908
+ }
1909
+
1572
1910
  /*******************************
1573
1911
  Groups
1574
1912
  *******************************/
@@ -1581,7 +1919,7 @@ input::selection {
1581
1919
  margin: 0 0.25em 0 0;
1582
1920
  }
1583
1921
 
1584
- .ui.buttons {
1922
+ .ui.buttons:not(.basic) {
1585
1923
  box-shadow: none;
1586
1924
  }
1587
1925
 
@@ -1603,7 +1941,7 @@ input::selection {
1603
1941
  margin: 0;
1604
1942
  }
1605
1943
 
1606
- .ui.buttons > .button {
1944
+ .ui.buttons:not(.basic) > .button:not(.basic) {
1607
1945
  box-shadow: 0 0 0 1px transparent inset, 0 0 0 0 rgba(34, 36, 38, 0.15) inset;
1608
1946
  }
1609
1947
 
@@ -1632,6 +1970,9 @@ input::selection {
1632
1970
  width: 100%;
1633
1971
  margin: 0;
1634
1972
  border-radius: 0;
1973
+ }
1974
+
1975
+ .ui.vertical.buttons .button:not(.basic) {
1635
1976
  box-shadow: none;
1636
1977
  }
1637
1978
 
@@ -1650,12 +1991,47 @@ input::selection {
1650
1991
  border-radius: 0;
1651
1992
  }
1652
1993
 
1994
+ .ui.vertical.buttons .basic.button:not(:first-child) {
1995
+ border-top: none;
1996
+ }
1997
+
1653
1998
  .ui.spaced.buttons .ui.button {
1654
1999
  margin-bottom: 1em;
1655
2000
  margin-right: 1em;
1656
2001
  border-radius: 0;
1657
2002
  }
1658
2003
 
2004
+ .ui.spaced.basic.buttons {
2005
+ border: none;
2006
+ }
2007
+
2008
+ .ui.spaced.basic.buttons .button {
2009
+ border: 1px solid rgba(0, 0, 0, 0.1);
2010
+ }
2011
+
2012
+ .ui.spaced.basic.buttons .button.basic {
2013
+ border: none;
2014
+ }
2015
+
2016
+ .ui.spaced.basic.vertical.buttons .button:first-child {
2017
+ border-top: 1px solid rgba(0, 0, 0, 0.1);
2018
+ }
2019
+
2020
+ .ui.basic.buttons:not(.vertical).inverted .button,
2021
+ .ui.basic.buttons:not(.vertical) .basic.button {
2022
+ margin-left: -1px;
2023
+ border-right: none;
2024
+ }
2025
+
2026
+ .ui.basic.buttons:not(.vertical):not(.spaced) .basic.button {
2027
+ margin-top: -1px;
2028
+ border-bottom: none;
2029
+ }
2030
+
2031
+ .ui.basic.buttons:not(.vertical):not(.spaced) .basic.button {
2032
+ margin-bottom: -1px;
2033
+ }
2034
+
1659
2035
  /*******************************
1660
2036
  Theme Overrides
1661
2037
  *******************************/
@@ -3488,7 +3864,7 @@ i.flag.zimbabwe::before {
3488
3864
  opacity: 1;
3489
3865
  font-size: 1.5em;
3490
3866
  padding-top: 0.14285714em;
3491
- vertical-align: middle;
3867
+ vertical-align: baseline;
3492
3868
  }
3493
3869
 
3494
3870
  /* With Text Node */
@@ -3833,15 +4209,15 @@ a.ui.red.header:hover {
3833
4209
  }
3834
4210
 
3835
4211
  .ui.orange.header {
3836
- color: #f2711c;
4212
+ color: #af6a66;
3837
4213
  }
3838
4214
 
3839
4215
  a.ui.orange.header:hover {
3840
- color: #f26202;
4216
+ color: #a95752;
3841
4217
  }
3842
4218
 
3843
4219
  .ui.orange.dividing.header {
3844
- border-bottom: 2px solid #f2711c;
4220
+ border-bottom: 2px solid #af6a66;
3845
4221
  }
3846
4222
 
3847
4223
  .ui.yellow.header {
@@ -3917,39 +4293,39 @@ a.ui.violet.header:hover {
3917
4293
  }
3918
4294
 
3919
4295
  .ui.purple.header {
3920
- color: #af6690;
4296
+ color: #6667af;
3921
4297
  }
3922
4298
 
3923
4299
  a.ui.purple.header:hover {
3924
- color: #a95284;
4300
+ color: #5254a9;
3925
4301
  }
3926
4302
 
3927
4303
  .ui.purple.dividing.header {
3928
- border-bottom: 2px solid #af6690;
4304
+ border-bottom: 2px solid #6667af;
3929
4305
  }
3930
4306
 
3931
4307
  .ui.pink.header {
3932
- color: #e03997;
4308
+ color: #af6687;
3933
4309
  }
3934
4310
 
3935
4311
  a.ui.pink.header:hover {
3936
- color: #e61a8d;
4312
+ color: #a9527a;
3937
4313
  }
3938
4314
 
3939
4315
  .ui.pink.dividing.header {
3940
- border-bottom: 2px solid #e03997;
4316
+ border-bottom: 2px solid #af6687;
3941
4317
  }
3942
4318
 
3943
4319
  .ui.brown.header {
3944
- color: #af9666;
4320
+ color: #af9066;
3945
4321
  }
3946
4322
 
3947
4323
  a.ui.brown.header:hover {
3948
- color: #a98b52;
4324
+ color: #a98452;
3949
4325
  }
3950
4326
 
3951
4327
  .ui.brown.dividing.header {
3952
- border-bottom: 2px solid #af9666;
4328
+ border-bottom: 2px solid #af9066;
3953
4329
  }
3954
4330
 
3955
4331
  .ui.grey.header {
@@ -4250,6 +4626,16 @@ i.emphasized.icons {
4250
4626
  Variations
4251
4627
  *******************************/
4252
4628
 
4629
+ /* -------------------
4630
+ Fitted
4631
+ -------------------- */
4632
+
4633
+ i.fitted.icons,
4634
+ i.fitted.icon {
4635
+ width: auto;
4636
+ margin: 0 !important;
4637
+ }
4638
+
4253
4639
  /* -------------------
4254
4640
  Link
4255
4641
  -------------------- */
@@ -4357,7 +4743,7 @@ i.inverted.circular.red.icons {
4357
4743
  }
4358
4744
 
4359
4745
  i.orange.icon.icon.icon.icon.icon.icon {
4360
- color: #f2711c;
4746
+ color: #af6a66;
4361
4747
  }
4362
4748
 
4363
4749
  i.inverted.orange.icon.icon.icon.icon.icon.icon {
@@ -4368,7 +4754,7 @@ i.inverted.bordered.orange.icon.icon.icon.icon.icon.icon,
4368
4754
  i.inverted.circular.orange.icon.icon.icon.icon.icon.icon,
4369
4755
  i.inverted.bordered.orange.icons,
4370
4756
  i.inverted.circular.orange.icons {
4371
- background-color: #f2711c;
4757
+ background-color: #af6a66;
4372
4758
  color: #fff;
4373
4759
  }
4374
4760
 
@@ -4469,7 +4855,7 @@ i.inverted.circular.violet.icons {
4469
4855
  }
4470
4856
 
4471
4857
  i.purple.icon.icon.icon.icon.icon.icon {
4472
- color: #af6690;
4858
+ color: #6667af;
4473
4859
  }
4474
4860
 
4475
4861
  i.inverted.purple.icon.icon.icon.icon.icon.icon {
@@ -4480,12 +4866,12 @@ i.inverted.bordered.purple.icon.icon.icon.icon.icon.icon,
4480
4866
  i.inverted.circular.purple.icon.icon.icon.icon.icon.icon,
4481
4867
  i.inverted.bordered.purple.icons,
4482
4868
  i.inverted.circular.purple.icons {
4483
- background-color: #af6690;
4869
+ background-color: #6667af;
4484
4870
  color: #fff;
4485
4871
  }
4486
4872
 
4487
4873
  i.pink.icon.icon.icon.icon.icon.icon {
4488
- color: #e03997;
4874
+ color: #af6687;
4489
4875
  }
4490
4876
 
4491
4877
  i.inverted.pink.icon.icon.icon.icon.icon.icon {
@@ -4496,12 +4882,12 @@ i.inverted.bordered.pink.icon.icon.icon.icon.icon.icon,
4496
4882
  i.inverted.circular.pink.icon.icon.icon.icon.icon.icon,
4497
4883
  i.inverted.bordered.pink.icons,
4498
4884
  i.inverted.circular.pink.icons {
4499
- background-color: #e03997;
4885
+ background-color: #af6687;
4500
4886
  color: #fff;
4501
4887
  }
4502
4888
 
4503
4889
  i.brown.icon.icon.icon.icon.icon.icon {
4504
- color: #af9666;
4890
+ color: #af9066;
4505
4891
  }
4506
4892
 
4507
4893
  i.inverted.brown.icon.icon.icon.icon.icon.icon {
@@ -4512,7 +4898,7 @@ i.inverted.bordered.brown.icon.icon.icon.icon.icon.icon,
4512
4898
  i.inverted.circular.brown.icon.icon.icon.icon.icon.icon,
4513
4899
  i.inverted.bordered.brown.icons,
4514
4900
  i.inverted.circular.brown.icons {
4515
- background-color: #af9666;
4901
+ background-color: #af9066;
4516
4902
  color: #fff;
4517
4903
  }
4518
4904
 
@@ -14037,39 +14423,39 @@ input[type="file"].ui.invisible.file.input,
14037
14423
  position: absolute;
14038
14424
  }
14039
14425
 
14040
- input[type="file"].ui.file.input:focus + label.ui.button,
14041
- .ui.file.input input[type="file"]:focus + label.ui.button {
14426
+ input[type="file"].ui.file.input:focus + label.ui.button:not(.basic),
14427
+ .ui.file.input input[type="file"]:focus + label.ui.button:not(.basic) {
14042
14428
  background: #cacbcd;
14043
14429
  color: rgba(0, 0, 0, 0.8);
14044
14430
  }
14045
14431
 
14046
- input[type="file"].ui.file.input:focus + label.ui.button.inverted,
14047
- .ui.file.input input[type="file"]:focus + label.ui.button.inverted {
14432
+ input[type="file"].ui.file.input:focus + label.ui.button:not(.basic).inverted,
14433
+ .ui.file.input input[type="file"]:focus + label.ui.button:not(.basic).inverted {
14048
14434
  background: #fff;
14049
14435
  }
14050
14436
 
14051
14437
  /* this is related to existing buttons, so the button color variable is used here! */
14052
14438
 
14053
- input[type="file"].ui.file.input:focus + label.ui.primary.button,
14054
- .ui.file.input input[type="file"]:focus + label.ui.primary.button {
14439
+ input[type="file"].ui.file.input:focus + label.ui.primary.button:not(.basic),
14440
+ .ui.file.input input[type="file"]:focus + label.ui.primary.button:not(.basic) {
14055
14441
  background-color: #005d6f;
14056
14442
  color: #fff;
14057
14443
  }
14058
14444
 
14059
- input[type="file"].ui.file.input:focus + label.ui.secondary.button,
14060
- .ui.file.input input[type="file"]:focus + label.ui.secondary.button {
14445
+ input[type="file"].ui.file.input:focus + label.ui.secondary.button:not(.basic),
14446
+ .ui.file.input input[type="file"]:focus + label.ui.secondary.button:not(.basic) {
14061
14447
  background-color: #2f5669;
14062
14448
  color: #fff;
14063
14449
  }
14064
14450
 
14065
- input[type="file"].ui.file.input:focus + label.ui.green.button,
14066
- .ui.file.input input[type="file"]:focus + label.ui.green.button {
14451
+ input[type="file"].ui.file.input:focus + label.ui.green.button:not(.basic),
14452
+ .ui.file.input input[type="file"]:focus + label.ui.green.button:not(.basic) {
14067
14453
  background-color: #6fa97c;
14068
14454
  color: #fff;
14069
14455
  }
14070
14456
 
14071
- input[type="file"].ui.file.input:focus + label.ui.red.button,
14072
- .ui.file.input input[type="file"]:focus + label.ui.red.button {
14457
+ input[type="file"].ui.file.input:focus + label.ui.red.button:not(.basic),
14458
+ .ui.file.input input[type="file"]:focus + label.ui.red.button:not(.basic) {
14073
14459
  background-color: #a2423e;
14074
14460
  color: #fff;
14075
14461
  }
@@ -15002,8 +15388,8 @@ a.ui.ui.ui.basic.red.label:hover {
15002
15388
 
15003
15389
  .ui.orange.labels .label,
15004
15390
  .ui.ui.ui.orange.label {
15005
- background-color: #f2711c;
15006
- border-color: #f2711c;
15391
+ background-color: #af6a66;
15392
+ border-color: #af6a66;
15007
15393
  color: #fff;
15008
15394
  }
15009
15395
 
@@ -15011,15 +15397,15 @@ a.ui.ui.ui.basic.red.label:hover {
15011
15397
 
15012
15398
  .ui.orange.labels a.label:hover,
15013
15399
  a.ui.ui.ui.orange.label:hover {
15014
- background-color: #f26202;
15015
- border-color: #f26202;
15400
+ background-color: #a95752;
15401
+ border-color: #a95752;
15016
15402
  color: #fff;
15017
15403
  }
15018
15404
 
15019
15405
  /* Ribbon */
15020
15406
 
15021
15407
  .ui.ui.ui.orange.ribbon.label {
15022
- border-color: #cf590c;
15408
+ border-color: #94514e;
15023
15409
  }
15024
15410
 
15025
15411
  /* Basic */
@@ -15027,15 +15413,15 @@ a.ui.ui.ui.orange.label:hover {
15027
15413
  .ui.basic.labels .orange.label,
15028
15414
  .ui.ui.ui.basic.orange.label {
15029
15415
  background: none #fff;
15030
- border-color: #f2711c;
15031
- color: #f2711c;
15416
+ border-color: #af6a66;
15417
+ color: #af6a66;
15032
15418
  }
15033
15419
 
15034
15420
  .ui.basic.labels a.orange.label:hover,
15035
15421
  a.ui.ui.ui.basic.orange.label:hover {
15036
15422
  background: none #fff;
15037
- border-color: #f26202;
15038
- color: #f26202;
15423
+ border-color: #a95752;
15424
+ color: #a95752;
15039
15425
  }
15040
15426
 
15041
15427
  .ui.yellow.labels .label,
@@ -15268,8 +15654,8 @@ a.ui.ui.ui.basic.violet.label:hover {
15268
15654
 
15269
15655
  .ui.purple.labels .label,
15270
15656
  .ui.ui.ui.purple.label {
15271
- background-color: #af6690;
15272
- border-color: #af6690;
15657
+ background-color: #6667af;
15658
+ border-color: #6667af;
15273
15659
  color: #fff;
15274
15660
  }
15275
15661
 
@@ -15277,15 +15663,15 @@ a.ui.ui.ui.basic.violet.label:hover {
15277
15663
 
15278
15664
  .ui.purple.labels a.label:hover,
15279
15665
  a.ui.ui.ui.purple.label:hover {
15280
- background-color: #a95284;
15281
- border-color: #a95284;
15666
+ background-color: #5254a9;
15667
+ border-color: #5254a9;
15282
15668
  color: #fff;
15283
15669
  }
15284
15670
 
15285
15671
  /* Ribbon */
15286
15672
 
15287
15673
  .ui.ui.ui.purple.ribbon.label {
15288
- border-color: #944e76;
15674
+ border-color: #4e4f94;
15289
15675
  }
15290
15676
 
15291
15677
  /* Basic */
@@ -15293,21 +15679,21 @@ a.ui.ui.ui.purple.label:hover {
15293
15679
  .ui.basic.labels .purple.label,
15294
15680
  .ui.ui.ui.basic.purple.label {
15295
15681
  background: none #fff;
15296
- border-color: #af6690;
15297
- color: #af6690;
15682
+ border-color: #6667af;
15683
+ color: #6667af;
15298
15684
  }
15299
15685
 
15300
15686
  .ui.basic.labels a.purple.label:hover,
15301
15687
  a.ui.ui.ui.basic.purple.label:hover {
15302
15688
  background: none #fff;
15303
- border-color: #a95284;
15304
- color: #a95284;
15689
+ border-color: #5254a9;
15690
+ color: #5254a9;
15305
15691
  }
15306
15692
 
15307
15693
  .ui.pink.labels .label,
15308
15694
  .ui.ui.ui.pink.label {
15309
- background-color: #e03997;
15310
- border-color: #e03997;
15695
+ background-color: #af6687;
15696
+ border-color: #af6687;
15311
15697
  color: #fff;
15312
15698
  }
15313
15699
 
@@ -15315,15 +15701,15 @@ a.ui.ui.ui.basic.purple.label:hover {
15315
15701
 
15316
15702
  .ui.pink.labels a.label:hover,
15317
15703
  a.ui.ui.ui.pink.label:hover {
15318
- background-color: #e61a8d;
15319
- border-color: #e61a8d;
15704
+ background-color: #a9527a;
15705
+ border-color: #a9527a;
15320
15706
  color: #fff;
15321
15707
  }
15322
15708
 
15323
15709
  /* Ribbon */
15324
15710
 
15325
15711
  .ui.ui.ui.pink.ribbon.label {
15326
- border-color: #c71f7e;
15712
+ border-color: #944e6e;
15327
15713
  }
15328
15714
 
15329
15715
  /* Basic */
@@ -15331,21 +15717,21 @@ a.ui.ui.ui.pink.label:hover {
15331
15717
  .ui.basic.labels .pink.label,
15332
15718
  .ui.ui.ui.basic.pink.label {
15333
15719
  background: none #fff;
15334
- border-color: #e03997;
15335
- color: #e03997;
15720
+ border-color: #af6687;
15721
+ color: #af6687;
15336
15722
  }
15337
15723
 
15338
15724
  .ui.basic.labels a.pink.label:hover,
15339
15725
  a.ui.ui.ui.basic.pink.label:hover {
15340
15726
  background: none #fff;
15341
- border-color: #e61a8d;
15342
- color: #e61a8d;
15727
+ border-color: #a9527a;
15728
+ color: #a9527a;
15343
15729
  }
15344
15730
 
15345
15731
  .ui.brown.labels .label,
15346
15732
  .ui.ui.ui.brown.label {
15347
- background-color: #af9666;
15348
- border-color: #af9666;
15733
+ background-color: #af9066;
15734
+ border-color: #af9066;
15349
15735
  color: #fff;
15350
15736
  }
15351
15737
 
@@ -15353,15 +15739,15 @@ a.ui.ui.ui.basic.pink.label:hover {
15353
15739
 
15354
15740
  .ui.brown.labels a.label:hover,
15355
15741
  a.ui.ui.ui.brown.label:hover {
15356
- background-color: #a98b52;
15357
- border-color: #a98b52;
15742
+ background-color: #a98452;
15743
+ border-color: #a98452;
15358
15744
  color: #fff;
15359
15745
  }
15360
15746
 
15361
15747
  /* Ribbon */
15362
15748
 
15363
15749
  .ui.ui.ui.brown.ribbon.label {
15364
- border-color: #947c4e;
15750
+ border-color: #94764e;
15365
15751
  }
15366
15752
 
15367
15753
  /* Basic */
@@ -15369,15 +15755,15 @@ a.ui.ui.ui.brown.label:hover {
15369
15755
  .ui.basic.labels .brown.label,
15370
15756
  .ui.ui.ui.basic.brown.label {
15371
15757
  background: none #fff;
15372
- border-color: #af9666;
15373
- color: #af9666;
15758
+ border-color: #af9066;
15759
+ color: #af9066;
15374
15760
  }
15375
15761
 
15376
15762
  .ui.basic.labels a.brown.label:hover,
15377
15763
  a.ui.ui.ui.basic.brown.label:hover {
15378
15764
  background: none #fff;
15379
- border-color: #a98b52;
15380
- color: #a98b52;
15765
+ border-color: #a98452;
15766
+ color: #a98452;
15381
15767
  }
15382
15768
 
15383
15769
  .ui.grey.labels .label,
@@ -15722,7 +16108,7 @@ ul.ui.list,
15722
16108
  ol.ui.list,
15723
16109
  .ui.list {
15724
16110
  list-style-type: none;
15725
- margin: 1em 0;
16111
+ margin: 1.14285714rem 0;
15726
16112
  padding: 0 0;
15727
16113
  }
15728
16114
 
@@ -15754,7 +16140,7 @@ ol.ui.list li,
15754
16140
  table-layout: fixed;
15755
16141
  list-style-type: none;
15756
16142
  list-style-position: outside;
15757
- padding: 0.21428571em 0;
16143
+ padding: 0 0;
15758
16144
  line-height: 1.14285714em;
15759
16145
  }
15760
16146
 
@@ -15890,8 +16276,8 @@ ol.ui.list ol li,
15890
16276
  .ui.list > .item .header {
15891
16277
  display: block;
15892
16278
  margin: 0;
15893
- font-family: "Josefin Sans", serif;
15894
- font-weight: bold;
16279
+ font-family: "Roboto", "Helvetica Neue", Arial, Helvetica, sans-serif;
16280
+ font-weight: 500;
15895
16281
  color: rgba(0, 0, 0, 0.87);
15896
16282
  }
15897
16283
 
@@ -15978,7 +16364,7 @@ ol.ui.list ol li,
15978
16364
  background-color: transparent;
15979
16365
  list-style-type: none;
15980
16366
  list-style-position: outside;
15981
- padding: 0.21428571em 0;
16367
+ padding: 0 0;
15982
16368
  line-height: 1.14285714em;
15983
16369
  }
15984
16370
 
@@ -16040,8 +16426,8 @@ ol.ui.list ol li,
16040
16426
 
16041
16427
  .ui.horizontal.list > .item:first-child,
16042
16428
  .ui.horizontal.list > .item:last-child {
16043
- padding-top: 0.21428571em;
16044
- padding-bottom: 0.21428571em;
16429
+ padding-top: 0;
16430
+ padding-bottom: 0;
16045
16431
  }
16046
16432
 
16047
16433
  /* Horizontal List */
@@ -16414,7 +16800,7 @@ ol.ui.suffixed.list li::before,
16414
16800
  .ui.divided.ordered.list .item .list:not(.icon) {
16415
16801
  margin-left: 0;
16416
16802
  margin-right: 0;
16417
- padding-bottom: 0.21428571em;
16803
+ padding-bottom: 0;
16418
16804
  }
16419
16805
 
16420
16806
  .ui.divided.ordered.list .item .list > .item {
@@ -16473,8 +16859,8 @@ ol.ui.suffixed.list li::before,
16473
16859
 
16474
16860
  .ui.celled.list > .item:first-child,
16475
16861
  .ui.celled.list > .item:last-child {
16476
- padding-top: 0.21428571em;
16477
- padding-bottom: 0.21428571em;
16862
+ padding-top: 0;
16863
+ padding-bottom: 0;
16478
16864
  }
16479
16865
 
16480
16866
  /* Sub Menu */
@@ -16501,7 +16887,7 @@ ol.ui.suffixed.list li::before,
16501
16887
  .ui.celled.bulleted.list .item .list:not(.icon) {
16502
16888
  margin-left: -1.25rem;
16503
16889
  margin-right: -1.25rem;
16504
- padding-bottom: 0.21428571em;
16890
+ padding-bottom: 0;
16505
16891
  }
16506
16892
 
16507
16893
  /* Celled Ordered */
@@ -16518,7 +16904,7 @@ ol.ui.suffixed.list li::before,
16518
16904
  .ui.celled.ordered.list .item .list:not(.icon) {
16519
16905
  margin-left: 0;
16520
16906
  margin-right: 0;
16521
- padding-bottom: 0.21428571em;
16907
+ padding-bottom: 0;
16522
16908
  }
16523
16909
 
16524
16910
  .ui.celled.ordered.list .list > .item {
@@ -16647,8 +17033,14 @@ ol.ui.suffixed.list li::before,
16647
17033
  /*******************************
16648
17034
  Site Overrides
16649
17035
  *******************************/
16650
- /*!
16651
- * # Fomantic-UI 2.9.4 - Loader
17036
+
17037
+ .ui.list .list > .item .sub.header,
17038
+ .ui.list > .item .sub.header {
17039
+ font-weight: 300;
17040
+ margin-top: 0.28571429em;
17041
+ }
17042
+ /*!
17043
+ * # Fomantic-UI 2.9.4 - Loader
16652
17044
  * https://github.com/fomantic/Fomantic-UI/
16653
17045
  *
16654
17046
  *
@@ -22787,9 +23179,9 @@ Floated Menu / Item
22787
23179
  .ui.message {
22788
23180
  position: relative;
22789
23181
  min-height: 1em;
22790
- margin: 1em 0;
23182
+ margin: 1.14285714rem 0;
22791
23183
  background: #f8f8f9;
22792
- padding: 1em 1.5em;
23184
+ padding: 1.14285714em;
22793
23185
  line-height: 1.4285em;
22794
23186
  color: rgba(0, 0, 0, 0.87);
22795
23187
  transition: opacity 0.1s ease, color 0.1s ease, background 0.1s ease, box-shadow 0.1s ease;
@@ -22813,9 +23205,9 @@ Floated Menu / Item
22813
23205
 
22814
23206
  .ui.message .header {
22815
23207
  display: block;
22816
- font-family: "Josefin Sans", serif;
22817
- font-weight: bold;
22818
- margin: -0.14285714em 0 0 0;
23208
+ font-family: "Roboto", "Helvetica Neue", Arial, Helvetica, sans-serif;
23209
+ font-weight: 300;
23210
+ margin: 0 0 0 0;
22819
23211
  }
22820
23212
 
22821
23213
  /* Default font size */
@@ -22840,7 +23232,7 @@ Floated Menu / Item
22840
23232
  }
22841
23233
 
22842
23234
  .ui.message .header + p {
22843
- margin-top: 0.25em;
23235
+ margin-top: 0.28571429em;
22844
23236
  }
22845
23237
 
22846
23238
  /* List */
@@ -23007,7 +23399,7 @@ Floated Menu / Item
23007
23399
  }
23008
23400
 
23009
23401
  .ui.bottom.attached.message:not(:last-child) {
23010
- margin-bottom: 1em;
23402
+ margin-bottom: 1.14285714rem;
23011
23403
  }
23012
23404
 
23013
23405
  .ui.attached.icon.message {
@@ -23221,6 +23613,42 @@ Floated Menu / Item
23221
23613
  color: rgba(255, 255, 255, 0.9);
23222
23614
  }
23223
23615
 
23616
+ .ui.violet.message {
23617
+ background-color: #eae7ff;
23618
+ color: #9461ac;
23619
+ }
23620
+
23621
+ .ui.violet.message,
23622
+ .ui.attached.violet.message {
23623
+ box-shadow: 0 0 0 1px #9461ac inset, 0 0 0 0 rgba(0, 0, 0, 0);
23624
+ }
23625
+
23626
+ .ui.floating.violet.message {
23627
+ box-shadow: 0 0 0 1px #9461ac inset, 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
23628
+ }
23629
+
23630
+ .ui.violet.message .header {
23631
+ color: #8754a0;
23632
+ }
23633
+
23634
+ .ui.purple.message {
23635
+ background-color: #f6e7ff;
23636
+ color: #6667af;
23637
+ }
23638
+
23639
+ .ui.purple.message,
23640
+ .ui.attached.purple.message {
23641
+ box-shadow: 0 0 0 1px #6667af inset, 0 0 0 0 rgba(0, 0, 0, 0);
23642
+ }
23643
+
23644
+ .ui.floating.purple.message {
23645
+ box-shadow: 0 0 0 1px #6667af inset, 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
23646
+ }
23647
+
23648
+ .ui.purple.message .header {
23649
+ color: #5657a5;
23650
+ }
23651
+
23224
23652
  /* --------------
23225
23653
  Sizes
23226
23654
  --------------- */
@@ -23264,6 +23692,22 @@ Floated Menu / Item
23264
23692
  /*******************************
23265
23693
  Site Overrides
23266
23694
  *******************************/
23695
+
23696
+ .ui.icon.message {
23697
+ align-items: flex-start;
23698
+ }
23699
+
23700
+ .ui.icon.message > .content.details {
23701
+ flex: 0 0 auto;
23702
+ align-self: center;
23703
+ margin-left: 0.57142857em;
23704
+ }
23705
+
23706
+ @media only screen and (max-width: 767.98px) {
23707
+ .ui.icon.message > .content.details {
23708
+ display: none;
23709
+ }
23710
+ }
23267
23711
  /*!
23268
23712
  * # Fomantic-UI 2.9.4 - Table
23269
23713
  * https://github.com/fomantic/Fomantic-UI/
@@ -24342,6 +24786,256 @@ Floated Menu / Item
24342
24786
  color: #1ebc30;
24343
24787
  }
24344
24788
 
24789
+ .ui.olive.table {
24790
+ border-top: 0.2em solid #a0b06c;
24791
+ }
24792
+
24793
+ /* Same color for background and color to camouflage the scrollbar */
24794
+
24795
+ .ui.scrolling.table > thead.olive,
24796
+ .ui.scrolling.table > tfoot.olive {
24797
+ background: #f7fae4;
24798
+ color: #f7fae4;
24799
+ }
24800
+
24801
+ .ui.scrolling.table > thead.olive > tr > th,
24802
+ .ui.scrolling.table > tfoot.olive > tr > th,
24803
+ .ui.scrolling.table > thead.olive > tr > td,
24804
+ .ui.scrolling.table > tfoot.olive > tr > td {
24805
+ background: inherit;
24806
+ color: #8abc1e;
24807
+ }
24808
+
24809
+ .ui.ui.ui.ui.table tr[class*="olive colored"],
24810
+ .ui.ui.table th[class*="olive colored"],
24811
+ .ui.ui.table td[class*="olive colored"],
24812
+ .ui.ui.ui.ui.table tr.olive,
24813
+ .ui.ui.table th.olive,
24814
+ .ui.ui.table td.olive {
24815
+ background: #f7fae4;
24816
+ color: #8abc1e;
24817
+ }
24818
+
24819
+ .ui.table > thead > tr[class*="olive colored"] > th,
24820
+ .ui.table > tfoot > tr[class*="olive colored"] > th,
24821
+ .ui.table > tfoot > tr[class*="olive colored"] > td,
24822
+ .ui.table > thead > tr.olive > th,
24823
+ .ui.table > tfoot > tr.olive > th,
24824
+ .ui.table > tfoot > tr.olive > td {
24825
+ background: inherit;
24826
+ color: #8abc1e;
24827
+ }
24828
+
24829
+ .ui.ui.selectable.table tr[class*="olive colored"]:hover,
24830
+ .ui.table tr td.selectable[class*="olive colored"]:hover,
24831
+ .ui.selectable.table tr:hover td[class*="olive colored"],
24832
+ .ui.ui.selectable.table tr.olive:hover,
24833
+ .ui.table tr td.selectable.olive:hover,
24834
+ .ui.selectable.table tr:hover td.olive {
24835
+ background: #f6fada;
24836
+ color: #8abc1e;
24837
+ }
24838
+
24839
+ .ui.pink.table {
24840
+ border-top: 0.2em solid #af6687;
24841
+ }
24842
+
24843
+ /* Same color for background and color to camouflage the scrollbar */
24844
+
24845
+ .ui.scrolling.table > thead.pink,
24846
+ .ui.scrolling.table > tfoot.pink {
24847
+ background: #ffe8f9;
24848
+ color: #ffe8f9;
24849
+ }
24850
+
24851
+ .ui.scrolling.table > thead.pink > tr > th,
24852
+ .ui.scrolling.table > tfoot.pink > tr > th,
24853
+ .ui.scrolling.table > thead.pink > tr > td,
24854
+ .ui.scrolling.table > tfoot.pink > tr > td {
24855
+ background: inherit;
24856
+ color: #af6687;
24857
+ }
24858
+
24859
+ .ui.ui.ui.ui.table tr[class*="pink colored"],
24860
+ .ui.ui.table th[class*="pink colored"],
24861
+ .ui.ui.table td[class*="pink colored"],
24862
+ .ui.ui.ui.ui.table tr.pink,
24863
+ .ui.ui.table th.pink,
24864
+ .ui.ui.table td.pink {
24865
+ background: #ffe8f9;
24866
+ color: #af6687;
24867
+ }
24868
+
24869
+ .ui.table > thead > tr[class*="pink colored"] > th,
24870
+ .ui.table > tfoot > tr[class*="pink colored"] > th,
24871
+ .ui.table > tfoot > tr[class*="pink colored"] > td,
24872
+ .ui.table > thead > tr.pink > th,
24873
+ .ui.table > tfoot > tr.pink > th,
24874
+ .ui.table > tfoot > tr.pink > td {
24875
+ background: inherit;
24876
+ color: #af6687;
24877
+ }
24878
+
24879
+ .ui.ui.selectable.table tr[class*="pink colored"]:hover,
24880
+ .ui.table tr td.selectable[class*="pink colored"]:hover,
24881
+ .ui.selectable.table tr:hover td[class*="pink colored"],
24882
+ .ui.ui.selectable.table tr.pink:hover,
24883
+ .ui.table tr td.selectable.pink:hover,
24884
+ .ui.selectable.table tr:hover td.pink {
24885
+ background: #ffdef6;
24886
+ color: #af6687;
24887
+ }
24888
+
24889
+ .ui.purple.table {
24890
+ border-top: 0.2em solid #6667af;
24891
+ }
24892
+
24893
+ /* Same color for background and color to camouflage the scrollbar */
24894
+
24895
+ .ui.scrolling.table > thead.purple,
24896
+ .ui.scrolling.table > tfoot.purple {
24897
+ background: #f8e3ff;
24898
+ color: #f8e3ff;
24899
+ }
24900
+
24901
+ .ui.scrolling.table > thead.purple > tr > th,
24902
+ .ui.scrolling.table > tfoot.purple > tr > th,
24903
+ .ui.scrolling.table > thead.purple > tr > td,
24904
+ .ui.scrolling.table > tfoot.purple > tr > td {
24905
+ background: inherit;
24906
+ color: #6667af;
24907
+ }
24908
+
24909
+ .ui.ui.ui.ui.table tr[class*="purple colored"],
24910
+ .ui.ui.table th[class*="purple colored"],
24911
+ .ui.ui.table td[class*="purple colored"],
24912
+ .ui.ui.ui.ui.table tr.purple,
24913
+ .ui.ui.table th.purple,
24914
+ .ui.ui.table td.purple {
24915
+ background: #f8e3ff;
24916
+ color: #6667af;
24917
+ }
24918
+
24919
+ .ui.table > thead > tr[class*="purple colored"] > th,
24920
+ .ui.table > tfoot > tr[class*="purple colored"] > th,
24921
+ .ui.table > tfoot > tr[class*="purple colored"] > td,
24922
+ .ui.table > thead > tr.purple > th,
24923
+ .ui.table > tfoot > tr.purple > th,
24924
+ .ui.table > tfoot > tr.purple > td {
24925
+ background: inherit;
24926
+ color: #6667af;
24927
+ }
24928
+
24929
+ .ui.ui.selectable.table tr[class*="purple colored"]:hover,
24930
+ .ui.table tr td.selectable[class*="purple colored"]:hover,
24931
+ .ui.selectable.table tr:hover td[class*="purple colored"],
24932
+ .ui.ui.selectable.table tr.purple:hover,
24933
+ .ui.table tr td.selectable.purple:hover,
24934
+ .ui.selectable.table tr:hover td.purple {
24935
+ background: #f5d9ff;
24936
+ color: #6667af;
24937
+ }
24938
+
24939
+ .ui.orange.table {
24940
+ border-top: 0.2em solid #af6a66;
24941
+ }
24942
+
24943
+ /* Same color for background and color to camouflage the scrollbar */
24944
+
24945
+ .ui.scrolling.table > thead.orange,
24946
+ .ui.scrolling.table > tfoot.orange {
24947
+ background: #ffe7d1;
24948
+ color: #ffe7d1;
24949
+ }
24950
+
24951
+ .ui.scrolling.table > thead.orange > tr > th,
24952
+ .ui.scrolling.table > tfoot.orange > tr > th,
24953
+ .ui.scrolling.table > thead.orange > tr > td,
24954
+ .ui.scrolling.table > tfoot.orange > tr > td {
24955
+ background: inherit;
24956
+ color: #af6a66;
24957
+ }
24958
+
24959
+ .ui.ui.ui.ui.table tr[class*="orange colored"],
24960
+ .ui.ui.table th[class*="orange colored"],
24961
+ .ui.ui.table td[class*="orange colored"],
24962
+ .ui.ui.ui.ui.table tr.orange,
24963
+ .ui.ui.table th.orange,
24964
+ .ui.ui.table td.orange {
24965
+ background: #ffe7d1;
24966
+ color: #af6a66;
24967
+ }
24968
+
24969
+ .ui.table > thead > tr[class*="orange colored"] > th,
24970
+ .ui.table > tfoot > tr[class*="orange colored"] > th,
24971
+ .ui.table > tfoot > tr[class*="orange colored"] > td,
24972
+ .ui.table > thead > tr.orange > th,
24973
+ .ui.table > tfoot > tr.orange > th,
24974
+ .ui.table > tfoot > tr.orange > td {
24975
+ background: inherit;
24976
+ color: #af6a66;
24977
+ }
24978
+
24979
+ .ui.ui.selectable.table tr[class*="orange colored"]:hover,
24980
+ .ui.table tr td.selectable[class*="orange colored"]:hover,
24981
+ .ui.selectable.table tr:hover td[class*="orange colored"],
24982
+ .ui.ui.selectable.table tr.orange:hover,
24983
+ .ui.table tr td.selectable.orange:hover,
24984
+ .ui.selectable.table tr:hover td.orange {
24985
+ background: #fae1cc;
24986
+ color: #af6a66;
24987
+ }
24988
+
24989
+ .ui.brown.table {
24990
+ border-top: 0.2em solid #af9066;
24991
+ }
24992
+
24993
+ /* Same color for background and color to camouflage the scrollbar */
24994
+
24995
+ .ui.scrolling.table > thead.brown,
24996
+ .ui.scrolling.table > tfoot.brown {
24997
+ background: #f7e5d2;
24998
+ color: #f7e5d2;
24999
+ }
25000
+
25001
+ .ui.scrolling.table > thead.brown > tr > th,
25002
+ .ui.scrolling.table > tfoot.brown > tr > th,
25003
+ .ui.scrolling.table > thead.brown > tr > td,
25004
+ .ui.scrolling.table > tfoot.brown > tr > td {
25005
+ background: inherit;
25006
+ color: #af9066;
25007
+ }
25008
+
25009
+ .ui.ui.ui.ui.table tr[class*="brown colored"],
25010
+ .ui.ui.table th[class*="brown colored"],
25011
+ .ui.ui.table td[class*="brown colored"],
25012
+ .ui.ui.ui.ui.table tr.brown,
25013
+ .ui.ui.table th.brown,
25014
+ .ui.ui.table td.brown {
25015
+ background: #f7e5d2;
25016
+ color: #af9066;
25017
+ }
25018
+
25019
+ .ui.table > thead > tr[class*="brown colored"] > th,
25020
+ .ui.table > tfoot > tr[class*="brown colored"] > th,
25021
+ .ui.table > tfoot > tr[class*="brown colored"] > td,
25022
+ .ui.table > thead > tr.brown > th,
25023
+ .ui.table > tfoot > tr.brown > th,
25024
+ .ui.table > tfoot > tr.brown > td {
25025
+ background: inherit;
25026
+ color: #af9066;
25027
+ }
25028
+
25029
+ .ui.ui.selectable.table tr[class*="brown colored"]:hover,
25030
+ .ui.table tr td.selectable[class*="brown colored"]:hover,
25031
+ .ui.selectable.table tr:hover td[class*="brown colored"],
25032
+ .ui.ui.selectable.table tr.brown:hover,
25033
+ .ui.table tr td.selectable.brown:hover,
25034
+ .ui.selectable.table tr:hover td.brown {
25035
+ background: #efe0cf;
25036
+ color: #af9066;
25037
+ }
25038
+
24345
25039
  /* --------------
24346
25040
  Column Count
24347
25041
  --------------- */
@@ -24767,194 +25461,425 @@ Floated Menu / Item
24767
25461
  Site Overrides
24768
25462
  *******************************/
24769
25463
 
24770
- .ui.ui.ui.ui.primary.table {
25464
+ .ui.panel {
25465
+ background-color: #f9fafb;
24771
25466
  border-top-left-radius: 0.28571429em;
24772
25467
  border-top-right-radius: 0.28571429em;
24773
25468
  }
24774
25469
 
24775
- .ui.ui.ui.ui.primary.table:not(.unstackable) > thead > tr.colored-header {
24776
- /* Colored header */
24777
- /* Colored header (stacked table) */
25470
+ .ui.panel > .header,
25471
+ .ui.panel > .content {
25472
+ border-left: 1px solid rgba(34, 36, 38, 0.15);
25473
+ border-right: 1px solid rgba(34, 36, 38, 0.15);
25474
+ border-bottom: 1px solid rgba(34, 36, 38, 0.1);
25475
+ padding: 0.92857143em 0.7em;
24778
25476
  }
24779
25477
 
24780
- .ui.ui.ui.ui.primary.table:not(.unstackable) > thead > tr.colored-header > th {
24781
- background: linear-gradient(to bottom, rgba(0, 115, 136, 0.12), #f9fafb 80%);
25478
+ .ui.fitted.panel > .content {
25479
+ padding: 0;
25480
+ border: none;
25481
+ overflow-x: auto;
24782
25482
  }
24783
25483
 
24784
- @media only screen and (max-width: 767.98px) {
24785
- .ui.ui.ui.ui.primary.table:not(.unstackable) > thead > tr.colored-header > th {
24786
- background: none;
24787
- }
25484
+ .ui.primary.panel {
25485
+ border-top: 0.2em solid #007388;
24788
25486
  }
24789
25487
 
24790
- @media only screen and (max-width: 767.98px) {
24791
- .ui.ui.ui.ui.primary.table:not(.unstackable) > thead > tr.colored-header {
24792
- background: linear-gradient(to bottom, rgba(0, 115, 136, 0.12), transparent 80%);
24793
- }
25488
+ .ui.primary.panel > .header {
25489
+ background: linear-gradient(to bottom, rgba(0, 115, 136, 0.12), #f9fafb 80%), #f9fafb;
25490
+ background-size: auto 65px;
25491
+ background-repeat: no-repeat;
24794
25492
  }
24795
25493
 
24796
- .ui.ui.ui.ui.secondary.table {
25494
+ .ui.ui.ui.ui.ui.primary.table {
24797
25495
  border-top-left-radius: 0.28571429em;
24798
25496
  border-top-right-radius: 0.28571429em;
24799
25497
  }
24800
25498
 
24801
- .ui.ui.ui.ui.secondary.table:not(.unstackable) > thead > tr.colored-header {
25499
+ .ui.ui.ui.ui.ui.primary.table > thead > tr:first-child > th {
24802
25500
  /* Colored header */
24803
- /* Colored header (stacked table) */
24804
- }
24805
-
24806
- .ui.ui.ui.ui.secondary.table:not(.unstackable) > thead > tr.colored-header > th {
24807
- background: linear-gradient(to bottom, rgba(41, 71, 85, 0.12), #f9fafb 80%);
25501
+ background: linear-gradient(to bottom, rgba(0, 115, 136, 0.12), #f9fafb 80%), #f9fafb;
25502
+ background-size: auto 65px;
25503
+ background-repeat: no-repeat;
24808
25504
  }
24809
25505
 
24810
25506
  @media only screen and (max-width: 767.98px) {
24811
- .ui.ui.ui.ui.secondary.table:not(.unstackable) > thead > tr.colored-header > th {
25507
+ .ui.ui.ui.ui.ui.primary.table:not(.unstackable) > thead > tr:first-child {
25508
+ /* Colored header (stacked table) */
25509
+ background: linear-gradient(to bottom, rgba(0, 115, 136, 0.12), transparent 80%), transparent;
25510
+ background-size: auto 65px;
25511
+ background-repeat: no-repeat;
25512
+ }
25513
+
25514
+ .ui.ui.ui.ui.ui.primary.table:not(.unstackable) > thead > tr:first-child > th {
24812
25515
  background: none;
24813
25516
  }
24814
25517
  }
24815
25518
 
24816
- @media only screen and (max-width: 767.98px) {
24817
- .ui.ui.ui.ui.secondary.table:not(.unstackable) > thead > tr.colored-header {
24818
- background: linear-gradient(to bottom, rgba(41, 71, 85, 0.12), transparent 80%);
24819
- }
25519
+ .ui.secondary.panel {
25520
+ border-top: 0.2em solid #294755;
24820
25521
  }
24821
25522
 
24822
- .ui.ui.ui.ui.violet.table {
25523
+ .ui.secondary.panel > .header {
25524
+ background: linear-gradient(to bottom, rgba(41, 71, 85, 0.12), #f9fafb 80%), #f9fafb;
25525
+ background-size: auto 65px;
25526
+ background-repeat: no-repeat;
25527
+ }
25528
+
25529
+ .ui.ui.ui.ui.ui.secondary.table {
24823
25530
  border-top-left-radius: 0.28571429em;
24824
25531
  border-top-right-radius: 0.28571429em;
24825
25532
  }
24826
25533
 
24827
- .ui.ui.ui.ui.violet.table:not(.unstackable) > thead > tr.colored-header {
25534
+ .ui.ui.ui.ui.ui.secondary.table > thead > tr:first-child > th {
24828
25535
  /* Colored header */
24829
- /* Colored header (stacked table) */
24830
- }
24831
-
24832
- .ui.ui.ui.ui.violet.table:not(.unstackable) > thead > tr.colored-header > th {
24833
- background: linear-gradient(to bottom, rgba(148, 97, 172, 0.12), #f9fafb 80%);
25536
+ background: linear-gradient(to bottom, rgba(41, 71, 85, 0.12), #f9fafb 80%), #f9fafb;
25537
+ background-size: auto 65px;
25538
+ background-repeat: no-repeat;
24834
25539
  }
24835
25540
 
24836
25541
  @media only screen and (max-width: 767.98px) {
24837
- .ui.ui.ui.ui.violet.table:not(.unstackable) > thead > tr.colored-header > th {
25542
+ .ui.ui.ui.ui.ui.secondary.table:not(.unstackable) > thead > tr:first-child {
25543
+ /* Colored header (stacked table) */
25544
+ background: linear-gradient(to bottom, rgba(41, 71, 85, 0.12), transparent 80%), transparent;
25545
+ background-size: auto 65px;
25546
+ background-repeat: no-repeat;
25547
+ }
25548
+
25549
+ .ui.ui.ui.ui.ui.secondary.table:not(.unstackable) > thead > tr:first-child > th {
24838
25550
  background: none;
24839
25551
  }
24840
25552
  }
24841
25553
 
24842
- @media only screen and (max-width: 767.98px) {
24843
- .ui.ui.ui.ui.violet.table:not(.unstackable) > thead > tr.colored-header {
24844
- background: linear-gradient(to bottom, rgba(148, 97, 172, 0.12), transparent 80%);
24845
- }
25554
+ .ui.violet.panel {
25555
+ border-top: 0.2em solid #9461ac;
24846
25556
  }
24847
25557
 
24848
- .ui.ui.ui.ui.green.table {
25558
+ .ui.violet.panel > .header {
25559
+ background: linear-gradient(to bottom, rgba(148, 97, 172, 0.12), #f9fafb 80%), #f9fafb;
25560
+ background-size: auto 65px;
25561
+ background-repeat: no-repeat;
25562
+ }
25563
+
25564
+ .ui.ui.ui.ui.ui.violet.table {
24849
25565
  border-top-left-radius: 0.28571429em;
24850
25566
  border-top-right-radius: 0.28571429em;
24851
25567
  }
24852
25568
 
24853
- .ui.ui.ui.ui.green.table:not(.unstackable) > thead > tr.colored-header {
25569
+ .ui.ui.ui.ui.ui.violet.table > thead > tr:first-child > th {
24854
25570
  /* Colored header */
24855
- /* Colored header (stacked table) */
24856
- }
24857
-
24858
- .ui.ui.ui.ui.green.table:not(.unstackable) > thead > tr.colored-header > th {
24859
- background: linear-gradient(to bottom, rgba(129, 176, 140, 0.12), #f9fafb 80%);
25571
+ background: linear-gradient(to bottom, rgba(148, 97, 172, 0.12), #f9fafb 80%), #f9fafb;
25572
+ background-size: auto 65px;
25573
+ background-repeat: no-repeat;
24860
25574
  }
24861
25575
 
24862
25576
  @media only screen and (max-width: 767.98px) {
24863
- .ui.ui.ui.ui.green.table:not(.unstackable) > thead > tr.colored-header > th {
24864
- background: none;
25577
+ .ui.ui.ui.ui.ui.violet.table:not(.unstackable) > thead > tr:first-child {
25578
+ /* Colored header (stacked table) */
25579
+ background: linear-gradient(to bottom, rgba(148, 97, 172, 0.12), transparent 80%), transparent;
25580
+ background-size: auto 65px;
25581
+ background-repeat: no-repeat;
24865
25582
  }
24866
- }
24867
25583
 
24868
- @media only screen and (max-width: 767.98px) {
24869
- .ui.ui.ui.ui.green.table:not(.unstackable) > thead > tr.colored-header {
24870
- background: linear-gradient(to bottom, rgba(129, 176, 140, 0.12), transparent 80%);
25584
+ .ui.ui.ui.ui.ui.violet.table:not(.unstackable) > thead > tr:first-child > th {
25585
+ background: none;
24871
25586
  }
24872
25587
  }
24873
- /*!
24874
- * # Fomantic-UI 2.9.4 - Card
24875
- * https://github.com/fomantic/Fomantic-UI/
24876
- *
24877
- *
24878
- * Released under the MIT license
24879
- * https://opensource.org/licenses/MIT
24880
- *
24881
- */
24882
25588
 
24883
- /*******************************
24884
- Standard
24885
- *******************************/
24886
-
24887
- /* --------------
24888
- Card
24889
- --------------- */
25589
+ .ui.green.panel {
25590
+ border-top: 0.2em solid #81b08c;
25591
+ }
24890
25592
 
24891
- .ui.cards > .card,
24892
- .ui.card {
24893
- max-width: 100%;
24894
- position: relative;
24895
- display: flex;
24896
- flex-direction: column;
24897
- width: 290px;
24898
- min-height: 0;
24899
- background: #fff;
24900
- padding: 0;
24901
- border: none;
24902
- border-radius: 0;
24903
- box-shadow: 0 1px 3px 0 #d4d4d5, 0 0 0 1px #d4d4d5;
24904
- transition: box-shadow 0.1s ease, transform 0.1s ease;
24905
- z-index: "";
24906
- word-wrap: break-word;
25593
+ .ui.green.panel > .header {
25594
+ background: linear-gradient(to bottom, rgba(129, 176, 140, 0.12), #f9fafb 80%), #f9fafb;
25595
+ background-size: auto 65px;
25596
+ background-repeat: no-repeat;
24907
25597
  }
24908
25598
 
24909
- .ui.card {
24910
- margin: 1em 0;
25599
+ .ui.ui.ui.ui.ui.green.table {
25600
+ border-top-left-radius: 0.28571429em;
25601
+ border-top-right-radius: 0.28571429em;
24911
25602
  }
24912
25603
 
24913
- .ui.cards > .card a,
24914
- .ui.card a {
24915
- cursor: pointer;
25604
+ .ui.ui.ui.ui.ui.green.table > thead > tr:first-child > th {
25605
+ /* Colored header */
25606
+ background: linear-gradient(to bottom, rgba(129, 176, 140, 0.12), #f9fafb 80%), #f9fafb;
25607
+ background-size: auto 65px;
25608
+ background-repeat: no-repeat;
24916
25609
  }
24917
25610
 
24918
- .ui.card:first-child {
24919
- margin-top: 0;
25611
+ @media only screen and (max-width: 767.98px) {
25612
+ .ui.ui.ui.ui.ui.green.table:not(.unstackable) > thead > tr:first-child {
25613
+ /* Colored header (stacked table) */
25614
+ background: linear-gradient(to bottom, rgba(129, 176, 140, 0.12), transparent 80%), transparent;
25615
+ background-size: auto 65px;
25616
+ background-repeat: no-repeat;
25617
+ }
25618
+
25619
+ .ui.ui.ui.ui.ui.green.table:not(.unstackable) > thead > tr:first-child > th {
25620
+ background: none;
25621
+ }
24920
25622
  }
24921
25623
 
24922
- .ui.card:last-child {
24923
- margin-bottom: 0;
25624
+ .ui.olive.panel {
25625
+ border-top: 0.2em solid #a0b06c;
24924
25626
  }
24925
25627
 
24926
- /* --------------
24927
- Cards
24928
- --------------- */
25628
+ .ui.olive.panel > .header {
25629
+ background: linear-gradient(to bottom, rgba(160, 176, 108, 0.12), #f9fafb 80%), #f9fafb;
25630
+ background-size: auto 65px;
25631
+ background-repeat: no-repeat;
25632
+ }
24929
25633
 
24930
- .ui.cards {
24931
- display: flex;
24932
- margin: -0.875em -0.5em;
24933
- flex-wrap: wrap;
25634
+ .ui.ui.ui.ui.ui.olive.table {
25635
+ border-top-left-radius: 0.28571429em;
25636
+ border-top-right-radius: 0.28571429em;
24934
25637
  }
24935
25638
 
24936
- .ui.cards > .card {
24937
- display: flex;
24938
- margin: 0.875em 0.5em;
24939
- float: none;
25639
+ .ui.ui.ui.ui.ui.olive.table > thead > tr:first-child > th {
25640
+ /* Colored header */
25641
+ background: linear-gradient(to bottom, rgba(160, 176, 108, 0.12), #f9fafb 80%), #f9fafb;
25642
+ background-size: auto 65px;
25643
+ background-repeat: no-repeat;
24940
25644
  }
24941
25645
 
24942
- /* Clearing */
25646
+ @media only screen and (max-width: 767.98px) {
25647
+ .ui.ui.ui.ui.ui.olive.table:not(.unstackable) > thead > tr:first-child {
25648
+ /* Colored header (stacked table) */
25649
+ background: linear-gradient(to bottom, rgba(160, 176, 108, 0.12), transparent 80%), transparent;
25650
+ background-size: auto 65px;
25651
+ background-repeat: no-repeat;
25652
+ }
24943
25653
 
24944
- .ui.cards::after,
24945
- .ui.card::after {
24946
- display: block;
24947
- content: " ";
24948
- height: 0;
24949
- clear: both;
24950
- overflow: hidden;
24951
- visibility: hidden;
25654
+ .ui.ui.ui.ui.ui.olive.table:not(.unstackable) > thead > tr:first-child > th {
25655
+ background: none;
25656
+ }
24952
25657
  }
24953
25658
 
24954
- /* Consecutive Card Groups Preserve Row Spacing */
24955
-
24956
- .ui.cards ~ .ui.cards {
24957
- margin-top: 0.875em;
25659
+ .ui.pink.panel {
25660
+ border-top: 0.2em solid #af6687;
25661
+ }
25662
+
25663
+ .ui.pink.panel > .header {
25664
+ background: linear-gradient(to bottom, rgba(175, 102, 135, 0.12), #f9fafb 80%), #f9fafb;
25665
+ background-size: auto 65px;
25666
+ background-repeat: no-repeat;
25667
+ }
25668
+
25669
+ .ui.ui.ui.ui.ui.pink.table {
25670
+ border-top-left-radius: 0.28571429em;
25671
+ border-top-right-radius: 0.28571429em;
25672
+ }
25673
+
25674
+ .ui.ui.ui.ui.ui.pink.table > thead > tr:first-child > th {
25675
+ /* Colored header */
25676
+ background: linear-gradient(to bottom, rgba(175, 102, 135, 0.12), #f9fafb 80%), #f9fafb;
25677
+ background-size: auto 65px;
25678
+ background-repeat: no-repeat;
25679
+ }
25680
+
25681
+ @media only screen and (max-width: 767.98px) {
25682
+ .ui.ui.ui.ui.ui.pink.table:not(.unstackable) > thead > tr:first-child {
25683
+ /* Colored header (stacked table) */
25684
+ background: linear-gradient(to bottom, rgba(175, 102, 135, 0.12), transparent 80%), transparent;
25685
+ background-size: auto 65px;
25686
+ background-repeat: no-repeat;
25687
+ }
25688
+
25689
+ .ui.ui.ui.ui.ui.pink.table:not(.unstackable) > thead > tr:first-child > th {
25690
+ background: none;
25691
+ }
25692
+ }
25693
+
25694
+ .ui.purple.panel {
25695
+ border-top: 0.2em solid #6667af;
25696
+ }
25697
+
25698
+ .ui.purple.panel > .header {
25699
+ background: linear-gradient(to bottom, rgba(102, 103, 175, 0.12), #f9fafb 80%), #f9fafb;
25700
+ background-size: auto 65px;
25701
+ background-repeat: no-repeat;
25702
+ }
25703
+
25704
+ .ui.ui.ui.ui.ui.purple.table {
25705
+ border-top-left-radius: 0.28571429em;
25706
+ border-top-right-radius: 0.28571429em;
25707
+ }
25708
+
25709
+ .ui.ui.ui.ui.ui.purple.table > thead > tr:first-child > th {
25710
+ /* Colored header */
25711
+ background: linear-gradient(to bottom, rgba(102, 103, 175, 0.12), #f9fafb 80%), #f9fafb;
25712
+ background-size: auto 65px;
25713
+ background-repeat: no-repeat;
25714
+ }
25715
+
25716
+ @media only screen and (max-width: 767.98px) {
25717
+ .ui.ui.ui.ui.ui.purple.table:not(.unstackable) > thead > tr:first-child {
25718
+ /* Colored header (stacked table) */
25719
+ background: linear-gradient(to bottom, rgba(102, 103, 175, 0.12), transparent 80%), transparent;
25720
+ background-size: auto 65px;
25721
+ background-repeat: no-repeat;
25722
+ }
25723
+
25724
+ .ui.ui.ui.ui.ui.purple.table:not(.unstackable) > thead > tr:first-child > th {
25725
+ background: none;
25726
+ }
25727
+ }
25728
+
25729
+ .ui.orange.panel {
25730
+ border-top: 0.2em solid #af6a66;
25731
+ }
25732
+
25733
+ .ui.orange.panel > .header {
25734
+ background: linear-gradient(to bottom, rgba(175, 106, 102, 0.12), #f9fafb 80%), #f9fafb;
25735
+ background-size: auto 65px;
25736
+ background-repeat: no-repeat;
25737
+ }
25738
+
25739
+ .ui.ui.ui.ui.ui.orange.table {
25740
+ border-top-left-radius: 0.28571429em;
25741
+ border-top-right-radius: 0.28571429em;
25742
+ }
25743
+
25744
+ .ui.ui.ui.ui.ui.orange.table > thead > tr:first-child > th {
25745
+ /* Colored header */
25746
+ background: linear-gradient(to bottom, rgba(175, 106, 102, 0.12), #f9fafb 80%), #f9fafb;
25747
+ background-size: auto 65px;
25748
+ background-repeat: no-repeat;
25749
+ }
25750
+
25751
+ @media only screen and (max-width: 767.98px) {
25752
+ .ui.ui.ui.ui.ui.orange.table:not(.unstackable) > thead > tr:first-child {
25753
+ /* Colored header (stacked table) */
25754
+ background: linear-gradient(to bottom, rgba(175, 106, 102, 0.12), transparent 80%), transparent;
25755
+ background-size: auto 65px;
25756
+ background-repeat: no-repeat;
25757
+ }
25758
+
25759
+ .ui.ui.ui.ui.ui.orange.table:not(.unstackable) > thead > tr:first-child > th {
25760
+ background: none;
25761
+ }
25762
+ }
25763
+
25764
+ .ui.brown.panel {
25765
+ border-top: 0.2em solid #af9066;
25766
+ }
25767
+
25768
+ .ui.brown.panel > .header {
25769
+ background: linear-gradient(to bottom, rgba(175, 144, 102, 0.12), #f9fafb 80%), #f9fafb;
25770
+ background-size: auto 65px;
25771
+ background-repeat: no-repeat;
25772
+ }
25773
+
25774
+ .ui.ui.ui.ui.ui.brown.table {
25775
+ border-top-left-radius: 0.28571429em;
25776
+ border-top-right-radius: 0.28571429em;
25777
+ }
25778
+
25779
+ .ui.ui.ui.ui.ui.brown.table > thead > tr:first-child > th {
25780
+ /* Colored header */
25781
+ background: linear-gradient(to bottom, rgba(175, 144, 102, 0.12), #f9fafb 80%), #f9fafb;
25782
+ background-size: auto 65px;
25783
+ background-repeat: no-repeat;
25784
+ }
25785
+
25786
+ @media only screen and (max-width: 767.98px) {
25787
+ .ui.ui.ui.ui.ui.brown.table:not(.unstackable) > thead > tr:first-child {
25788
+ /* Colored header (stacked table) */
25789
+ background: linear-gradient(to bottom, rgba(175, 144, 102, 0.12), transparent 80%), transparent;
25790
+ background-size: auto 65px;
25791
+ background-repeat: no-repeat;
25792
+ }
25793
+
25794
+ .ui.ui.ui.ui.ui.brown.table:not(.unstackable) > thead > tr:first-child > th {
25795
+ background: none;
25796
+ }
25797
+ }
25798
+ /*!
25799
+ * # Fomantic-UI 2.9.4 - Card
25800
+ * https://github.com/fomantic/Fomantic-UI/
25801
+ *
25802
+ *
25803
+ * Released under the MIT license
25804
+ * https://opensource.org/licenses/MIT
25805
+ *
25806
+ */
25807
+
25808
+ /*******************************
25809
+ Standard
25810
+ *******************************/
25811
+
25812
+ /* --------------
25813
+ Card
25814
+ --------------- */
25815
+
25816
+ .ui.cards > .card,
25817
+ .ui.card {
25818
+ max-width: 100%;
25819
+ position: relative;
25820
+ display: flex;
25821
+ flex-direction: column;
25822
+ width: 290px;
25823
+ min-height: 0;
25824
+ background: #fff;
25825
+ padding: 0;
25826
+ border: none;
25827
+ border-radius: 0;
25828
+ box-shadow: 0 1px 3px 0 #d4d4d5, 0 0 0 1px #d4d4d5;
25829
+ transition: box-shadow 0.1s ease, transform 0.1s ease;
25830
+ z-index: "";
25831
+ word-wrap: break-word;
25832
+ }
25833
+
25834
+ .ui.card {
25835
+ margin: 1em 0;
25836
+ }
25837
+
25838
+ .ui.cards > .card a,
25839
+ .ui.card a {
25840
+ cursor: pointer;
25841
+ }
25842
+
25843
+ .ui.card:first-child {
25844
+ margin-top: 0;
25845
+ }
25846
+
25847
+ .ui.card:last-child {
25848
+ margin-bottom: 0;
25849
+ }
25850
+
25851
+ /* --------------
25852
+ Cards
25853
+ --------------- */
25854
+
25855
+ .ui.cards {
25856
+ display: flex;
25857
+ margin: -0.875em -0.5em;
25858
+ flex-wrap: wrap;
25859
+ }
25860
+
25861
+ .ui.cards > .card {
25862
+ display: flex;
25863
+ margin: 0.875em 0.5em;
25864
+ float: none;
25865
+ }
25866
+
25867
+ /* Clearing */
25868
+
25869
+ .ui.cards::after,
25870
+ .ui.card::after {
25871
+ display: block;
25872
+ content: " ";
25873
+ height: 0;
25874
+ clear: both;
25875
+ overflow: hidden;
25876
+ visibility: hidden;
25877
+ }
25878
+
25879
+ /* Consecutive Card Groups Preserve Row Spacing */
25880
+
25881
+ .ui.cards ~ .ui.cards {
25882
+ margin-top: 0.875em;
24958
25883
  }
24959
25884
 
24960
25885
  /* --------------
@@ -26964,6 +27889,13 @@ a.ui.secondary.card:hover,
26964
27889
  transform: none;
26965
27890
  }
26966
27891
 
27892
+ .ui.accordion .ui.header > .dropdown.icon.right,
27893
+ .ui.accordion .title > .dropdown.icon.right,
27894
+ .ui.accordion .accordion .title > .dropdown.icon.right {
27895
+ float: right;
27896
+ transform: rotate(180deg);
27897
+ }
27898
+
26967
27899
  /* --------------
26968
27900
  Coupling
26969
27901
  --------------- */
@@ -27139,6 +28071,60 @@ a.ui.secondary.card:hover,
27139
28071
  /*******************************
27140
28072
  User Overrides
27141
28073
  *******************************/
28074
+
28075
+ .plain-accordion {
28076
+ max-width: 100%;
28077
+ }
28078
+
28079
+ .plain-accordion .title {
28080
+ cursor: pointer;
28081
+ }
28082
+
28083
+ /* Dropdown Icon */
28084
+
28085
+ .plain-accordion .title > .dropdown.icon {
28086
+ font-family: Accordion;
28087
+ line-height: 1;
28088
+ backface-visibility: hidden;
28089
+ font-weight: normal;
28090
+ font-style: normal;
28091
+ text-align: center;
28092
+ }
28093
+
28094
+ .plain-accordion .title > .dropdown.icon::before {
28095
+ content: "\f0da"
28096
+ ;
28097
+ }
28098
+
28099
+ .plain-accordion .title > .dropdown.icon {
28100
+ display: inline-block;
28101
+ float: none;
28102
+ opacity: 1;
28103
+ width: 1.25em;
28104
+ height: 1em;
28105
+ margin: 0 0.25rem 0 0;
28106
+ padding: 0;
28107
+ font-size: 1em;
28108
+ transition: transform 0.1s ease, opacity 0.1s ease;
28109
+ vertical-align: baseline;
28110
+ transform: none;
28111
+ }
28112
+
28113
+ .plain-accordion .title > .dropdown.icon.right {
28114
+ float: right;
28115
+ transform: rotate(180deg);
28116
+ }
28117
+
28118
+ /* States */
28119
+
28120
+ .plain-accordion[open] .title > .dropdown.icon,
28121
+ .plain-accordion .active.title > .dropdown.icon {
28122
+ transform: rotate(90deg);
28123
+ }
28124
+
28125
+ .plain-accordion .title ~ .content:not(.active) {
28126
+ display: none;
28127
+ }
27142
28128
  /*!
27143
28129
  * # Fomantic-UI 2.9.4 - Calendar
27144
28130
  * https://github.com/fomantic/Fomantic-UI/
@@ -30471,7 +31457,7 @@ select.ui.dropdown {
30471
31457
  display: block;
30472
31458
  width: 100%;
30473
31459
  font-size: 1em;
30474
- line-height: 1.4;
31460
+ line-height: 1.4285em;
30475
31461
  padding: 1.5rem;
30476
31462
  background: #fff;
30477
31463
  }
@@ -30536,7 +31522,7 @@ select.ui.dropdown {
30536
31522
 
30537
31523
  .ui.modal > .actions {
30538
31524
  background: #f9fafb;
30539
- padding: 1rem;
31525
+ padding: 1.5rem;
30540
31526
  border-top: 1px solid rgba(34, 36, 38, 0.15);
30541
31527
  text-align: right;
30542
31528
  }
@@ -31220,6 +32206,14 @@ select.ui.dropdown {
31220
32206
  /*******************************
31221
32207
  Site Overrides
31222
32208
  *******************************/
32209
+
32210
+ .ui.modal > .actions > .ui.button {
32211
+ margin-inline: 1rem 0;
32212
+ }
32213
+
32214
+ .ui.modal > .left.actions > .ui.button {
32215
+ margin-inline: 0 1rem;
32216
+ }
31223
32217
  /*!
31224
32218
  * # Fomantic-UI 2.9.4 - Popup
31225
32219
  * https://github.com/fomantic/Fomantic-UI/
@@ -32688,6 +33682,346 @@ select.ui.dropdown {
32688
33682
  /*******************************
32689
33683
  User Overrides
32690
33684
  *******************************/
33685
+ /*!
33686
+ * # Fomantic-UI 2.9.4 - Toast
33687
+ * https://github.com/fomantic/Fomantic-UI/
33688
+ *
33689
+ *
33690
+ * Released under the MIT license
33691
+ * https://opensource.org/licenses/MIT
33692
+ *
33693
+ */
33694
+
33695
+ /*******************************
33696
+ Toast container
33697
+ *******************************/
33698
+
33699
+ .ui.toast-container {
33700
+ position: fixed;
33701
+ z-index: 9999;
33702
+ }
33703
+
33704
+ .ui.toast-container.absolute {
33705
+ position: absolute;
33706
+ }
33707
+
33708
+ .ui.toast-container.top.right {
33709
+ top: 0.85714286em;
33710
+ right: 0.85714286em;
33711
+ margin-left: 0.85714286em;
33712
+ }
33713
+
33714
+ .ui.toast-container.top.left {
33715
+ top: 0.85714286em;
33716
+ left: 0.85714286em;
33717
+ margin-right: 0.85714286em;
33718
+ }
33719
+
33720
+ .ui.toast-container.top.center {
33721
+ left: 50%;
33722
+ transform: translate(-50%, 0);
33723
+ top: 0.85714286em;
33724
+ }
33725
+
33726
+ .ui.toast-container.bottom.right {
33727
+ bottom: 0.85714286em;
33728
+ right: 0.85714286em;
33729
+ margin-left: 0.85714286em;
33730
+ }
33731
+
33732
+ .ui.toast-container.bottom.left {
33733
+ bottom: 0.85714286em;
33734
+ left: 0.85714286em;
33735
+ margin-right: 0.85714286em;
33736
+ }
33737
+
33738
+ .ui.toast-container.bottom.center {
33739
+ left: 50%;
33740
+ transform: translate(-50%, 0);
33741
+ bottom: 0.85714286em;
33742
+ }
33743
+
33744
+ .ui.toast-container .visible.toast-box,
33745
+ .ui.toast-container .animating.toast-box,
33746
+ .ui.toast-container .toast-box {
33747
+ display: table !important;
33748
+ }
33749
+
33750
+ .ui.toast-container .toast-box {
33751
+ margin-bottom: 0.5em;
33752
+ border-radius: 0;
33753
+ cursor: default;
33754
+ will-change: transform, opacity;
33755
+ }
33756
+
33757
+ .ui.toast-container .toast-box:hover {
33758
+ opacity: 1;
33759
+ }
33760
+
33761
+ .ui.toast-container .toast-box:hover {
33762
+ cursor: pointer;
33763
+ }
33764
+
33765
+ .ui.toast-container .toast-box.floating,
33766
+ .ui.toast-container .toast-box.hoverfloating:hover {
33767
+ box-shadow: 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
33768
+ border: none;
33769
+ }
33770
+
33771
+ .ui.toast-container .toast-box.compact,
33772
+ .ui.toast-container .toast-box > .compact {
33773
+ width: 416px;
33774
+ }
33775
+
33776
+ .ui.toast-container .toast-box > .ui.toast,
33777
+ .ui.toast-container .toast-box > .ui.message {
33778
+ margin: 0;
33779
+ position: relative;
33780
+ }
33781
+
33782
+ .ui.toast-container .toast-box > .ui.message > .close.icon {
33783
+ top: 1rem;
33784
+ right: 1rem;
33785
+ }
33786
+
33787
+ .ui.toast-container .toast-box > .ui.message.icon {
33788
+ align-items: inherit;
33789
+ }
33790
+
33791
+ .ui.toast-container .toast-box > .ui.message.icon > :not(.icon) {
33792
+ padding-left: 0;
33793
+ }
33794
+
33795
+ .ui.toast-container .toast-box > .ui.message.icon > i.icon:not(.close) {
33796
+ display: inline-block;
33797
+ position: absolute;
33798
+ width: 4rem;
33799
+ top: 50%;
33800
+ transform: translateY(-50%);
33801
+ }
33802
+
33803
+ .ui.toast-container .toast-box > .ui.message.icon:not(.vertical).icon.icon.icon {
33804
+ display: block;
33805
+ }
33806
+
33807
+ .ui.toast-container .toast-box .ui.toast > .close.icon {
33808
+ cursor: pointer;
33809
+ margin: 0;
33810
+ opacity: 0.7;
33811
+ transition: opacity 0.1s ease;
33812
+ }
33813
+
33814
+ .ui.toast-container .toast-box .ui.toast > .close.icon:hover {
33815
+ opacity: 1;
33816
+ }
33817
+
33818
+ .ui.toast-container .toast-box .ui.toast.vertical > .close.icon {
33819
+ margin-top: -1rem;
33820
+ margin-right: -1rem;
33821
+ }
33822
+
33823
+ .ui.toast-container .toast-box .ui.toast:not(.vertical) > .close.icon {
33824
+ position: absolute;
33825
+ top: 1rem;
33826
+ }
33827
+
33828
+ .ui.toast-container .toast-box .ui.toast:not(.vertical) > .close.icon:not(.left) {
33829
+ right: 1rem;
33830
+ }
33831
+
33832
+ .ui.toast-container .toast-box .ui.toast:not(.vertical) > .close.icon.left {
33833
+ margin-left: -1rem;
33834
+ }
33835
+
33836
+ .ui.toast-container .toast-box .progressing {
33837
+ animation-iteration-count: 1;
33838
+ animation-timing-function: linear;
33839
+ }
33840
+
33841
+ .ui.toast-container .toast-box .progressing.wait {
33842
+ animation-name: progressWait;
33843
+ }
33844
+
33845
+ .ui.toast-container .toast-box:hover .pausable.progressing {
33846
+ animation-play-state: paused;
33847
+ }
33848
+
33849
+ .ui.toast-container .toast-box .ui.toast:not(.vertical) {
33850
+ display: block;
33851
+ }
33852
+
33853
+ .ui.toast-container .toast-box .vertical.actions > .button,
33854
+ .ui.toast-container .toast-box > .vertical > .vertical.vertical,
33855
+ .ui.toast-container .toast-box > .vertical.vertical.vertical {
33856
+ display: flex;
33857
+ }
33858
+
33859
+ /*******************************
33860
+ Toast
33861
+ *******************************/
33862
+
33863
+ .ui.toast {
33864
+ display: none;
33865
+ border-radius: 0;
33866
+ padding: 0.78571429em 1em;
33867
+ margin: 0;
33868
+ color: rgba(0, 0, 0, 0.87);
33869
+ background-color: #fff;
33870
+ }
33871
+
33872
+ .ui.toast > .content > .header {
33873
+ font-weight: bold;
33874
+ color: inherit;
33875
+ margin: 0;
33876
+ }
33877
+
33878
+ .ui.toast.info {
33879
+ background-color: #31ccec;
33880
+ color: rgba(255, 255, 255, 0.9);
33881
+ }
33882
+
33883
+ .ui.toast.warning {
33884
+ background-color: #f2c037;
33885
+ color: rgba(255, 255, 255, 0.9);
33886
+ }
33887
+
33888
+ .ui.toast.success {
33889
+ background-color: #81b08c;
33890
+ color: rgba(255, 255, 255, 0.9);
33891
+ }
33892
+
33893
+ .ui.toast.error {
33894
+ background-color: #af4e4a;
33895
+ color: rgba(255, 255, 255, 0.9);
33896
+ }
33897
+
33898
+ .ui.toast.neutral {
33899
+ background-color: #fff;
33900
+ color: rgba(0, 0, 0, 0.87);
33901
+ }
33902
+
33903
+ .ui.toast > i.icon:not(.close) {
33904
+ font-size: 1.5em;
33905
+ }
33906
+
33907
+ .ui.toast:not(.vertical):not(.center) > i.icon:not(.close) {
33908
+ position: absolute;
33909
+ }
33910
+
33911
+ .ui.toast:not(.vertical) > i.icon:not(.close) + .content {
33912
+ padding-left: 3em;
33913
+ }
33914
+
33915
+ .ui.toast:not(.vertical) > .close.icon + .content {
33916
+ padding-left: 1.5em;
33917
+ }
33918
+
33919
+ .ui.toast:not(.vertical):not(.center) > .centered.image,
33920
+ .ui.toast:not(.vertical):not(.center) > .centered.icon {
33921
+ transform: translateY(-50%);
33922
+ top: 50%;
33923
+ }
33924
+
33925
+ .ui.toast.vertical > .content {
33926
+ flex-grow: 1;
33927
+ }
33928
+
33929
+ .ui.toast.vertical > .close.icon + .content {
33930
+ padding-left: 1em;
33931
+ }
33932
+
33933
+ .ui.toast.vertical > .ui.image + .content,
33934
+ .ui.toast.vertical > i.icon:not(.close) + .content {
33935
+ padding-left: 1em;
33936
+ }
33937
+
33938
+ .ui.toast.vertical > .centered.image,
33939
+ .ui.toast.vertical > .centered.icon {
33940
+ align-self: center;
33941
+ }
33942
+
33943
+ .ui.hoverfloating.message:hover {
33944
+ box-shadow: 0 0 0 1px inset, 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
33945
+ }
33946
+
33947
+ .ui.center.toast-container .toast-box,
33948
+ .ui.right.toast-container .toast-box {
33949
+ margin-left: auto;
33950
+ }
33951
+
33952
+ .ui.center.toast-container .toast-box {
33953
+ margin-right: auto;
33954
+ }
33955
+
33956
+ /* --------------
33957
+ Colors
33958
+ -------------- */
33959
+
33960
+ @media only screen and (max-width: 420px) {
33961
+ .ui.toast-container .toast-box.toast-box,
33962
+ .ui.toast-container .toast-box > .compact,
33963
+ .ui.toast-container .toast-box > .vertical > *,
33964
+ .ui.toast-container .toast-box > * {
33965
+ width: auto;
33966
+ max-width: 100%;
33967
+ }
33968
+
33969
+ .ui.toast-container .toast-box > *:not(.vertical) {
33970
+ min-width: 280px;
33971
+ }
33972
+ }
33973
+
33974
+ /* ---------------
33975
+ Progress Bar
33976
+ ---------------- */
33977
+
33978
+ @keyframes progressWait {
33979
+ 0% {
33980
+ opacity: 1;
33981
+ }
33982
+
33983
+ 100% {
33984
+ opacity: 0;
33985
+ }
33986
+ }
33987
+
33988
+ /*******************************
33989
+ Theme Overrides
33990
+ *******************************/
33991
+
33992
+ /*******************************
33993
+ User Overrides
33994
+ *******************************/
33995
+
33996
+ .ui.toast-container .toast-box > .ui.message > .close.icon,
33997
+ .ui.toast-container .toast-box > .ui.toast > .close.icon {
33998
+ color: rgba(0, 0, 0, 0.87);
33999
+ font-size: 1.075em;
34000
+ }
34001
+
34002
+ .ui.toast-container .toast-box > .ui.message {
34003
+ padding: 0.85714286rem 3.42857143rem 0.85714286rem 1rem;
34004
+ }
34005
+
34006
+ .ui.toast-container .toast-box > .ui.message .header {
34007
+ font-size: 1.14285714rem;
34008
+ font-weight: 500;
34009
+ }
34010
+
34011
+ .ui.toast-container .toast-box > .ui.message .header + .message {
34012
+ margin-top: 0.28571429em;
34013
+ }
34014
+
34015
+ .ui.toast-container .toast-box > .ui.icon.message > i.icon:not(.close) {
34016
+ width: auto;
34017
+ top: 1rem;
34018
+ transform: none;
34019
+ font-size: 1.075em;
34020
+ }
34021
+
34022
+ .ui.toast-container .toast-box > .ui.icon.message > .content {
34023
+ padding-left: 1.57142857em;
34024
+ }
32691
34025
  /*!
32692
34026
  * # Fomantic-UI 2.9.4 - Transition
32693
34027
  * https://github.com/fomantic/Fomantic-UI/