mirror of
https://github.com/rstudio/shiny.git
synced 2026-02-03 19:25:15 -05:00
1. sorted columns have different colors; 2. correct position of the processing info; 3. override the width of text input (search fields), otherwise they will be too wide (206px defined in bootstrap.min.css);
31 lines
790 B
CSS
31 lines
790 B
CSS
/* Sorting */
|
|
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; }
|
|
|
|
/* 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%;
|
|
}
|
|
|