mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
b873f3f991
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
41 lines
633 B
CSS
41 lines
633 B
CSS
/**
|
|
* @provides conpherence-header-pane-css
|
|
*/
|
|
|
|
.conpherence-header-pane {
|
|
border-bottom: 1px solid #ccc;
|
|
background: #fff;
|
|
height: 50px;
|
|
width: 100%;
|
|
}
|
|
|
|
.conpherence-header-pane .edit {
|
|
position: relative;
|
|
float: right;
|
|
margin: 16px 16px 0px 0px;
|
|
}
|
|
|
|
.conpherence-header-pane .header-image {
|
|
position: absolute;
|
|
height: 50px;
|
|
width: 50px;
|
|
}
|
|
|
|
.conpherence-header-pane .title {
|
|
position: relative;
|
|
font-size: 16px;
|
|
left: 62px;
|
|
top: 6px;
|
|
max-width: 80%;
|
|
overflow-x: scroll;
|
|
}
|
|
|
|
.conpherence-header-pane .subtitle {
|
|
position: relative;
|
|
left: 62px;
|
|
top: 6px;
|
|
color: #bfbfbf;
|
|
max-width: 80%;
|
|
}
|
|
|
|
|