mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-22 06:42:42 +01:00
Allow the haunted comment panel ("Z") to take up more vertical room
Summary: Ref T13151. See PHI685. When you haunt the panel, we only let it take up part of the screen. Let it take up slightly more of the screen so that it's more likely to fit completely on-screen without needing to scroll. The behavior when it does scroll is fine (you get a scrollbar if your OS/browser is set up to show them) so this is a bit trivial/silly, but seems fine and doesn't have a big JS maintenance cost or anything. Test Plan: Pressed "Z", resized my window to a weird tiny useless size, got slightly better (I guess) behavior. Reviewers: amckinley Reviewed By: amckinley Maniphest Tasks: T13151 Differential Revision: https://secure.phabricator.com/D19480
This commit is contained in:
parent
13dd3014a7
commit
4e84d4d458
2 changed files with 4 additions and 4 deletions
|
@ -9,7 +9,7 @@ return array(
|
|||
'names' => array(
|
||||
'conpherence.pkg.css' => 'e68cf1fa',
|
||||
'conpherence.pkg.js' => '15191c65',
|
||||
'core.pkg.css' => '8e3d1fb7',
|
||||
'core.pkg.css' => 'e5233bff',
|
||||
'core.pkg.js' => '2058ec09',
|
||||
'differential.pkg.css' => '06dc617c',
|
||||
'differential.pkg.js' => 'ef19e026',
|
||||
|
@ -111,7 +111,7 @@ return array(
|
|||
'rsrc/css/application/tokens/tokens.css' => '3d0f239e',
|
||||
'rsrc/css/application/uiexample/example.css' => '528b19de',
|
||||
'rsrc/css/core/core.css' => '62fa3ace',
|
||||
'rsrc/css/core/remarkup.css' => 'bff43c81',
|
||||
'rsrc/css/core/remarkup.css' => 'b182076e',
|
||||
'rsrc/css/core/syntax.css' => 'e9c95dd4',
|
||||
'rsrc/css/core/z-index.css' => '9d8f7c4b',
|
||||
'rsrc/css/diviner/diviner-shared.css' => '896f1d43',
|
||||
|
@ -772,7 +772,7 @@ return array(
|
|||
'phabricator-object-selector-css' => '85ee8ce6',
|
||||
'phabricator-phtize' => 'd254d646',
|
||||
'phabricator-prefab' => '77b0ae28',
|
||||
'phabricator-remarkup-css' => 'bff43c81',
|
||||
'phabricator-remarkup-css' => 'b182076e',
|
||||
'phabricator-search-results-css' => '505dd8cf',
|
||||
'phabricator-shaped-request' => '7cbe244b',
|
||||
'phabricator-slowvote-css' => 'a94b7230',
|
||||
|
|
|
@ -763,7 +763,7 @@ var.remarkup-assist-textarea {
|
|||
margin: 0;
|
||||
|
||||
overflow: auto;
|
||||
max-height: 40vh;
|
||||
max-height: 60vh;
|
||||
}
|
||||
|
||||
.remarkup-assist-pinned-spacer {
|
||||
|
|
Loading…
Reference in a new issue