2018-07-16 13:10:00 -04:00
|
|
|
/* ----------------------------------------------------------------------------
|
2017-11-10 09:03:20 -05:00
|
|
|
Table sorting
|
2018-07-16 13:10:00 -04:00
|
|
|
-----------------------------------------------------------------------------*/
|
2017-11-10 09:03:20 -05:00
|
|
|
table th,
|
|
|
|
.ascend,
|
|
|
|
.descend {
|
|
|
|
vertical-align:text-bottom;
|
|
|
|
}
|
2018-07-18 11:35:27 -04:00
|
|
|
table.sortable thead th::before {
|
2017-11-10 09:03:20 -05:00
|
|
|
content: " ↕\00a0";
|
|
|
|
}
|
2018-07-18 11:35:27 -04:00
|
|
|
table.sortable thead .ascend::before {
|
2017-11-10 09:03:20 -05:00
|
|
|
content: " ↑\00a0";
|
|
|
|
}
|
2018-07-18 11:35:27 -04:00
|
|
|
table.sortable thead .descend::before {
|
2017-11-10 09:03:20 -05:00
|
|
|
content: " ↓\00a0";
|
|
|
|
}
|
|
|
|
|
2017-11-09 11:53:01 -05:00
|
|
|
.page-pad {
|
|
|
|
margin: 1rem 2rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
table {
|
|
|
|
overflow: scroll;
|
2018-07-16 13:10:00 -04:00
|
|
|
}
|
|
|
|
|
2018-07-18 11:35:27 -04:00
|
|
|
table.scroll {
|
2018-07-23 09:52:00 -04:00
|
|
|
/* display: table; */
|
2018-07-18 11:35:27 -04:00
|
|
|
}
|
|
|
|
|
2018-07-16 13:10:00 -04:00
|
|
|
/* ----------------------------------------------------------------------------
|
|
|
|
Text Areas
|
|
|
|
---------------------------------------------------------------------------- */
|
|
|
|
textarea {
|
|
|
|
height: 12rem;
|
|
|
|
}
|
2018-07-18 11:35:27 -04:00
|
|
|
|
|
|
|
/* ----------------------------------------------------------------------------
|
|
|
|
Miscellaneous
|
|
|
|
---------------------------------------------------------------------------- */
|
|
|
|
.edit-icon {
|
|
|
|
display: inline-block;
|
|
|
|
transform: rotateZ(90deg);
|
|
|
|
}
|
2018-07-23 09:52:00 -04:00
|
|
|
|
|
|
|
.tabs {
|
|
|
|
border-width: 0;
|
|
|
|
border-bottom-width: 1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tabs-title {
|
|
|
|
border-top-left-radius: 5px;
|
|
|
|
border-top-right-radius: 5px;
|
|
|
|
border: 1px solid #e6e6e6;
|
|
|
|
border-bottom: 0;
|
|
|
|
margin: 0 0.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tabs-title > a {
|
|
|
|
font-size: 1rem;
|
|
|
|
}
|
2022-10-07 16:04:56 -04:00
|
|
|
|
|
|
|
.not-implemented > a {
|
|
|
|
text-decoration: line-through;
|
|
|
|
color: #000;
|
|
|
|
}
|