Skip to content

Commit a297d2d

Browse files
committed
fix cursor and bump version to 1.0.0-alpha.4
1 parent 3aa1113 commit a297d2d

File tree

4 files changed

+13
-1
lines changed

4 files changed

+13
-1
lines changed

awesome-bootstrap-checkbox.css

+4
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
position: relative;
88
padding-left: 5px; }
99
.abc-checkbox label::before {
10+
cursor: pointer;
1011
content: "";
1112
display: inline-block;
1213
position: absolute;
@@ -18,6 +19,7 @@
1819
border-radius: 3px;
1920
background-color: #fff; }
2021
.abc-checkbox label::after {
22+
cursor: pointer;
2123
display: inline-block;
2224
position: absolute;
2325
width: 16px;
@@ -164,6 +166,7 @@
164166
padding-left: 5px; }
165167
.abc-radio label::before {
166168
content: "";
169+
cursor: pointer;
167170
display: inline-block;
168171
position: absolute;
169172
width: 17px;
@@ -174,6 +177,7 @@
174177
border-radius: 50%;
175178
background-color: #fff; }
176179
.abc-radio label::after {
180+
cursor: pointer;
177181
display: inline-block;
178182
position: absolute;
179183
content: " ";

awesome-bootstrap-checkbox.scss

+4
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ $check-icon: $fa-var-check !default;
4444
padding-left: 5px;
4545

4646
&::before{
47+
cursor: pointer;
4748
content: "";
4849
display: inline-block;
4950
position: absolute;
@@ -58,6 +59,7 @@ $check-icon: $fa-var-check !default;
5859
}
5960

6061
&::after{
62+
cursor: pointer;
6163
display: inline-block;
6264
position: absolute;
6365
width: 16px;
@@ -163,6 +165,7 @@ $check-icon: $fa-var-check !default;
163165
padding-left: 5px;
164166

165167
&::before{
168+
cursor: pointer;
166169
content: "";
167170
display: inline-block;
168171
position: absolute;
@@ -177,6 +180,7 @@ $check-icon: $fa-var-check !default;
177180
}
178181

179182
&::after{
183+
cursor: pointer;
180184
display: inline-block;
181185
position: absolute;
182186
content: " ";

demo/build.css

+4
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
position: relative;
88
padding-left: 5px; }
99
.abc-checkbox label::before {
10+
cursor: pointer;
1011
content: "";
1112
display: inline-block;
1213
position: absolute;
@@ -18,6 +19,7 @@
1819
border-radius: 3px;
1920
background-color: #fff; }
2021
.abc-checkbox label::after {
22+
cursor: pointer;
2123
display: inline-block;
2224
position: absolute;
2325
width: 16px;
@@ -163,6 +165,7 @@
163165
position: relative;
164166
padding-left: 5px; }
165167
.abc-radio label::before {
168+
cursor: pointer;
166169
content: "";
167170
display: inline-block;
168171
position: absolute;
@@ -174,6 +177,7 @@
174177
border-radius: 50%;
175178
background-color: #fff; }
176179
.abc-radio label::after {
180+
cursor: pointer;
177181
display: inline-block;
178182
position: absolute;
179183
content: " ";

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "awesome-bootstrap-checkbox",
3-
"version": "1.0.0-alpha.3",
3+
"version": "1.0.0-alpha.4",
44
"description": "Font Awesome Bootstrap Checkboxes & Radios. Pure css way to make inputs look prettier.",
55
"main": "awesome-bootstrap-checkbox.css",
66
"scripts": {

0 commit comments

Comments
 (0)