summaryrefslogtreecommitdiff
path: root/paper/bootstrap.css
diff options
context:
space:
mode:
authorThomas Park <thomas@thomaspark.me>2015-01-29 03:51:56 -0500
committerThomas Park <thomas@thomaspark.me>2015-01-29 03:51:56 -0500
commit3436cc77d416ffc407f846206f93c7b0794723d9 (patch)
tree650a355fc16f2ddb8a1b30d5ea1d55e63c5602ed /paper/bootstrap.css
parent28bc2b5d3b1b4558f7bb180dbd702db93419bf73 (diff)
paper: pointer cursor for checkboxes and radio buttons
Diffstat (limited to 'paper/bootstrap.css')
-rw-r--r--paper/bootstrap.css10
1 files changed, 9 insertions, 1 deletions
diff --git a/paper/bootstrap.css b/paper/bootstrap.css
index fab55ff0..11e1de44 100644
--- a/paper/bootstrap.css
+++ b/paper/bootstrap.css
@@ -6968,6 +6968,7 @@ input[type="radio"]:after,
-webkit-transition: 240ms;
-o-transition: 240ms;
transition: 240ms;
+ cursor: pointer;
}
input[type="radio"]:before,
.radio input[type="radio"]:before,
@@ -7025,10 +7026,18 @@ input[type="checkbox"]:focus,
.checkbox-inline input[type="checkbox"]:focus {
outline: none;
}
+input[type="checkbox"]:before,
+.checkbox input[type="checkbox"]:before,
+.checkbox-inline input[type="checkbox"]:before,
input[type="checkbox"]:after,
.checkbox input[type="checkbox"]:after,
.checkbox-inline input[type="checkbox"]:after {
content: "";
+ cursor: pointer;
+}
+input[type="checkbox"]:after,
+.checkbox input[type="checkbox"]:after,
+.checkbox-inline input[type="checkbox"]:after {
display: block;
width: 18px;
height: 18px;
@@ -7043,7 +7052,6 @@ input[type="checkbox"]:after,
input[type="checkbox"]:checked:before,
.checkbox input[type="checkbox"]:checked:before,
.checkbox-inline input[type="checkbox"]:checked:before {
- content: "";
position: absolute;
top: 0;
left: 6px;