mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
7200040479
Summary: This is pretty simple and unpolished, but it's getting pretty big and it seems like a reasonable starting point. - Log chat in various "channels". - Conduit record and query methods. - IRCBot integration for IRC logging Major TODO: - Web UI is really unpolished and has no search, paging, anchor-linking, etc. Basically all presentation stuff, though. - I think the bot should have a map of channels to log with channel aliases? - The "channels" should probably be in a separate table. - The "authors" should probably be correlated to Phabricator accounts somehow, where possible. Test Plan: Used phabotlocal to log #phabricator. Reviewers: kdeggelman, btrahan, Koolvin Reviewed By: btrahan CC: aran, epriestley Maniphest Tasks: T837 Differential Revision: https://secure.phabricator.com/D1625
39 lines
588 B
CSS
39 lines
588 B
CSS
/**
|
|
* @provides phabricator-chatlog-css
|
|
*/
|
|
|
|
.phabricator-chat-log {
|
|
margin: 1em 2em;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.phabricator-chat-log tr.initial {
|
|
border-top: 4px solid white;
|
|
}
|
|
|
|
.phabricator-chat-log tr.normal {
|
|
background: #e9e9e9;
|
|
}
|
|
|
|
.phabricator-chat-log tr.alternate {
|
|
background: #f6f6f6;
|
|
}
|
|
|
|
.phabricator-chat-log td {
|
|
padding: 2px 4px;
|
|
}
|
|
|
|
.phabricator-chat-log td.timestamp {
|
|
white-space: nowrap;
|
|
color: #666666;
|
|
}
|
|
|
|
.phabricator-chat-log td.author {
|
|
white-space: nowrap;
|
|
text-align: right;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.phabricator-chat-log td.message {
|
|
width: 100%;
|
|
}
|