67 lines
2.6 KiB
CSS
Executable File
67 lines
2.6 KiB
CSS
Executable File
/* Local modifications to jquery dataTables css so the library's original stays intact */
|
|
|
|
table.dataTable tr.odd { background-color: #e6e6e6;}
|
|
table.dataTable tr.even { background-color: #fff;}
|
|
|
|
table.dataTable tr.odd td.sorting_1 { background-color: #fcc465; }
|
|
table.dataTable tr.odd td.sorting_2 { background-color: #fccd7e; }
|
|
table.dataTable tr.odd td.sorting_3 { background-color: #fcd797; }
|
|
table.dataTable tr.even td.sorting_1 { background-color: #fce0b0; }
|
|
table.dataTable tr.even td.sorting_2 { background-color: #fce9ca; }
|
|
table.dataTable tr.even td.sorting_3 { background-color: #fcf3e3; }
|
|
|
|
.paginate_enabled_previous { background: url('../images/back_enabled.png') no-repeat top left; }
|
|
.paginate_enabled_previous:hover { background: url('../images/back_enabled_hover.png') no-repeat top left; }
|
|
.paginate_disabled_previous { background: url('../images/back_disabled.png') no-repeat top left; }
|
|
|
|
.paginate_enabled_next { background: url('../images/forward_enabled.png') no-repeat top right; }
|
|
.paginate_enabled_next:hover { background: url('../images/forward_enabled_hover.png') no-repeat top right; }
|
|
.paginate_disabled_next { background: url('../images/forward_disabled.png') no-repeat top right; }
|
|
|
|
.sorting { background: url('../images/sort_both.png') no-repeat center right; }
|
|
.sorting_asc { background: url('../images/sort_asc.png') no-repeat center right; }
|
|
.sorting_desc { background: url('../images/sort_desc.png') no-repeat center right; }
|
|
|
|
.sorting_asc_disabled { background: url('../images/sort_asc_disabled.png') no-repeat center right; }
|
|
.sorting_desc_disabled { background: url('../images/sort_desc_disabled.png') no-repeat center right; }
|
|
|
|
|
|
.ui-tabs .ui-tabs-panel {
|
|
background: none repeat scroll 0 0 transparent;
|
|
border-width: 0;
|
|
display: block;
|
|
/*padding: 1em 1.4em;*/
|
|
padding: 1em 0em;
|
|
}
|
|
|
|
/* JQuery UI overwrite */
|
|
.ui-widget-header {
|
|
/*background: #e6e6e6;*/
|
|
background: #fcb131;
|
|
border: 1px solid #ccc;
|
|
color: #222;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.ui-state-default,
|
|
.ui-widget-content .ui-state-default,
|
|
.ui-widget-header .ui-state-default {
|
|
background: url('../images/ui-bg_glass_75_e6e6e6_1x400.png') repeat-x scroll 50% 50% #e6e6e6;
|
|
border: 1px solid #ccc;
|
|
color: #222;
|
|
font-weight: normal;
|
|
}
|
|
.ui-state-hover,
|
|
.ui-widget-content .ui-state-hover,
|
|
.ui-widget-header .ui-state-hover,
|
|
.ui-state-focus,
|
|
.ui-widget-content .ui-state-focus,
|
|
.ui-widget-header .ui-state-focus {
|
|
border: 1px solid #fcb131;
|
|
background: #e6e6e6 url('../images/ui-bg_glass_75_dadada_1x400.png') 50% 50% repeat-x #dadada;
|
|
font-weight: normal;
|
|
color: #fcb131;
|
|
}
|
|
|
|
|