diff options
author | Andrew Godwin | 2022-12-05 22:14:50 -0700 |
---|---|---|
committer | Andrew Godwin | 2022-12-05 22:15:05 -0700 |
commit | b0929214d5c4f6df743256cacfb04337b9319aa4 (patch) | |
tree | 560ab167bf69148e753db1c35c9d5921dfca0dbe /static | |
parent | 64cea557bebdb0a5b4f17362d8e66845b0a77113 (diff) | |
download | takahe-b0929214d5c4f6df743256cacfb04337b9319aa4.tar.gz takahe-b0929214d5c4f6df743256cacfb04337b9319aa4.tar.bz2 takahe-b0929214d5c4f6df743256cacfb04337b9319aa4.zip |
Allow selecting notification types to see
Diffstat (limited to 'static')
-rw-r--r-- | static/css/style.css | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/static/css/style.css b/static/css/style.css index e29126b..08bde08 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -762,7 +762,7 @@ table.metadata td.name { font-weight: bold; } -/* Named Timelines */ +/* Timelines */ .left-column .timeline-name { margin: 0 0 10px 0; @@ -774,6 +774,22 @@ table.metadata td.name { margin-right: 10px } +.view-options { + margin: 0 0 10px 3px; +} + +.view-options a { + margin: 0 10px 0 0; + padding: 4px 7px; + color: var(--color-text-duller); + background: var(--color-bg-box); + border-radius: 3px; +} + +.view-options a.selected { + color: var(--color-text-main); +} + /* Posts */ .post { |