@northdata/fomantic-ui 2.9.407 → 2.9.409
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/lib/semantic-ui/dist/components/table.css +180 -0
- package/lib/semantic-ui/dist/components/table.min.css +1 -1
- package/lib/semantic-ui/dist/less/site/variation.variables +1 -1
- package/lib/semantic-ui/dist/semantic-packed.css +204 -0
- package/lib/semantic-ui/dist/semantic.css +204 -0
- package/lib/semantic-ui/dist/semantic.full.css +390 -0
- package/lib/semantic-ui/dist/semantic.full.min.css +1 -1
- package/lib/semantic-ui/dist/semantic.min.css +1 -1
- package/package.json +1 -1
|
@@ -847,6 +847,94 @@
|
|
|
847
847
|
background: #e2e2e2;
|
|
848
848
|
color: rgba(255, 255, 255, 0.9);
|
|
849
849
|
}
|
|
850
|
+
.ui.violet.table {
|
|
851
|
+
border-top: 0.2em solid #9461ac;
|
|
852
|
+
}
|
|
853
|
+
|
|
854
|
+
/* Same color for background and color to camouflage the scrollbar */
|
|
855
|
+
.ui.scrolling.table > thead.violet,
|
|
856
|
+
.ui.scrolling.table > tfoot.violet {
|
|
857
|
+
background: #ece9fe;
|
|
858
|
+
color: #ece9fe;
|
|
859
|
+
}
|
|
860
|
+
.ui.scrolling.table > thead.violet > tr > th,
|
|
861
|
+
.ui.scrolling.table > tfoot.violet > tr > th,
|
|
862
|
+
.ui.scrolling.table > thead.violet > tr > td,
|
|
863
|
+
.ui.scrolling.table > tfoot.violet > tr > td {
|
|
864
|
+
background: inherit;
|
|
865
|
+
color: #9461ac;
|
|
866
|
+
}
|
|
867
|
+
.ui.ui.ui.ui.table tr[class*="violet colored"],
|
|
868
|
+
.ui.ui.table th[class*="violet colored"],
|
|
869
|
+
.ui.ui.table td[class*="violet colored"],
|
|
870
|
+
.ui.ui.ui.ui.table tr.violet,
|
|
871
|
+
.ui.ui.table th.violet,
|
|
872
|
+
.ui.ui.table td.violet {
|
|
873
|
+
background: #ece9fe;
|
|
874
|
+
color: #9461ac;
|
|
875
|
+
}
|
|
876
|
+
.ui.table > thead > tr[class*="violet colored"] > th,
|
|
877
|
+
.ui.table > tfoot > tr[class*="violet colored"] > th,
|
|
878
|
+
.ui.table > tfoot > tr[class*="violet colored"] > td,
|
|
879
|
+
.ui.table > thead > tr.violet > th,
|
|
880
|
+
.ui.table > tfoot > tr.violet > th,
|
|
881
|
+
.ui.table > tfoot > tr.violet > td {
|
|
882
|
+
background: inherit;
|
|
883
|
+
color: #9461ac;
|
|
884
|
+
}
|
|
885
|
+
.ui.ui.selectable.table tr[class*="violet colored"]:hover,
|
|
886
|
+
.ui.table tr td.selectable[class*="violet colored"]:hover,
|
|
887
|
+
.ui.selectable.table tr:hover td[class*="violet colored"],
|
|
888
|
+
.ui.ui.selectable.table tr.violet:hover,
|
|
889
|
+
.ui.table tr td.selectable.violet:hover,
|
|
890
|
+
.ui.selectable.table tr:hover td.violet {
|
|
891
|
+
background: #e3deff;
|
|
892
|
+
color: #9461ac;
|
|
893
|
+
}
|
|
894
|
+
.ui.green.table {
|
|
895
|
+
border-top: 0.2em solid #81b08c;
|
|
896
|
+
}
|
|
897
|
+
|
|
898
|
+
/* Same color for background and color to camouflage the scrollbar */
|
|
899
|
+
.ui.scrolling.table > thead.green,
|
|
900
|
+
.ui.scrolling.table > tfoot.green {
|
|
901
|
+
background: #d5f5d9;
|
|
902
|
+
color: #d5f5d9;
|
|
903
|
+
}
|
|
904
|
+
.ui.scrolling.table > thead.green > tr > th,
|
|
905
|
+
.ui.scrolling.table > tfoot.green > tr > th,
|
|
906
|
+
.ui.scrolling.table > thead.green > tr > td,
|
|
907
|
+
.ui.scrolling.table > tfoot.green > tr > td {
|
|
908
|
+
background: inherit;
|
|
909
|
+
color: #1ebc30;
|
|
910
|
+
}
|
|
911
|
+
.ui.ui.ui.ui.table tr[class*="green colored"],
|
|
912
|
+
.ui.ui.table th[class*="green colored"],
|
|
913
|
+
.ui.ui.table td[class*="green colored"],
|
|
914
|
+
.ui.ui.ui.ui.table tr.green,
|
|
915
|
+
.ui.ui.table th.green,
|
|
916
|
+
.ui.ui.table td.green {
|
|
917
|
+
background: #d5f5d9;
|
|
918
|
+
color: #1ebc30;
|
|
919
|
+
}
|
|
920
|
+
.ui.table > thead > tr[class*="green colored"] > th,
|
|
921
|
+
.ui.table > tfoot > tr[class*="green colored"] > th,
|
|
922
|
+
.ui.table > tfoot > tr[class*="green colored"] > td,
|
|
923
|
+
.ui.table > thead > tr.green > th,
|
|
924
|
+
.ui.table > tfoot > tr.green > th,
|
|
925
|
+
.ui.table > tfoot > tr.green > td {
|
|
926
|
+
background: inherit;
|
|
927
|
+
color: #1ebc30;
|
|
928
|
+
}
|
|
929
|
+
.ui.ui.selectable.table tr[class*="green colored"]:hover,
|
|
930
|
+
.ui.table tr td.selectable[class*="green colored"]:hover,
|
|
931
|
+
.ui.selectable.table tr:hover td[class*="green colored"],
|
|
932
|
+
.ui.ui.selectable.table tr.green:hover,
|
|
933
|
+
.ui.table tr td.selectable.green:hover,
|
|
934
|
+
.ui.selectable.table tr:hover td.green {
|
|
935
|
+
background: #d2eed5;
|
|
936
|
+
color: #1ebc30;
|
|
937
|
+
}
|
|
850
938
|
|
|
851
939
|
/* --------------
|
|
852
940
|
Column Count
|
|
@@ -1199,3 +1287,95 @@
|
|
|
1199
1287
|
Site Overrides
|
|
1200
1288
|
*******************************/
|
|
1201
1289
|
|
|
1290
|
+
.ui.ui.ui.ui.primary.table {
|
|
1291
|
+
border-top-left-radius: 0.28571429em;
|
|
1292
|
+
border-top-right-radius: 0.28571429em;
|
|
1293
|
+
}
|
|
1294
|
+
.ui.ui.ui.ui.primary.table:not(.unstackable) > thead > tr.colored-header {
|
|
1295
|
+
|
|
1296
|
+
/* Colored header */
|
|
1297
|
+
|
|
1298
|
+
/* Colored header (stacked table) */
|
|
1299
|
+
}
|
|
1300
|
+
.ui.ui.ui.ui.primary.table:not(.unstackable) > thead > tr.colored-header > th {
|
|
1301
|
+
background: linear-gradient(to bottom, rgba(0, 115, 136, 0.12), #f9fafb 80%);
|
|
1302
|
+
}
|
|
1303
|
+
@media only screen and (max-width: 767.98px) {
|
|
1304
|
+
.ui.ui.ui.ui.primary.table:not(.unstackable) > thead > tr.colored-header > th {
|
|
1305
|
+
background: none;
|
|
1306
|
+
}
|
|
1307
|
+
}
|
|
1308
|
+
@media only screen and (max-width: 767.98px) {
|
|
1309
|
+
.ui.ui.ui.ui.primary.table:not(.unstackable) > thead > tr.colored-header {
|
|
1310
|
+
background: linear-gradient(to bottom, rgba(0, 115, 136, 0.12), transparent 80%);
|
|
1311
|
+
}
|
|
1312
|
+
}
|
|
1313
|
+
.ui.ui.ui.ui.secondary.table {
|
|
1314
|
+
border-top-left-radius: 0.28571429em;
|
|
1315
|
+
border-top-right-radius: 0.28571429em;
|
|
1316
|
+
}
|
|
1317
|
+
.ui.ui.ui.ui.secondary.table:not(.unstackable) > thead > tr.colored-header {
|
|
1318
|
+
|
|
1319
|
+
/* Colored header */
|
|
1320
|
+
|
|
1321
|
+
/* Colored header (stacked table) */
|
|
1322
|
+
}
|
|
1323
|
+
.ui.ui.ui.ui.secondary.table:not(.unstackable) > thead > tr.colored-header > th {
|
|
1324
|
+
background: linear-gradient(to bottom, rgba(41, 71, 85, 0.12), #f9fafb 80%);
|
|
1325
|
+
}
|
|
1326
|
+
@media only screen and (max-width: 767.98px) {
|
|
1327
|
+
.ui.ui.ui.ui.secondary.table:not(.unstackable) > thead > tr.colored-header > th {
|
|
1328
|
+
background: none;
|
|
1329
|
+
}
|
|
1330
|
+
}
|
|
1331
|
+
@media only screen and (max-width: 767.98px) {
|
|
1332
|
+
.ui.ui.ui.ui.secondary.table:not(.unstackable) > thead > tr.colored-header {
|
|
1333
|
+
background: linear-gradient(to bottom, rgba(41, 71, 85, 0.12), transparent 80%);
|
|
1334
|
+
}
|
|
1335
|
+
}
|
|
1336
|
+
.ui.ui.ui.ui.violet.table {
|
|
1337
|
+
border-top-left-radius: 0.28571429em;
|
|
1338
|
+
border-top-right-radius: 0.28571429em;
|
|
1339
|
+
}
|
|
1340
|
+
.ui.ui.ui.ui.violet.table:not(.unstackable) > thead > tr.colored-header {
|
|
1341
|
+
|
|
1342
|
+
/* Colored header */
|
|
1343
|
+
|
|
1344
|
+
/* Colored header (stacked table) */
|
|
1345
|
+
}
|
|
1346
|
+
.ui.ui.ui.ui.violet.table:not(.unstackable) > thead > tr.colored-header > th {
|
|
1347
|
+
background: linear-gradient(to bottom, rgba(148, 97, 172, 0.12), #f9fafb 80%);
|
|
1348
|
+
}
|
|
1349
|
+
@media only screen and (max-width: 767.98px) {
|
|
1350
|
+
.ui.ui.ui.ui.violet.table:not(.unstackable) > thead > tr.colored-header > th {
|
|
1351
|
+
background: none;
|
|
1352
|
+
}
|
|
1353
|
+
}
|
|
1354
|
+
@media only screen and (max-width: 767.98px) {
|
|
1355
|
+
.ui.ui.ui.ui.violet.table:not(.unstackable) > thead > tr.colored-header {
|
|
1356
|
+
background: linear-gradient(to bottom, rgba(148, 97, 172, 0.12), transparent 80%);
|
|
1357
|
+
}
|
|
1358
|
+
}
|
|
1359
|
+
.ui.ui.ui.ui.green.table {
|
|
1360
|
+
border-top-left-radius: 0.28571429em;
|
|
1361
|
+
border-top-right-radius: 0.28571429em;
|
|
1362
|
+
}
|
|
1363
|
+
.ui.ui.ui.ui.green.table:not(.unstackable) > thead > tr.colored-header {
|
|
1364
|
+
|
|
1365
|
+
/* Colored header */
|
|
1366
|
+
|
|
1367
|
+
/* Colored header (stacked table) */
|
|
1368
|
+
}
|
|
1369
|
+
.ui.ui.ui.ui.green.table:not(.unstackable) > thead > tr.colored-header > th {
|
|
1370
|
+
background: linear-gradient(to bottom, rgba(129, 176, 140, 0.12), #f9fafb 80%);
|
|
1371
|
+
}
|
|
1372
|
+
@media only screen and (max-width: 767.98px) {
|
|
1373
|
+
.ui.ui.ui.ui.green.table:not(.unstackable) > thead > tr.colored-header > th {
|
|
1374
|
+
background: none;
|
|
1375
|
+
}
|
|
1376
|
+
}
|
|
1377
|
+
@media only screen and (max-width: 767.98px) {
|
|
1378
|
+
.ui.ui.ui.ui.green.table:not(.unstackable) > thead > tr.colored-header {
|
|
1379
|
+
background: linear-gradient(to bottom, rgba(129, 176, 140, 0.12), transparent 80%);
|
|
1380
|
+
}
|
|
1381
|
+
}
|
|
@@ -6,4 +6,4 @@
|
|
|
6
6
|
* Released under the MIT license
|
|
7
7
|
* https://opensource.org/licenses/MIT
|
|
8
8
|
*
|
|
9
|
-
*/.ui.table{width:100%;background:#fff;margin:1em 0;border:1px solid rgba(34,36,38,.15);box-shadow:none;border-radius:0;text-align:left;vertical-align:middle;color:rgba(0,0,0,.87);border-collapse:separate;border-spacing:0}.ui.table:first-child{margin-top:0}.ui.table:last-child{margin-bottom:0}.ui.table>tbody,.ui.table>thead{text-align:inherit;vertical-align:inherit}.ui.table td,.ui.table th{transition:background .1s ease,color .1s ease}.ui.table td.rowspanned,.ui.table th.rowspanned{display:none}.ui.table>thead{box-shadow:none}.ui.table>thead>tr>th{cursor:auto;background:#f9fafb;text-align:inherit;color:rgba(0,0,0,.87);padding:.92857143em .78571429em;vertical-align:inherit;font-style:none;font-weight:700;text-transform:none;border-bottom:1px solid rgba(34,36,38,.1);border-left:none}.ui.table>thead>tr>th:first-child{border-left:none}.ui.table>thead>tr:first-child>th:first-child{border-radius:0}.ui.table>thead>tr:first-child>th:last-child{border-radius:0}.ui.table>thead>tr:first-child>th:only-child{border-radius:0}.ui.table>tfoot{box-shadow:none}.ui.table>tfoot>tr>td,.ui.table>tfoot>tr>th{cursor:auto;border-top:1px solid rgba(34,36,38,.15);background:#f9fafb;text-align:inherit;color:rgba(0,0,0,.87);padding:.78571429em .78571429em;vertical-align:inherit;font-style:normal;font-weight:400;text-transform:none}.ui.table>tfoot>tr>td:first-child,.ui.table>tfoot>tr>th:first-child{border-left:none}.ui.table>tfoot>tr:last-child>td:first-child,.ui.table>tfoot>tr:last-child>th:first-child{border-radius:0}.ui.table>tfoot>tr:last-child>td:last-child,.ui.table>tfoot>tr:last-child>th:last-child{border-radius:0}.ui.table>tfoot>tr:last-child>td:only-child,.ui.table>tfoot>tr:last-child>th:only-child{border-radius:0}.ui.table>tbody>tr>td,.ui.table>tr>td{border-top:1px solid rgba(34,36,38,.1)}.ui.table>tbody>tr:first-child>td,.ui.table>tr:first-child>td{border-top:none}.ui.table>tbody+tbody tr:first-child>td{border-top:1px solid rgba(34,36,38,.1)}.ui.table>tbody>tr>td,.ui.table>tr>td{padding:.78571429em .78571429em;text-align:inherit}.ui.table>i.icon{vertical-align:baseline}.ui.table>i.icon:only-child{margin:0}.ui.table.segment{padding:0}.ui.table.segment::after{display:none}.ui.table.segment.stacked::after{display:block}@media only screen and (max-width:767.98px){.ui.table:not(.unstackable){width:100%;padding:0}.ui.table:not(.unstackable)>tbody,.ui.table:not(.unstackable)>tbody>tr,.ui.table:not(.unstackable)>tbody>tr>td:not(.rowspanned),.ui.table:not(.unstackable)>tbody>tr>th:not(.rowspanned),.ui.table:not(.unstackable)>tfoot,.ui.table:not(.unstackable)>tfoot>tr,.ui.table:not(.unstackable)>tfoot>tr>td:not(.rowspanned),.ui.table:not(.unstackable)>tfoot>tr>th:not(.rowspanned),.ui.table:not(.unstackable)>thead,.ui.table:not(.unstackable)>thead>tr,.ui.table:not(.unstackable)>thead>tr>th:not(.rowspanned),.ui.table:not(.unstackable)>tr,.ui.table:not(.unstackable)>tr>td:not(.rowspanned),.ui.table:not(.unstackable)>tr>th:not(.rowspanned){display:block!important;width:auto!important}.ui.table:not(.unstackable)>thead{display:block}.ui.table:not(.unstackable)>tfoot{display:block}.ui.ui.ui.ui.table:not(.unstackable)>tbody>tr,.ui.ui.ui.ui.table:not(.unstackable)>tfoot>tr,.ui.ui.ui.ui.table:not(.unstackable)>thead>tr,.ui.ui.ui.ui.table:not(.unstackable)>tr{padding-top:1em;padding-bottom:1em;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset}.ui.ui.ui.ui.table:not(.unstackable)>tbody>tr>td,.ui.ui.ui.ui.table:not(.unstackable)>tbody>tr>th,.ui.ui.ui.ui.table:not(.unstackable)>tfoot>tr>td,.ui.ui.ui.ui.table:not(.unstackable)>tfoot>tr>th,.ui.ui.ui.ui.table:not(.unstackable)>thead>tr>th,.ui.ui.ui.ui.table:not(.unstackable)>tr>td,.ui.ui.ui.ui.table:not(.unstackable)>tr>th{background:0 0;border:none;padding:.25em .75em;box-shadow:none}.ui.table:not(.unstackable)>tbody>tr>td:first-child,.ui.table:not(.unstackable)>tbody>tr>th:first-child,.ui.table:not(.unstackable)>tfoot>tr>td:first-child,.ui.table:not(.unstackable)>tfoot>tr>th:first-child,.ui.table:not(.unstackable)>thead>tr>th:first-child,.ui.table:not(.unstackable)>tr>td:first-child,.ui.table:not(.unstackable)>tr>th:first-child{font-weight:500}.ui.definition.table:not(.unstackable)>thead>tr>th:first-child{box-shadow:none!important}.ui.scrolling.table.short>tbody{max-height:6.74983929em}.ui.scrolling.table[class*="very short"]>tbody{max-height:4.49989286em}.ui.scrolling.table>tbody{max-height:8.99978571em}.ui.scrolling.table.long>tbody{max-height:17.99957143em}.ui.scrolling.table[class*="very long"]>tbody{max-height:26.99935714em}.ui.overflowing.table.short{max-height:11.24973214em}.ui.overflowing.table[class*="very short"]{max-height:7.49982143em}.ui.overflowing.table{max-height:14.99964286em}.ui.overflowing.table.long{max-height:29.99928571em}.ui.overflowing.table[class*="very long"]{max-height:44.99892857em}}@media only screen and (min-width:768px){.ui.scrolling.table.short>tbody{max-height:8.99978571em}.ui.scrolling.table[class*="very short"]>tbody{max-height:5.99985714em}.ui.scrolling.table>tbody{max-height:11.99971429em}.ui.scrolling.table.long>tbody{max-height:23.99942857em}.ui.scrolling.table[class*="very long"]>tbody{max-height:35.99914286em}}@media only screen and (min-width:992px){.ui.scrolling.table.short>tbody{max-height:13.49967857em}.ui.scrolling.table[class*="very short"]>tbody{max-height:8.99978571em}.ui.scrolling.table>tbody{max-height:17.99957143em}.ui.scrolling.table.long>tbody{max-height:35.99914286em}.ui.scrolling.table[class*="very long"]>tbody{max-height:53.99871429em}}@media only screen and (min-width:1920px){.ui.scrolling.table.short>tbody{max-height:17.99957143em}.ui.scrolling.table[class*="very short"]>tbody{max-height:11.99971429em}.ui.scrolling.table>tbody{max-height:23.99942857em}.ui.scrolling.table.long>tbody{max-height:47.99885714em}.ui.scrolling.table[class*="very long"]>tbody{max-height:71.99828571em}}.ui.scrolling.table>tbody,.ui.scrolling.table>tfoot,.ui.scrolling.table>thead{display:block;overflow-y:scroll;-ms-scroll-chaining:none;overscroll-behavior:none}.ui.scrolling.table>tbody>tr,.ui.scrolling.table>tfoot>tr,.ui.scrolling.table>thead>tr{display:table;table-layout:fixed;width:100%}@supports (-moz-appearance:none){.ui.scrolling.table>tbody,.ui.scrolling.table>tfoot,.ui.scrolling.table>thead{scrollbar-width:thin}}.ui.scrolling.table>thead{background:#f9fafb;color:#f9fafb;border-radius:0}.ui.scrolling.table>tfoot{background:#f9fafb;color:#f9fafb;border-radius:0}.ui.scrolling.table>tfoot::-webkit-scrollbar-track,.ui.scrolling.table>thead::-webkit-scrollbar-track{background:inherit;border-radius:0}@supports (-moz-appearance:none){.ui.scrolling.table>tfoot,.ui.scrolling.table>thead{scrollbar-color:currentColor currentColor}}.ui.overflowing.table{display:block;overflow:auto;-ms-scroll-chaining:none;overscroll-behavior:none}@media only screen and (min-width:768px){.ui.overflowing.table.short{max-height:13.49967857em}.ui.overflowing.table[class*="very short"]{max-height:8.99978571em}.ui.overflowing.table{max-height:17.99957143em}.ui.overflowing.table.long{max-height:35.99914286em}.ui.overflowing.table[class*="very long"]{max-height:53.99871429em}}@media only screen and (min-width:992px){.ui.overflowing.table.short{max-height:17.99957143em}.ui.overflowing.table[class*="very short"]{max-height:11.99971429em}.ui.overflowing.table{max-height:23.99942857em}.ui.overflowing.table.long{max-height:47.99885714em}.ui.overflowing.table[class*="very long"]{max-height:71.99828571em}}@media only screen and (min-width:1920px){.ui.overflowing.table.short{max-height:22.49946429em}.ui.overflowing.table[class*="very short"]{max-height:14.99964286em}.ui.overflowing.table{max-height:29.99928571em}.ui.overflowing.table.long{max-height:59.99857143em}.ui.overflowing.table[class*="very long"]{max-height:89.99785714em}}.ui.table .collapsing .image,.ui.table .collapsing .image img{max-width:none}.ui.structured.table{border-collapse:collapse}.ui.structured.table>thead>tr>th{border-left:none;border-right:none}.ui.structured.sortable.table>thead>tr>th{border-left:1px solid rgba(34,36,38,.15);border-right:1px solid rgba(34,36,38,.15)}.ui.structured.celled.table>tbody>tr>td,.ui.structured.celled.table>tbody>tr>th,.ui.structured.celled.table>tfoot>tr>td,.ui.structured.celled.table>tfoot>tr>th,.ui.structured.celled.table>thead>tr>th,.ui.structured.celled.table>tr>td,.ui.structured.celled.table>tr>th{border-left:1px solid rgba(34,36,38,.1);border-right:1px solid rgba(34,36,38,.1)}.ui.definition.table>thead:not(.full-width)>tr>th:first-child{pointer-events:none;background:#fff;font-weight:400;color:rgba(0,0,0,.4);box-shadow:-.1em -.2em 0 .1em #fff;-moz-transform:scale(1)}.ui.definition.table>thead:not(.full-width)>tr>th:first-child:not(:empty){pointer-events:auto}.ui.definition.table>tfoot:not(.full-width)>tr>th:first-child{pointer-events:none;background:#fff;font-weight:400;color:rgba(0,0,0,.4);box-shadow:-.1em .2em 0 .1em #fff;-moz-transform:scale(1)}.ui.definition.table tr td.definition,.ui.definition.table>tbody>tr>td:first-child:not(.ignored),.ui.definition.table>tfoot>tr>td:first-child:not(.ignored),.ui.definition.table>tr>td:first-child:not(.ignored){background:rgba(0,0,0,.03);font-weight:700;color:rgba(0,0,0,.95);text-transform:"";box-shadow:"";text-align:"";font-size:1em;padding-left:"";padding-right:""}.ui.definition.table>thead:not(.full-width)>tr>th:nth-child(2){border-left:1px solid rgba(34,36,38,.15)}.ui.definition.table>tfoot:not(.full-width)>tr>td:nth-child(2),.ui.definition.table>tfoot:not(.full-width)>tr>th:nth-child(2){border-left:1px solid rgba(34,36,38,.15)}.ui.definition.table>tbody>tr>td:nth-child(2),.ui.definition.table>tr>td:nth-child(2){border-left:1px solid rgba(34,36,38,.15)}.ui.ui.table td.positive,.ui.ui.ui.ui.table tr.positive{box-shadow:0 0 0 #a3c293 inset;background:#fcfff5;color:#2c662d}.ui.ui.table td.negative,.ui.ui.ui.ui.table tr.negative{box-shadow:0 0 0 #e0b4b4 inset;background:#fff6f6;color:#9f3a38}.ui.ui.table td.error,.ui.ui.ui.ui.table tr.error{box-shadow:0 0 0 #e0b4b4 inset;background:#fff6f6;color:#9f3a38}.ui.ui.table td.warning,.ui.ui.ui.ui.table tr.warning{box-shadow:0 0 0 #c9ba9b inset;background:#fffaf3;color:#573a08}.ui.ui.table td.active,.ui.ui.ui.ui.table tr.active{box-shadow:0 0 0 rgba(0,0,0,.87) inset;background:#e0e0e0;color:rgba(0,0,0,.87)}.ui.table [class*="left aligned"],.ui.table[class*="left aligned"]{text-align:left}.ui.table [class*="center aligned"],.ui.table[class*="center aligned"]{text-align:center}.ui.table [class*="right aligned"],.ui.table[class*="right aligned"]{text-align:right}.ui.table [class*="top aligned"],.ui.table[class*="top aligned"]{vertical-align:top}.ui.table [class*="middle aligned"],.ui.table[class*="middle aligned"]{vertical-align:middle}.ui.table [class*="bottom aligned"],.ui.table[class*="bottom aligned"]{vertical-align:bottom}.ui.table td.collapsing,.ui.table th.collapsing{width:1px;white-space:nowrap}.ui.fixed.table{table-layout:fixed}.ui.fixed.table td,.ui.fixed.table th{overflow:hidden;text-overflow:ellipsis}.ui.table tbody tr td.selectable:hover,.ui.ui.selectable.table>tbody>tr:hover{background:rgba(0,0,0,.05);color:rgba(0,0,0,.95)}.ui.table tbody tr td.selectable{padding:0}.ui.table tbody tr td.selectable>a:not(.ui){display:block;color:inherit}.ui.table:not(.compact) tbody tr td.selectable>a:not(.ui){padding:.78571429em .78571429em}.ui.selectable.table>tbody>tr,.ui.selectable.table>tr,.ui.table>tbody>tr>td.selectable,.ui.table>tr>td.selectable{cursor:pointer}.ui.selectable.table tr:hover td.error,.ui.table tr td.selectable.error:hover,.ui.ui.selectable.table tr.error:hover{background:#ffe7e7;color:#943634}.ui.selectable.table tr:hover td.warning,.ui.table tr td.selectable.warning:hover,.ui.ui.selectable.table tr.warning:hover{background:#fff4e4;color:#493107}.ui.selectable.table tr:hover td.active,.ui.table tr td.selectable.active:hover,.ui.ui.selectable.table tr.active:hover{background:#e0e0e0;color:rgba(0,0,0,.87)}.ui.selectable.table tr:hover td.positive,.ui.table tr td.selectable.positive:hover,.ui.ui.selectable.table tr.positive:hover{background:#f7ffe6;color:#275b28}.ui.selectable.table tr:hover td.negative,.ui.table tr td.selectable.negative:hover,.ui.ui.selectable.table tr.negative:hover{background:#ffe7e7;color:#943634}.ui.attached.table{top:0;bottom:0;border-radius:0;margin:0 -1px;width:calc(100% + 2px);max-width:calc(100% + 2px);box-shadow:none;border:1px solid #d4d4d5}.ui.attached+.ui.attached.table:not(.top){border-top:none}.ui[class*="top attached"].table{bottom:0;margin-bottom:0;top:0;margin-top:1em;border-radius:0}.ui.table[class*="top attached"]:first-child{margin-top:0}.ui[class*="bottom attached"].table{bottom:0;margin-top:0;top:0;margin-bottom:1em;box-shadow:none;border-radius:0}.ui[class*="bottom attached"].table:last-child{margin-bottom:0}.ui.striped.table>tbody>tr:nth-child(2n),.ui.striped.table>tr:nth-child(2n){background-color:rgba(0,0,50,.02)}.ui.striped.selectable.selectable.selectable.table tbody tr.active:hover{background:#efefef;color:rgba(0,0,0,.95)}.ui.table [class*="single line"],.ui.table[class*="single line"]{white-space:nowrap}.ui.primary.table{border-top:.2em solid #007388}.ui.scrolling.table>tfoot.primary,.ui.scrolling.table>thead.primary{background:#ddf4ff;color:#ddf4ff}.ui.scrolling.table>tfoot.primary>tr>td,.ui.scrolling.table>tfoot.primary>tr>th,.ui.scrolling.table>thead.primary>tr>td,.ui.scrolling.table>thead.primary>tr>th{background:inherit;color:rgba(255,255,255,.9)}.ui.ui.table td.primary,.ui.ui.table td[class*="primary colored"],.ui.ui.table th.primary,.ui.ui.table th[class*="primary colored"],.ui.ui.ui.ui.table tr.primary,.ui.ui.ui.ui.table tr[class*="primary colored"]{background:#ddf4ff;color:rgba(255,255,255,.9)}.ui.table>tfoot>tr.primary>td,.ui.table>tfoot>tr.primary>th,.ui.table>tfoot>tr[class*="primary colored"]>td,.ui.table>tfoot>tr[class*="primary colored"]>th,.ui.table>thead>tr.primary>th,.ui.table>thead>tr[class*="primary colored"]>th{background:inherit;color:rgba(255,255,255,.9)}.ui.selectable.table tr:hover td.primary,.ui.selectable.table tr:hover td[class*="primary colored"],.ui.table tr td.selectable.primary:hover,.ui.table tr td.selectable[class*="primary colored"]:hover,.ui.ui.selectable.table tr.primary:hover,.ui.ui.selectable.table tr[class*="primary colored"]:hover{background:#d3f1ff;color:rgba(255,255,255,.9)}.ui.secondary.table{border-top:.2em solid #294755}.ui.scrolling.table>tfoot.secondary,.ui.scrolling.table>thead.secondary{background:#ddd;color:#ddd}.ui.scrolling.table>tfoot.secondary>tr>td,.ui.scrolling.table>tfoot.secondary>tr>th,.ui.scrolling.table>thead.secondary>tr>td,.ui.scrolling.table>thead.secondary>tr>th{background:inherit;color:rgba(255,255,255,.9)}.ui.ui.table td.secondary,.ui.ui.table td[class*="secondary colored"],.ui.ui.table th.secondary,.ui.ui.table th[class*="secondary colored"],.ui.ui.ui.ui.table tr.secondary,.ui.ui.ui.ui.table tr[class*="secondary colored"]{background:#ddd;color:rgba(255,255,255,.9)}.ui.table>tfoot>tr.secondary>td,.ui.table>tfoot>tr.secondary>th,.ui.table>tfoot>tr[class*="secondary colored"]>td,.ui.table>tfoot>tr[class*="secondary colored"]>th,.ui.table>thead>tr.secondary>th,.ui.table>thead>tr[class*="secondary colored"]>th{background:inherit;color:rgba(255,255,255,.9)}.ui.selectable.table tr:hover td.secondary,.ui.selectable.table tr:hover td[class*="secondary colored"],.ui.table tr td.selectable.secondary:hover,.ui.table tr td.selectable[class*="secondary colored"]:hover,.ui.ui.selectable.table tr.secondary:hover,.ui.ui.selectable.table tr[class*="secondary colored"]:hover{background:#e2e2e2;color:rgba(255,255,255,.9)}.ui.one.column.table td{width:100%}.ui.two.column.table td{width:50%}.ui.three.column.table td{width:33.33333333%}.ui.four.column.table td{width:25%}.ui.five.column.table td{width:20%}.ui.six.column.table td{width:16.66666667%}.ui.seven.column.table td{width:14.28571429%}.ui.eight.column.table td{width:12.5%}.ui.nine.column.table td{width:11.11111111%}.ui.ten.column.table td{width:10%}.ui.eleven.column.table td{width:9.09090909%}.ui.twelve.column.table td{width:8.33333333%}.ui.thirteen.column.table td{width:7.69230769%}.ui.fourteen.column.table td{width:7.14285714%}.ui.fifteen.column.table td{width:6.66666667%}.ui.sixteen.column.table td{width:6.25%}.ui.table td.one.wide,.ui.table th.one.wide{width:6.25%}.ui.table td.two.wide,.ui.table th.two.wide{width:12.5%}.ui.table td.three.wide,.ui.table th.three.wide{width:18.75%}.ui.table td.four.wide,.ui.table th.four.wide{width:25%}.ui.table td.five.wide,.ui.table th.five.wide{width:31.25%}.ui.table td.six.wide,.ui.table th.six.wide{width:37.5%}.ui.table td.seven.wide,.ui.table th.seven.wide{width:43.75%}.ui.table td.eight.wide,.ui.table th.eight.wide{width:50%}.ui.table td.nine.wide,.ui.table th.nine.wide{width:56.25%}.ui.table td.ten.wide,.ui.table th.ten.wide{width:62.5%}.ui.table td.eleven.wide,.ui.table th.eleven.wide{width:68.75%}.ui.table td.twelve.wide,.ui.table th.twelve.wide{width:75%}.ui.table td.thirteen.wide,.ui.table th.thirteen.wide{width:81.25%}.ui.table td.fourteen.wide,.ui.table th.fourteen.wide{width:87.5%}.ui.table td.fifteen.wide,.ui.table th.fifteen.wide{width:93.75%}.ui.table td.sixteen.wide,.ui.table th.sixteen.wide{width:100%}.ui.sortable.table>thead>tr>th{cursor:pointer;white-space:nowrap;color:rgba(0,0,0,.87)}.ui.celled.sortable.table>thead>tr>th:not(:first-child){border-left:1px solid rgba(34,36,38,.15)}.ui.sortable.table thead th.sorted,.ui.sortable.table thead th.sorted:hover{-webkit-user-select:none;-ms-user-select:none;user-select:none}.ui.sortable.table>thead>tr>th::after{display:none;font-style:normal;font-weight:300;text-decoration:inherit;content:"";height:1em;width:auto;opacity:.8;margin:0 0 0 .5em;font-family:Icons}.ui.sortable.table thead th.ascending::after{content:"\f0d8"}.ui.sortable.table thead th.descending::after{content:"\f0d7"}.ui.sortable.table>thead>tr>th:hover{color:rgba(0,0,0,.8)}.ui.sortable.table>thead>tr>th:hover{background:rgba(0,0,0,.05)}.ui.sortable.table thead th.sorted{color:rgba(0,0,0,.95)}.ui.sortable.table thead th.sorted{background:rgba(0,0,0,.05)}.ui.sortable.table thead th.sorted::after{display:inline-block}.ui.sortable.table thead th.sorted:hover{color:rgba(0,0,0,.95)}.ui.sortable.table thead th.sorted:hover{background:rgba(0,0,0,.05)}.ui.collapsing.table{width:auto}.ui.celled.table>tbody>tr>td,.ui.celled.table>tbody>tr>th,.ui.celled.table>tfoot>tr>td,.ui.celled.table>tfoot>tr>th,.ui.celled.table>thead>tr>th,.ui.celled.table>tr>td,.ui.celled.table>tr>th{border-left:1px solid rgba(34,36,38,.1)}.ui.celled.table>tbody>tr>td:first-child,.ui.celled.table>tbody>tr>th:first-child,.ui.celled.table>tfoot>tr>td:first-child,.ui.celled.table>tfoot>tr>th:first-child,.ui.celled.table>thead>tr>th:first-child,.ui.celled.table>tr>td:first-child,.ui.celled.table>tr>th:first-child{border-left:none}.ui.compact.table>tbody>tr>th,.ui.compact.table>tfoot>tr>th,.ui.compact.table>thead>tr>th,.ui.compact.table>tr>th{padding-left:.7em;padding-right:.7em}.ui.compact.table>tbody>tr>td,.ui.compact.table>tfoot>tr>td,.ui.compact.table>tr>td{padding:.5em .7em}.ui[class*="very compact"].table>tbody>tr>th,.ui[class*="very compact"].table>tfoot>tr>th,.ui[class*="very compact"].table>thead>tr>th,.ui[class*="very compact"].table>tr>th{padding-left:.6em;padding-right:.6em}.ui[class*="very compact"].table>tbody>tr>td,.ui[class*="very compact"].table>tfoot>tr>td,.ui[class*="very compact"].table>tr>td{padding:.4em .6em}.ui.stuck.table{background:#fff}.ui.stuck.table>thead>tr{background:#f9fafb}.ui.stuck.table>tbody>tr{background:#fff}.ui.stuck.table>tfoot>tr{background:#f9fafb}.ui.foot.stuck.table>tfoot,.ui.head.stuck.table>thead{position:sticky;z-index:800}.ui.head.stuck.table{border-top:0}.ui.head.stuck.table>thead{top:0;bottom:auto}.ui.head.stuck.table>thead>tr:first-child>th{border-top:1px solid rgba(34,36,38,.1)}.ui.foot.stuck.table{border-bottom:0}.ui.foot.stuck.table>tfoot{top:auto;bottom:0}.ui.foot.stuck.table>tfoot>tr:last-child>td,.ui.foot.stuck.table>tfoot>tr:last-child>th{border-bottom:1px solid rgba(34,36,38,.1)}.ui.first.stuck.table{border-left:0}.ui.first.stuck.table td:first-child,.ui.first.stuck.table th:first-child{position:sticky;left:0;border-left:1px solid rgba(34,36,38,.1);background:inherit}.ui.last.stuck.table{border-right:0}.ui.last.stuck.table td:last-child,.ui.last.stuck.table th:last-child{position:sticky;right:0;border-right:1px solid rgba(34,36,38,.1);background:inherit}.ui.celled.first.stuck.table td:first-child,.ui.celled.first.stuck.table th:first-child{border-right:1px solid rgba(34,36,38,.1)}.ui.celled.last.stuck.table td:last-child,.ui.celled.last.stuck.table th:last-child{border-left:1px solid rgba(34,36,38,.1)}.ui.table{font-size:1em}.ui.mini.table{font-size:.78571429rem}.ui.tiny.table{font-size:.85714286rem}.ui.small.table{font-size:.9em}.ui.large.table{font-size:1.1em}.ui.big.table{font-size:1.28571429rem}.ui.huge.table{font-size:1.42857143rem}.ui.massive.table{font-size:1.71428571rem}
|
|
9
|
+
*/.ui.table{width:100%;background:#fff;margin:1em 0;border:1px solid rgba(34,36,38,.15);box-shadow:none;border-radius:0;text-align:left;vertical-align:middle;color:rgba(0,0,0,.87);border-collapse:separate;border-spacing:0}.ui.table:first-child{margin-top:0}.ui.table:last-child{margin-bottom:0}.ui.table>tbody,.ui.table>thead{text-align:inherit;vertical-align:inherit}.ui.table td,.ui.table th{transition:background .1s ease,color .1s ease}.ui.table td.rowspanned,.ui.table th.rowspanned{display:none}.ui.table>thead{box-shadow:none}.ui.table>thead>tr>th{cursor:auto;background:#f9fafb;text-align:inherit;color:rgba(0,0,0,.87);padding:.92857143em .78571429em;vertical-align:inherit;font-style:none;font-weight:700;text-transform:none;border-bottom:1px solid rgba(34,36,38,.1);border-left:none}.ui.table>thead>tr>th:first-child{border-left:none}.ui.table>thead>tr:first-child>th:first-child{border-radius:0}.ui.table>thead>tr:first-child>th:last-child{border-radius:0}.ui.table>thead>tr:first-child>th:only-child{border-radius:0}.ui.table>tfoot{box-shadow:none}.ui.table>tfoot>tr>td,.ui.table>tfoot>tr>th{cursor:auto;border-top:1px solid rgba(34,36,38,.15);background:#f9fafb;text-align:inherit;color:rgba(0,0,0,.87);padding:.78571429em .78571429em;vertical-align:inherit;font-style:normal;font-weight:400;text-transform:none}.ui.table>tfoot>tr>td:first-child,.ui.table>tfoot>tr>th:first-child{border-left:none}.ui.table>tfoot>tr:last-child>td:first-child,.ui.table>tfoot>tr:last-child>th:first-child{border-radius:0}.ui.table>tfoot>tr:last-child>td:last-child,.ui.table>tfoot>tr:last-child>th:last-child{border-radius:0}.ui.table>tfoot>tr:last-child>td:only-child,.ui.table>tfoot>tr:last-child>th:only-child{border-radius:0}.ui.table>tbody>tr>td,.ui.table>tr>td{border-top:1px solid rgba(34,36,38,.1)}.ui.table>tbody>tr:first-child>td,.ui.table>tr:first-child>td{border-top:none}.ui.table>tbody+tbody tr:first-child>td{border-top:1px solid rgba(34,36,38,.1)}.ui.table>tbody>tr>td,.ui.table>tr>td{padding:.78571429em .78571429em;text-align:inherit}.ui.table>i.icon{vertical-align:baseline}.ui.table>i.icon:only-child{margin:0}.ui.table.segment{padding:0}.ui.table.segment::after{display:none}.ui.table.segment.stacked::after{display:block}@media only screen and (max-width:767.98px){.ui.table:not(.unstackable){width:100%;padding:0}.ui.table:not(.unstackable)>tbody,.ui.table:not(.unstackable)>tbody>tr,.ui.table:not(.unstackable)>tbody>tr>td:not(.rowspanned),.ui.table:not(.unstackable)>tbody>tr>th:not(.rowspanned),.ui.table:not(.unstackable)>tfoot,.ui.table:not(.unstackable)>tfoot>tr,.ui.table:not(.unstackable)>tfoot>tr>td:not(.rowspanned),.ui.table:not(.unstackable)>tfoot>tr>th:not(.rowspanned),.ui.table:not(.unstackable)>thead,.ui.table:not(.unstackable)>thead>tr,.ui.table:not(.unstackable)>thead>tr>th:not(.rowspanned),.ui.table:not(.unstackable)>tr,.ui.table:not(.unstackable)>tr>td:not(.rowspanned),.ui.table:not(.unstackable)>tr>th:not(.rowspanned){display:block!important;width:auto!important}.ui.table:not(.unstackable)>thead{display:block}.ui.table:not(.unstackable)>tfoot{display:block}.ui.ui.ui.ui.table:not(.unstackable)>tbody>tr,.ui.ui.ui.ui.table:not(.unstackable)>tfoot>tr,.ui.ui.ui.ui.table:not(.unstackable)>thead>tr,.ui.ui.ui.ui.table:not(.unstackable)>tr{padding-top:1em;padding-bottom:1em;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset}.ui.ui.ui.ui.table:not(.unstackable)>tbody>tr>td,.ui.ui.ui.ui.table:not(.unstackable)>tbody>tr>th,.ui.ui.ui.ui.table:not(.unstackable)>tfoot>tr>td,.ui.ui.ui.ui.table:not(.unstackable)>tfoot>tr>th,.ui.ui.ui.ui.table:not(.unstackable)>thead>tr>th,.ui.ui.ui.ui.table:not(.unstackable)>tr>td,.ui.ui.ui.ui.table:not(.unstackable)>tr>th{background:0 0;border:none;padding:.25em .75em;box-shadow:none}.ui.table:not(.unstackable)>tbody>tr>td:first-child,.ui.table:not(.unstackable)>tbody>tr>th:first-child,.ui.table:not(.unstackable)>tfoot>tr>td:first-child,.ui.table:not(.unstackable)>tfoot>tr>th:first-child,.ui.table:not(.unstackable)>thead>tr>th:first-child,.ui.table:not(.unstackable)>tr>td:first-child,.ui.table:not(.unstackable)>tr>th:first-child{font-weight:500}.ui.definition.table:not(.unstackable)>thead>tr>th:first-child{box-shadow:none!important}.ui.scrolling.table.short>tbody{max-height:6.74983929em}.ui.scrolling.table[class*="very short"]>tbody{max-height:4.49989286em}.ui.scrolling.table>tbody{max-height:8.99978571em}.ui.scrolling.table.long>tbody{max-height:17.99957143em}.ui.scrolling.table[class*="very long"]>tbody{max-height:26.99935714em}.ui.overflowing.table.short{max-height:11.24973214em}.ui.overflowing.table[class*="very short"]{max-height:7.49982143em}.ui.overflowing.table{max-height:14.99964286em}.ui.overflowing.table.long{max-height:29.99928571em}.ui.overflowing.table[class*="very long"]{max-height:44.99892857em}}@media only screen and (min-width:768px){.ui.scrolling.table.short>tbody{max-height:8.99978571em}.ui.scrolling.table[class*="very short"]>tbody{max-height:5.99985714em}.ui.scrolling.table>tbody{max-height:11.99971429em}.ui.scrolling.table.long>tbody{max-height:23.99942857em}.ui.scrolling.table[class*="very long"]>tbody{max-height:35.99914286em}}@media only screen and (min-width:992px){.ui.scrolling.table.short>tbody{max-height:13.49967857em}.ui.scrolling.table[class*="very short"]>tbody{max-height:8.99978571em}.ui.scrolling.table>tbody{max-height:17.99957143em}.ui.scrolling.table.long>tbody{max-height:35.99914286em}.ui.scrolling.table[class*="very long"]>tbody{max-height:53.99871429em}}@media only screen and (min-width:1920px){.ui.scrolling.table.short>tbody{max-height:17.99957143em}.ui.scrolling.table[class*="very short"]>tbody{max-height:11.99971429em}.ui.scrolling.table>tbody{max-height:23.99942857em}.ui.scrolling.table.long>tbody{max-height:47.99885714em}.ui.scrolling.table[class*="very long"]>tbody{max-height:71.99828571em}}.ui.scrolling.table>tbody,.ui.scrolling.table>tfoot,.ui.scrolling.table>thead{display:block;overflow-y:scroll;-ms-scroll-chaining:none;overscroll-behavior:none}.ui.scrolling.table>tbody>tr,.ui.scrolling.table>tfoot>tr,.ui.scrolling.table>thead>tr{display:table;table-layout:fixed;width:100%}@supports (-moz-appearance:none){.ui.scrolling.table>tbody,.ui.scrolling.table>tfoot,.ui.scrolling.table>thead{scrollbar-width:thin}}.ui.scrolling.table>thead{background:#f9fafb;color:#f9fafb;border-radius:0}.ui.scrolling.table>tfoot{background:#f9fafb;color:#f9fafb;border-radius:0}.ui.scrolling.table>tfoot::-webkit-scrollbar-track,.ui.scrolling.table>thead::-webkit-scrollbar-track{background:inherit;border-radius:0}@supports (-moz-appearance:none){.ui.scrolling.table>tfoot,.ui.scrolling.table>thead{scrollbar-color:currentColor currentColor}}.ui.overflowing.table{display:block;overflow:auto;-ms-scroll-chaining:none;overscroll-behavior:none}@media only screen and (min-width:768px){.ui.overflowing.table.short{max-height:13.49967857em}.ui.overflowing.table[class*="very short"]{max-height:8.99978571em}.ui.overflowing.table{max-height:17.99957143em}.ui.overflowing.table.long{max-height:35.99914286em}.ui.overflowing.table[class*="very long"]{max-height:53.99871429em}}@media only screen and (min-width:992px){.ui.overflowing.table.short{max-height:17.99957143em}.ui.overflowing.table[class*="very short"]{max-height:11.99971429em}.ui.overflowing.table{max-height:23.99942857em}.ui.overflowing.table.long{max-height:47.99885714em}.ui.overflowing.table[class*="very long"]{max-height:71.99828571em}}@media only screen and (min-width:1920px){.ui.overflowing.table.short{max-height:22.49946429em}.ui.overflowing.table[class*="very short"]{max-height:14.99964286em}.ui.overflowing.table{max-height:29.99928571em}.ui.overflowing.table.long{max-height:59.99857143em}.ui.overflowing.table[class*="very long"]{max-height:89.99785714em}}.ui.table .collapsing .image,.ui.table .collapsing .image img{max-width:none}.ui.structured.table{border-collapse:collapse}.ui.structured.table>thead>tr>th{border-left:none;border-right:none}.ui.structured.sortable.table>thead>tr>th{border-left:1px solid rgba(34,36,38,.15);border-right:1px solid rgba(34,36,38,.15)}.ui.structured.celled.table>tbody>tr>td,.ui.structured.celled.table>tbody>tr>th,.ui.structured.celled.table>tfoot>tr>td,.ui.structured.celled.table>tfoot>tr>th,.ui.structured.celled.table>thead>tr>th,.ui.structured.celled.table>tr>td,.ui.structured.celled.table>tr>th{border-left:1px solid rgba(34,36,38,.1);border-right:1px solid rgba(34,36,38,.1)}.ui.definition.table>thead:not(.full-width)>tr>th:first-child{pointer-events:none;background:#fff;font-weight:400;color:rgba(0,0,0,.4);box-shadow:-.1em -.2em 0 .1em #fff;-moz-transform:scale(1)}.ui.definition.table>thead:not(.full-width)>tr>th:first-child:not(:empty){pointer-events:auto}.ui.definition.table>tfoot:not(.full-width)>tr>th:first-child{pointer-events:none;background:#fff;font-weight:400;color:rgba(0,0,0,.4);box-shadow:-.1em .2em 0 .1em #fff;-moz-transform:scale(1)}.ui.definition.table tr td.definition,.ui.definition.table>tbody>tr>td:first-child:not(.ignored),.ui.definition.table>tfoot>tr>td:first-child:not(.ignored),.ui.definition.table>tr>td:first-child:not(.ignored){background:rgba(0,0,0,.03);font-weight:700;color:rgba(0,0,0,.95);text-transform:"";box-shadow:"";text-align:"";font-size:1em;padding-left:"";padding-right:""}.ui.definition.table>thead:not(.full-width)>tr>th:nth-child(2){border-left:1px solid rgba(34,36,38,.15)}.ui.definition.table>tfoot:not(.full-width)>tr>td:nth-child(2),.ui.definition.table>tfoot:not(.full-width)>tr>th:nth-child(2){border-left:1px solid rgba(34,36,38,.15)}.ui.definition.table>tbody>tr>td:nth-child(2),.ui.definition.table>tr>td:nth-child(2){border-left:1px solid rgba(34,36,38,.15)}.ui.ui.table td.positive,.ui.ui.ui.ui.table tr.positive{box-shadow:0 0 0 #a3c293 inset;background:#fcfff5;color:#2c662d}.ui.ui.table td.negative,.ui.ui.ui.ui.table tr.negative{box-shadow:0 0 0 #e0b4b4 inset;background:#fff6f6;color:#9f3a38}.ui.ui.table td.error,.ui.ui.ui.ui.table tr.error{box-shadow:0 0 0 #e0b4b4 inset;background:#fff6f6;color:#9f3a38}.ui.ui.table td.warning,.ui.ui.ui.ui.table tr.warning{box-shadow:0 0 0 #c9ba9b inset;background:#fffaf3;color:#573a08}.ui.ui.table td.active,.ui.ui.ui.ui.table tr.active{box-shadow:0 0 0 rgba(0,0,0,.87) inset;background:#e0e0e0;color:rgba(0,0,0,.87)}.ui.table [class*="left aligned"],.ui.table[class*="left aligned"]{text-align:left}.ui.table [class*="center aligned"],.ui.table[class*="center aligned"]{text-align:center}.ui.table [class*="right aligned"],.ui.table[class*="right aligned"]{text-align:right}.ui.table [class*="top aligned"],.ui.table[class*="top aligned"]{vertical-align:top}.ui.table [class*="middle aligned"],.ui.table[class*="middle aligned"]{vertical-align:middle}.ui.table [class*="bottom aligned"],.ui.table[class*="bottom aligned"]{vertical-align:bottom}.ui.table td.collapsing,.ui.table th.collapsing{width:1px;white-space:nowrap}.ui.fixed.table{table-layout:fixed}.ui.fixed.table td,.ui.fixed.table th{overflow:hidden;text-overflow:ellipsis}.ui.table tbody tr td.selectable:hover,.ui.ui.selectable.table>tbody>tr:hover{background:rgba(0,0,0,.05);color:rgba(0,0,0,.95)}.ui.table tbody tr td.selectable{padding:0}.ui.table tbody tr td.selectable>a:not(.ui){display:block;color:inherit}.ui.table:not(.compact) tbody tr td.selectable>a:not(.ui){padding:.78571429em .78571429em}.ui.selectable.table>tbody>tr,.ui.selectable.table>tr,.ui.table>tbody>tr>td.selectable,.ui.table>tr>td.selectable{cursor:pointer}.ui.selectable.table tr:hover td.error,.ui.table tr td.selectable.error:hover,.ui.ui.selectable.table tr.error:hover{background:#ffe7e7;color:#943634}.ui.selectable.table tr:hover td.warning,.ui.table tr td.selectable.warning:hover,.ui.ui.selectable.table tr.warning:hover{background:#fff4e4;color:#493107}.ui.selectable.table tr:hover td.active,.ui.table tr td.selectable.active:hover,.ui.ui.selectable.table tr.active:hover{background:#e0e0e0;color:rgba(0,0,0,.87)}.ui.selectable.table tr:hover td.positive,.ui.table tr td.selectable.positive:hover,.ui.ui.selectable.table tr.positive:hover{background:#f7ffe6;color:#275b28}.ui.selectable.table tr:hover td.negative,.ui.table tr td.selectable.negative:hover,.ui.ui.selectable.table tr.negative:hover{background:#ffe7e7;color:#943634}.ui.attached.table{top:0;bottom:0;border-radius:0;margin:0 -1px;width:calc(100% + 2px);max-width:calc(100% + 2px);box-shadow:none;border:1px solid #d4d4d5}.ui.attached+.ui.attached.table:not(.top){border-top:none}.ui[class*="top attached"].table{bottom:0;margin-bottom:0;top:0;margin-top:1em;border-radius:0}.ui.table[class*="top attached"]:first-child{margin-top:0}.ui[class*="bottom attached"].table{bottom:0;margin-top:0;top:0;margin-bottom:1em;box-shadow:none;border-radius:0}.ui[class*="bottom attached"].table:last-child{margin-bottom:0}.ui.striped.table>tbody>tr:nth-child(2n),.ui.striped.table>tr:nth-child(2n){background-color:rgba(0,0,50,.02)}.ui.striped.selectable.selectable.selectable.table tbody tr.active:hover{background:#efefef;color:rgba(0,0,0,.95)}.ui.table [class*="single line"],.ui.table[class*="single line"]{white-space:nowrap}.ui.primary.table{border-top:.2em solid #007388}.ui.scrolling.table>tfoot.primary,.ui.scrolling.table>thead.primary{background:#ddf4ff;color:#ddf4ff}.ui.scrolling.table>tfoot.primary>tr>td,.ui.scrolling.table>tfoot.primary>tr>th,.ui.scrolling.table>thead.primary>tr>td,.ui.scrolling.table>thead.primary>tr>th{background:inherit;color:rgba(255,255,255,.9)}.ui.ui.table td.primary,.ui.ui.table td[class*="primary colored"],.ui.ui.table th.primary,.ui.ui.table th[class*="primary colored"],.ui.ui.ui.ui.table tr.primary,.ui.ui.ui.ui.table tr[class*="primary colored"]{background:#ddf4ff;color:rgba(255,255,255,.9)}.ui.table>tfoot>tr.primary>td,.ui.table>tfoot>tr.primary>th,.ui.table>tfoot>tr[class*="primary colored"]>td,.ui.table>tfoot>tr[class*="primary colored"]>th,.ui.table>thead>tr.primary>th,.ui.table>thead>tr[class*="primary colored"]>th{background:inherit;color:rgba(255,255,255,.9)}.ui.selectable.table tr:hover td.primary,.ui.selectable.table tr:hover td[class*="primary colored"],.ui.table tr td.selectable.primary:hover,.ui.table tr td.selectable[class*="primary colored"]:hover,.ui.ui.selectable.table tr.primary:hover,.ui.ui.selectable.table tr[class*="primary colored"]:hover{background:#d3f1ff;color:rgba(255,255,255,.9)}.ui.secondary.table{border-top:.2em solid #294755}.ui.scrolling.table>tfoot.secondary,.ui.scrolling.table>thead.secondary{background:#ddd;color:#ddd}.ui.scrolling.table>tfoot.secondary>tr>td,.ui.scrolling.table>tfoot.secondary>tr>th,.ui.scrolling.table>thead.secondary>tr>td,.ui.scrolling.table>thead.secondary>tr>th{background:inherit;color:rgba(255,255,255,.9)}.ui.ui.table td.secondary,.ui.ui.table td[class*="secondary colored"],.ui.ui.table th.secondary,.ui.ui.table th[class*="secondary colored"],.ui.ui.ui.ui.table tr.secondary,.ui.ui.ui.ui.table tr[class*="secondary colored"]{background:#ddd;color:rgba(255,255,255,.9)}.ui.table>tfoot>tr.secondary>td,.ui.table>tfoot>tr.secondary>th,.ui.table>tfoot>tr[class*="secondary colored"]>td,.ui.table>tfoot>tr[class*="secondary colored"]>th,.ui.table>thead>tr.secondary>th,.ui.table>thead>tr[class*="secondary colored"]>th{background:inherit;color:rgba(255,255,255,.9)}.ui.selectable.table tr:hover td.secondary,.ui.selectable.table tr:hover td[class*="secondary colored"],.ui.table tr td.selectable.secondary:hover,.ui.table tr td.selectable[class*="secondary colored"]:hover,.ui.ui.selectable.table tr.secondary:hover,.ui.ui.selectable.table tr[class*="secondary colored"]:hover{background:#e2e2e2;color:rgba(255,255,255,.9)}.ui.violet.table{border-top:.2em solid #9461ac}.ui.scrolling.table>tfoot.violet,.ui.scrolling.table>thead.violet{background:#ece9fe;color:#ece9fe}.ui.scrolling.table>tfoot.violet>tr>td,.ui.scrolling.table>tfoot.violet>tr>th,.ui.scrolling.table>thead.violet>tr>td,.ui.scrolling.table>thead.violet>tr>th{background:inherit;color:#9461ac}.ui.ui.table td.violet,.ui.ui.table td[class*="violet colored"],.ui.ui.table th.violet,.ui.ui.table th[class*="violet colored"],.ui.ui.ui.ui.table tr.violet,.ui.ui.ui.ui.table tr[class*="violet colored"]{background:#ece9fe;color:#9461ac}.ui.table>tfoot>tr.violet>td,.ui.table>tfoot>tr.violet>th,.ui.table>tfoot>tr[class*="violet colored"]>td,.ui.table>tfoot>tr[class*="violet colored"]>th,.ui.table>thead>tr.violet>th,.ui.table>thead>tr[class*="violet colored"]>th{background:inherit;color:#9461ac}.ui.selectable.table tr:hover td.violet,.ui.selectable.table tr:hover td[class*="violet colored"],.ui.table tr td.selectable.violet:hover,.ui.table tr td.selectable[class*="violet colored"]:hover,.ui.ui.selectable.table tr.violet:hover,.ui.ui.selectable.table tr[class*="violet colored"]:hover{background:#e3deff;color:#9461ac}.ui.green.table{border-top:.2em solid #81b08c}.ui.scrolling.table>tfoot.green,.ui.scrolling.table>thead.green{background:#d5f5d9;color:#d5f5d9}.ui.scrolling.table>tfoot.green>tr>td,.ui.scrolling.table>tfoot.green>tr>th,.ui.scrolling.table>thead.green>tr>td,.ui.scrolling.table>thead.green>tr>th{background:inherit;color:#1ebc30}.ui.ui.table td.green,.ui.ui.table td[class*="green colored"],.ui.ui.table th.green,.ui.ui.table th[class*="green colored"],.ui.ui.ui.ui.table tr.green,.ui.ui.ui.ui.table tr[class*="green colored"]{background:#d5f5d9;color:#1ebc30}.ui.table>tfoot>tr.green>td,.ui.table>tfoot>tr.green>th,.ui.table>tfoot>tr[class*="green colored"]>td,.ui.table>tfoot>tr[class*="green colored"]>th,.ui.table>thead>tr.green>th,.ui.table>thead>tr[class*="green colored"]>th{background:inherit;color:#1ebc30}.ui.selectable.table tr:hover td.green,.ui.selectable.table tr:hover td[class*="green colored"],.ui.table tr td.selectable.green:hover,.ui.table tr td.selectable[class*="green colored"]:hover,.ui.ui.selectable.table tr.green:hover,.ui.ui.selectable.table tr[class*="green colored"]:hover{background:#d2eed5;color:#1ebc30}.ui.one.column.table td{width:100%}.ui.two.column.table td{width:50%}.ui.three.column.table td{width:33.33333333%}.ui.four.column.table td{width:25%}.ui.five.column.table td{width:20%}.ui.six.column.table td{width:16.66666667%}.ui.seven.column.table td{width:14.28571429%}.ui.eight.column.table td{width:12.5%}.ui.nine.column.table td{width:11.11111111%}.ui.ten.column.table td{width:10%}.ui.eleven.column.table td{width:9.09090909%}.ui.twelve.column.table td{width:8.33333333%}.ui.thirteen.column.table td{width:7.69230769%}.ui.fourteen.column.table td{width:7.14285714%}.ui.fifteen.column.table td{width:6.66666667%}.ui.sixteen.column.table td{width:6.25%}.ui.table td.one.wide,.ui.table th.one.wide{width:6.25%}.ui.table td.two.wide,.ui.table th.two.wide{width:12.5%}.ui.table td.three.wide,.ui.table th.three.wide{width:18.75%}.ui.table td.four.wide,.ui.table th.four.wide{width:25%}.ui.table td.five.wide,.ui.table th.five.wide{width:31.25%}.ui.table td.six.wide,.ui.table th.six.wide{width:37.5%}.ui.table td.seven.wide,.ui.table th.seven.wide{width:43.75%}.ui.table td.eight.wide,.ui.table th.eight.wide{width:50%}.ui.table td.nine.wide,.ui.table th.nine.wide{width:56.25%}.ui.table td.ten.wide,.ui.table th.ten.wide{width:62.5%}.ui.table td.eleven.wide,.ui.table th.eleven.wide{width:68.75%}.ui.table td.twelve.wide,.ui.table th.twelve.wide{width:75%}.ui.table td.thirteen.wide,.ui.table th.thirteen.wide{width:81.25%}.ui.table td.fourteen.wide,.ui.table th.fourteen.wide{width:87.5%}.ui.table td.fifteen.wide,.ui.table th.fifteen.wide{width:93.75%}.ui.table td.sixteen.wide,.ui.table th.sixteen.wide{width:100%}.ui.sortable.table>thead>tr>th{cursor:pointer;white-space:nowrap;color:rgba(0,0,0,.87)}.ui.celled.sortable.table>thead>tr>th:not(:first-child){border-left:1px solid rgba(34,36,38,.15)}.ui.sortable.table thead th.sorted,.ui.sortable.table thead th.sorted:hover{-webkit-user-select:none;-ms-user-select:none;user-select:none}.ui.sortable.table>thead>tr>th::after{display:none;font-style:normal;font-weight:300;text-decoration:inherit;content:"";height:1em;width:auto;opacity:.8;margin:0 0 0 .5em;font-family:Icons}.ui.sortable.table thead th.ascending::after{content:"\f0d8"}.ui.sortable.table thead th.descending::after{content:"\f0d7"}.ui.sortable.table>thead>tr>th:hover{color:rgba(0,0,0,.8)}.ui.sortable.table>thead>tr>th:hover{background:rgba(0,0,0,.05)}.ui.sortable.table thead th.sorted{color:rgba(0,0,0,.95)}.ui.sortable.table thead th.sorted{background:rgba(0,0,0,.05)}.ui.sortable.table thead th.sorted::after{display:inline-block}.ui.sortable.table thead th.sorted:hover{color:rgba(0,0,0,.95)}.ui.sortable.table thead th.sorted:hover{background:rgba(0,0,0,.05)}.ui.collapsing.table{width:auto}.ui.celled.table>tbody>tr>td,.ui.celled.table>tbody>tr>th,.ui.celled.table>tfoot>tr>td,.ui.celled.table>tfoot>tr>th,.ui.celled.table>thead>tr>th,.ui.celled.table>tr>td,.ui.celled.table>tr>th{border-left:1px solid rgba(34,36,38,.1)}.ui.celled.table>tbody>tr>td:first-child,.ui.celled.table>tbody>tr>th:first-child,.ui.celled.table>tfoot>tr>td:first-child,.ui.celled.table>tfoot>tr>th:first-child,.ui.celled.table>thead>tr>th:first-child,.ui.celled.table>tr>td:first-child,.ui.celled.table>tr>th:first-child{border-left:none}.ui.compact.table>tbody>tr>th,.ui.compact.table>tfoot>tr>th,.ui.compact.table>thead>tr>th,.ui.compact.table>tr>th{padding-left:.7em;padding-right:.7em}.ui.compact.table>tbody>tr>td,.ui.compact.table>tfoot>tr>td,.ui.compact.table>tr>td{padding:.5em .7em}.ui[class*="very compact"].table>tbody>tr>th,.ui[class*="very compact"].table>tfoot>tr>th,.ui[class*="very compact"].table>thead>tr>th,.ui[class*="very compact"].table>tr>th{padding-left:.6em;padding-right:.6em}.ui[class*="very compact"].table>tbody>tr>td,.ui[class*="very compact"].table>tfoot>tr>td,.ui[class*="very compact"].table>tr>td{padding:.4em .6em}.ui.stuck.table{background:#fff}.ui.stuck.table>thead>tr{background:#f9fafb}.ui.stuck.table>tbody>tr{background:#fff}.ui.stuck.table>tfoot>tr{background:#f9fafb}.ui.foot.stuck.table>tfoot,.ui.head.stuck.table>thead{position:sticky;z-index:800}.ui.head.stuck.table{border-top:0}.ui.head.stuck.table>thead{top:0;bottom:auto}.ui.head.stuck.table>thead>tr:first-child>th{border-top:1px solid rgba(34,36,38,.1)}.ui.foot.stuck.table{border-bottom:0}.ui.foot.stuck.table>tfoot{top:auto;bottom:0}.ui.foot.stuck.table>tfoot>tr:last-child>td,.ui.foot.stuck.table>tfoot>tr:last-child>th{border-bottom:1px solid rgba(34,36,38,.1)}.ui.first.stuck.table{border-left:0}.ui.first.stuck.table td:first-child,.ui.first.stuck.table th:first-child{position:sticky;left:0;border-left:1px solid rgba(34,36,38,.1);background:inherit}.ui.last.stuck.table{border-right:0}.ui.last.stuck.table td:last-child,.ui.last.stuck.table th:last-child{position:sticky;right:0;border-right:1px solid rgba(34,36,38,.1);background:inherit}.ui.celled.first.stuck.table td:first-child,.ui.celled.first.stuck.table th:first-child{border-right:1px solid rgba(34,36,38,.1)}.ui.celled.last.stuck.table td:last-child,.ui.celled.last.stuck.table th:last-child{border-left:1px solid rgba(34,36,38,.1)}.ui.table{font-size:1em}.ui.mini.table{font-size:.78571429rem}.ui.tiny.table{font-size:.85714286rem}.ui.small.table{font-size:.9em}.ui.large.table{font-size:1.1em}.ui.big.table{font-size:1.28571429rem}.ui.huge.table{font-size:1.42857143rem}.ui.massive.table{font-size:1.71428571rem}.ui.ui.ui.ui.primary.table{border-top-left-radius:.28571429em;border-top-right-radius:.28571429em}.ui.ui.ui.ui.primary.table:not(.unstackable)>thead>tr.colored-header>th{background:linear-gradient(to bottom,rgba(0,115,136,.12),#f9fafb 80%)}@media only screen and (max-width:767.98px){.ui.ui.ui.ui.primary.table:not(.unstackable)>thead>tr.colored-header>th{background:0 0}}@media only screen and (max-width:767.98px){.ui.ui.ui.ui.primary.table:not(.unstackable)>thead>tr.colored-header{background:linear-gradient(to bottom,rgba(0,115,136,.12),transparent 80%)}}.ui.ui.ui.ui.secondary.table{border-top-left-radius:.28571429em;border-top-right-radius:.28571429em}.ui.ui.ui.ui.secondary.table:not(.unstackable)>thead>tr.colored-header>th{background:linear-gradient(to bottom,rgba(41,71,85,.12),#f9fafb 80%)}@media only screen and (max-width:767.98px){.ui.ui.ui.ui.secondary.table:not(.unstackable)>thead>tr.colored-header>th{background:0 0}}@media only screen and (max-width:767.98px){.ui.ui.ui.ui.secondary.table:not(.unstackable)>thead>tr.colored-header{background:linear-gradient(to bottom,rgba(41,71,85,.12),transparent 80%)}}.ui.ui.ui.ui.violet.table{border-top-left-radius:.28571429em;border-top-right-radius:.28571429em}.ui.ui.ui.ui.violet.table:not(.unstackable)>thead>tr.colored-header>th{background:linear-gradient(to bottom,rgba(148,97,172,.12),#f9fafb 80%)}@media only screen and (max-width:767.98px){.ui.ui.ui.ui.violet.table:not(.unstackable)>thead>tr.colored-header>th{background:0 0}}@media only screen and (max-width:767.98px){.ui.ui.ui.ui.violet.table:not(.unstackable)>thead>tr.colored-header{background:linear-gradient(to bottom,rgba(148,97,172,.12),transparent 80%)}}.ui.ui.ui.ui.green.table{border-top-left-radius:.28571429em;border-top-right-radius:.28571429em}.ui.ui.ui.ui.green.table:not(.unstackable)>thead>tr.colored-header>th{background:linear-gradient(to bottom,rgba(129,176,140,.12),#f9fafb 80%)}@media only screen and (max-width:767.98px){.ui.ui.ui.ui.green.table:not(.unstackable)>thead>tr.colored-header>th{background:0 0}}@media only screen and (max-width:767.98px){.ui.ui.ui.ui.green.table:not(.unstackable)>thead>tr.colored-header{background:linear-gradient(to bottom,rgba(129,176,140,.12),transparent 80%)}}
|
|
@@ -15431,6 +15431,106 @@ Floated Menu / Item
|
|
|
15431
15431
|
color: rgba(255, 255, 255, 0.9);
|
|
15432
15432
|
}
|
|
15433
15433
|
|
|
15434
|
+
.ui.violet.table {
|
|
15435
|
+
border-top: 0.2em solid #9461ac;
|
|
15436
|
+
}
|
|
15437
|
+
|
|
15438
|
+
/* Same color for background and color to camouflage the scrollbar */
|
|
15439
|
+
|
|
15440
|
+
.ui.scrolling.table > thead.violet,
|
|
15441
|
+
.ui.scrolling.table > tfoot.violet {
|
|
15442
|
+
background: #ece9fe;
|
|
15443
|
+
color: #ece9fe;
|
|
15444
|
+
}
|
|
15445
|
+
|
|
15446
|
+
.ui.scrolling.table > thead.violet > tr > th,
|
|
15447
|
+
.ui.scrolling.table > tfoot.violet > tr > th,
|
|
15448
|
+
.ui.scrolling.table > thead.violet > tr > td,
|
|
15449
|
+
.ui.scrolling.table > tfoot.violet > tr > td {
|
|
15450
|
+
background: inherit;
|
|
15451
|
+
color: #9461ac;
|
|
15452
|
+
}
|
|
15453
|
+
|
|
15454
|
+
.ui.ui.ui.ui.table tr[class*="violet colored"],
|
|
15455
|
+
.ui.ui.table th[class*="violet colored"],
|
|
15456
|
+
.ui.ui.table td[class*="violet colored"],
|
|
15457
|
+
.ui.ui.ui.ui.table tr.violet,
|
|
15458
|
+
.ui.ui.table th.violet,
|
|
15459
|
+
.ui.ui.table td.violet {
|
|
15460
|
+
background: #ece9fe;
|
|
15461
|
+
color: #9461ac;
|
|
15462
|
+
}
|
|
15463
|
+
|
|
15464
|
+
.ui.table > thead > tr[class*="violet colored"] > th,
|
|
15465
|
+
.ui.table > tfoot > tr[class*="violet colored"] > th,
|
|
15466
|
+
.ui.table > tfoot > tr[class*="violet colored"] > td,
|
|
15467
|
+
.ui.table > thead > tr.violet > th,
|
|
15468
|
+
.ui.table > tfoot > tr.violet > th,
|
|
15469
|
+
.ui.table > tfoot > tr.violet > td {
|
|
15470
|
+
background: inherit;
|
|
15471
|
+
color: #9461ac;
|
|
15472
|
+
}
|
|
15473
|
+
|
|
15474
|
+
.ui.ui.selectable.table tr[class*="violet colored"]:hover,
|
|
15475
|
+
.ui.table tr td.selectable[class*="violet colored"]:hover,
|
|
15476
|
+
.ui.selectable.table tr:hover td[class*="violet colored"],
|
|
15477
|
+
.ui.ui.selectable.table tr.violet:hover,
|
|
15478
|
+
.ui.table tr td.selectable.violet:hover,
|
|
15479
|
+
.ui.selectable.table tr:hover td.violet {
|
|
15480
|
+
background: #e3deff;
|
|
15481
|
+
color: #9461ac;
|
|
15482
|
+
}
|
|
15483
|
+
|
|
15484
|
+
.ui.green.table {
|
|
15485
|
+
border-top: 0.2em solid #81b08c;
|
|
15486
|
+
}
|
|
15487
|
+
|
|
15488
|
+
/* Same color for background and color to camouflage the scrollbar */
|
|
15489
|
+
|
|
15490
|
+
.ui.scrolling.table > thead.green,
|
|
15491
|
+
.ui.scrolling.table > tfoot.green {
|
|
15492
|
+
background: #d5f5d9;
|
|
15493
|
+
color: #d5f5d9;
|
|
15494
|
+
}
|
|
15495
|
+
|
|
15496
|
+
.ui.scrolling.table > thead.green > tr > th,
|
|
15497
|
+
.ui.scrolling.table > tfoot.green > tr > th,
|
|
15498
|
+
.ui.scrolling.table > thead.green > tr > td,
|
|
15499
|
+
.ui.scrolling.table > tfoot.green > tr > td {
|
|
15500
|
+
background: inherit;
|
|
15501
|
+
color: #1ebc30;
|
|
15502
|
+
}
|
|
15503
|
+
|
|
15504
|
+
.ui.ui.ui.ui.table tr[class*="green colored"],
|
|
15505
|
+
.ui.ui.table th[class*="green colored"],
|
|
15506
|
+
.ui.ui.table td[class*="green colored"],
|
|
15507
|
+
.ui.ui.ui.ui.table tr.green,
|
|
15508
|
+
.ui.ui.table th.green,
|
|
15509
|
+
.ui.ui.table td.green {
|
|
15510
|
+
background: #d5f5d9;
|
|
15511
|
+
color: #1ebc30;
|
|
15512
|
+
}
|
|
15513
|
+
|
|
15514
|
+
.ui.table > thead > tr[class*="green colored"] > th,
|
|
15515
|
+
.ui.table > tfoot > tr[class*="green colored"] > th,
|
|
15516
|
+
.ui.table > tfoot > tr[class*="green colored"] > td,
|
|
15517
|
+
.ui.table > thead > tr.green > th,
|
|
15518
|
+
.ui.table > tfoot > tr.green > th,
|
|
15519
|
+
.ui.table > tfoot > tr.green > td {
|
|
15520
|
+
background: inherit;
|
|
15521
|
+
color: #1ebc30;
|
|
15522
|
+
}
|
|
15523
|
+
|
|
15524
|
+
.ui.ui.selectable.table tr[class*="green colored"]:hover,
|
|
15525
|
+
.ui.table tr td.selectable[class*="green colored"]:hover,
|
|
15526
|
+
.ui.selectable.table tr:hover td[class*="green colored"],
|
|
15527
|
+
.ui.ui.selectable.table tr.green:hover,
|
|
15528
|
+
.ui.table tr td.selectable.green:hover,
|
|
15529
|
+
.ui.selectable.table tr:hover td.green {
|
|
15530
|
+
background: #d2eed5;
|
|
15531
|
+
color: #1ebc30;
|
|
15532
|
+
}
|
|
15533
|
+
|
|
15434
15534
|
/* --------------
|
|
15435
15535
|
Column Count
|
|
15436
15536
|
--------------- */
|
|
@@ -15828,6 +15928,110 @@ Floated Menu / Item
|
|
|
15828
15928
|
/*******************************
|
|
15829
15929
|
Site Overrides
|
|
15830
15930
|
*******************************/
|
|
15931
|
+
|
|
15932
|
+
.ui.ui.ui.ui.primary.table {
|
|
15933
|
+
border-top-left-radius: 0.28571429em;
|
|
15934
|
+
border-top-right-radius: 0.28571429em;
|
|
15935
|
+
}
|
|
15936
|
+
|
|
15937
|
+
.ui.ui.ui.ui.primary.table:not(.unstackable) > thead > tr.colored-header {
|
|
15938
|
+
/* Colored header */
|
|
15939
|
+
/* Colored header (stacked table) */
|
|
15940
|
+
}
|
|
15941
|
+
|
|
15942
|
+
.ui.ui.ui.ui.primary.table:not(.unstackable) > thead > tr.colored-header > th {
|
|
15943
|
+
background: linear-gradient(to bottom, rgba(0, 115, 136, 0.12), #f9fafb 80%);
|
|
15944
|
+
}
|
|
15945
|
+
|
|
15946
|
+
@media only screen and (max-width: 767.98px) {
|
|
15947
|
+
.ui.ui.ui.ui.primary.table:not(.unstackable) > thead > tr.colored-header > th {
|
|
15948
|
+
background: none;
|
|
15949
|
+
}
|
|
15950
|
+
}
|
|
15951
|
+
|
|
15952
|
+
@media only screen and (max-width: 767.98px) {
|
|
15953
|
+
.ui.ui.ui.ui.primary.table:not(.unstackable) > thead > tr.colored-header {
|
|
15954
|
+
background: linear-gradient(to bottom, rgba(0, 115, 136, 0.12), transparent 80%);
|
|
15955
|
+
}
|
|
15956
|
+
}
|
|
15957
|
+
|
|
15958
|
+
.ui.ui.ui.ui.secondary.table {
|
|
15959
|
+
border-top-left-radius: 0.28571429em;
|
|
15960
|
+
border-top-right-radius: 0.28571429em;
|
|
15961
|
+
}
|
|
15962
|
+
|
|
15963
|
+
.ui.ui.ui.ui.secondary.table:not(.unstackable) > thead > tr.colored-header {
|
|
15964
|
+
/* Colored header */
|
|
15965
|
+
/* Colored header (stacked table) */
|
|
15966
|
+
}
|
|
15967
|
+
|
|
15968
|
+
.ui.ui.ui.ui.secondary.table:not(.unstackable) > thead > tr.colored-header > th {
|
|
15969
|
+
background: linear-gradient(to bottom, rgba(41, 71, 85, 0.12), #f9fafb 80%);
|
|
15970
|
+
}
|
|
15971
|
+
|
|
15972
|
+
@media only screen and (max-width: 767.98px) {
|
|
15973
|
+
.ui.ui.ui.ui.secondary.table:not(.unstackable) > thead > tr.colored-header > th {
|
|
15974
|
+
background: none;
|
|
15975
|
+
}
|
|
15976
|
+
}
|
|
15977
|
+
|
|
15978
|
+
@media only screen and (max-width: 767.98px) {
|
|
15979
|
+
.ui.ui.ui.ui.secondary.table:not(.unstackable) > thead > tr.colored-header {
|
|
15980
|
+
background: linear-gradient(to bottom, rgba(41, 71, 85, 0.12), transparent 80%);
|
|
15981
|
+
}
|
|
15982
|
+
}
|
|
15983
|
+
|
|
15984
|
+
.ui.ui.ui.ui.violet.table {
|
|
15985
|
+
border-top-left-radius: 0.28571429em;
|
|
15986
|
+
border-top-right-radius: 0.28571429em;
|
|
15987
|
+
}
|
|
15988
|
+
|
|
15989
|
+
.ui.ui.ui.ui.violet.table:not(.unstackable) > thead > tr.colored-header {
|
|
15990
|
+
/* Colored header */
|
|
15991
|
+
/* Colored header (stacked table) */
|
|
15992
|
+
}
|
|
15993
|
+
|
|
15994
|
+
.ui.ui.ui.ui.violet.table:not(.unstackable) > thead > tr.colored-header > th {
|
|
15995
|
+
background: linear-gradient(to bottom, rgba(148, 97, 172, 0.12), #f9fafb 80%);
|
|
15996
|
+
}
|
|
15997
|
+
|
|
15998
|
+
@media only screen and (max-width: 767.98px) {
|
|
15999
|
+
.ui.ui.ui.ui.violet.table:not(.unstackable) > thead > tr.colored-header > th {
|
|
16000
|
+
background: none;
|
|
16001
|
+
}
|
|
16002
|
+
}
|
|
16003
|
+
|
|
16004
|
+
@media only screen and (max-width: 767.98px) {
|
|
16005
|
+
.ui.ui.ui.ui.violet.table:not(.unstackable) > thead > tr.colored-header {
|
|
16006
|
+
background: linear-gradient(to bottom, rgba(148, 97, 172, 0.12), transparent 80%);
|
|
16007
|
+
}
|
|
16008
|
+
}
|
|
16009
|
+
|
|
16010
|
+
.ui.ui.ui.ui.green.table {
|
|
16011
|
+
border-top-left-radius: 0.28571429em;
|
|
16012
|
+
border-top-right-radius: 0.28571429em;
|
|
16013
|
+
}
|
|
16014
|
+
|
|
16015
|
+
.ui.ui.ui.ui.green.table:not(.unstackable) > thead > tr.colored-header {
|
|
16016
|
+
/* Colored header */
|
|
16017
|
+
/* Colored header (stacked table) */
|
|
16018
|
+
}
|
|
16019
|
+
|
|
16020
|
+
.ui.ui.ui.ui.green.table:not(.unstackable) > thead > tr.colored-header > th {
|
|
16021
|
+
background: linear-gradient(to bottom, rgba(129, 176, 140, 0.12), #f9fafb 80%);
|
|
16022
|
+
}
|
|
16023
|
+
|
|
16024
|
+
@media only screen and (max-width: 767.98px) {
|
|
16025
|
+
.ui.ui.ui.ui.green.table:not(.unstackable) > thead > tr.colored-header > th {
|
|
16026
|
+
background: none;
|
|
16027
|
+
}
|
|
16028
|
+
}
|
|
16029
|
+
|
|
16030
|
+
@media only screen and (max-width: 767.98px) {
|
|
16031
|
+
.ui.ui.ui.ui.green.table:not(.unstackable) > thead > tr.colored-header {
|
|
16032
|
+
background: linear-gradient(to bottom, rgba(129, 176, 140, 0.12), transparent 80%);
|
|
16033
|
+
}
|
|
16034
|
+
}
|
|
15831
16035
|
/*!
|
|
15832
16036
|
* # Fomantic-UI 2.9.4 - Card
|
|
15833
16037
|
* https://github.com/fomantic/Fomantic-UI/
|