mirror of
https://github.com/Spythere/station-manager-2.0.git
synced 2026-05-02 21:18:13 +00:00
41 lines
559 B
SCSS
41 lines
559 B
SCSS
.table-search-box {
|
|
display: flex;
|
|
gap: 0.5em;
|
|
margin-top: 0.5em;
|
|
}
|
|
|
|
.table-wrapper {
|
|
width: 100%;
|
|
overflow: auto;
|
|
margin-top: 1em;
|
|
}
|
|
|
|
.table-wrapper table > thead > tr > td {
|
|
& > div {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
gap: 0.5em;
|
|
}
|
|
|
|
&[data-sortable='true'] {
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
|
|
.table-wrapper table > tbody > tr {
|
|
cursor: pointer;
|
|
|
|
&:hover {
|
|
background: #1a293b;
|
|
}
|
|
}
|
|
|
|
.table-visible-results-box {
|
|
margin-top: 0.5em;
|
|
}
|
|
|
|
.table-visible-results-box input {
|
|
max-width: 70px;
|
|
}
|