mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
8aea5cda26
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
41 lines
631 B
CSS
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%;
|
|
}
|
|
|
|
|