1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
|
/* Colors based on https://flatuicolors.com/palette/se*/
:root {
--sn-color-bg-gray: #333;
--sn-color-bg-lightgray: rgba(255,255,255,0.1);
--sn-color-bg-green: #04723c;
--sn-color-bg-red: #81201b;
--sn-color-bg-yellow: #a97c32;
--sn-color-bg-blue: #096285;
--sn-color-border-lightgray: rgba(255,255,255,0.2);
--sn-color-border-green: #04723c;
--sn-color-border-red: #81201b;
--sn-color-border-yellow: #a97c32;
--sn-color-border-blue: #096285;
--sn-color-bar-green: #05c46b;
--sn-color-bar-red: #ff3f34;
--sn-color-bar-yellow: #ffc048;
--sn-color-bar-orange: #e67e22;
--sn-color-bar-blue: #0fbcf9;
--sn-color-need-border: #888;
--sn-color-need-row-border: hsla(232,75%,95%,0.12);
--sn-color-need-bg: #333;
--sn-color-need-bg-head: rgba(0,0,0,0.1);
--sn-color-complete-bg-head: rgba(0,0,0,0.1);
--sn-color-complete-bg-foot: rgba(0,0,0,0.1);
--sn-color-datatable-body-bg: transparent;
--sn-color-datatable-label: #eee;
--sn-color-datatable-btn-border: #999;
--sn-color-debug-btn-border: #888;
--sn-color-debug-btn-on-text: #ff3f34;
--sn-color-debug-btn-off-text: #0fbcf9;
--sn-color-forbidden-dead-link: #dc3545;
}
/* DataTable layout*/
/* TODO this should not be part of the theme */
.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
color: inherit !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button {
color: inherit !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
border: none;
background: inherit;
}
.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_processing,
.dataTables_wrapper .dataTables_paginate {
color: inherit;
}
table.dataTable tbody tr {
background-color: inherit;
}
div.dataTables_length select {
color: inherit;
border: none;
}
div.dataTables_length select option {
background: #333;
color: inherit;
border: none;
}
div.dataTables_filter input {
background: inherit;
color: inherit;
border: 1px solid #666;
}
div.dataTables_filter input:focus {
outline: none;
}
table.dataTable thead th, table.dataTable thead td {
border-bottom: inherit;
}
/*DataTables Download Buttons*/
button.dt-button:hover:not(.disabled),
div.dt-button:hover:not(.disabled),
a.dt-button:hover:not(.disabled) {
background-color: inherit;
background-image: none;
border: inherit;
}
/*DataTables Column visibility Select list*/
div.dt-button-collection {
background-color: #333;
}
/* Button active*/
div.dt-button-collection button.dt-button:active:not(.disabled),
div.dt-button-collection button.dt-button.active:not(.disabled),
div.dt-button-collection div.dt-button:active:not(.disabled),
div.dt-button-collection div.dt-button.active:not(.disabled),
div.dt-button-collection a.dt-button:active:not(.disabled),
div.dt-button-collection a.dt-button.active:not(.disabled) {
background: #444 none;
box-shadow: none;
}
/* Button active hover*/
button.dt-button:hover:not(.disabled),
div.dt-button:hover:not(.disabled),
a.dt-button:hover:not(.disabled) {
background: #333 none;
box-shadow: none;
}
/* Button deactivated hover*/
button.dt-button:active:not(.disabled):hover:not(.disabled),
button.dt-button.active:not(.disabled):hover:not(.disabled),
div.dt-button:active:not(.disabled):hover:not(.disabled),
div.dt-button.active:not(.disabled):hover:not(.disabled),
a.dt-button:active:not(.disabled):hover:not(.disabled),
a.dt-button.active:not(.disabled):hover:not(.disabled) {
background: #555 none;
box-shadow: none;
}
/* DataTablesScrollWrapper*/
div.DTS div.dataTables_scrollBody {
background: inherit;
}
|