Skip to content

Commit 85969de

Browse files
committed
Fix focus ring styling
1 parent 1a95eef commit 85969de

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

dist/textpattern/jquery-ui.css

+5-5
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
margin: 0;
3232
padding: 0;
3333
border: 0;
34-
outline-width: 0;
34+
outline: 0;
3535
font-size: 13px;
3636
line-height: 20px;
3737
list-style: none;
@@ -126,11 +126,11 @@ a.ui-state-default:focus {
126126
*/
127127
.ui-state-focus {
128128
border-color: #0066ff;
129-
outline-width: 0;
129+
outline: 0;
130130
}
131131

132132
.ui-state-focus a {
133-
outline-width: 0;
133+
outline: 0;
134134
}
135135

136136
/**
@@ -611,7 +611,7 @@ a.ui-state-default:focus {
611611

612612
.ui-button:focus {
613613
border-color: #0066ff;
614-
outline-width: 0;
614+
outline: 0;
615615
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
616616
}
617617

@@ -1350,7 +1350,7 @@ label.ui-state-active.ui-button:active {
13501350
margin: 0;
13511351
padding: 0;
13521352
border-color: #d4d4d4;
1353-
outline-width: 0;
1353+
outline: 0;
13541354
/* 1 */
13551355
font-size: 13px;
13561356
line-height: 1.38461538461538em;

dist/textpattern/jquery-ui.min.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "textpattern-jquery-ui-theme",
33
"description": "The jQuery UI theme used within Textpattern CMS admin side.",
4-
"version": "4.6.1",
4+
"version": "4.6.2",
55
"keywords": [
66
"jquery-ui",
77
"theme",
@@ -17,7 +17,7 @@
1717
"url": "https://github.com/textpattern/textpattern-jquery-ui-theme/issues"
1818
},
1919
"devDependencies": {
20-
"autoprefixer": "6.5.0",
20+
"autoprefixer": "6.5.1",
2121
"grunt": "~1.0",
2222
"grunt-cli": "~1",
2323
"grunt-concurrent": "2.3.1",

src/sass/modules/_button.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171

7272
&:focus {
7373
border-color: $color-link-focus;
74-
outline-width: 0;
74+
outline: 0;
7575
@if $flat-theme < 1 {
7676
box-shadow: $inset-highlighting;
7777
}

src/sass/modules/_core.scss

+3-3
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
margin: 0;
3333
padding: 0;
3434
border: 0;
35-
outline-width: 0;
35+
outline: 0;
3636
font-size: $base-font-size;
3737
line-height: $base-line-height;
3838
list-style: none;
@@ -141,10 +141,10 @@ a.ui-state-default:focus {
141141

142142
.ui-state-focus {
143143
border-color: $color-link-focus;
144-
outline-width: 0;
144+
outline: 0;
145145

146146
a {
147-
outline-width: 0;
147+
outline: 0;
148148
}
149149
}
150150

src/sass/modules/_menu.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
@if $flat-theme < 1 {
7070
border-color: $color-border-light;
7171
}
72-
outline-width: 0;
72+
outline: 0;
7373
/* 1 */
7474
font-size: $base-font-size;
7575
line-height: 1.38461538461538em; // 18px / 13px

0 commit comments

Comments
 (0)