1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 17:28:51 +02:00
phorge-phorge/webroot/rsrc/css/application/chatlog/chatlog.css
epriestley 6a8ac91599 Make chatlog a bit less awful
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
2012-06-02 14:00:08 -07:00

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;
}