aboutsummaryrefslogtreecommitdiffstats
path: root/web
diff options
context:
space:
mode:
authorZarino Zappia <mail@zarino.co.uk>2014-07-22 15:53:13 +0100
committerMatthew Somerville <matthew@mysociety.org>2014-09-24 22:06:41 +0100
commita0a337412bde2e90e262ebc67419b0778c5ac1bb (patch)
treeb5fc41f2756938ad02995c16f58d352595051014 /web
parentbb220ec0f6f4b673deb43c1155c0d26200a20053 (diff)
Remove reporting sidebar from .com cobrand.
Diffstat (limited to 'web')
-rw-r--r--web/cobrands/fixmystreet/base.scss9
-rw-r--r--web/cobrands/fixmystreet/images/cross-7px-7px.pngbin0 -> 158 bytes
-rw-r--r--web/cobrands/fixmystreet/images/tick-10px-8px.pngbin0 -> 141 bytes
-rw-r--r--web/cobrands/fixmystreet/images/wrong-location.pngbin0 -> 316 bytes
-rw-r--r--web/cobrands/fixmystreet/layout.scss6
-rw-r--r--web/cobrands/sass/_base.scss62
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
new file mode 100644
index 000000000..6c5f41171
--- /dev/null
+++ b/web/cobrands/fixmystreet/images/cross-7px-7px.png
Binary files differ
diff --git a/web/cobrands/fixmystreet/images/tick-10px-8px.png b/web/cobrands/fixmystreet/images/tick-10px-8px.png
new file mode 100644
index 000000000..09b036f61
--- /dev/null
+++ b/web/cobrands/fixmystreet/images/tick-10px-8px.png
Binary files differ
diff --git a/web/cobrands/fixmystreet/images/wrong-location.png b/web/cobrands/fixmystreet/images/wrong-location.png
new file mode 100644
index 000000000..8f775f710
--- /dev/null
+++ b/web/cobrands/fixmystreet/images/wrong-location.png
Binary files differ
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;