From ab80d522902abe65df0d6a3a43068c97f41bcefa Mon Sep 17 00:00:00 2001 From: Chad Little Date: Sat, 26 Jan 2013 09:59:21 -0800 Subject: [PATCH] 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 --- src/__celerity_resource_map__.php | 2 +- .../css/application/conpherence/message-pane.css | 13 +++++++++---- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/src/__celerity_resource_map__.php b/src/__celerity_resource_map__.php index 3493867d34..f54e0d7761 100644 --- a/src/__celerity_resource_map__.php +++ b/src/__celerity_resource_map__.php @@ -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( diff --git a/webroot/rsrc/css/application/conpherence/message-pane.css b/webroot/rsrc/css/application/conpherence/message-pane.css index 06153875e3..e714b9f37f 100644 --- a/webroot/rsrc/css/application/conpherence/message-pane.css +++ b/webroot/rsrc/css/application/conpherence/message-pane.css @@ -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; +}