diff options
author | Seb Bacon <seb@mysociety.org> | 2012-01-09 13:11:36 +0000 |
---|---|---|
committer | Seb Bacon <seb@mysociety.org> | 2012-01-09 13:11:36 +0000 |
commit | c3a39907fcc879b56efc57bd0e7c180a241c7b6b (patch) | |
tree | be790ad2b1f1225433bcdd553b47ba3ac97593fc | |
parent | c544e7307d0c2d0befeaf84a7be4a16080de9389 (diff) |
Make the width of the request be the width of the parent element
Using a fixed width for the request would cause text overflow in
some places, such as the select_authority page.
-rw-r--r-- | public/stylesheets/main.css | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/public/stylesheets/main.css b/public/stylesheets/main.css index 1db05486b..471e1151b 100644 --- a/public/stylesheets/main.css +++ b/public/stylesheets/main.css @@ -1624,7 +1624,7 @@ div.controller_help h1 a,#logged_in_bar a,#logged_in_bar a:visited,#stepwise_mak } .request_left,#header_left { -width:625px; +width:100%; float:left; } @@ -1647,4 +1647,4 @@ text-decoration:underline; .request_listing a,.body_listing a,.user_listing a,.request_short_listing a,h2 a,.feed_link a { text-decoration:none; -}
\ No newline at end of file +} |