mirror of
https://gitea.phreedom.club/localhost_frssoft/bloat.git
synced 2025-05-05 03:18:44 +00:00
Add conversation muting
This commit is contained in:
parent
c702a2b501
commit
4d9e0af373
7 changed files with 159 additions and 7 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue