mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-25 15:00:58 +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' =>
|
'conpherence-message-pane-css' =>
|
||||||
array(
|
array(
|
||||||
'uri' => '/res/cbae8840/rsrc/css/application/conpherence/message-pane.css',
|
'uri' => '/res/88b1927c/rsrc/css/application/conpherence/message-pane.css',
|
||||||
'type' => 'css',
|
'type' => 'css',
|
||||||
'requires' =>
|
'requires' =>
|
||||||
array(
|
array(
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
left: 320px;
|
left: 320px;
|
||||||
right: 321px;
|
right: 321px;
|
||||||
top: 124px;
|
top: 124px;
|
||||||
bottom: 225px;
|
bottom: 142px;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
box-shadow: inset 1px 5px 5px rgba(0,0,0,0.1);
|
box-shadow: inset 1px 5px 5px rgba(0,0,0,0.1);
|
||||||
}
|
}
|
||||||
|
@ -24,7 +24,7 @@
|
||||||
.conpherence-message-pane .phabricator-form-view {
|
.conpherence-message-pane .phabricator-form-view {
|
||||||
border-width: 0;
|
border-width: 0;
|
||||||
background: none;
|
background: none;
|
||||||
height: 224px;
|
height: 143px;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
position: fixed;
|
position: fixed;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
|
@ -81,14 +81,19 @@
|
||||||
.conpherence-message-pane .remarkup-assist-bar {
|
.conpherence-message-pane .remarkup-assist-bar {
|
||||||
border-width: 1px 0 0;
|
border-width: 1px 0 0;
|
||||||
border-color: #CCC;
|
border-color: #CCC;
|
||||||
|
border-bottom: transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
.conpherence-message-pane .remarkup-assist-textarea {
|
.conpherence-message-pane .remarkup-assist-textarea {
|
||||||
border-width: 1px 0 1px 0;
|
border-width: 0 0 1px 0;
|
||||||
border-color: #CCC;
|
border-color: #e7e7e7;
|
||||||
}
|
}
|
||||||
|
|
||||||
.conpherence-message-pane .remarkup-assist-textarea:focus {
|
.conpherence-message-pane .remarkup-assist-textarea:focus {
|
||||||
outline: none;
|
outline: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.conpherence-message-pane .aphront-form-input textarea {
|
||||||
|
padding: 6px;
|
||||||
|
height: 6em;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue