aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Wright <martin@mynameismartin.com>2015-08-21 09:12:29 +0100
committerMartin Wright <martin@mynameismartin.com>2015-08-21 09:12:29 +0100
commit8d68ea7c82940b2aac06ed8180bf07f3b7674498 (patch)
tree215cdb28cd1a2c49a4bddccc7ac771b3182c2fa0
parent31b192d14e09e45bccf01199b6293dc33ee06c1c (diff)
remove quarternary button style, do a one off style for button in hero
-rw-r--r--assets/stylesheets/responsive/custom.scss24
1 files changed, 9 insertions, 15 deletions
diff --git a/assets/stylesheets/responsive/custom.scss b/assets/stylesheets/responsive/custom.scss
index c059e2d..045085b 100644
--- a/assets/stylesheets/responsive/custom.scss
+++ b/assets/stylesheets/responsive/custom.scss
@@ -249,19 +249,6 @@ input.use-datepicker[type=text] {
}
}
-@mixin button-quarternary($args...) {
- @include button-base($args...);
- background-color: $color_orange;
- color: $color_white;
- font-weight: normal;
- &:hover,
- &:active,
- &:focus {
- background-color: darken($color_orange, 7.5%);
- }
-}
-
-
form input[type=submit], a.link_button_green, a.link_button_green_large {
@include button-primary;
text-decoration: none;
@@ -863,7 +850,7 @@ li:nth-child(3) {
.link_button_green {
@include button-secondary();
}
-}
+}
.authority__body__sidebar form input[type=submit] {
@include button-secondary();
@@ -893,7 +880,14 @@ li:nth-child(3) {
}
.new-request__make-new-requests {
- @include button-quarternary;
+ @include button-base;
+ background-color: $color_orange;
+ color: $color_white;
+ &:hover,
+ &:active,
+ &:focus {
+ background-color: darken($color_orange, 10%);
+ }
}
}