mirror of
https://github.com/billz/raspap-webgui.git
synced 2023-10-10 13:37:24 +02:00
902281294f
support for a browser sync task as well for easier development
88 lines
2.5 KiB
CSS
88 lines
2.5 KiB
CSS
div.dataTables_wrapper div.dataTables_filter {
|
|
text-align: right;
|
|
}
|
|
div.dataTables_wrapper div.dataTables_filter input {
|
|
margin-left: 0.5em;
|
|
}
|
|
div.dataTables_wrapper div.dataTables_info {
|
|
padding-top: 10px;
|
|
white-space: nowrap;
|
|
}
|
|
div.dataTables_wrapper div.dataTables_processing {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
width: 200px;
|
|
margin-left: -100px;
|
|
text-align: center;
|
|
}
|
|
div.dataTables_wrapper div.dataTables_paginate {
|
|
text-align: right;
|
|
}
|
|
div.dataTables_wrapper div.mdl-grid.dt-table {
|
|
padding-top: 0;
|
|
padding-bottom: 0;
|
|
}
|
|
div.dataTables_wrapper div.mdl-grid.dt-table > div.mdl-cell {
|
|
margin-top: 0;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
table.dataTable thead > tr > th.sorting_asc, table.dataTable thead > tr > th.sorting_desc, table.dataTable thead > tr > th.sorting,
|
|
table.dataTable thead > tr > td.sorting_asc,
|
|
table.dataTable thead > tr > td.sorting_desc,
|
|
table.dataTable thead > tr > td.sorting {
|
|
padding-right: 30px;
|
|
}
|
|
table.dataTable thead > tr > th:active,
|
|
table.dataTable thead > tr > td:active {
|
|
outline: none;
|
|
}
|
|
table.dataTable thead .sorting,
|
|
table.dataTable thead .sorting_asc,
|
|
table.dataTable thead .sorting_desc,
|
|
table.dataTable thead .sorting_asc_disabled,
|
|
table.dataTable thead .sorting_desc_disabled {
|
|
cursor: pointer;
|
|
position: relative;
|
|
}
|
|
table.dataTable thead .sorting:before, table.dataTable thead .sorting:after,
|
|
table.dataTable thead .sorting_asc:before,
|
|
table.dataTable thead .sorting_asc:after,
|
|
table.dataTable thead .sorting_desc:before,
|
|
table.dataTable thead .sorting_desc:after,
|
|
table.dataTable thead .sorting_asc_disabled:before,
|
|
table.dataTable thead .sorting_asc_disabled:after,
|
|
table.dataTable thead .sorting_desc_disabled:before,
|
|
table.dataTable thead .sorting_desc_disabled:after {
|
|
position: absolute;
|
|
bottom: 11px;
|
|
display: block;
|
|
opacity: 0.3;
|
|
font-size: 1.3em;
|
|
}
|
|
table.dataTable thead .sorting:before,
|
|
table.dataTable thead .sorting_asc:before,
|
|
table.dataTable thead .sorting_desc:before,
|
|
table.dataTable thead .sorting_asc_disabled:before,
|
|
table.dataTable thead .sorting_desc_disabled:before {
|
|
right: 1em;
|
|
content: "\2191";
|
|
}
|
|
table.dataTable thead .sorting:after,
|
|
table.dataTable thead .sorting_asc:after,
|
|
table.dataTable thead .sorting_desc:after,
|
|
table.dataTable thead .sorting_asc_disabled:after,
|
|
table.dataTable thead .sorting_desc_disabled:after {
|
|
right: 0.5em;
|
|
content: "\2193";
|
|
}
|
|
table.dataTable thead .sorting_asc:before,
|
|
table.dataTable thead .sorting_desc:after {
|
|
opacity: 1;
|
|
}
|
|
table.dataTable thead .sorting_asc_disabled:before,
|
|
table.dataTable thead .sorting_desc_disabled:after {
|
|
opacity: 0;
|
|
}
|