mirror of
https://github.com/rstudio/shiny.git
synced 2026-02-02 10:45:06 -05:00
124 lines
2.8 KiB
CSS
124 lines
2.8 KiB
CSS
|
|
div.dataTables_length label {
|
|
float: left;
|
|
text-align: left;
|
|
}
|
|
|
|
div.dataTables_length select {
|
|
width: 75px;
|
|
}
|
|
|
|
div.dataTables_filter label {
|
|
float: right;
|
|
}
|
|
|
|
div.dataTables_info {
|
|
padding-top: 8px;
|
|
}
|
|
|
|
div.dataTables_paginate {
|
|
float: right;
|
|
margin: 0;
|
|
}
|
|
|
|
table.table {
|
|
clear: both;
|
|
margin-bottom: 6px !important;
|
|
max-width: none !important;
|
|
}
|
|
|
|
table.table thead .sorting,
|
|
table.table thead .sorting_asc,
|
|
table.table thead .sorting_desc,
|
|
table.table thead .sorting_asc_disabled,
|
|
table.table thead .sorting_desc_disabled {
|
|
cursor: pointer;
|
|
*cursor: hand;
|
|
}
|
|
|
|
table.table thead .sorting { background: url('images/sort_both.png') no-repeat center right; }
|
|
table.table thead .sorting_asc { background: url('images/sort_asc.png') no-repeat center right; }
|
|
table.table thead .sorting_desc { background: url('images/sort_desc.png') no-repeat center right; }
|
|
|
|
table.table thead .sorting_asc_disabled { background: url('images/sort_asc_disabled.png') no-repeat center right; }
|
|
table.table thead .sorting_desc_disabled { background: url('images/sort_desc_disabled.png') no-repeat center right; }
|
|
|
|
table.dataTable th:active {
|
|
outline: none;
|
|
}
|
|
|
|
table.dataTable tr.odd td.sorting_1 { background-color: #D3D6FF; }
|
|
table.dataTable tr.odd td.sorting_2 { background-color: #DADCFF; }
|
|
table.dataTable tr.odd td.sorting_3 { background-color: #E0E2FF; }
|
|
table.dataTable tr.even td.sorting_1 { background-color: #EAEBFF; }
|
|
table.dataTable tr.even td.sorting_2 { background-color: #F2F3FF; }
|
|
table.dataTable tr.even td.sorting_3 { background-color: #F9F9FF; }
|
|
|
|
/* Scrolling */
|
|
div.dataTables_scrollHead table {
|
|
margin-bottom: 0 !important;
|
|
border-bottom-left-radius: 0;
|
|
border-bottom-right-radius: 0;
|
|
}
|
|
|
|
div.dataTables_scrollHead table thead tr:last-child th:first-child,
|
|
div.dataTables_scrollHead table thead tr:last-child td:first-child {
|
|
border-bottom-left-radius: 0 !important;
|
|
border-bottom-right-radius: 0 !important;
|
|
}
|
|
|
|
div.dataTables_scrollBody table {
|
|
border-top: none;
|
|
margin-bottom: 0 !important;
|
|
}
|
|
|
|
div.dataTables_scrollBody tbody tr:first-child th,
|
|
div.dataTables_scrollBody tbody tr:first-child td {
|
|
border-top: none;
|
|
}
|
|
|
|
div.dataTables_scrollFoot table {
|
|
border-top: none;
|
|
}
|
|
|
|
/* Active rows */
|
|
|
|
.table tbody tr.active td,
|
|
.table tbody tr.active th {
|
|
background-color: #08C;
|
|
color: white;
|
|
}
|
|
|
|
.table tbody tr.active:hover td,
|
|
.table tbody tr.active:hover th {
|
|
background-color: #0075b0 !important;
|
|
}
|
|
|
|
.table-striped tbody tr.active:nth-child(odd) td,
|
|
.table-striped tbody tr.active:nth-child(odd) th {
|
|
background-color: #017ebc;
|
|
}
|
|
|
|
/* Processing indicator */
|
|
|
|
.dataTables_processing {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
width: 250px;
|
|
height: 30px;
|
|
margin-left: -125px;
|
|
margin-top: -15px;
|
|
padding: 14px 0 2px 0;
|
|
border: 1px solid #ddd;
|
|
text-align: center;
|
|
color: #999;
|
|
font-size: 14px;
|
|
background-color: white;
|
|
}
|
|
|
|
/* Search boxes in the footer */
|
|
table tfoot input {
|
|
width: 100%;
|
|
}
|