aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeLines
* Add responsive print stylesLouise Crow2014-04-24-0/+47
|
* Only offset middle strip in larger layoutsLouise Crow2014-04-24-1/+3
|
* Padding for menu and logo in smaller layoutsLouise Crow2014-04-24-2/+6
|
* Tweak menu breakpointLouise Crow2014-04-24-1/+1
| | | | Position mobile layout to kick in before menu items overlap each other.
* simplified login screen designMartin Wright2014-04-24-14/+7
|
* tweaked position of menu buttonMartin Wright2014-04-24-0/+1
|
* removed styles from profile pages, simplified and normalised designMartin Wright2014-04-24-7/+1
|
* tweaks and simplification of search resultsMartin Wright2014-04-24-4/+3
|
* removed some unneeded styles from footerMartin Wright2014-04-24-2/+1
|
* styled blog post links, removed line-height (not needed)Martin Wright2014-04-24-4/+8
|
* strip-back and style view requests pageMartin Wright2014-04-24-18/+14
|
* corrected layout bug on view request oageMartin Wright2014-04-24-3/+0
|
* tweaks and simplification of global stylesMartin Wright2014-04-24-15/+13
|
* simplified and stripped-back layout and styles for requestsMartin Wright2014-04-24-31/+26
|
* stripped back and simplified public body layout and stylesMartin Wright2014-04-24-22/+11
|
* normalised and simplified designs of listsMartin Wright2014-04-24-98/+67
|
* added global para styleMartin Wright2014-04-24-0/+5
|
* navigation now has borderMartin Wright2014-04-24-0/+3
|
* remove stylistic codeMartin Wright2014-04-24-3/+1
|
* normalise styles of view and search pageMartin Wright2014-04-24-16/+4
|
* refactored and simplified the navigation layoutMartin Wright2014-04-24-63/+43
|
* sensible default styling for definition listsMartin Wright2014-04-24-0/+16
|
* set up front page with sensible defaultsMartin Wright2014-04-24-55/+13
|
* set up sensible global CSS stylesMartin Wright2014-04-24-30/+52
|
* font-weight now bold, 700 was hangover from web fonts which are no londer usedMartin Wright2014-04-24-1/+1
|
* removed border radius, button will now appear as native styleMartin Wright2014-04-24-5/+0
|
* remove pseudo-centring from form buttonMartin Wright2014-04-24-5/+0
|
* Changes to locale switcher on mobileMartin Wright2014-04-24-27/+17
| | | | | Now part of global navigation, sits within the main menu on mobile Removed un-needed HTML and CSS
* Use responsive stylesheets based on feature flag.Louise Crow2014-04-24-26/+1864
|
* Add foundation to the sass load pathsLouise Crow2014-04-24-0/+5
| | | | So that we can import it from a subdirectory
* Add feature flag for responsive stylingLouise Crow2014-04-24-4/+17
| | | | Sets viewport, uses responsive header and footer templates.
* Add alternative header and footer templates.Louise Crow2014-04-24-0/+80
| | | | These make markup changes required by the responsive styling.
* Use paragraph here to make styling easierLouise Crow2014-04-24-2/+2
|
* Make header_left an id, not a class.Louise Crow2014-04-24-1/+1
| | | | | I think this was a mistake, it seems to be an id in the other places it is used.
* Remove extra whitespaceLouise Crow2014-04-24-2/+2
|
* Add wrapper div to make styling easier.Louise Crow2014-04-24-17/+21
|
* Add a div around the main content.Louise Crow2014-04-24-15/+16
| | | | Makes it easier to style.
* Only display result_section divs when results exists.Louise Crow2014-04-24-14/+18
| | | | Should make the styling more straightforward.
* Order page elements consistently with other pages.Louise Crow2014-04-22-16/+15
| | | | | | | 'right_column' appears after content it will be to the right hand side of on other pages. It doesn't matter to the current stylesheet, which floats it anyway, but is easier to handle in responsive css if the markup is consistent.
* Remove the quote from a comment in request correspondence.Louise Crow2014-04-22-2/+1
| | | | | It gets hidden by the current stylesheet, so easier and more efficient not to render it at all.
* Add foundation-rails gemLouise Crow2014-04-22-0/+5
|
* Merge branch 'issues/337-attachment-title' into rails-3-developGareth Rees2014-04-14-88/+1027
|\
| * Update gubbins to call AttachmentToHTMLGareth Rees2014-04-07-14/+10
| |
| * Minor change to FoiAttachment#body_as_htmlGareth Rees2014-04-07-2/+1
| | | | | | | | AttachmentToHTML#to_html already returns the raw html now
| * Dynamically inject AttachmentToHTML::View contentGareth Rees2014-04-07-2/+26
| |
| * Remove redundant AttachmentToHTML::HTMLGareth Rees2014-04-07-39/+0
| |
| * Update AttachmentToHTML for new View classGareth Rees2014-04-07-12/+31
| |
| * Simpler AttachmentToHTML::Adapters::CouldNotConvert interfaceGareth Rees2014-04-07-69/+24
| |
| * Simpler AttachmentToHTML::Adapters::GoogleDocsViewer interfaceGareth Rees2014-04-07-72/+23
| |
| * Simpler AttachmentToHTML::Adapters::RTF interfaceGareth Rees2014-04-07-106/+38
| | | | | | | | | | | | | | | | | | | | | | TODO: We really should be testing the full output of RTF#body, but we currently want to remain consistent with Adapters::PDF as many methods are shared between the Adapters. A more correct spec might be: expected = %Q(<font size=3><font color="#000000">thisisthebody</font></font>) adapter.body.should == expected