diff options
author | RaindropsSys <contact@minteck.org> | 2023-07-20 18:29:09 +0200 |
---|---|---|
committer | RaindropsSys <contact@minteck.org> | 2023-07-20 18:29:09 +0200 |
commit | 46251292b5c8b431de66aeff473594ccec60e04c (patch) | |
tree | c9f2c196e50f064a66625813660148379212d9d7 /pages/jobs.inc | |
parent | 93c96fd1d89782570de9478c26f17b406e9dd7a0 (diff) | |
download | pluralconnect-46251292b5c8b431de66aeff473594ccec60e04c.tar.gz pluralconnect-46251292b5c8b431de66aeff473594ccec60e04c.tar.bz2 pluralconnect-46251292b5c8b431de66aeff473594ccec60e04c.zip |
Updated 19 files and added 26 files (automated)
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; |