65 lines
933 B
CSS
65 lines
933 B
CSS
:root {
|
|
font-size: 14px;
|
|
}
|
|
|
|
.sortable {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.sortable .sortable-links {
|
|
display: flex;
|
|
flex-direction: column;
|
|
font-size: 80%;
|
|
}
|
|
|
|
.sortable-links a:hover {
|
|
text-decoration: none;
|
|
}
|
|
|
|
.sortable-links a:nth-child(1) {
|
|
margin-bottom: -3px;
|
|
}
|
|
|
|
.sortable-links a:nth-child(2) {
|
|
margin-top: -3px;
|
|
}
|
|
|
|
.table thead th {
|
|
border-bottom: 1px solid var(--gray);
|
|
}
|
|
|
|
.list-horizontal {
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style: none;
|
|
font-size: 80%;
|
|
}
|
|
.list-horizontal li {
|
|
display: inline-block;
|
|
}
|
|
.list-horizontal li:not(:last-child):after {
|
|
content: ",";
|
|
margin-right: 4px;
|
|
}
|
|
|
|
table.sticky-header {
|
|
position: relative;
|
|
}
|
|
|
|
table.sticky-header tr.header th {
|
|
position: sticky;
|
|
top: 44px;
|
|
background-color: #fcfac8;
|
|
z-index: 2;
|
|
box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
|
|
}
|
|
|
|
th.sorted, td.sorted {
|
|
background-color: #dae5f6 !important;
|
|
}
|
|
|
|
table.row-clickable tbody.data td {
|
|
cursor: pointer;
|
|
}
|