mirror of https://github.com/zulip/zulip.git
Don't let timestamp float over other content.
Before this commit, the timestamps are higher than the narrowbar, on the z-axis, so they slide over it as you scroll. As a philosophical aside, I almost wonder if the timestamps should live in their own table row, that way they can't possibly overlap with the message bodies. (This would require reverting Tim-style sometimes-show-date-and-time timestamps.) (imported from commit 0c59f1feacebd59b88e76bf056d96e05159d2937)
This commit is contained in:
parent
8492aaee4b
commit
04c631fd24
|
@ -138,8 +138,6 @@ td.pointer {
|
||||||
.message_time {
|
.message_time {
|
||||||
color: gray;
|
color: gray;
|
||||||
float: right;
|
float: right;
|
||||||
position: relative;
|
|
||||||
right: -25px;
|
|
||||||
font-size: 90%;
|
font-size: 90%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -162,6 +160,7 @@ table.focused_table {
|
||||||
|
|
||||||
.message_content {
|
.message_content {
|
||||||
margin-left: 5px;
|
margin-left: 5px;
|
||||||
|
margin-right: 35px; /* size of the timestamp */
|
||||||
}
|
}
|
||||||
|
|
||||||
blockquote {
|
blockquote {
|
||||||
|
@ -174,7 +173,7 @@ blockquote p {
|
||||||
}
|
}
|
||||||
|
|
||||||
.messagebox {
|
.messagebox {
|
||||||
padding: 5px 35px 5px 14px;
|
padding: 5px 14px;
|
||||||
background-color: white;
|
background-color: white;
|
||||||
border: 1px solid gray;
|
border: 1px solid gray;
|
||||||
border-width: 0px 1px 1px 1px;
|
border-width: 0px 1px 1px 1px;
|
||||||
|
|
Loading…
Reference in New Issue