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 7200040479 Add a basic chatlog
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
2012-02-17 10:21:38 -08:00

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