46 lines
970 B
CSS
46 lines
970 B
CSS
/* ----------------------------------------------------------------------------
|
|
Table sorting
|
|
-----------------------------------------------------------------------------*/
|
|
table th,
|
|
.ascend,
|
|
.descend {
|
|
vertical-align:text-bottom;
|
|
}
|
|
table.sortable thead th::before {
|
|
content: " ↕\00a0";
|
|
}
|
|
table.sortable thead .ascend::before {
|
|
content: " ↑\00a0";
|
|
}
|
|
table.sortable thead .descend::before {
|
|
content: " ↓\00a0";
|
|
}
|
|
|
|
.page-pad {
|
|
margin: 1rem 2rem;
|
|
}
|
|
|
|
table {
|
|
overflow: scroll;
|
|
}
|
|
|
|
table.scroll {
|
|
display: table;
|
|
}
|
|
|
|
/* ----------------------------------------------------------------------------
|
|
Text Areas
|
|
---------------------------------------------------------------------------- */
|
|
textarea {
|
|
height: 12rem;
|
|
}
|
|
|
|
/* ----------------------------------------------------------------------------
|
|
Miscellaneous
|
|
---------------------------------------------------------------------------- */
|
|
|
|
.edit-icon {
|
|
display: inline-block;
|
|
transform: rotateZ(90deg);
|
|
}
|