1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-21 01:38:48 +02:00
phorge-phorge/webroot/rsrc/css/application/chatlog/chatlog.css

66 lines
1,020 B
CSS
Raw Normal View History

/**
* @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;
}