diff options
-rw-r--r-- | assets/stylesheets/responsive/custom.scss | 31 |
1 files changed, 30 insertions, 1 deletions
diff --git a/assets/stylesheets/responsive/custom.scss b/assets/stylesheets/responsive/custom.scss index 4a7f10c..036ff30 100644 --- a/assets/stylesheets/responsive/custom.scss +++ b/assets/stylesheets/responsive/custom.scss @@ -588,7 +588,8 @@ dt { } .alaveteli-widget__people-count { - top: 28px; + top: 22px; + left: 197px; } .alaveteli-widget__count { @@ -599,3 +600,31 @@ dt { .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; + } + +} |