mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-17 16:58:51 +00:00
Merge remote-tracking branch 'remotes/cyberalien/ticket/develop-2/11811' into develop
* remotes/cyberalien/ticket/develop-2/11811: [ticket/11811] Remove outline on :focus
This commit is contained in:
commit
38f315ed81
3 changed files with 23 additions and 0 deletions
|
@ -752,6 +752,10 @@ optgroup, select {
|
|||
color: #000;
|
||||
}
|
||||
|
||||
select:focus {
|
||||
outline-style: none;
|
||||
}
|
||||
|
||||
optgroup {
|
||||
font-size: 1.00em;
|
||||
font-weight: bold;
|
||||
|
@ -997,6 +1001,7 @@ input:focus, textarea:focus {
|
|||
border: 1px solid #BC2A4D;
|
||||
background-color: #E9E9E2;
|
||||
color: #BC2A4D;
|
||||
outline-style: none;
|
||||
}
|
||||
|
||||
/* Submit button fieldset or paragraph
|
||||
|
@ -1091,6 +1096,11 @@ input.disabled {
|
|||
color: #666666;
|
||||
}
|
||||
|
||||
/* Focus states */
|
||||
input.button1:focus, input.button2:focus, input.button3:focus {
|
||||
outline-style: none;
|
||||
}
|
||||
|
||||
/* jQuery popups
|
||||
---------------------------------------- */
|
||||
.phpbb_alert {
|
||||
|
|
|
@ -28,6 +28,10 @@ select {
|
|||
font-size: 1em;
|
||||
}
|
||||
|
||||
select:focus {
|
||||
outline-style: none;
|
||||
}
|
||||
|
||||
option {
|
||||
padding-right: 1em;
|
||||
}
|
||||
|
@ -271,6 +275,7 @@ fieldset.submit-buttons input {
|
|||
|
||||
.inputbox:hover, .inputbox:focus {
|
||||
border: 1px solid transparent;
|
||||
outline-style: none;
|
||||
}
|
||||
|
||||
input.inputbox { width: 85%; }
|
||||
|
@ -347,6 +352,11 @@ input.disabled {
|
|||
font-weight: normal;
|
||||
}
|
||||
|
||||
/* Focus states */
|
||||
input.button1:focus, input.button2:focus, input.button3:focus {
|
||||
outline-style: none;
|
||||
}
|
||||
|
||||
/* Topic and forum Search */
|
||||
.search-box {
|
||||
margin-top: 3px;
|
||||
|
|
|
@ -552,6 +552,9 @@ input.radio {
|
|||
border-style: none;
|
||||
}
|
||||
|
||||
input:focus, select:focus, textarea:focus {
|
||||
outline-style: none;
|
||||
}
|
||||
|
||||
/* BBCode
|
||||
------------ */
|
||||
|
|
Loading…
Add table
Reference in a new issue