94 lines
4.0 KiB
CSS
Executable File
94 lines
4.0 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 { background-color: transparent; }
|
|
table.dataTable tr.even { background-color: transparent; }
|
|
table.dataTable thead th { font-weight: normal; }
|
|
|
|
/*
|
|
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; }
|
|
*/
|
|
table.dataTable tr.odd td.sorting_1, table.dataTable tr.even td.sorting_1 { background-color: rgba(130, 136, 144, 0.2); }
|
|
table.dataTable tr.odd td.sorting_2, table.dataTable tr.even td.sorting_2 { background-color: rgba(130, 136, 144, 0.15); }
|
|
table.dataTable tr.odd td.sorting_3, table.dataTable tr.even td.sorting_3 { background-color: rgba(130, 136, 144, 0.1); }
|
|
|
|
/*
|
|
.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; }
|
|
*/
|
|
.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: #E6E6E6 url('/images/sort-bg.png') no-repeat center right; }
|
|
.sorting_asc { background: rgba(130, 136, 144, 0.5) url('/images/sort-asc.png') no-repeat center right; }
|
|
.sorting_desc { background: rgba(130, 136, 144, 0.5) url('/images/sort-desc.png') no-repeat center right; }
|
|
|
|
.sorting_disabled, .sorting_disabled:hover { pointer: cursor;}
|
|
.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: transparent;
|
|
border: 0;
|
|
border-bottom: 1px solid #D4D8DE;
|
|
|
|
color: #222;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.ui-widget-content {
|
|
border: 0;
|
|
}
|
|
|
|
/*
|
|
.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;
|
|
}
|
|
*/
|
|
|
|
|