Skip to content

Commit 38405c3

Browse files
author
Edward Xiao
committed
- Remove outline restriction when on focus in css.
1 parent 88adf2d commit 38405c3

10 files changed

+17
-17
lines changed

lib/react-inputs-validation.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/react-inputs-validation.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/react-inputs-validation.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/react-inputs-validation.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/react-inputs-validation.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/react-inputs-validation.min.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/react-inputs-validation.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/react-inputs-validation.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-inputs-validation",
3-
"version": "3.4.12",
3+
"version": "3.4.13",
44
"description": "React form input validation components",
55
"main": "index.js",
66
"repository": {

src/js/Inputs/react-inputs-validation.css

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ select {
4040

4141
.textbox__wrapper,
4242
.textbox__wrapper *:focus {
43-
outline: 0;
43+
/*outline: 0;*/
4444
}
4545

4646
.textbox__wrapper {
@@ -131,7 +131,7 @@ input[type='text'].textbox__input.disabled {
131131

132132
.textarea__wrapper,
133133
.textarea__wrapper *:focus {
134-
outline: 0;
134+
/*outline: 0;*/
135135
}
136136

137137
.textarea__wrapper {
@@ -144,7 +144,7 @@ input[type='text'].textbox__input.disabled {
144144

145145
textarea.textarea__input {
146146
resize: none;
147-
outline: none;
147+
/*outline: none;*/
148148
display: block;
149149
margin: 0;
150150
width: 100%;
@@ -180,7 +180,7 @@ textarea.textarea__input.disabled {
180180

181181
.radiobox__wrapper,
182182
.radiobox__wrapper *:focus {
183-
outline: 0;
183+
/*outline: 0;*/
184184
}
185185

186186
input[type='radio'] {
@@ -245,7 +245,7 @@ input[type='radio'] {
245245

246246
.checkbox__wrapper,
247247
.checkbox__wrapper *:focus {
248-
outline: 0;
248+
/*outline: 0;*/
249249
}
250250

251251
input[type='checkbox'] {
@@ -254,7 +254,7 @@ input[type='checkbox'] {
254254
}
255255

256256
.checkbox__wrapper {
257-
outline: none;
257+
/*outline: none;*/
258258
}
259259

260260
.checkbox__input {
@@ -322,7 +322,7 @@ input[type='checkbox'] {
322322

323323
.select__wrapper,
324324
.select__wrapper *:focus {
325-
outline: 0;
325+
/*outline: 0;*/
326326
}
327327

328328
/*.select__wrapper:focus .select__container{
@@ -332,7 +332,7 @@ input[type='checkbox'] {
332332

333333
.select__wrapper {
334334
cursor: pointer;
335-
outline: none;
335+
/*outline: none;*/
336336
position: relative;
337337
}
338338

0 commit comments

Comments
 (0)