From f3e1f4057d8f9122394a61d20ab780bc3270ad1c Mon Sep 17 00:00:00 2001 From: iCross Date: Thu, 30 May 2013 16:58:33 +0800 Subject: [PATCH] ask module update css --- app/assets/stylesheets/ask.css | 38 +++++++++++++++++++++++++++++++--- 1 file changed, 35 insertions(+), 3 deletions(-) diff --git a/app/assets/stylesheets/ask.css b/app/assets/stylesheets/ask.css index 0361ace4..89c43f7c 100644 --- a/app/assets/stylesheets/ask.css +++ b/app/assets/stylesheets/ask.css @@ -1,8 +1,40 @@ #acknowledgement { - font-size: 14px; - color: green; + display: none; + padding: 20px; + margin: -20px 0 30px 0; + background-color: #fff; + font-weight: bold; + font-size: 15px; + border: solid 2px #f0f0f0; +} +#aclnowledgement:after { + content: ''; + display: table; + width: table; + clear: both; } .ask-question { -} \ No newline at end of file +} + +/* AQ form */ +#new-ask-question { + background-color: #f8f8f8; + padding: 20px 0; +} +#new-ask-question .form-horizontal .control-label { + width: 100px; +} +#new-ask-question .form-horizontal .controls { + margin-left: 120px; +} +#new-ask-question .form-horizontal .controls textarea { + width: 80%; + resize: vertical; +} +#new-ask-question .form-horizontal .form-actions { + padding-left: 120px; + background-color: transparent; + border: none; +}