1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-10 17:02:41 +01:00
phorge-phorge/webroot/rsrc/css/application/conpherence/header-pane.css
epriestley 8aea5cda26 Use "overflow-[x/y]: auto;" instead of "overflow-[x/y]: scroll" in Conpherence
Summary: `scroll` always shows the scroll bar, `auto` shows it only if scrolling needs to happen. Fixes some weirdness in the blank/empty states in Safari, at least.

Test Plan: Looked at Conpherence in Safari.

Reviewers: btrahan, chad

Reviewed By: chad

CC: aran

Differential Revision: https://secure.phabricator.com/D4635
2013-01-24 18:33:51 -08:00

41 lines
631 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: auto;
}
.conpherence-header-pane .subtitle {
position: relative;
left: 62px;
top: 6px;
color: #bfbfbf;
max-width: 80%;
}