diff --git a/docs/changelog.txt b/docs/changelog.txt index e8aaf54..720563c 100644 --- a/docs/changelog.txt +++ b/docs/changelog.txt @@ -2,6 +2,8 @@ changelog === next ++ Some UI improvements to web interface. + + Add atme class to mentions + Improvements to the mastodon importer. diff --git a/views/header.html b/views/header.html index d88fc57..305e40c 100644 --- a/views/header.html +++ b/views/header.html @@ -57,7 +57,10 @@ -

+
+

+

top +

{{ else }}
home diff --git a/views/style.css b/views/style.css index 9c0b01d..9a31bf3 100644 --- a/views/style.css +++ b/views/style.css @@ -74,6 +74,7 @@ header > details { overflow: auto; opacity: 0.7; overscroll-behavior: contain; + z-index: 2; } header > details[open] { padding: 1em 1em 0em 1em; @@ -91,6 +92,9 @@ header > details[open] summary span { header > details li { margin: 1em 0em 1em 0em; } +details summary { + cursor: pointer; +} main { max-width: 1200px; margin: auto; @@ -131,6 +135,9 @@ label.button, button, select { button a { text-decoration: none; } +button { + cursor: pointer; +} form { margin-top: 1em; } @@ -296,6 +303,16 @@ img.emu { margin: -2px; object-fit: contain; } +.nophone { + position: fixed; + opacity: 0.7; + cursor: pointer; +} +@media screen and (max-width: 1360px) { + .nophone { + display: none; + } +} @media screen and (max-width: 740px) { body { font-size: 12px;