1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-12-19 20:10:55 +01:00

Fix Conpherence scroll behavior in Firefox/Chrome

Summary: Ref T7825.

Test Plan:
  - In Firefox, Chrome, and Safari:
    - With a mouse and no mouse:
      - Sent messages in Conpherence.
      - Scrolled up and down in a thread.

Reviewers: chad, btrahan

Reviewed By: btrahan

Subscribers: epriestley

Maniphest Tasks: T7825

Differential Revision: https://secure.phabricator.com/D12416
This commit is contained in:
epriestley 2015-04-14 14:56:35 -07:00
parent 48b6120ee2
commit e9c7310e83
2 changed files with 8 additions and 2 deletions

View file

@ -45,7 +45,7 @@ return array(
'rsrc/css/application/config/unhandled-exception.css' => '37d4f9a2',
'rsrc/css/application/conpherence/durable-column.css' => '51c1e074',
'rsrc/css/application/conpherence/menu.css' => 'f389e048',
'rsrc/css/application/conpherence/message-pane.css' => '00ceda0c',
'rsrc/css/application/conpherence/message-pane.css' => '75c23c74',
'rsrc/css/application/conpherence/notification.css' => '72178795',
'rsrc/css/application/conpherence/transaction.css' => '25138b7f',
'rsrc/css/application/conpherence/update.css' => '1099a660',
@ -517,7 +517,7 @@ return array(
'config-welcome-css' => '6abd79be',
'conpherence-durable-column-view' => '51c1e074',
'conpherence-menu-css' => 'f389e048',
'conpherence-message-pane-css' => '00ceda0c',
'conpherence-message-pane-css' => '75c23c74',
'conpherence-notification-css' => '72178795',
'conpherence-thread-manager' => '0a5192c4',
'conpherence-transaction-css' => '25138b7f',

View file

@ -56,9 +56,15 @@
right: 241px;
top: 76px;
bottom: 172px;
overflow-x: hidden;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
}
.conpherence-messages.jx-scrollbar-frame {
overflow-y: hidden;
}
.conpherence-messages .jx-scrollbar-content > .conpherence-edited:first-child {
padding-top: 20px;
}