Fix font size and timestamp positioning issues on mobile
By using relative sizes, we automatically adjust to any change in the font size setting Also, the timestamp shouldn't be lifted up, that looks weird. A margin-bottom: -1px does the CSS engine spell of confusion as well and doesn't mess up the layout.
This commit is contained in:
parent
6854b9b83d
commit
d68032b77a
1 changed files with 3 additions and 3 deletions
|
@ -593,12 +593,12 @@ li.buffer.indent.private a {
|
||||||
|
|
||||||
#bufferlines td.time {
|
#bufferlines td.time {
|
||||||
padding-right: 3px;
|
padding-right: 3px;
|
||||||
font-size: 12px;
|
font-size: 0.8em;
|
||||||
}
|
}
|
||||||
|
|
||||||
#bufferlines td.time span.date {
|
#bufferlines td.time span.date {
|
||||||
display: block;
|
display: block;
|
||||||
margin-top: -2px;
|
margin-bottom: -1px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#bufferlines td.prefix {
|
#bufferlines td.prefix {
|
||||||
|
@ -606,7 +606,7 @@ li.buffer.indent.private a {
|
||||||
padding-right: 5px;
|
padding-right: 5px;
|
||||||
border: 0;
|
border: 0;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
font-size: 15px;
|
font-size: 1.06em;
|
||||||
}
|
}
|
||||||
|
|
||||||
#bufferlines td.message {
|
#bufferlines td.message {
|
||||||
|
|
Loading…
Reference in a new issue