| 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 |
width: 100%; |
| 10 |
box-sizing: border-box; |
| 11 |
margin-top: 24px; |
| 12 |
padding: 20px; |
| 13 |
background-color: #fafafa; |
| 14 |
border-bottom: 1px solid #f5f5f5; |
| 15 |
transition: .25s; |
| 16 |
} |
| 17 |
|
| 18 |
.dlm-header.dlm-sticky { |
| 19 |
box-shadow: 0 5px 10px rgb(0 0 0 / 10%); |
| 20 |
} |
| 21 |
|
| 22 |
.dlm-header-left { |
| 23 |
} |
| 24 |
|
| 25 |
.dlm-header-right { |
| 26 |
display: flex; |
| 27 |
} |
| 28 |
|
| 29 |
.dlm-body { |
| 30 |
padding: 20px; |
| 31 |
background-color: #fff; |
| 32 |
} |
| 33 |
|
| 34 |
.dlm-footer { |
| 35 |
display: flex; |
| 36 |
flex-direction: column; |
| 37 |
width: 100%; |
| 38 |
box-sizing: border-box; |
| 39 |
padding: 12px 20px; |
| 40 |
background-color: #fafafa; |
| 41 |
border-top: 1px solid #f5f5f5; |
| 42 |
} |
| 43 |
|
| 44 |
.dlm-footer-section { |
| 45 |
display: flex; |
| 46 |
justify-content: space-between; |
| 47 |
align-items: center; |
| 48 |
width: 100%; |
| 49 |
} |
| 50 |
|
| 51 |
.dlm-top-border { |
| 52 |
border-top: 1px solid #dcdcde; |
| 53 |
margin-top: 8px; |
| 54 |
padding-top: 8px; |
| 55 |
} |
| 56 |
|
| 57 |
.dlm-footer-button { |
| 58 |
margin-left: 12px !important; |
| 59 |
} |
| 60 |
|
| 61 |
.wrap h1.dlm-heading { |
| 62 |
font-size: 1.5em; |
| 63 |
line-height: 26px; |
| 64 |
font-weight: 400; |
| 65 |
margin: 0; |
| 66 |
padding: 0; |
| 67 |
} |
| 68 |
|
| 69 |
.dlm-heading a { |
| 70 |
text-decoration: none; |
| 71 |
transition: .25s; |
| 72 |
} |
| 73 |
|
| 74 |
.dlm-heading a:hover { |
| 75 |
text-decoration: underline; |
| 76 |
} |
| 77 |
|
| 78 |
.dlm-heading small { |
| 79 |
font-size: 14px; |
| 80 |
font-weight: 500; |
| 81 |
color: #555; |
| 82 |
} |
| 83 |
|
| 84 |
.dlm-header-action { |
| 85 |
margin-left: 16px; |
| 86 |
text-decoration: none; |
| 87 |
transition: .25s; |
| 88 |
line-height: 30px; |
| 89 |
} |
| 90 |
|
| 91 |
.dlm-header-action:first-child { |
| 92 |
margin-left: 0; |
| 93 |
} |
| 94 |
|
| 95 |
.dlm-header-action:hover { |
| 96 |
text-decoration: underline; |
| 97 |
} |
| 98 |
|
| 99 |
.dlm-log-management { |
| 100 |
display: flex; |
| 101 |
justify-content: space-between; |
| 102 |
align-items: center; |
| 103 |
margin-bottom: 12px; |
| 104 |
} |
| 105 |
|
| 106 |
.dlm-logging-status, |
| 107 |
.dlm-autorefresh-status { |
| 108 |
display: flex; |
| 109 |
justify-content: flex-start; |
| 110 |
align-items: center; |
| 111 |
} |
| 112 |
|
| 113 |
.dlm-log-status { |
| 114 |
line-height: 30px; |
| 115 |
margin-right: 20px; |
| 116 |
} |
| 117 |
|
| 118 |
.dlm-faint { |
| 119 |
opacity: 0.5; |
| 120 |
} |
| 121 |
|
| 122 |
#dlm-log-file-size { |
| 123 |
font-weight: bold; |
| 124 |
} |
| 125 |
|
| 126 |
/* CSS On / Off switcher -- https://codepen.io/MoorLex/pen/GZaavy */ |
| 127 |
|
| 128 |
input[type="checkbox"] { |
| 129 |
display: none; |
| 130 |
} |
| 131 |
|
| 132 |
input[type="checkbox"] + label { |
| 133 |
display: inline-block; |
| 134 |
width: 40px; |
| 135 |
height: 20px; |
| 136 |
position: relative; |
| 137 |
transition: 0.3s; |
| 138 |
margin: 0 8px 0 0; |
| 139 |
box-sizing: border-box; |
| 140 |
} |
| 141 |
|
| 142 |
input[type="checkbox"] + label:after, |
| 143 |
input[type="checkbox"] + label:before { |
| 144 |
content: ''; |
| 145 |
display: block; |
| 146 |
position: absolute; |
| 147 |
left: 0px; |
| 148 |
top: 0px; |
| 149 |
width: 20px; |
| 150 |
height: 20px; |
| 151 |
transition: 0.3s; |
| 152 |
cursor: pointer; |
| 153 |
} |
| 154 |
|
| 155 |
input[type="checkbox"].inset-3:checked + label.red { |
| 156 |
background: #ECA9A7; |
| 157 |
} |
| 158 |
|
| 159 |
input[type="checkbox"].inset-3:checked + label.red:after { |
| 160 |
background: #D9534F; |
| 161 |
} |
| 162 |
|
| 163 |
input[type="checkbox"].inset-3:checked + label.green { |
| 164 |
background: #AEDCAE; |
| 165 |
} |
| 166 |
|
| 167 |
input[type="checkbox"].inset-3:checked + label.green:after { |
| 168 |
background: #5CB85C; |
| 169 |
} |
| 170 |
|
| 171 |
input[type="checkbox"].inset-3:checked + label:after { |
| 172 |
left: calc(100% - 18px); |
| 173 |
} |
| 174 |
|
| 175 |
input[type="checkbox"].inset-3 + label { |
| 176 |
background: #ddd; |
| 177 |
border-radius: 20px; |
| 178 |
} |
| 179 |
|
| 180 |
input[type="checkbox"].inset-3 + label:after { |
| 181 |
background: #fff; |
| 182 |
border-radius: 50%; |
| 183 |
width: 16px; |
| 184 |
height: 16px; |
| 185 |
top: 2px; |
| 186 |
left: 2px; |
| 187 |
} |
| 188 |
|
| 189 |
/* DataTables */ |
| 190 |
|
| 191 |
/* https://stackoverflow.com/a/20206637 */ |
| 192 |
table#debug-log { |
| 193 |
table-layout: fixed; |
| 194 |
width: 100%; |
| 195 |
} |
| 196 |
|
| 197 |
table.dataTable { |
| 198 |
margin: 0 auto 8px; |
| 199 |
} |
| 200 |
|
| 201 |
table.dataTable thead th, |
| 202 |
table.dataTable tfoot th { |
| 203 |
font-weight: 500 !important; |
| 204 |
} |
| 205 |
|
| 206 |
#debug-log .dlm-entry-no { |
| 207 |
width: 16px; |
| 208 |
} |
| 209 |
|
| 210 |
#debug-log .dlm-entry-type { |
| 211 |
width: 96px; |
| 212 |
} |
| 213 |
|
| 214 |
#debug-log .dlm-entry-datetime { |
| 215 |
width: 160px; |
| 216 |
} |
| 217 |
|
| 218 |
#debug-log .dlm-entry-details { |
| 219 |
width: calc(100% - 16px - 96px - 160px); |
| 220 |
} |
| 221 |
|
| 222 |
#debug-log .dlm-entry-details a.error-source-link, |
| 223 |
#debug-log tr td:nth-child(3) a.error-source-link { |
| 224 |
color: #50575e; |
| 225 |
} |
| 226 |
|
| 227 |
#debug-log .dlm-entry-details a.error-source-link span, |
| 228 |
#debug-log tr td:nth-child(3) a.error-source-link span { |
| 229 |
position: relative; |
| 230 |
margin-left: 2px; |
| 231 |
color: #777; |
| 232 |
font-size: 18px; |
| 233 |
width: 18px; |
| 234 |
height: 18px; |
| 235 |
transition: .25s; |
| 236 |
} |
| 237 |
|
| 238 |
#debug-log .dlm-entry-details a.error-source-link span.offset-up, |
| 239 |
#debug-log tr td:nth-child(3) a.error-source-link span.offset-up { |
| 240 |
top: -1px; |
| 241 |
} |
| 242 |
|
| 243 |
#debug-log .dlm-entry-details a.error-source-link span.offset-down, |
| 244 |
#debug-log tr td:nth-child(3) a.error-source-link span.offset-down { |
| 245 |
top: 1px; |
| 246 |
} |
| 247 |
|
| 248 |
#debug-log .dlm-entry-details a.error-source-link:hover, |
| 249 |
#debug-log tr td:nth-child(3) a.error-source-link:hover, |
| 250 |
#debug-log .dlm-entry-details a.error-source-link:hover span, |
| 251 |
#debug-log tr td:nth-child(3) a.error-source-link:hover span { |
| 252 |
color: #2271b1; |
| 253 |
} |
| 254 |
|
| 255 |
#debug-log .dlm-entry-details a.error-source-link:hover, |
| 256 |
#debug-log tr td:nth-child(3) a.error-source-link:hover { |
| 257 |
text-decoration: underline; |
| 258 |
} |
| 259 |
|
| 260 |
#debug-log .dlm-entry-details a.error-source-link:hover span, |
| 261 |
#debug-log tr td:nth-child(3) a.error-source-link:hover span { |
| 262 |
text-decoration: none; |
| 263 |
} |
| 264 |
|
| 265 |
#debug-log td { |
| 266 |
word-wrap: break-word; /* All browsers since IE 5.5+ */ |
| 267 |
overflow-wrap: break-word; /* Renamed property in CSS3 draft spec */ |
| 268 |
} |
| 269 |
|
| 270 |
#debug-log td pre { |
| 271 |
margin-top: 0; |
| 272 |
margin-bottom: 0; |
| 273 |
} |
| 274 |
|
| 275 |
.dataTables_wrapper .dataTables_length, |
| 276 |
.dataTables_wrapper .dataTables_filter { |
| 277 |
margin-bottom: 8px; |
| 278 |
} |
| 279 |
|
| 280 |
.dataTables_wrapper .dataTables_length select { |
| 281 |
min-width: 52px; |
| 282 |
} |
| 283 |
|
| 284 |
.wp-core-ui select.dlm-error-type-filter { |
| 285 |
margin-left: 6px; |
| 286 |
min-height: 40px; |
| 287 |
border-color: #aaa; |
| 288 |
} |
| 289 |
|
| 290 |
/* Button Style - Outlined */ |
| 291 |
|
| 292 |
.wp-core-ui .vi-header .button-primary { |
| 293 |
font-weight: 500; |
| 294 |
transition: .1s; |
| 295 |
} |
| 296 |
|
| 297 |
.wp-core-ui .button-primary.plugin-sponsor { |
| 298 |
margin-left: 16px; |
| 299 |
color: #de4c73; |
| 300 |
background: transparent; |
| 301 |
border-color: #de4c73; |
| 302 |
} |
| 303 |
|
| 304 |
.wp-core-ui .button-primary.plugin-sponsor:hover { |
| 305 |
color: #fff; |
| 306 |
background: #de4c73; |
| 307 |
} |
| 308 |
|
| 309 |
.wp-core-ui .button-primary.plugin-upgrade { |
| 310 |
margin-left: 8px; |
| 311 |
color: green; |
| 312 |
background: transparent; |
| 313 |
border-color: green; |
| 314 |
} |
| 315 |
|
| 316 |
.wp-core-ui .button-primary.plugin-upgrade:hover { |
| 317 |
color: #fff; |
| 318 |
background: green; |
| 319 |
} |
| 320 |
|
| 321 |
.wp-core-ui .button-primary.plugin-sponsor:focus, |
| 322 |
.wp-core-ui .button-primary.plugin-upgrade:focus { |
| 323 |
box-shadow: none; |
| 324 |
} |
| 325 |
|
| 326 |
/* jQuery Toast */ |
| 327 |
|
| 328 |
.jq-toast-single h2 { |
| 329 |
margin: 0 0 4px !important; |
| 330 |
} |
| 331 |
|
| 332 |
.jq-toast-single { |
| 333 |
font-size: 14px !important; |
| 334 |
} |
| 335 |
|
| 336 |
.jq-toast-wrap.bottom-right { |
| 337 |
bottom: 10px !important; |
| 338 |
right: 20px !important; |
| 339 |
} |