1
0
Fork 0
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:
epriestley 2013-01-24 18:33:51 -08:00
parent 78eee0af48
commit 8aea5cda26
4 changed files with 6 additions and 6 deletions

View file

@ -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(

View file

@ -27,7 +27,7 @@
left: 62px;
top: 6px;
max-width: 80%;
overflow-x: scroll;
overflow-x: auto;
}
.conpherence-header-pane .subtitle {

View file

@ -27,7 +27,7 @@
.conpherence-menu .phabricator-menu-view {
overflow-x: hidden;
overflow-y: scroll;
overflow-y: auto;
margin-bottom: 0;
}

View file

@ -17,7 +17,7 @@
right: 321px;
top: 94px;
bottom: 225px;
overflow-y: scroll;
overflow-y: auto;
}
.conpherence-message-pane .phabricator-form-view {