diff options
| author | Nathan Guse <nathaniel.guse@gmail.com> | 2013-09-13 17:16:58 -0500 |
|---|---|---|
| committer | Nathan Guse <nathaniel.guse@gmail.com> | 2013-09-13 17:16:58 -0500 |
| commit | 38f315ed81fd01fd852877e8a575a98a96d37a4c (patch) | |
| tree | f69f564a200d0cf6533419aff29abe5648c6b889 /phpBB/styles | |
| parent | b8bb16f8e7b1ec41b596e8b6526739c705dcd09f (diff) | |
| parent | f3bbca4fa0ee7e0c1e325b3dc8e12c37f4a2036f (diff) | |
| download | forums-38f315ed81fd01fd852877e8a575a98a96d37a4c.tar forums-38f315ed81fd01fd852877e8a575a98a96d37a4c.tar.gz forums-38f315ed81fd01fd852877e8a575a98a96d37a4c.tar.bz2 forums-38f315ed81fd01fd852877e8a575a98a96d37a4c.tar.xz forums-38f315ed81fd01fd852877e8a575a98a96d37a4c.zip | |
Merge remote-tracking branch 'remotes/cyberalien/ticket/develop-2/11811' into develop
* remotes/cyberalien/ticket/develop-2/11811:
[ticket/11811] Remove outline on :focus
Diffstat (limited to 'phpBB/styles')
| -rw-r--r-- | phpBB/styles/prosilver/theme/forms.css | 10 | ||||
| -rw-r--r-- | phpBB/styles/subsilver2/theme/stylesheet.css | 3 |
2 files changed, 13 insertions, 0 deletions
diff --git a/phpBB/styles/prosilver/theme/forms.css b/phpBB/styles/prosilver/theme/forms.css index b66544acf7..34f8bc8c32 100644 --- a/phpBB/styles/prosilver/theme/forms.css +++ b/phpBB/styles/prosilver/theme/forms.css @@ -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; diff --git a/phpBB/styles/subsilver2/theme/stylesheet.css b/phpBB/styles/subsilver2/theme/stylesheet.css index d2352d93ef..7d14376454 100644 --- a/phpBB/styles/subsilver2/theme/stylesheet.css +++ b/phpBB/styles/subsilver2/theme/stylesheet.css @@ -552,6 +552,9 @@ input.radio { border-style: none; } +input:focus, select:focus, textarea:focus { + outline-style: none; +} /* BBCode ------------ */ |
