mirror of
https://github.com/rstudio/shiny.git
synced 2026-02-10 06:35:13 -05:00
background color for selected rows
This commit is contained in:
@@ -6,6 +6,23 @@ 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; }
|
||||
|
||||
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; }
|
||||
|
||||
/* Selected rows */
|
||||
table.dataTable tbody tr.selected,
|
||||
table.dataTable tr.selected td.sorting_1,
|
||||
table.dataTable tr.selected td.sorting_2,
|
||||
table.dataTable tr.selected td.sorting_3,
|
||||
.table-striped tbody>tr.selected:nth-child(odd)>td,
|
||||
.table-striped tbody>tr.selected:nth-child(even)>td {
|
||||
background-color: #b0bed9;
|
||||
}
|
||||
|
||||
/* Processing indicator */
|
||||
.dataTables_processing {
|
||||
position: absolute;
|
||||
|
||||
Reference in New Issue
Block a user