diff options
author | Matthew Somerville <matthew-github@dracos.co.uk> | 2016-05-31 08:58:54 +0100 |
---|---|---|
committer | Matthew Somerville <matthew-github@dracos.co.uk> | 2016-05-31 15:36:08 +0100 |
commit | 38e2918987677253b6a337f5287c2e29685b9c78 (patch) | |
tree | 730f88f1cdef16d2e3c95cd6b95972277cb6b158 /web/cobrands/stevenage/layout.scss | |
parent | a2b2bdd3813ad60c97269147efb8f0353becb66c (diff) |
Improve CSS compilation.
Move to using libsass via CSS::Sass, and stop using compass, supplying
any used mixins directly. This removes the need for any ruby/gem based
installation, and greatly increases the speed of compilation. make_css
is also enhanced, bringing in the file monitoring previously done by a
separate script and improving its dependency monitoring.
Diffstat (limited to 'web/cobrands/stevenage/layout.scss')
-rw-r--r-- | web/cobrands/stevenage/layout.scss | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/web/cobrands/stevenage/layout.scss b/web/cobrands/stevenage/layout.scss index 17ef6a4c3..48018e478 100644 --- a/web/cobrands/stevenage/layout.scss +++ b/web/cobrands/stevenage/layout.scss @@ -14,7 +14,7 @@ padding-top: 0.75em; padding-bottom: 0.25em; background-color: #6b6969; - @include background(linear-gradient(#6b6969, #555454)); + @include linear-gradient(#6b6969, #555454); } } @@ -99,7 +99,7 @@ body.mappage { width: 29em; padding-top: 0.15em; z-index: 0; - @include background(linear-gradient(#6b6969, #555454)); + @include linear-gradient(#6b6969, #555454); } } } @@ -227,7 +227,7 @@ body.frontpage { .nav-wrapper { .nav-wrapper-2 { - @include background(linear-gradient(#222, #555 30%, #555 60%, #222)); + @include linear-gradient(#222, #555 30%, #555 60%, #222); } } // f432a72d - moved sticky sidebars down a bit to account for the larger header |