| 1 |
#screen-meta-links { |
| 2 |
display: none; |
| 3 |
} |
| 4 |
|
| 5 |
.dlm-header { |
| 6 |
display: flex; |
| 7 |
justify-content: space-between; |
| 8 |
align-items: center; |
| 9 |
margin-top: 24px; |
| 10 |
padding: 20px; |
| 11 |
background-color: #fafafa; |
| 12 |
border-bottom: 1px solid #f5f5f5; |
| 13 |
} |
| 14 |
|
| 15 |
.dlm-header.dlm-sticky { |
| 16 |
box-shadow: 0 5px 10px rgb(0 0 0 / 10%); |
| 17 |
} |
| 18 |
|
| 19 |
.dlm-header-left { |
| 20 |
} |
| 21 |
|
| 22 |
.dlm-header-right { |
| 23 |
display: flex; |
| 24 |
} |
| 25 |
|
| 26 |
.dlm-body { |
| 27 |
padding: 20px; |
| 28 |
background-color: #fff; |
| 29 |
} |
| 30 |
|
| 31 |
.dlm-footer { |
| 32 |
display: flex; |
| 33 |
justify-content: space-between; |
| 34 |
align-items: center; |
| 35 |
padding: 12px 20px; |
| 36 |
background-color: #fafafa; |
| 37 |
border-top: 1px solid #f5f5f5; |
| 38 |
} |
| 39 |
|
| 40 |
.wrap h1.dlm-heading { |
| 41 |
font-size: 1.5em; |
| 42 |
line-height: 26px; |
| 43 |
font-weight: 400; |
| 44 |
margin: 0; |
| 45 |
padding: 0; |
| 46 |
} |
| 47 |
|
| 48 |
.dlm-heading a { |
| 49 |
text-decoration: none; |
| 50 |
transition: .25s; |
| 51 |
} |
| 52 |
|
| 53 |
.dlm-heading a:hover { |
| 54 |
text-decoration: underline; |
| 55 |
} |
| 56 |
|
| 57 |
.dlm-heading small { |
| 58 |
font-size: 14px; |
| 59 |
font-weight: 500; |
| 60 |
color: #555; |
| 61 |
} |
| 62 |
|
| 63 |
.dlm-header-action { |
| 64 |
margin-left: 16px; |
| 65 |
text-decoration: none; |
| 66 |
transition: .25s; |
| 67 |
line-height: 30px; |
| 68 |
} |
| 69 |
|
| 70 |
.dlm-header-action:first-child { |
| 71 |
margin-left: 0; |
| 72 |
} |
| 73 |
|
| 74 |
.dlm-header-action:hover { |
| 75 |
text-decoration: underline; |
| 76 |
} |
| 77 |
|
| 78 |
.dlm-log-management { |
| 79 |
display: flex; |
| 80 |
justify-content: space-between; |
| 81 |
align-items: center; |
| 82 |
margin-bottom: 12px; |
| 83 |
} |
| 84 |
|
| 85 |
.dlm-logging-status, |
| 86 |
.dlm-autorefresh-status { |
| 87 |
display: flex; |
| 88 |
justify-content: flex-start; |
| 89 |
align-items: center; |
| 90 |
} |
| 91 |
|
| 92 |
.dlm-log-status { |
| 93 |
line-height: 30px; |
| 94 |
margin-right: 20px; |
| 95 |
} |
| 96 |
|
| 97 |
.dlm-faint { |
| 98 |
opacity: 0.5; |
| 99 |
} |
| 100 |
|
| 101 |
#dlm-log-file-size { |
| 102 |
font-weight: bold; |
| 103 |
} |
| 104 |
|
| 105 |
/* CSS On / Off switcher -- https://codepen.io/MoorLex/pen/GZaavy */ |
| 106 |
|
| 107 |
input[type="checkbox"] { |
| 108 |
display: none; |
| 109 |
} |
| 110 |
|
| 111 |
input[type="checkbox"] + label { |
| 112 |
display: inline-block; |
| 113 |
width: 40px; |
| 114 |
height: 20px; |
| 115 |
position: relative; |
| 116 |
transition: 0.3s; |
| 117 |
margin: 0 8px 0 0; |
| 118 |
box-sizing: border-box; |
| 119 |
} |
| 120 |
|
| 121 |
input[type="checkbox"] + label:after, |
| 122 |
input[type="checkbox"] + label:before { |
| 123 |
content: ''; |
| 124 |
display: block; |
| 125 |
position: absolute; |
| 126 |
left: 0px; |
| 127 |
top: 0px; |
| 128 |
width: 20px; |
| 129 |
height: 20px; |
| 130 |
transition: 0.3s; |
| 131 |
cursor: pointer; |
| 132 |
} |
| 133 |
|
| 134 |
input[type="checkbox"].inset-3:checked + label.red { |
| 135 |
background: #ECA9A7; |
| 136 |
} |
| 137 |
|
| 138 |
input[type="checkbox"].inset-3:checked + label.red:after { |
| 139 |
background: #D9534F; |
| 140 |
} |
| 141 |
|
| 142 |
input[type="checkbox"].inset-3:checked + label.green { |
| 143 |
background: #AEDCAE; |
| 144 |
} |
| 145 |
|
| 146 |
input[type="checkbox"].inset-3:checked + label.green:after { |
| 147 |
background: #5CB85C; |
| 148 |
} |
| 149 |
|
| 150 |
input[type="checkbox"].inset-3:checked + label:after { |
| 151 |
left: calc(100% - 18px); |
| 152 |
} |
| 153 |
|
| 154 |
input[type="checkbox"].inset-3 + label { |
| 155 |
background: #ddd; |
| 156 |
border-radius: 20px; |
| 157 |
} |
| 158 |
|
| 159 |
input[type="checkbox"].inset-3 + label:after { |
| 160 |
background: #fff; |
| 161 |
border-radius: 50%; |
| 162 |
width: 16px; |
| 163 |
height: 16px; |
| 164 |
top: 2px; |
| 165 |
left: 2px; |
| 166 |
} |
| 167 |
|
| 168 |
/* DataTables */ |
| 169 |
|
| 170 |
.dataTables_wrapper .dataTables_length, |
| 171 |
.dataTables_wrapper .dataTables_filter { |
| 172 |
margin-bottom: 8px; |
| 173 |
} |
| 174 |
|
| 175 |
table.dataTable { |
| 176 |
margin: 0 auto 8px; |
| 177 |
} |
| 178 |
|
| 179 |
.dataTables_wrapper .dataTables_length select { |
| 180 |
min-width: 52px; |
| 181 |
} |
| 182 |
|
| 183 |
table.dataTable thead th, |
| 184 |
table.dataTable tfoot th { |
| 185 |
font-weight: 500 !important; |
| 186 |
} |
| 187 |
|
| 188 |
th.debug-log-timestamp { |
| 189 |
min-width: 160px; |
| 190 |
} |
| 191 |
|
| 192 |
th.debug-log-error-type { |
| 193 |
min-width: 90px; |
| 194 |
} |
| 195 |
|
| 196 |
th.debug-log-error-details { |
| 197 |
|
| 198 |
} |
| 199 |
|
| 200 |
/* jQuery Toast */ |
| 201 |
|
| 202 |
.jq-toast-single h2 { |
| 203 |
margin: 0 0 4px !important; |
| 204 |
} |
| 205 |
|
| 206 |
.jq-toast-single { |
| 207 |
font-size: 14px !important; |
| 208 |
} |
| 209 |
|
| 210 |
.jq-toast-wrap.bottom-right { |
| 211 |
bottom: 10px !important; |
| 212 |
right: 20px !important; |
| 213 |
} |