Skip to content

Commit 4b22452

Browse files
committed
update: update version to 1.0.0-alpha.6
1 parent 565e122 commit 4b22452

File tree

4 files changed

+14
-6
lines changed

4 files changed

+14
-6
lines changed

awesome-bootstrap-checkbox.css

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,8 +169,8 @@
169169
position: relative;
170170
padding-left: 5px; }
171171
.abc-radio label::before {
172-
content: "";
173172
cursor: pointer;
173+
content: "";
174174
display: inline-block;
175175
position: absolute;
176176
width: 17px;
@@ -205,6 +205,8 @@
205205
outline-offset: -2px; }
206206
.abc-radio input[type="radio"]:checked + label::after {
207207
transform: scale(1, 1); }
208+
.abc-radio input[type="radio"]:disabled {
209+
cursor: not-allowed; }
208210
.abc-radio input[type="radio"]:disabled + label {
209211
opacity: 0.65; }
210212
.abc-radio input[type="radio"]:disabled + label::before {

awesome-bootstrap-checkbox.scss

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,9 @@ $check-icon: $fa-var-check !default;
8282
z-index: 1;
8383

8484
&:focus + label::before{
85-
@include tab-focus();
85+
outline: thin dotted;
86+
outline: 5px auto -webkit-focus-ring-color;
87+
outline-offset: -2px;
8688
}
8789

8890
&:checked + label::after{
@@ -210,7 +212,9 @@ $check-icon: $fa-var-check !default;
210212
z-index: 1;
211213

212214
&:focus + label::before{
213-
@include tab-focus();
215+
outline: thin dotted;
216+
outline: 5px auto -webkit-focus-ring-color;
217+
outline-offset: -2px;
214218
}
215219

216220
&:checked + label::after{

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
],
1717
"dependencies": {},
1818
"devDependencies": {
19-
"bootstrap": "4.0.0-alpha.2",
19+
"bootstrap": "4.0.0-alpha.6",
2020
"font-awesome-sass": "4.5.0"
2121
}
2222
}

demo/build.css

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
position: absolute;
1414
width: 17px;
1515
height: 17px;
16-
left: 0;
1716
top: 2px;
17+
left: 0;
1818
margin-left: -20px;
1919
border: 1px solid #ccc;
2020
border-radius: 3px;
@@ -175,8 +175,8 @@
175175
position: absolute;
176176
width: 17px;
177177
height: 17px;
178-
left: 0;
179178
top: 2px;
179+
left: 0;
180180
margin-left: -20px;
181181
border: 1px solid #ccc;
182182
border-radius: 50%;
@@ -205,6 +205,8 @@
205205
outline-offset: -2px; }
206206
.abc-radio input[type="radio"]:checked + label::after {
207207
transform: scale(1, 1); }
208+
.abc-radio input[type="radio"]:disabled {
209+
cursor: not-allowed; }
208210
.abc-radio input[type="radio"]:disabled + label {
209211
opacity: 0.65; }
210212
.abc-radio input[type="radio"]:disabled + label::before {

0 commit comments

Comments
 (0)