Skip to content

Commit d4039cc

Browse files
committed
Fix focus ring styling
1 parent 5f1b273 commit d4039cc

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

dist/styles/default.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ nav ol::after,
257257
text-decoration-skip: ink edges;
258258
}
259259
a:hover, a:active {
260-
outline-width: 0;
260+
outline: 0;
261261
color: #0066ff;
262262
text-decoration: underline;
263263
}
@@ -903,7 +903,7 @@ nav ol::after,
903903
select:focus,
904904
textarea:focus {
905905
border-color: #0066ff;
906-
outline-width: 0;
906+
outline: 0;
907907
}
908908
/**
909909
* Remove padding from `color` fields.
@@ -1137,7 +1137,7 @@ nav ol::after,
11371137
[type="reset"]:focus,
11381138
[type="submit"]:focus {
11391139
border-color: #0066ff;
1140-
outline-width: 0;
1140+
outline: 0;
11411141
}
11421142
/* Comments
11431143
========================================================================== */

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"url": "https://github.com/textpattern/textpattern-default-theme/issues"
2424
},
2525
"devDependencies": {
26-
"autoprefixer": "6.5.0",
26+
"autoprefixer": "6.5.1",
2727
"grunt": "~1.0",
2828
"grunt-cli": "~1",
2929
"grunt-concurrent": "2.3.1",

src/sass/modules/_buttons.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,6 @@ button,
5858

5959
&:focus {
6060
border-color: $color-link-focus;
61-
outline-width: 0;
61+
outline: 0;
6262
}
6363
}

src/sass/modules/_forms.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ textarea {
117117

118118
&:focus {
119119
border-color: $color-link-focus;
120-
outline-width: 0;
120+
outline: 0;
121121
}
122122
}
123123

src/sass/modules/_links.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ a {
2121

2222
&:hover,
2323
&:active {
24-
outline-width: 0;
24+
outline: 0;
2525
color: $color-link-hover;
2626
text-decoration: underline;
2727
}

0 commit comments

Comments
 (0)