Skip to content

Commit

Permalink
fix pointer cursor on inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
shoudaos committed Mar 21, 2016
1 parent fc7e364 commit f1f5c1b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions awesome-bootstrap-checkbox.css
Expand Up @@ -31,6 +31,7 @@
color: #55595c; }
.abc-checkbox input[type="checkbox"],
.abc-checkbox input[type="radio"] {
cursor: pointer;
opacity: 0;
z-index: 1; }
.abc-checkbox input[type="checkbox"]:focus + label::before,
Expand Down Expand Up @@ -186,6 +187,7 @@
transform: scale(0, 0);
transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33); }
.abc-radio input[type="radio"] {
cursor: pointer;
opacity: 0;
z-index: 1; }
.abc-radio input[type="radio"]:focus + label::before {
Expand Down
2 changes: 2 additions & 0 deletions awesome-bootstrap-checkbox.scss
Expand Up @@ -74,6 +74,7 @@ $check-icon: $fa-var-check !default;

input[type="checkbox"],
input[type="radio"] {
cursor: pointer;
opacity: 0;
z-index: 1;

Expand Down Expand Up @@ -194,6 +195,7 @@ $check-icon: $fa-var-check !default;
}

input[type="radio"]{
cursor: pointer;
opacity: 0;
z-index: 1;

Expand Down
2 changes: 2 additions & 0 deletions demo/build.css
Expand Up @@ -31,6 +31,7 @@
color: #55595c; }
.abc-checkbox input[type="checkbox"],
.abc-checkbox input[type="radio"] {
cursor: pointer;
opacity: 0;
z-index: 1; }
.abc-checkbox input[type="checkbox"]:focus + label::before,
Expand Down Expand Up @@ -186,6 +187,7 @@
transform: scale(0, 0);
transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33); }
.abc-radio input[type="radio"] {
cursor: pointer;
opacity: 0;
z-index: 1; }
.abc-radio input[type="radio"]:focus + label::before {
Expand Down

0 comments on commit f1f5c1b

Please sign in to comment.