2013-01-24 17:23:05 -08:00
|
|
|
/**
|
|
|
|
* @provides conpherence-message-pane-css
|
|
|
|
*/
|
2013-04-15 16:27:41 -07:00
|
|
|
|
2013-05-29 12:46:06 -07:00
|
|
|
.conpherence-message-pane,
|
|
|
|
.loading .messages-loading-mask,
|
2013-05-30 12:42:55 -07:00
|
|
|
.loading .messages-loading-icon,
|
|
|
|
.conpherence-layout .conpherence-no-threads {
|
2013-01-24 17:23:05 -08:00
|
|
|
position: fixed;
|
2013-05-24 10:50:18 -07:00
|
|
|
left: 280px;
|
|
|
|
right: 241px;
|
2013-05-22 16:05:47 -07:00
|
|
|
top: 76px;
|
2013-05-29 12:46:06 -07:00
|
|
|
bottom: 0px;
|
2013-03-25 07:38:27 -07:00
|
|
|
min-width: 300px;
|
2013-01-24 17:23:05 -08:00
|
|
|
width: auto;
|
2013-11-28 07:34:03 -08:00
|
|
|
background: #fff;
|
2013-01-24 17:23:05 -08:00
|
|
|
}
|
2013-03-25 07:38:27 -07:00
|
|
|
|
2013-05-29 12:46:06 -07:00
|
|
|
.device .conpherence-message-pane,
|
|
|
|
.device .loading .messages-loading-mask,
|
2013-05-30 12:42:55 -07:00
|
|
|
.device .loading .messages-loading-icon,
|
|
|
|
.device .conpherence-layout .conpherence-no-threads {
|
2013-04-15 16:27:41 -07:00
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2013-05-30 12:42:55 -07:00
|
|
|
.conpherence-layout .conpherence-no-threads {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.conpherence-layout .conpherence-no-threads .text {
|
|
|
|
margin: 16px 0px 16px 0px;
|
|
|
|
}
|
|
|
|
|
2013-02-15 14:01:27 -08:00
|
|
|
.conpherence-show-older-messages {
|
|
|
|
display: block;
|
|
|
|
background: #e0e3ec;
|
|
|
|
margin: 10px;
|
|
|
|
text-align: center;
|
|
|
|
padding: 10px;
|
2013-09-07 09:13:55 -07:00
|
|
|
color: {$bluetext};
|
2013-02-15 14:01:27 -08:00
|
|
|
}
|
2013-01-24 17:23:05 -08:00
|
|
|
|
2013-05-29 12:46:06 -07:00
|
|
|
.conpherence-show-older-messages-loading {
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
|
2013-01-24 17:23:05 -08:00
|
|
|
.conpherence-message-pane .conpherence-messages {
|
|
|
|
position: fixed;
|
2013-05-24 10:50:18 -07:00
|
|
|
left: 280px;
|
|
|
|
right: 241px;
|
2013-05-22 16:05:47 -07:00
|
|
|
top: 76px;
|
|
|
|
bottom: 190px;
|
2013-01-24 18:33:51 -08:00
|
|
|
overflow-y: auto;
|
2013-03-25 07:38:27 -07:00
|
|
|
box-shadow: inset 1px 4px 5px rgba(0,0,0,0.1);
|
|
|
|
-webkit-overflow-scrolling: touch;
|
2013-01-24 17:23:05 -08:00
|
|
|
}
|
|
|
|
|
2013-04-15 16:27:41 -07:00
|
|
|
.device .conpherence-message-pane .conpherence-messages {
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 3em;
|
|
|
|
width: 100%;
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
|
2013-05-29 12:46:06 -07:00
|
|
|
.conpherence-message-pane .messages-loading-mask {
|
2013-05-31 11:31:19 -07:00
|
|
|
opacity: .6;
|
|
|
|
background: #fff;
|
2013-05-29 12:46:06 -07:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2013-05-31 11:31:19 -07:00
|
|
|
.loading .messages-loading-mask {
|
2013-05-29 12:46:06 -07:00
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2013-08-26 11:53:11 -07:00
|
|
|
.conpherence-message-pane .phui-form-view {
|
2013-01-24 17:23:05 -08:00
|
|
|
border-width: 0;
|
2013-09-02 12:51:21 -07:00
|
|
|
background-color: {$lightgreybackground};
|
2013-05-22 16:05:47 -07:00
|
|
|
height: 190px;
|
2013-01-24 17:23:05 -08:00
|
|
|
padding: 0;
|
|
|
|
position: fixed;
|
|
|
|
bottom: 0;
|
2013-05-24 10:50:18 -07:00
|
|
|
left: 280px;
|
|
|
|
right: 241px;
|
2013-01-24 17:23:05 -08:00
|
|
|
}
|
|
|
|
|
2013-08-29 15:59:15 -07:00
|
|
|
/**
|
|
|
|
* When entering "Fullscreen Mode" in the remarkup control, we need to drop
|
|
|
|
* all of the "position: fixed" on parent elements or Chrome doesn't put the
|
|
|
|
* textarea on top.
|
|
|
|
*/
|
|
|
|
.remarkup-fullscreen-mode .conpherence-message-pane,
|
|
|
|
.remarkup-fullscreen-mode .conpherence-message-pane .conpherence-messages,
|
2013-08-29 16:03:13 -07:00
|
|
|
.remarkup-fullscreen-mode .conpherence-message-pane .phui-form-view,
|
|
|
|
.remarkup-fullscreen-mode .conpherence-layout {
|
2013-08-29 15:59:15 -07:00
|
|
|
position: static;
|
|
|
|
}
|
|
|
|
|
2013-04-15 16:27:41 -07:00
|
|
|
.device .conpherence-message-pane .remarkup-assist-bar {
|
|
|
|
height: 0px;
|
|
|
|
}
|
|
|
|
|
2013-08-26 11:53:11 -07:00
|
|
|
.device .conpherence-message-pane .phui-form-view {
|
2013-04-15 16:27:41 -07:00
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
background-color: #d8dce2;
|
|
|
|
height: 3em;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2013-08-26 11:53:11 -07:00
|
|
|
.conpherence-layout .conpherence-message-pane .phui-form-view
|
2013-04-11 11:04:25 -07:00
|
|
|
div.aphront-form-input {
|
2013-01-24 17:23:05 -08:00
|
|
|
margin: 0;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.conpherence-message-pane .phabricator-transaction-view {
|
2013-05-22 20:47:47 -07:00
|
|
|
margin: 5px 15px;
|
|
|
|
background-size: 35px;
|
|
|
|
min-height: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.device-phone .conpherence-message-pane .phabricator-transaction-view {
|
|
|
|
margin: 0 10px 0 0;
|
2013-01-24 17:23:05 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
.conpherence-message-pane .phabricator-transaction-detail {
|
|
|
|
border-width: 0;
|
2013-03-25 07:38:27 -07:00
|
|
|
margin-left: 45px;
|
2013-01-24 17:23:05 -08:00
|
|
|
}
|
|
|
|
|
2013-05-30 14:24:50 -07:00
|
|
|
.conpherence-message-pane .date-marker {
|
2013-05-31 11:31:19 -07:00
|
|
|
border-top: 1px solid #d7d7d7;
|
2013-05-30 14:24:50 -07:00
|
|
|
margin: 5px 15px;
|
|
|
|
min-height: auto;
|
|
|
|
}
|
|
|
|
.conpherence-message-pane .date-marker .date {
|
|
|
|
position: relative;
|
|
|
|
top: -8px;
|
2013-05-31 11:31:19 -07:00
|
|
|
left: 40px;
|
2013-05-30 14:24:50 -07:00
|
|
|
background-color: #FFF;
|
2013-05-31 11:31:19 -07:00
|
|
|
color: #bfbfbf;
|
2013-05-30 14:24:50 -07:00
|
|
|
font-size: 11px;
|
|
|
|
padding: 0px 5px;
|
|
|
|
}
|
2013-05-22 20:47:47 -07:00
|
|
|
.device-phone .conpherence-message-pane .phabricator-transaction-detail {
|
|
|
|
min-height: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.conpherence-message-pane .conpherence-edited {
|
2013-09-02 08:12:18 -07:00
|
|
|
color: {$lightgreytext};
|
2013-05-22 20:47:47 -07:00
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.device-phone .conpherence-message-pane .conpherence-edited {
|
2013-09-02 08:12:18 -07:00
|
|
|
color: {$lightgreytext};
|
2013-05-22 20:47:47 -07:00
|
|
|
margin: 0 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.conpherence-message-pane .conpherence-edited .phabricator-transaction-content {
|
|
|
|
padding: 0 0 5px 45px;
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
|
|
|
|
.device-phone .conpherence-message-pane .conpherence-edited .phabricator-transaction-content {
|
|
|
|
padding: 0 0 5px 35px;
|
|
|
|
}
|
|
|
|
|
2013-03-25 07:38:27 -07:00
|
|
|
.conpherence-message-pane .phabricator-transaction-info,
|
|
|
|
.conpherence-message-pane .phabricator-content-source-view {
|
|
|
|
color: #b7b7b7;
|
2013-05-22 20:47:47 -07:00
|
|
|
line-height: 16px;
|
2013-01-24 17:23:05 -08:00
|
|
|
}
|
|
|
|
|
2013-03-25 07:38:27 -07:00
|
|
|
.conpherence-message-pane .phabricator-transaction-header,
|
|
|
|
.conpherence-message-pane .phabricator-transaction-info,
|
|
|
|
.conpherence-message-pane .phabricator-transaction-content {
|
2013-01-24 17:23:05 -08:00
|
|
|
background: none;
|
2013-05-22 20:47:47 -07:00
|
|
|
padding: 0;
|
2013-01-24 17:23:05 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
.conpherence-message-pane .phabricator-transaction-content {
|
2013-05-22 20:47:47 -07:00
|
|
|
padding: 2px 0 8px 0;
|
2013-01-24 17:23:05 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
.conpherence-message-pane .aphront-form-control {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.conpherence-message-pane .aphront-form-control-submit {
|
2013-09-02 12:51:21 -07:00
|
|
|
margin: 3px 8px 0 0;
|
2013-01-24 17:23:05 -08:00
|
|
|
}
|
|
|
|
.conpherence-message-pane .remarkup-assist-bar {
|
|
|
|
border-width: 1px 0 0;
|
|
|
|
border-color: #CCC;
|
2013-01-26 09:59:21 -08:00
|
|
|
border-bottom: transparent;
|
2013-01-24 17:23:05 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
.conpherence-message-pane .remarkup-assist-textarea {
|
2013-05-22 16:05:47 -07:00
|
|
|
height: 124px;
|
2013-04-15 16:27:41 -07:00
|
|
|
padding: 6px;
|
2013-08-26 11:53:11 -07:00
|
|
|
border-width: 1px 0;
|
2013-09-07 09:13:55 -07:00
|
|
|
border-color: {$lightblueborder};
|
2013-04-15 16:27:41 -07:00
|
|
|
box-sizing: border-box;
|
|
|
|
-moz-box-sizing: border-box;
|
|
|
|
-webkit-box-sizing: border-box;
|
2013-05-07 13:56:04 -07:00
|
|
|
resize: none;
|
2013-04-15 16:27:41 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.device .conpherence-message-pane .remarkup-assist-textarea {
|
|
|
|
margin: 0.5em 0em 0em 2%;
|
|
|
|
padding: 6px 1%;
|
|
|
|
width: 98%;
|
|
|
|
height: 2em;
|
|
|
|
resize: none;
|
2013-01-24 17:23:05 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
.conpherence-message-pane .remarkup-assist-textarea:focus {
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
2013-04-15 16:27:41 -07:00
|
|
|
.device .conpherence-message-pane .aphront-form-control-textarea {
|
|
|
|
float: left;
|
|
|
|
height: 2em;
|
|
|
|
}
|
|
|
|
.device-tablet .conpherence-message-pane .aphront-form-control-textarea {
|
|
|
|
width: 76%;
|
|
|
|
}
|
|
|
|
.device-phone .conpherence-message-pane .aphront-form-control-textarea {
|
|
|
|
width: 63%;
|
2013-01-26 09:59:21 -08:00
|
|
|
}
|
2013-03-25 07:38:27 -07:00
|
|
|
|
2013-04-15 16:27:41 -07:00
|
|
|
.device .conpherence-message-pane .aphront-form-control-submit button {
|
|
|
|
margin: 0.6em 0 0 2%;
|
|
|
|
}
|