diff options
Diffstat (limited to 'pages/jobs.inc')
-rw-r--r-- | pages/jobs.inc | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/pages/jobs.inc b/pages/jobs.inc index c00e35c..3c0bb3d 100644 --- a/pages/jobs.inc +++ b/pages/jobs.inc @@ -17,6 +17,7 @@ require_once $_SERVER['DOCUMENT_ROOT'] . '/includes/components/header.inc'; ?> <style> + <?php global $use2023UI; if (!$use2023UI): ?> .list-group-item { color: #fff; background-color: #222; @@ -40,16 +41,27 @@ require_once $_SERVER['DOCUMENT_ROOT'] . '/includes/components/header.inc'; color: #bbb; } + <?php endif; ?> + details[open] summary { font-weight: bold; } + <?php if ($use2023UI): ?> + pre { + background: var(--palette-4); + color: var(--palette-6); + padding: 10px 20px; + margin-top: 10px; + } + <?php else: ?> pre { background: #000000; color: #ffffff; padding: 10px 20px; margin-top: 10px; } + <?php endif; ?> pre.last { margin-bottom: 0; |