mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
6a8ac91599
Summary: - Default to showing the newest page of chat. - Reformat for greater readability. - Add permalinks to specific lines. - Enable jump-to-date. Test Plan: {F12200} Reviewers: Koolvin, vrana, btrahan Reviewed By: btrahan CC: kdeggelman, aran Maniphest Tasks: T837, T1065 Differential Revision: https://secure.phabricator.com/D2641
65 lines
1,020 B
CSS
65 lines
1,020 B
CSS
/**
|
|
* @provides phabricator-chatlog-css
|
|
*/
|
|
|
|
.phabricator-chat-log-panel {
|
|
margin: 1em auto;
|
|
width: 80em;
|
|
}
|
|
|
|
.phabricator-chat-log {
|
|
font-size: 12px;
|
|
width: 100%;
|
|
border: 1px solid #bbbbbb;
|
|
}
|
|
|
|
.phabricator-chat-log td {
|
|
padding: 4px 8px;
|
|
}
|
|
|
|
.phabricator-chat-log tr {
|
|
background: #fafafa;
|
|
}
|
|
|
|
.phabricator-chat-log tr td.author {
|
|
background: #dfdfdf;
|
|
}
|
|
|
|
.phabricator-chat-log tr.alternate {
|
|
background: #e9e9e9;
|
|
}
|
|
|
|
.phabricator-chat-log tr.alternate td.author {
|
|
background: #d9d9d9;
|
|
}
|
|
|
|
.phabricator-chat-log tr.highlight td {
|
|
background: #ffff88;
|
|
}
|
|
|
|
.phabricator-chat-log tr.highlight td.author {
|
|
background: #eeee88;
|
|
}
|
|
|
|
.phabricator-chat-log td.timestamp {
|
|
white-space: nowrap;
|
|
text-align: right;
|
|
width: 12em;
|
|
}
|
|
|
|
.phabricator-chat-log td.timestamp a {
|
|
color: #555555;
|
|
font-size: 11px;
|
|
}
|
|
|
|
.phabricator-chat-log td.author {
|
|
white-space: nowrap;
|
|
text-align: right;
|
|
font-weight: bold;
|
|
width: 12em;
|
|
color: #555555;
|
|
}
|
|
|
|
.phabricator-chat-log td.message {
|
|
white-space: pre-wrap;
|
|
}
|