diff options
author | Louise Crow <louise.crow@gmail.com> | 2015-03-10 12:20:29 +0000 |
---|---|---|
committer | Gareth Rees <gareth@mysociety.org> | 2015-07-07 15:17:04 +0100 |
commit | 6ec5f3957a8cfcc4b29aaa360b27862225fb62c2 (patch) | |
tree | 843d12a646c76b6de0c2b7c7c051378bad64ea85 | |
parent | ae75da8c390bd1609af041fa76d724f423549b35 (diff) |
Widget styles and image from @martinwright
-rw-r--r-- | assets/images/widget-base.png | bin | 0 -> 4635 bytes | |||
-rw-r--r-- | assets/stylesheets/responsive/custom.scss | 48 |
2 files changed, 48 insertions, 0 deletions
diff --git a/assets/images/widget-base.png b/assets/images/widget-base.png Binary files differnew file mode 100644 index 0000000..85a0eff --- /dev/null +++ b/assets/images/widget-base.png diff --git a/assets/stylesheets/responsive/custom.scss b/assets/stylesheets/responsive/custom.scss index ab2c6e4..036ff30 100644 --- a/assets/stylesheets/responsive/custom.scss +++ b/assets/stylesheets/responsive/custom.scss @@ -580,3 +580,51 @@ dt { padding: 3px; font-size: 1.1rem; } + +/* Widget */ +.alaveteli-widget { + background-color: $body-bg; + color: $heading-color; +} + +.alaveteli-widget__people-count { + top: 22px; + left: 197px; +} + +.alaveteli-widget__count { + font-weight: bold; + color: $button-bg; +} + +.alaveteli-widget__button { + top: 167px; +} + +.alaveteli-widget__status { + width: 200px; + text-transform: none; + + &.successful, + &.partially_successful { + color: $status-success; + } + + &.requires_admin, + &.waiting_response_very_overdue, + &.not_held, + &.rejected { + color: $status-failure; + } + + &.waiting_response, + &.waiting_response_overdue, + &.user_withdrawn, + &.waiting_clarification, + &.gone_postal, + &.internal_review, + &.attention_requested { + color: $status-pending; + } + +} |