Skip to content

Commit f1f5c1b

Browse files
committed
fix pointer cursor on inputs
1 parent fc7e364 commit f1f5c1b

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

awesome-bootstrap-checkbox.css

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
color: #55595c; }
3232
.abc-checkbox input[type="checkbox"],
3333
.abc-checkbox input[type="radio"] {
34+
cursor: pointer;
3435
opacity: 0;
3536
z-index: 1; }
3637
.abc-checkbox input[type="checkbox"]:focus + label::before,
@@ -186,6 +187,7 @@
186187
transform: scale(0, 0);
187188
transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33); }
188189
.abc-radio input[type="radio"] {
190+
cursor: pointer;
189191
opacity: 0;
190192
z-index: 1; }
191193
.abc-radio input[type="radio"]:focus + label::before {

awesome-bootstrap-checkbox.scss

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ $check-icon: $fa-var-check !default;
7474

7575
input[type="checkbox"],
7676
input[type="radio"] {
77+
cursor: pointer;
7778
opacity: 0;
7879
z-index: 1;
7980

@@ -194,6 +195,7 @@ $check-icon: $fa-var-check !default;
194195
}
195196

196197
input[type="radio"]{
198+
cursor: pointer;
197199
opacity: 0;
198200
z-index: 1;
199201

demo/build.css

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
color: #55595c; }
3232
.abc-checkbox input[type="checkbox"],
3333
.abc-checkbox input[type="radio"] {
34+
cursor: pointer;
3435
opacity: 0;
3536
z-index: 1; }
3637
.abc-checkbox input[type="checkbox"]:focus + label::before,
@@ -186,6 +187,7 @@
186187
transform: scale(0, 0);
187188
transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33); }
188189
.abc-radio input[type="radio"] {
190+
cursor: pointer;
189191
opacity: 0;
190192
z-index: 1; }
191193
.abc-radio input[type="radio"]:focus + label::before {

0 commit comments

Comments
 (0)