2012-02-17 19:21:38 +01:00
|
|
|
/**
|
|
|
|
* @provides phabricator-chatlog-css
|
|
|
|
*/
|
|
|
|
|
2013-04-13 16:50:34 +02:00
|
|
|
.phabricator-chat-log-wrap {
|
2014-02-09 19:21:47 +01:00
|
|
|
padding: 0 16px;
|
2013-04-13 16:50:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.device-phone .phabricator-chat-log-wrap {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2013-10-10 13:49:04 +02:00
|
|
|
.phabricator-chat-log-pager-top {
|
|
|
|
padding: 16px 4px 8px;
|
|
|
|
font-weight: bold;
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.phabricator-chat-log-pager-bottom {
|
|
|
|
padding: 8px 4px 16px;
|
|
|
|
font-weight: bold;
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.phabricator-chat-log-pager-top a, .phabricator-chat-log-pager-bottom a {
|
|
|
|
padding: 2px 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.phabricator-chat-log-jump {
|
|
|
|
padding: 16px 4px 8px;
|
|
|
|
font-weight: bold;
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
2012-06-02 23:00:08 +02:00
|
|
|
.phabricator-chat-log-panel {
|
2013-10-10 13:49:04 +02:00
|
|
|
clear: both;
|
2014-02-09 19:21:47 +01:00
|
|
|
border: 1px solid {$lightblueborder};
|
|
|
|
border-bottom: 1px solid {$blueborder};
|
2012-06-02 23:00:08 +02:00
|
|
|
}
|
|
|
|
|
2012-02-17 19:21:38 +01:00
|
|
|
.phabricator-chat-log {
|
2012-06-02 23:00:08 +02:00
|
|
|
width: 100%;
|
2012-02-17 19:21:38 +01:00
|
|
|
}
|
|
|
|
|
2012-06-02 23:00:08 +02:00
|
|
|
.phabricator-chat-log td {
|
2013-04-13 16:50:34 +02:00
|
|
|
padding: 8px;
|
|
|
|
line-height: 18px;
|
2012-02-17 19:21:38 +01:00
|
|
|
}
|
|
|
|
|
2012-06-02 23:00:08 +02:00
|
|
|
.phabricator-chat-log tr {
|
2014-02-12 18:55:53 +01:00
|
|
|
background: #fff;
|
2012-06-02 23:00:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.phabricator-chat-log tr td.author {
|
2014-02-09 19:21:47 +01:00
|
|
|
background: {$greybackground};
|
2012-02-17 19:21:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.phabricator-chat-log tr.alternate {
|
2014-02-09 19:21:47 +01:00
|
|
|
border-top: 1px solid {$thinblueborder};
|
|
|
|
border-bottom: 1px solid {$thinblueborder};
|
2012-02-17 19:21:38 +01:00
|
|
|
}
|
|
|
|
|
2012-06-02 23:00:08 +02:00
|
|
|
.phabricator-chat-log tr.alternate td.author {
|
2014-02-09 19:21:47 +01:00
|
|
|
background: {$darkgreybackground};
|
2012-06-02 23:00:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.phabricator-chat-log tr.highlight td {
|
2014-02-09 19:21:47 +01:00
|
|
|
background: {$lightyellow};
|
2012-02-17 19:21:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.phabricator-chat-log td.timestamp {
|
|
|
|
white-space: nowrap;
|
2012-06-02 23:00:08 +02:00
|
|
|
text-align: right;
|
|
|
|
width: 12em;
|
|
|
|
}
|
|
|
|
|
2013-04-13 16:50:34 +02:00
|
|
|
.phabricator-chat-log td.message .timestamp {
|
2014-02-09 19:21:47 +01:00
|
|
|
color: {$bluetext};
|
2012-06-02 23:00:08 +02:00
|
|
|
font-size: 11px;
|
2013-04-13 16:50:34 +02:00
|
|
|
float: right;
|
2013-04-16 00:54:15 +02:00
|
|
|
margin-left: 5px;
|
2012-02-17 19:21:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.phabricator-chat-log td.author {
|
|
|
|
white-space: nowrap;
|
|
|
|
text-align: right;
|
|
|
|
font-weight: bold;
|
2013-04-13 16:50:34 +02:00
|
|
|
width: 140px;
|
2014-02-09 19:21:47 +01:00
|
|
|
color: {$darkbluetext};
|
2012-02-17 19:21:38 +01:00
|
|
|
}
|
|
|
|
|
2013-04-13 16:50:34 +02:00
|
|
|
.device-phone .phabricator-chat-log td.author {
|
|
|
|
width: 80px;
|
|
|
|
}
|
|
|
|
|
2012-02-17 19:21:38 +01:00
|
|
|
.phabricator-chat-log td.message {
|
2012-06-02 23:00:08 +02:00
|
|
|
white-space: pre-wrap;
|
2013-04-16 00:54:15 +02:00
|
|
|
word-break: break-word;
|
2012-02-17 19:21:38 +01:00
|
|
|
}
|