mirror of
https://we.phorge.it/source/phorge.git
synced 2025-03-03 07:59:15 +01:00
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
This commit is contained in:
parent
78eee0af48
commit
8aea5cda26
4 changed files with 6 additions and 6 deletions
|
@ -727,7 +727,7 @@ celerity_register_resource_map(array(
|
|||
),
|
||||
'conpherence-header-pane-css' =>
|
||||
array(
|
||||
'uri' => '/res/5a02bdbe/rsrc/css/application/conpherence/header-pane.css',
|
||||
'uri' => '/res/e50e02c8/rsrc/css/application/conpherence/header-pane.css',
|
||||
'type' => 'css',
|
||||
'requires' =>
|
||||
array(
|
||||
|
@ -736,7 +736,7 @@ celerity_register_resource_map(array(
|
|||
),
|
||||
'conpherence-menu-css' =>
|
||||
array(
|
||||
'uri' => '/res/b893e529/rsrc/css/application/conpherence/menu.css',
|
||||
'uri' => '/res/02b20456/rsrc/css/application/conpherence/menu.css',
|
||||
'type' => 'css',
|
||||
'requires' =>
|
||||
array(
|
||||
|
@ -745,7 +745,7 @@ celerity_register_resource_map(array(
|
|||
),
|
||||
'conpherence-message-pane-css' =>
|
||||
array(
|
||||
'uri' => '/res/32073bd5/rsrc/css/application/conpherence/message-pane.css',
|
||||
'uri' => '/res/799dc191/rsrc/css/application/conpherence/message-pane.css',
|
||||
'type' => 'css',
|
||||
'requires' =>
|
||||
array(
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
left: 62px;
|
||||
top: 6px;
|
||||
max-width: 80%;
|
||||
overflow-x: scroll;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.conpherence-header-pane .subtitle {
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
|
||||
.conpherence-menu .phabricator-menu-view {
|
||||
overflow-x: hidden;
|
||||
overflow-y: scroll;
|
||||
overflow-y: auto;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
right: 321px;
|
||||
top: 94px;
|
||||
bottom: 225px;
|
||||
overflow-y: scroll;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
.conpherence-message-pane .phabricator-form-view {
|
||||
|
|
Loading…
Add table
Reference in a new issue