1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-12-29 00:40:57 +01:00

Fix height of DarkConsole request log

Summary: When I have displayed DarkConsole and write a comment it keeps scrolling because new AJAX requests pop up.

Test Plan: Displayed it, issued couple of AJAX requests.

Reviewers: btrahan, epriestley

Reviewed By: epriestley

CC: aran, Korvin

Maniphest Tasks: T1316

Differential Revision: https://secure.phabricator.com/D3605
This commit is contained in:
vrana 2012-10-03 13:24:34 -07:00
parent 422428a135
commit 6ee5370a95
3 changed files with 7 additions and 2 deletions

View file

@ -521,7 +521,7 @@ celerity_register_resource_map(array(
),
'aphront-dark-console-css' =>
array(
'uri' => '/res/e0f8a354/rsrc/css/aphront/dark-console.css',
'uri' => '/res/1adffcf3/rsrc/css/aphront/dark-console.css',
'type' => 'css',
'requires' =>
array(

View file

@ -202,7 +202,7 @@ final class DarkConsoleCore {
javelin_render_tag(
'div',
array(
'class' => 'dark-console-panel',
'class' => 'dark-console-panel dark-console-panel-RequestLog',
),
$request_table).
'</td>'.

View file

@ -157,6 +157,11 @@ a.dark-console-tab-selected {
border-bottom: 2px solid #000000;
}
.dark-console-panel-RequestLog {
max-height: 10em;
overflow: auto;
}
.dark-console-panel-request-log-separator {
background-color: #e8e8e8;
border-bottom: 1px solid #b7b7b7;