summaryrefslogtreecommitdiff
path: root/src/main/resources/static
diff options
context:
space:
mode:
authorPaul-Christian Volkmer2026-01-06 17:19:10 +0100
committerPaul-Christian Volkmer2026-01-06 17:19:10 +0100
commitd4ef16c115b8429637f933038254646a61dd81b1 (patch)
treedeee2e101e2eb3b84c80584607dfb4edc23f85b6 /src/main/resources/static
parent7be91444a867774362eb5b57bdd246fb50189e7d (diff)
fix: request reload notification and update button
Diffstat (limited to 'src/main/resources/static')
-rw-r--r--src/main/resources/static/style.css28
1 files changed, 17 insertions, 11 deletions
diff --git a/src/main/resources/static/style.css b/src/main/resources/static/style.css
index 33e5d20..ba85d45 100644
--- a/src/main/resources/static/style.css
+++ b/src/main/resources/static/style.css
@@ -728,17 +728,23 @@ input.inline:focus-visible {
a.reload {
display: none;
- position: absolute;
- height: 1.2rem;
- width: 1.2rem;
- background: var(--bg-red);
- border-radius: 50%;
+ margin: 0;
+ vertical-align: top;
+ border-radius: 1.4rem;
+}
- color: white;
- text-decoration: none;
- font-size: .6rem;
- align-content: center;
- justify-content: center;
+a.reload::before {
+ content: "⟳";
+ font-size: 1.2rem;
+ vertical-align: top;
+}
+
+a.reload span {
+ display: none;
+}
+
+a.reload:hover span {
+ display: inline;
}
.new-token {
@@ -767,4 +773,4 @@ a.reload {
.issue-path {
font-family: monospace;
line-height: 1rem;
-} \ No newline at end of file
+}