collection-crud/public/css/app.css

25 lines
463 B
CSS
Raw Normal View History

2017-11-10 09:03:20 -05:00
/* -----------------------------------------------------------------------------
Table sorting
------------------------------------------------------------------------------*/
table th,
.ascend,
.descend {
vertical-align:text-bottom;
}
table thead th::before {
content: " ↕\00a0";
}
table thead .ascend::before {
content: " ↑\00a0";
}
table thead .descend::before {
content: " ↓\00a0";
}
2017-11-09 11:53:01 -05:00
.page-pad {
margin: 1rem 2rem;
}
table {
overflow: scroll;
}