diff options
| author | Vosjedev <vosje@vosjedev.net> | 2025-12-06 13:05:22 +0100 |
|---|---|---|
| committer | Vosjedev <vosje@vosjedev.net> | 2025-12-06 13:05:22 +0100 |
| commit | 9dcac761b114ccca60a3c9fd92ff488d15d377e4 (patch) | |
| tree | 2f7eca8cb92d8fb941a0cb6722745a92e5419216 /html | |
| parent | f45a8f307064b4893afb63b8af24ce47481d29b5 (diff) | |
| download | acit-9dcac761b114ccca60a3c9fd92ff488d15d377e4.tar.gz acit-9dcac761b114ccca60a3c9fd92ff488d15d377e4.tar.bz2 acit-9dcac761b114ccca60a3c9fd92ff488d15d377e4.tar.xz | |
Use proper headings, prepare for softwrapping
Diffstat (limited to 'html')
| -rw-r--r-- | html/mailpage.html | 4 | ||||
| -rw-r--r-- | html/projectpage.html | 4 | ||||
| -rw-r--r-- | html/style.css | 6 |
3 files changed, 10 insertions, 4 deletions
diff --git a/html/mailpage.html b/html/mailpage.html index 034cee8..16e9249 100644 --- a/html/mailpage.html +++ b/html/mailpage.html @@ -16,9 +16,9 @@ bugtype: {bugtype} | status: <span id="status" class="status-{status}">{status}</span> </span> </nav> - <h2 class="subject"> + <h1 class="subject"> <span class="bugnr">#{bug}</span> {subject} - </h2> + </h1> <article class="main"> <p> diff --git a/html/projectpage.html b/html/projectpage.html index a337f84..e636282 100644 --- a/html/projectpage.html +++ b/html/projectpage.html @@ -17,9 +17,9 @@ <a href="/{project}/">{project}</a> </span> </nav> - <h2 class="trackerpage-header"> + <h1 class="trackerpage-header"> {project} - </h2> + </h1> <article class="usage"> Welcome to the {project} bug tracker! To submit an issue, diff --git a/html/style.css b/html/style.css index 293b4b5..e931d16 100644 --- a/html/style.css +++ b/html/style.css @@ -42,6 +42,10 @@ h1, h2 { color: var(--accent); margin-left: 1em; } +h1 { + font-size: 1.5em; + border-bottom: 1px solid var(--tertiary-background); +} .formattedheader { background-color: var(--tertiary-background); @@ -86,6 +90,8 @@ h1, h2 { padding: 1px; padding-left: 2em; padding-right: 2em; +} +.highlight { overflow-y: scroll; white-space: nowrap; } |
