mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-24 22:40:55 +01:00
Shorten text area in conpherence.
Summary: I'm having a hard time on a 15" display reading the thread due to the height of the text box. I shortened it and it still allows you to wax and wane for quite a while. Test Plan: reload page, see shortened bar. Check FF and Chrome. Reviewers: epriestley, btrahan Reviewed By: btrahan CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D4669
This commit is contained in:
parent
3a4e0045be
commit
ab80d52290
2 changed files with 10 additions and 5 deletions
|
@ -752,7 +752,7 @@ celerity_register_resource_map(array(
|
|||
),
|
||||
'conpherence-message-pane-css' =>
|
||||
array(
|
||||
'uri' => '/res/cbae8840/rsrc/css/application/conpherence/message-pane.css',
|
||||
'uri' => '/res/88b1927c/rsrc/css/application/conpherence/message-pane.css',
|
||||
'type' => 'css',
|
||||
'requires' =>
|
||||
array(
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
left: 320px;
|
||||
right: 321px;
|
||||
top: 124px;
|
||||
bottom: 225px;
|
||||
bottom: 142px;
|
||||
overflow-y: auto;
|
||||
box-shadow: inset 1px 5px 5px rgba(0,0,0,0.1);
|
||||
}
|
||||
|
@ -24,7 +24,7 @@
|
|||
.conpherence-message-pane .phabricator-form-view {
|
||||
border-width: 0;
|
||||
background: none;
|
||||
height: 224px;
|
||||
height: 143px;
|
||||
padding: 0;
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
|
@ -81,14 +81,19 @@
|
|||
.conpherence-message-pane .remarkup-assist-bar {
|
||||
border-width: 1px 0 0;
|
||||
border-color: #CCC;
|
||||
border-bottom: transparent;
|
||||
}
|
||||
|
||||
.conpherence-message-pane .remarkup-assist-textarea {
|
||||
border-width: 1px 0 1px 0;
|
||||
border-color: #CCC;
|
||||
border-width: 0 0 1px 0;
|
||||
border-color: #e7e7e7;
|
||||
}
|
||||
|
||||
.conpherence-message-pane .remarkup-assist-textarea:focus {
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.conpherence-message-pane .aphront-form-input textarea {
|
||||
padding: 6px;
|
||||
height: 6em;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue