mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
fb38e1049d
Summary: Updates Conpherence CSS for mostly responsive design. Notably: - Clipped nav 20px - Clipped widgets 40px - Tested tablet and phone layouts - Phone layout mostly done. - Bouncy webkit scroll areas. Still more work to do, but I think it should be easy now for Bob to lay in the rest of mobile. It probably doesn't need to render the menu and conversation in the widget area, as I think we can now credibly position: fix it in mobile. Not completely sold on tablet layout, but it's still better than current. Test Plan: Tested layouts on iPhone and iPad simulator. Reviewers: epriestley, btrahan Reviewed By: epriestley CC: aran, Korvin Maniphest Tasks: T2421 Differential Revision: https://secure.phabricator.com/D5442
106 lines
1.9 KiB
CSS
106 lines
1.9 KiB
CSS
/**
|
|
* @provides conpherence-header-pane-css
|
|
*/
|
|
|
|
#conpherence-main-pane {
|
|
position: relative;
|
|
}
|
|
|
|
.conpherence-header-pane {
|
|
border-bottom: 1px solid #ccc;
|
|
height: 80px;
|
|
width: 100%;
|
|
}
|
|
|
|
.device .conpherence-header-pane {
|
|
position: fixed;
|
|
top: 44px;
|
|
}
|
|
|
|
.device-phone .conpherence-header-pane {
|
|
display: none;
|
|
}
|
|
|
|
.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 .custom-header-image {
|
|
position: absolute;
|
|
top: 0px;
|
|
left: 0px;
|
|
height: 80px;
|
|
width: 120px;
|
|
}
|
|
|
|
.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 .custom-title {
|
|
position: relative;
|
|
font-size: 16px;
|
|
font-weight: bold;
|
|
left: 132px;
|
|
top: 21px;
|
|
max-width: 80%;
|
|
overflow-x: auto;
|
|
}
|
|
|
|
.conpherence-header-pane .subtitle {
|
|
position: relative;
|
|
left: 77px;
|
|
top: 21px;
|
|
color: #bfbfbf;
|
|
max-width: 80%;
|
|
}
|
|
|
|
.conpherence-header-pane .custom-subtitle {
|
|
position: relative;
|
|
left: 132px;
|
|
top: 21px;
|
|
color: #bfbfbf;
|
|
max-width: 80%;
|
|
}
|
|
|
|
.conpherence-header-pane .upload-photo {
|
|
display: none;
|
|
}
|
|
|
|
.conpherence-header-upload-photo .upload-photo {
|
|
display: block;
|
|
width: 100%;
|
|
padding: 32px;
|
|
font-size: 16px;
|
|
background: #99ff99;
|
|
border-color: #669966;
|
|
}
|
|
|
|
.conpherence-header-upload-photo .edit,
|
|
.conpherence-header-upload-photo .header-image,
|
|
.conpherence-header-upload-photo .custom-header-image,
|
|
.conpherence-header-upload-photo .title,
|
|
.conpherence-header-upload-photo .custom-title,
|
|
.conpherence-header-upload-photo .subtitle,
|
|
.conpherence-header-upload-photo .custom-subtitle {
|
|
display: none;
|
|
}
|
|
|