diff options
author | Dave Whiteland <dave@mysociety.org> | 2012-04-23 13:17:51 +0100 |
---|---|---|
committer | Dave Whiteland <dave@mysociety.org> | 2012-04-23 13:17:51 +0100 |
commit | 0108ba85982b57566fe5291f8be009384eee2b3a (patch) | |
tree | ad4ec9c409bbbab45947ff7e2bb68c00d4cfef15 | |
parent | a6c362f9877812095aecc0b57729c793e16005ed (diff) |
fixed deprecation warning (commas in shadow-box argument list) that was breaking compass for me even if everyone else was cool with it
-rw-r--r-- | web/cobrands/fixmystreet/_layout.scss | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web/cobrands/fixmystreet/_layout.scss b/web/cobrands/fixmystreet/_layout.scss index 687b3dbcc..eb8daa562 100644 --- a/web/cobrands/fixmystreet/_layout.scss +++ b/web/cobrands/fixmystreet/_layout.scss @@ -752,7 +752,7 @@ textarea.form-error { .no-js #report-a-problem-sidebar { position: static; width: auto; - @include box-shadow(rgba(0, 0, 0, 0), 0, 0, 0); + @include box-shadow(rgba(0, 0, 0, 0) 0 0 0); .sidebar-tips, .sidebar-notes { font-size:1em; @@ -1033,7 +1033,7 @@ body.frontpage { .general-sidebar-notes { position: static; width: auto; - @include box-shadow(rgba(0, 0, 0, 0), 0, 0, 0); + @include box-shadow(rgba(0, 0, 0, 0) 0 0 0); .sidebar-tips, .sidebar-notes { font-size:1em; |