mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-31 18:01:00 +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:
parent
422428a135
commit
6ee5370a95
3 changed files with 7 additions and 2 deletions
|
@ -521,7 +521,7 @@ celerity_register_resource_map(array(
|
||||||
),
|
),
|
||||||
'aphront-dark-console-css' =>
|
'aphront-dark-console-css' =>
|
||||||
array(
|
array(
|
||||||
'uri' => '/res/e0f8a354/rsrc/css/aphront/dark-console.css',
|
'uri' => '/res/1adffcf3/rsrc/css/aphront/dark-console.css',
|
||||||
'type' => 'css',
|
'type' => 'css',
|
||||||
'requires' =>
|
'requires' =>
|
||||||
array(
|
array(
|
||||||
|
|
|
@ -202,7 +202,7 @@ final class DarkConsoleCore {
|
||||||
javelin_render_tag(
|
javelin_render_tag(
|
||||||
'div',
|
'div',
|
||||||
array(
|
array(
|
||||||
'class' => 'dark-console-panel',
|
'class' => 'dark-console-panel dark-console-panel-RequestLog',
|
||||||
),
|
),
|
||||||
$request_table).
|
$request_table).
|
||||||
'</td>'.
|
'</td>'.
|
||||||
|
|
|
@ -157,6 +157,11 @@ a.dark-console-tab-selected {
|
||||||
border-bottom: 2px solid #000000;
|
border-bottom: 2px solid #000000;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.dark-console-panel-RequestLog {
|
||||||
|
max-height: 10em;
|
||||||
|
overflow: auto;
|
||||||
|
}
|
||||||
|
|
||||||
.dark-console-panel-request-log-separator {
|
.dark-console-panel-request-log-separator {
|
||||||
background-color: #e8e8e8;
|
background-color: #e8e8e8;
|
||||||
border-bottom: 1px solid #b7b7b7;
|
border-bottom: 1px solid #b7b7b7;
|
||||||
|
|
Loading…
Reference in a new issue