diff options
| author | frosty <gabriel@bwaaa.monster> | 2026-03-19 15:20:30 -0400 |
|---|---|---|
| committer | frosty <gabriel@bwaaa.monster> | 2026-03-19 15:20:30 -0400 |
| commit | 8a2f593a1b900ecdfb63b7af3fadaf84924841a5 (patch) | |
| tree | 21fe29d2d1a7994131b5880b2695b74645a12beb | |
| parent | db130cb08d2d34b730c024e61ef1624605eb5495 (diff) | |
| download | omnisearch-8a2f593a1b900ecdfb63b7af3fadaf84924841a5.tar.gz | |
feat: changed formatting of cached link on results
| -rw-r--r-- | static/main.css | 2 | ||||
| -rw-r--r-- | templates/results.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/static/main.css b/static/main.css index e289e9d..31b9d7b 100644 --- a/static/main.css +++ b/static/main.css @@ -323,7 +323,7 @@ h1 span { color: var(--text-secondary); font-size:0.85rem; display:inline-block; - text-decoration:none; + text-decoration: underline; } .infobox { grid-column:3; diff --git a/templates/results.html b/templates/results.html index 9deeec4..042fbb7 100644 --- a/templates/results.html +++ b/templates/results.html @@ -65,7 +65,7 @@ {{result[3]}} </p> <span> - <a class="cached" href="https://web.archive.org/web/{{result[0]|safe}}">cached</a> + <a class="cached" href="https://web.archive.org/web/{{result[0]|safe}}">View Cached</a> </span> </div> {{endfor}} |
