1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-11 01:12:41 +01:00
phorge-phorge/webroot/rsrc/css/application/conpherence/message-pane.css
Bob Trahan b873f3f991 Conpherence V1
Summary: it's ugly. but it works. basically. See T2399 for a roughly prioritized list of what still needs to happen.

Test Plan:
- created a conpherence with myself from my profile
- created a conpherence with myself from "new conpherence"
- created a conphernece with another from "new conpherence"
- created a conpherence with several others
- created a conpherence with files in the initial post
 - verified files via comment text ("{F232} is awesome!") and via traditional attach
- edited a conpherence image
 - verified it showed up in the header and in the conpherence menu on the left
- edited a conpherence title
 - verified it showed up in the header and in the conpherence menu on the right
- verified each widget showed up when clicked and displayed the proper data
 - calendar being an exception since it sucks so hard right now.

Reviewers: epriestley, chad

Reviewed By: epriestley

CC: aran, epriestley, chad, codeblock, Korvin

Maniphest Tasks: T2301

Differential Revision: https://secure.phabricator.com/D4620
2013-01-24 17:23:05 -08:00

95 lines
1.8 KiB
CSS

/**
* @provides conpherence-message-pane-css
*/
.conpherence-message-pane {
position: fixed;
left: 320px;
top: 94px;
min-width: 320px;
width: auto;
height: 100%;
margin: 0px 320px 0px 0px;
}
.conpherence-message-pane .conpherence-messages {
position: fixed;
left: 320px;
right: 321px;
top: 94px;
bottom: 225px;
overflow-y: scroll;
}
.conpherence-message-pane .phabricator-form-view {
border-width: 0;
background: none;
height: 224px;
padding: 0;
position: fixed;
bottom: 0;
left: 320px;
right: 321px;
}
.device-tablet
.conpherence-message-pane .phabricator-form-view,
.device-tablet
.conpherence-message-pane .conpherence-messages,
.device-tablet
.conpherence-message-pane {
left: 0px;
}
.conpherence-message-pane .aphront-form-input {
margin: 0;
width: 100%;
}
.conpherence-message-pane .phabricator-transaction-view {
margin: 1em 1.25em 1em 1.25em;
display: block;
}
.conpherence-message-pane .phabricator-transaction-detail {
border-width: 0;
}
.conpherence-message-pane .phabricator-transaction-header {
background: none;
}
.conpherence-message-pane .phabricator-transaction-info {
background: none;
}
.conpherence-message-pane .phabricator-transaction-content {
background: none;
}
.conpherence-message-pane .conpherence-edited .phabricator-transaction-content {
font-size: 12px;
padding: 0em 1em 0em 1em;
margin-top: -4px;
}
.conpherence-message-pane .aphront-form-control {
padding: 0;
}
.conpherence-message-pane .aphront-form-control-submit {
margin-right: 8px;
}
.conpherence-message-pane .remarkup-assist-bar {
border-width: 1px 0 0;
border-color: #CCC;
}
.conpherence-message-pane .remarkup-assist-textarea {
border-width: 1px 0 1px 0;
border-color: #CCC;
}
.conpherence-message-pane .remarkup-assist-textarea:focus {
outline: none;
}