@northdata/fomantic-ui 2.9.406 → 2.9.408
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 +116 -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 +156 -0
- package/lib/semantic-ui/dist/semantic.css +136 -0
- package/lib/semantic-ui/dist/semantic.full.css +135 -0
- package/lib/semantic-ui/dist/semantic.full.min.css +1 -1
- package/lib/semantic-ui/dist/semantic.min.css +2 -2
- package/package.json +2 -2
|
@@ -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,31 @@
|
|
|
1199
1287
|
Site Overrides
|
|
1200
1288
|
*******************************/
|
|
1201
1289
|
|
|
1290
|
+
.ui.primary.table {
|
|
1291
|
+
border-top-left-radius: 0.28571429em;
|
|
1292
|
+
border-top-right-radius: 0.28571429em;
|
|
1293
|
+
}
|
|
1294
|
+
.ui.primary.table > thead > tr > .colored-header {
|
|
1295
|
+
background: linear-gradient(to bottom, rgba(0, 115, 136, 0.12), #f9fafb 80%) !important;
|
|
1296
|
+
}
|
|
1297
|
+
.ui.secondary.table {
|
|
1298
|
+
border-top-left-radius: 0.28571429em;
|
|
1299
|
+
border-top-right-radius: 0.28571429em;
|
|
1300
|
+
}
|
|
1301
|
+
.ui.secondary.table > thead > tr > .colored-header {
|
|
1302
|
+
background: linear-gradient(to bottom, rgba(41, 71, 85, 0.12), #f9fafb 80%) !important;
|
|
1303
|
+
}
|
|
1304
|
+
.ui.violet.table {
|
|
1305
|
+
border-top-left-radius: 0.28571429em;
|
|
1306
|
+
border-top-right-radius: 0.28571429em;
|
|
1307
|
+
}
|
|
1308
|
+
.ui.violet.table > thead > tr > .colored-header {
|
|
1309
|
+
background: linear-gradient(to bottom, rgba(148, 97, 172, 0.12), #f9fafb 80%) !important;
|
|
1310
|
+
}
|
|
1311
|
+
.ui.green.table {
|
|
1312
|
+
border-top-left-radius: 0.28571429em;
|
|
1313
|
+
border-top-right-radius: 0.28571429em;
|
|
1314
|
+
}
|
|
1315
|
+
.ui.green.table > thead > tr > .colored-header {
|
|
1316
|
+
background: linear-gradient(to bottom, rgba(129, 176, 140, 0.12), #f9fafb 80%) !important;
|
|
1317
|
+
}
|
|
@@ -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.primary.table{border-top-left-radius:.28571429em;border-top-right-radius:.28571429em}.ui.primary.table>thead>tr>.colored-header{background:linear-gradient(to bottom,rgba(0,115,136,.12),#f9fafb 80%)!important}.ui.secondary.table{border-top-left-radius:.28571429em;border-top-right-radius:.28571429em}.ui.secondary.table>thead>tr>.colored-header{background:linear-gradient(to bottom,rgba(41,71,85,.12),#f9fafb 80%)!important}.ui.violet.table{border-top-left-radius:.28571429em;border-top-right-radius:.28571429em}.ui.violet.table>thead>tr>.colored-header{background:linear-gradient(to bottom,rgba(148,97,172,.12),#f9fafb 80%)!important}.ui.green.table{border-top-left-radius:.28571429em;border-top-right-radius:.28571429em}.ui.green.table>thead>tr>.colored-header{background:linear-gradient(to bottom,rgba(129,176,140,.12),#f9fafb 80%)!important}
|
|
@@ -3264,6 +3264,14 @@ i.icon.chevron.up::before {
|
|
|
3264
3264
|
content: "\f077";
|
|
3265
3265
|
}
|
|
3266
3266
|
|
|
3267
|
+
i.icon.circle::before {
|
|
3268
|
+
content: "\f111";
|
|
3269
|
+
}
|
|
3270
|
+
|
|
3271
|
+
i.icon.circle.notch::before {
|
|
3272
|
+
content: "\f1ce";
|
|
3273
|
+
}
|
|
3274
|
+
|
|
3267
3275
|
i.icon.clipboard.check::before {
|
|
3268
3276
|
content: "\f46c";
|
|
3269
3277
|
}
|
|
@@ -3938,6 +3946,14 @@ i.icon.checkmark.box::before {
|
|
|
3938
3946
|
content: "\f14a";
|
|
3939
3947
|
}
|
|
3940
3948
|
|
|
3949
|
+
i.icon.circle.notched::before {
|
|
3950
|
+
content: "\f1ce";
|
|
3951
|
+
}
|
|
3952
|
+
|
|
3953
|
+
i.icon.circle.thin::before {
|
|
3954
|
+
content: "\f111";
|
|
3955
|
+
}
|
|
3956
|
+
|
|
3941
3957
|
i.icon.close::before {
|
|
3942
3958
|
content: "\f00d";
|
|
3943
3959
|
}
|
|
@@ -4184,6 +4200,10 @@ i.icon.check.square.outline::before {
|
|
|
4184
4200
|
content: "\f14a";
|
|
4185
4201
|
}
|
|
4186
4202
|
|
|
4203
|
+
i.icon.circle.outline::before {
|
|
4204
|
+
content: "\f111";
|
|
4205
|
+
}
|
|
4206
|
+
|
|
4187
4207
|
i.icon.clock.outline::before {
|
|
4188
4208
|
content: "\f017";
|
|
4189
4209
|
}
|
|
@@ -15411,6 +15431,106 @@ Floated Menu / Item
|
|
|
15411
15431
|
color: rgba(255, 255, 255, 0.9);
|
|
15412
15432
|
}
|
|
15413
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
|
+
|
|
15414
15534
|
/* --------------
|
|
15415
15535
|
Column Count
|
|
15416
15536
|
--------------- */
|
|
@@ -15808,6 +15928,42 @@ Floated Menu / Item
|
|
|
15808
15928
|
/*******************************
|
|
15809
15929
|
Site Overrides
|
|
15810
15930
|
*******************************/
|
|
15931
|
+
|
|
15932
|
+
.ui.primary.table {
|
|
15933
|
+
border-top-left-radius: 0.28571429em;
|
|
15934
|
+
border-top-right-radius: 0.28571429em;
|
|
15935
|
+
}
|
|
15936
|
+
|
|
15937
|
+
.ui.primary.table > thead > tr > .colored-header {
|
|
15938
|
+
background: linear-gradient(to bottom, rgba(0, 115, 136, 0.12), #f9fafb 80%) !important;
|
|
15939
|
+
}
|
|
15940
|
+
|
|
15941
|
+
.ui.secondary.table {
|
|
15942
|
+
border-top-left-radius: 0.28571429em;
|
|
15943
|
+
border-top-right-radius: 0.28571429em;
|
|
15944
|
+
}
|
|
15945
|
+
|
|
15946
|
+
.ui.secondary.table > thead > tr > .colored-header {
|
|
15947
|
+
background: linear-gradient(to bottom, rgba(41, 71, 85, 0.12), #f9fafb 80%) !important;
|
|
15948
|
+
}
|
|
15949
|
+
|
|
15950
|
+
.ui.violet.table {
|
|
15951
|
+
border-top-left-radius: 0.28571429em;
|
|
15952
|
+
border-top-right-radius: 0.28571429em;
|
|
15953
|
+
}
|
|
15954
|
+
|
|
15955
|
+
.ui.violet.table > thead > tr > .colored-header {
|
|
15956
|
+
background: linear-gradient(to bottom, rgba(148, 97, 172, 0.12), #f9fafb 80%) !important;
|
|
15957
|
+
}
|
|
15958
|
+
|
|
15959
|
+
.ui.green.table {
|
|
15960
|
+
border-top-left-radius: 0.28571429em;
|
|
15961
|
+
border-top-right-radius: 0.28571429em;
|
|
15962
|
+
}
|
|
15963
|
+
|
|
15964
|
+
.ui.green.table > thead > tr > .colored-header {
|
|
15965
|
+
background: linear-gradient(to bottom, rgba(129, 176, 140, 0.12), #f9fafb 80%) !important;
|
|
15966
|
+
}
|
|
15811
15967
|
/*!
|
|
15812
15968
|
* # Fomantic-UI 2.9.4 - Card
|
|
15813
15969
|
* https://github.com/fomantic/Fomantic-UI/
|
|
@@ -24245,6 +24245,106 @@ Floated Menu / Item
|
|
|
24245
24245
|
color: rgba(255, 255, 255, 0.9);
|
|
24246
24246
|
}
|
|
24247
24247
|
|
|
24248
|
+
.ui.violet.table {
|
|
24249
|
+
border-top: 0.2em solid #9461ac;
|
|
24250
|
+
}
|
|
24251
|
+
|
|
24252
|
+
/* Same color for background and color to camouflage the scrollbar */
|
|
24253
|
+
|
|
24254
|
+
.ui.scrolling.table > thead.violet,
|
|
24255
|
+
.ui.scrolling.table > tfoot.violet {
|
|
24256
|
+
background: #ece9fe;
|
|
24257
|
+
color: #ece9fe;
|
|
24258
|
+
}
|
|
24259
|
+
|
|
24260
|
+
.ui.scrolling.table > thead.violet > tr > th,
|
|
24261
|
+
.ui.scrolling.table > tfoot.violet > tr > th,
|
|
24262
|
+
.ui.scrolling.table > thead.violet > tr > td,
|
|
24263
|
+
.ui.scrolling.table > tfoot.violet > tr > td {
|
|
24264
|
+
background: inherit;
|
|
24265
|
+
color: #9461ac;
|
|
24266
|
+
}
|
|
24267
|
+
|
|
24268
|
+
.ui.ui.ui.ui.table tr[class*="violet colored"],
|
|
24269
|
+
.ui.ui.table th[class*="violet colored"],
|
|
24270
|
+
.ui.ui.table td[class*="violet colored"],
|
|
24271
|
+
.ui.ui.ui.ui.table tr.violet,
|
|
24272
|
+
.ui.ui.table th.violet,
|
|
24273
|
+
.ui.ui.table td.violet {
|
|
24274
|
+
background: #ece9fe;
|
|
24275
|
+
color: #9461ac;
|
|
24276
|
+
}
|
|
24277
|
+
|
|
24278
|
+
.ui.table > thead > tr[class*="violet colored"] > th,
|
|
24279
|
+
.ui.table > tfoot > tr[class*="violet colored"] > th,
|
|
24280
|
+
.ui.table > tfoot > tr[class*="violet colored"] > td,
|
|
24281
|
+
.ui.table > thead > tr.violet > th,
|
|
24282
|
+
.ui.table > tfoot > tr.violet > th,
|
|
24283
|
+
.ui.table > tfoot > tr.violet > td {
|
|
24284
|
+
background: inherit;
|
|
24285
|
+
color: #9461ac;
|
|
24286
|
+
}
|
|
24287
|
+
|
|
24288
|
+
.ui.ui.selectable.table tr[class*="violet colored"]:hover,
|
|
24289
|
+
.ui.table tr td.selectable[class*="violet colored"]:hover,
|
|
24290
|
+
.ui.selectable.table tr:hover td[class*="violet colored"],
|
|
24291
|
+
.ui.ui.selectable.table tr.violet:hover,
|
|
24292
|
+
.ui.table tr td.selectable.violet:hover,
|
|
24293
|
+
.ui.selectable.table tr:hover td.violet {
|
|
24294
|
+
background: #e3deff;
|
|
24295
|
+
color: #9461ac;
|
|
24296
|
+
}
|
|
24297
|
+
|
|
24298
|
+
.ui.green.table {
|
|
24299
|
+
border-top: 0.2em solid #81b08c;
|
|
24300
|
+
}
|
|
24301
|
+
|
|
24302
|
+
/* Same color for background and color to camouflage the scrollbar */
|
|
24303
|
+
|
|
24304
|
+
.ui.scrolling.table > thead.green,
|
|
24305
|
+
.ui.scrolling.table > tfoot.green {
|
|
24306
|
+
background: #d5f5d9;
|
|
24307
|
+
color: #d5f5d9;
|
|
24308
|
+
}
|
|
24309
|
+
|
|
24310
|
+
.ui.scrolling.table > thead.green > tr > th,
|
|
24311
|
+
.ui.scrolling.table > tfoot.green > tr > th,
|
|
24312
|
+
.ui.scrolling.table > thead.green > tr > td,
|
|
24313
|
+
.ui.scrolling.table > tfoot.green > tr > td {
|
|
24314
|
+
background: inherit;
|
|
24315
|
+
color: #1ebc30;
|
|
24316
|
+
}
|
|
24317
|
+
|
|
24318
|
+
.ui.ui.ui.ui.table tr[class*="green colored"],
|
|
24319
|
+
.ui.ui.table th[class*="green colored"],
|
|
24320
|
+
.ui.ui.table td[class*="green colored"],
|
|
24321
|
+
.ui.ui.ui.ui.table tr.green,
|
|
24322
|
+
.ui.ui.table th.green,
|
|
24323
|
+
.ui.ui.table td.green {
|
|
24324
|
+
background: #d5f5d9;
|
|
24325
|
+
color: #1ebc30;
|
|
24326
|
+
}
|
|
24327
|
+
|
|
24328
|
+
.ui.table > thead > tr[class*="green colored"] > th,
|
|
24329
|
+
.ui.table > tfoot > tr[class*="green colored"] > th,
|
|
24330
|
+
.ui.table > tfoot > tr[class*="green colored"] > td,
|
|
24331
|
+
.ui.table > thead > tr.green > th,
|
|
24332
|
+
.ui.table > tfoot > tr.green > th,
|
|
24333
|
+
.ui.table > tfoot > tr.green > td {
|
|
24334
|
+
background: inherit;
|
|
24335
|
+
color: #1ebc30;
|
|
24336
|
+
}
|
|
24337
|
+
|
|
24338
|
+
.ui.ui.selectable.table tr[class*="green colored"]:hover,
|
|
24339
|
+
.ui.table tr td.selectable[class*="green colored"]:hover,
|
|
24340
|
+
.ui.selectable.table tr:hover td[class*="green colored"],
|
|
24341
|
+
.ui.ui.selectable.table tr.green:hover,
|
|
24342
|
+
.ui.table tr td.selectable.green:hover,
|
|
24343
|
+
.ui.selectable.table tr:hover td.green {
|
|
24344
|
+
background: #d2eed5;
|
|
24345
|
+
color: #1ebc30;
|
|
24346
|
+
}
|
|
24347
|
+
|
|
24248
24348
|
/* --------------
|
|
24249
24349
|
Column Count
|
|
24250
24350
|
--------------- */
|
|
@@ -24669,6 +24769,42 @@ Floated Menu / Item
|
|
|
24669
24769
|
/*******************************
|
|
24670
24770
|
Site Overrides
|
|
24671
24771
|
*******************************/
|
|
24772
|
+
|
|
24773
|
+
.ui.primary.table {
|
|
24774
|
+
border-top-left-radius: 0.28571429em;
|
|
24775
|
+
border-top-right-radius: 0.28571429em;
|
|
24776
|
+
}
|
|
24777
|
+
|
|
24778
|
+
.ui.primary.table > thead > tr > .colored-header {
|
|
24779
|
+
background: linear-gradient(to bottom, rgba(0, 115, 136, 0.12), #f9fafb 80%) !important;
|
|
24780
|
+
}
|
|
24781
|
+
|
|
24782
|
+
.ui.secondary.table {
|
|
24783
|
+
border-top-left-radius: 0.28571429em;
|
|
24784
|
+
border-top-right-radius: 0.28571429em;
|
|
24785
|
+
}
|
|
24786
|
+
|
|
24787
|
+
.ui.secondary.table > thead > tr > .colored-header {
|
|
24788
|
+
background: linear-gradient(to bottom, rgba(41, 71, 85, 0.12), #f9fafb 80%) !important;
|
|
24789
|
+
}
|
|
24790
|
+
|
|
24791
|
+
.ui.violet.table {
|
|
24792
|
+
border-top-left-radius: 0.28571429em;
|
|
24793
|
+
border-top-right-radius: 0.28571429em;
|
|
24794
|
+
}
|
|
24795
|
+
|
|
24796
|
+
.ui.violet.table > thead > tr > .colored-header {
|
|
24797
|
+
background: linear-gradient(to bottom, rgba(148, 97, 172, 0.12), #f9fafb 80%) !important;
|
|
24798
|
+
}
|
|
24799
|
+
|
|
24800
|
+
.ui.green.table {
|
|
24801
|
+
border-top-left-radius: 0.28571429em;
|
|
24802
|
+
border-top-right-radius: 0.28571429em;
|
|
24803
|
+
}
|
|
24804
|
+
|
|
24805
|
+
.ui.green.table > thead > tr > .colored-header {
|
|
24806
|
+
background: linear-gradient(to bottom, rgba(129, 176, 140, 0.12), #f9fafb 80%) !important;
|
|
24807
|
+
}
|
|
24672
24808
|
/*!
|
|
24673
24809
|
* # Fomantic-UI 2.9.4 - Card
|
|
24674
24810
|
* https://github.com/fomantic/Fomantic-UI/
|