From 4d9e0af373b3a92d04498070c6fc8f6c197fc9c0 Mon Sep 17 00:00:00 2001 From: r Date: Sun, 2 Feb 2020 07:24:06 +0000 Subject: Add conversation muting --- static/style.css | 29 ++++++++++++++++++++++++++++- 1 file changed, 28 insertions(+), 1 deletion(-) (limited to 'static') diff --git a/static/style.css b/static/style.css index 67dbd77..dc3f285 100644 --- a/static/style.css +++ b/static/style.css @@ -280,7 +280,6 @@ a:hover, .remote-link { margin-left: 4px; - display: inline-block; font-size: 8pt; } @@ -430,6 +429,29 @@ a:hover, margin: 16px 0 0 0; } +.more-container { + position: relative; + display: inline-block; +} + +.more-content { + display: none; + position: absolute; + background-color: #ffffff; + padding: 2px 4px; + border: 1px solid #aaaaaa; +} + +.more-container:hover .more-content { + display: initial; +} + +.more-link { + font-size: 8pt; + display: block; + margin: 2px; +} + .dark { background-color: #222222; background-image: none; @@ -463,3 +485,8 @@ a:hover, .dark .status-visibility { color: #eaeaea; } + +.dark .more-content { + background-color: #222222; + border-color: #444444; +} -- cgit v1.2.3