diff options
Diffstat (limited to 'web')
-rw-r--r-- | web/cobrands/fixmystreet/base.scss | 9 | ||||
-rw-r--r-- | web/cobrands/fixmystreet/images/cross-7px-7px.png | bin | 0 -> 158 bytes | |||
-rw-r--r-- | web/cobrands/fixmystreet/images/tick-10px-8px.png | bin | 0 -> 141 bytes | |||
-rw-r--r-- | web/cobrands/fixmystreet/images/wrong-location.png | bin | 0 -> 316 bytes | |||
-rw-r--r-- | web/cobrands/fixmystreet/layout.scss | 6 | ||||
-rw-r--r-- | web/cobrands/sass/_base.scss | 62 |
6 files changed, 77 insertions, 0 deletions
diff --git a/web/cobrands/fixmystreet/base.scss b/web/cobrands/fixmystreet/base.scss index c33f927f8..c849b72c9 100644 --- a/web/cobrands/fixmystreet/base.scss +++ b/web/cobrands/fixmystreet/base.scss @@ -21,6 +21,15 @@ #message_close { float: right; } } +body.mappage { + .change_location { + color: #666; + padding-left: 24px; + background: transparent url(images/wrong-location.png) 4px 50% no-repeat; + margin-top: -0.5em; + } +} + .confirmation-header { padding: 2em 1em; diff --git a/web/cobrands/fixmystreet/images/cross-7px-7px.png b/web/cobrands/fixmystreet/images/cross-7px-7px.png Binary files differnew file mode 100644 index 000000000..6c5f41171 --- /dev/null +++ b/web/cobrands/fixmystreet/images/cross-7px-7px.png diff --git a/web/cobrands/fixmystreet/images/tick-10px-8px.png b/web/cobrands/fixmystreet/images/tick-10px-8px.png Binary files differnew file mode 100644 index 000000000..09b036f61 --- /dev/null +++ b/web/cobrands/fixmystreet/images/tick-10px-8px.png diff --git a/web/cobrands/fixmystreet/images/wrong-location.png b/web/cobrands/fixmystreet/images/wrong-location.png Binary files differnew file mode 100644 index 000000000..8f775f710 --- /dev/null +++ b/web/cobrands/fixmystreet/images/wrong-location.png diff --git a/web/cobrands/fixmystreet/layout.scss b/web/cobrands/fixmystreet/layout.scss index 3f707f619..196545670 100644 --- a/web/cobrands/fixmystreet/layout.scss +++ b/web/cobrands/fixmystreet/layout.scss @@ -302,3 +302,9 @@ body.alertindex { display: none; } } + +#report-a-problem-main { + input[type=text], input[type=password], input[type=email], textarea { + max-width: 27em; + } +} diff --git a/web/cobrands/sass/_base.scss b/web/cobrands/sass/_base.scss index 4e3dea444..477bb27c1 100644 --- a/web/cobrands/sass/_base.scss +++ b/web/cobrands/sass/_base.scss @@ -356,6 +356,17 @@ label{ } } +#report-a-problem-main { + fieldset { + margin: 0; + } + + .form-box { + margin: 0 -1em 0.25em -1em; + padding: 1em; + } +} + .form-txt-submit-box { min-height:3em; input[type=password], @@ -1304,6 +1315,57 @@ a:hover.rap-notes-trigger { } +/* Reporting a problem bits */ + +label .muted { + color: #888; + font-weight: normal; +} + +.description_tips { + @include clearfix; + + h4 { + margin: 0.5em 0; + } + + ul { + width: 49%; + margin: 0; + float: left; + font-size: 14px; + line-height: 20px; + } + + li { + margin-bottom: 0; + padding-left: 20px; + list-style: none; + background: transparent url(images/tick-10px-8px.png) 4px 5px no-repeat; + } + + .do { + color: #1c8012; + } + + .dont { + float: right; + color: #881111; + + li { + background-image: url(images/cross-7px-7px.png); + background-position: 6px 6px; + } + } +} + +#problem_form { + label:first-child { + margin-top: 0; + } +} + + table.nicetable { width:100%; margin-bottom:2em; |