diff options
author | Louise Crow <louise.crow@gmail.com> | 2015-03-02 16:27:55 +0000 |
---|---|---|
committer | Louise Crow <louise.crow@gmail.com> | 2015-03-02 16:27:55 +0000 |
commit | bb54b64796772c1bc8266f01d2e93d3f07bda39d (patch) | |
tree | c369f3e82348b4bc255fb392491710382dddf5d5 /app/assets/stylesheets/responsive/_request_style.scss | |
parent | 6096ba531e76fe0edb1e03527514f47170a50ea6 (diff) | |
parent | 56e7fe278e84200324e2ec2a1be72c3bd998c5ff (diff) |
Merge branch 'issues/1526-redesign-make-request-process' into rails-3-develop
Diffstat (limited to 'app/assets/stylesheets/responsive/_request_style.scss')
-rw-r--r-- | app/assets/stylesheets/responsive/_request_style.scss | 21 |
1 files changed, 19 insertions, 2 deletions
diff --git a/app/assets/stylesheets/responsive/_request_style.scss b/app/assets/stylesheets/responsive/_request_style.scss index c33688793..e6f36674a 100644 --- a/app/assets/stylesheets/responsive/_request_style.scss +++ b/app/assets/stylesheets/responsive/_request_style.scss @@ -3,7 +3,10 @@ div.correspondence { border: 1px solid #ccc; margin: 0 0 1em; - padding: 0.5em 1em 0 0.5em; + padding: 1em; + @include respond-min( $main_menu-mobile_menu_cutoff ){ + padding: 1.5em; + } h2 { text-align:right; @@ -11,6 +14,20 @@ div.correspondence { } } +.preview_subject, +.preview_to { + font-weight: bold; + strong { + font-weight: normal; + display: block; + color: #777; + } +} + +.preview_subject { + margin-bottom: 1.5em; +} + div.comment_in_request { border: 1px dotted #ccc; margin:0 0 1em 3em; @@ -30,7 +47,7 @@ div.comment_in_request { margin-bottom: 1em; } -.correspondence_text,.comment_in_request_text { +.comment_in_request_text { margin:0 1.2em 0 0.9em; } |