apply various fixes from @Cradamy
https://gist.github.com/Cradamy/5bb19c60f64f03c01482a3ff3fa9ec74
This commit is contained in:
parent
8242d9e032
commit
ea925ddb04
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "thelounge-theme-solarized-fork-monospace",
|
"name": "thelounge-theme-solarized-fork-monospace",
|
||||||
"version": "1.1.2",
|
"version": "1.0.9",
|
||||||
"description": "A simple theme with Solarized colors",
|
"description": "A simple theme with Solarized colors",
|
||||||
"main": "package.json",
|
"main": "package.json",
|
||||||
"thelounge": {
|
"thelounge": {
|
||||||
|
|
15
theme.css
15
theme.css
|
@ -13,6 +13,21 @@
|
||||||
font-family: 'IBM Plex Mono', monospace;
|
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 {
|
#user-specified-css-input {
|
||||||
height: 500px;
|
height: 500px;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue