mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-13 02:12:41 +01:00
e344f57df1
Summary: Just a rough pass at the CSS on Conpherence. Need a second pass for the widgets. Test Plan: Reload Conpherence, Chrome, FF Reviewers: btrahan, epriestley Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D4661
50 lines
797 B
CSS
50 lines
797 B
CSS
/**
|
|
* @provides conpherence-header-pane-css
|
|
*/
|
|
|
|
#conpherence-main-pane {
|
|
position: relative;
|
|
}
|
|
|
|
.conpherence-header-pane {
|
|
border-bottom: 1px solid #ccc;
|
|
background: #fff;
|
|
height: 80px;
|
|
width: 100%;
|
|
}
|
|
|
|
.conpherence-header-pane .edit {
|
|
float: right;
|
|
margin: 16px 16px 0px 0px;
|
|
height: 50px;
|
|
width: 50px;
|
|
background-image: url('/rsrc/image/actions/edit.png');
|
|
}
|
|
|
|
.conpherence-header-pane .header-image {
|
|
position: absolute;
|
|
top: 15px;
|
|
left: 15px;
|
|
height: 50px;
|
|
width: 50px;
|
|
}
|
|
|
|
.conpherence-header-pane .title {
|
|
position: relative;
|
|
font-size: 16px;
|
|
font-weight: bold;
|
|
left: 77px;
|
|
top: 21px;
|
|
max-width: 80%;
|
|
overflow-x: auto;
|
|
}
|
|
|
|
.conpherence-header-pane .subtitle {
|
|
position: relative;
|
|
left: 77px;
|
|
top: 21px;
|
|
color: #bfbfbf;
|
|
max-width: 80%;
|
|
}
|
|
|
|
|