Browse code

Fix some minor styling issues

Benjamin Roth authored on25/02/2016 14:11:22
Showing1 changed files
... ...
@@ -47,6 +47,7 @@ select {
47 47
   line-height: 150%;
48 48
   outline: none;
49 49
   font-size: $font-size-field;
50
+  font-family: inherit;
50 51
 }
51 52
 
52 53
 /**
... ...
@@ -153,11 +154,17 @@ input[type="submit"], .button, button {
153 154
   @include transition(background .15s linear);
154 155
   @include box-sizing(border-box);
155 156
 
156
-  &:hover {
157
+  a& {
158
+    line-height: $button-height;
159
+  }
160
+
161
+  &:hover,
162
+  a&:hover {
157 163
     text-decoration: none;
158 164
   }
159 165
 
160
-  &:active {
166
+  &:active,
167
+  a&:active {
161 168
     background-color: $button-background-color-hl;
162 169
     border-color: $button-border-color-hl;
163 170
   }