diff options
author | r <r@freesoftwareextremist.com> | 2020-02-02 07:24:06 +0000 |
---|---|---|
committer | r <r@freesoftwareextremist.com> | 2020-02-02 07:24:06 +0000 |
commit | 4d9e0af373b3a92d04498070c6fc8f6c197fc9c0 (patch) | |
tree | cdd8f8f3b2decbcf85bad4235bb4b914f39bbaad /static | |
parent | c702a2b501769697576d601875d1db4553eeff12 (diff) | |
download | bloat-4d9e0af373b3a92d04498070c6fc8f6c197fc9c0.tar.gz bloat-4d9e0af373b3a92d04498070c6fc8f6c197fc9c0.zip |
Add conversation muting
Diffstat (limited to 'static')
-rw-r--r-- | static/style.css | 29 |
1 files changed, 28 insertions, 1 deletions
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; +} |