apply various fixes from @Cradamy

https://gist.github.com/Cradamy/5bb19c60f64f03c01482a3ff3fa9ec74
This commit is contained in:
Ben Harris 2020-01-07 10:37:52 -05:00
parent 8242d9e032
commit ea925ddb04
2 changed files with 16 additions and 1 deletions

View File

@ -1,6 +1,6 @@
{
"name": "thelounge-theme-solarized-fork-monospace",
"version": "1.1.2",
"version": "1.0.9",
"description": "A simple theme with Solarized colors",
"main": "package.json",
"thelounge": {

View File

@ -13,6 +13,21 @@
font-family: 'IBM Plex Mono', monospace;
}
/*fix timestamp width in monospace themes*/
#chat.show-seconds .time, #chat.show-seconds .chat-view[data-type="channel"] .msg.highlight .time {
width: auto;
}
/*hide message sender name if it comes from the same person as the last one*/
.msg.previous-source .from {
visibility: hidden;
}
/*hide debug*/
#chat .msg[data-type=raw] {
display: none;
}
#user-specified-css-input {
height: 500px;
}