diff options
-rw-r--r-- | public/stylesheets/main.css | 31 |
1 files changed, 30 insertions, 1 deletions
diff --git a/public/stylesheets/main.css b/public/stylesheets/main.css index f99d8cb72..8af3358b1 100644 --- a/public/stylesheets/main.css +++ b/public/stylesheets/main.css @@ -1,4 +1,3 @@ - /*------------------------------------------------ global */ body { @@ -518,11 +517,26 @@ div.pagination { text-align: center; padding-top: 0.3em;} } + +/*-------------------- Content : form errors */ .errorExplanation { color: #FF0606; font-size: 1.4em; font-weight: bold; + border-color: #FF0C11; + border-width: 1px; + border-style: solid; + background-color: #ffeeee; +} +.fieldWithErrors +{ + display: block; + padding: 0.2em; + border-color: #FF0C11; + border-width: 1px; + border-style: solid; + background-color: #ffeeee; } /*---------------- content : request detail pages */ @@ -536,6 +550,21 @@ div.pagination { text-align: center; padding-top: 0.3em;} font-size: 0.9em; } + /* making the request preview look like the normal request view*/ + p.outgoing_message_preview + { + display: block; + width: 36em; + float: left; + clear: both; + padding: 1em; + margin: 0 0.5em 1em 0; + border-color: #5F5F5F; + border-width: 1px; + border-style: solid; + } + #preview_form p {clear: both;} + div.correspondence { width: 37em; |