summaryrefslogtreecommitdiff
path: root/paper/_bootswatch.scss
diff options
context:
space:
mode:
authorThomas Park <thomas@thomaspark.co>2015-08-10 18:55:03 -0400
committerThomas Park <thomas@thomaspark.co>2015-08-10 18:55:03 -0400
commit15748399fcd2d06b58206cfcb4b7560cf7243637 (patch)
tree81f5ea0cc7b666b6e4c0007155aae00ff68e146f /paper/_bootswatch.scss
parentc9446715302df538fc2914bf27fd09e649066e18 (diff)
paper: fix checkbox/radio alignment in firefox, closes #497
Diffstat (limited to 'paper/_bootswatch.scss')
-rw-r--r--paper/_bootswatch.scss11
1 files changed, 6 insertions, 5 deletions
diff --git a/paper/_bootswatch.scss b/paper/_bootswatch.scss
index 021cac4f..b5ee2b67 100644
--- a/paper/_bootswatch.scss
+++ b/paper/_bootswatch.scss
@@ -247,9 +247,9 @@ input[type="radio"],
.radio input[type="radio"],
.radio-inline input[type="radio"] {
position: relative;
- margin-top: 5px;
+ margin-top: 6px;
margin-right: 4px;
- vertical-align: -4px;
+ vertical-align: top;
border: none;
background-color: transparent;
-webkit-appearance: none;
@@ -266,7 +266,6 @@ input[type="radio"],
display: block;
width: 18px;
height: 18px;
- margin-top: -3px;
border-radius: 50%;
@include transition(240ms);
}
@@ -274,12 +273,14 @@ input[type="radio"],
&:before {
position: absolute;
left: 0;
- top: 0;
+ top: -3px;
background-color: $brand-primary;
@include scale(0);
}
&:after {
+ position: relative;
+ top: -3px;
border: 2px solid $gray;
}
@@ -305,8 +306,8 @@ input[type="checkbox"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
position: relative;
- vertical-align: -4px;
border: none;
+ margin-bottom: -4px;
-webkit-appearance: none;
appearance: none;
cursor: pointer;