diff options
author | Marc Englund <marc.englund@itmill.com> | 2008-06-11 07:25:22 +0000 |
---|---|---|
committer | Marc Englund <marc.englund@itmill.com> | 2008-06-11 07:25:22 +0000 |
commit | 4fcd68b819d2017a6d150b8abb595f1f98d51a4c (patch) | |
tree | c1bf765c6a9a3d0e11a20258aa6daebbfe5a5dc0 | |
parent | a262fc0fb9d83dc97264035d2438771ed846aec1 (diff) | |
download | vaadin-framework-4fcd68b819d2017a6d150b8abb595f1f98d51a4c.tar.gz vaadin-framework-4fcd68b819d2017a6d150b8abb595f1f98d51a4c.zip |
Safari focus-outline was clipped by filterselect arrow-button (fixes #1684)
svn changeset:4851/svn branch:trunk
-rw-r--r-- | WebContent/ITMILL/themes/default/select/select.css | 4 | ||||
-rw-r--r-- | WebContent/ITMILL/themes/default/styles.css | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/WebContent/ITMILL/themes/default/select/select.css b/WebContent/ITMILL/themes/default/select/select.css index d3506d63f4..c0a64604d8 100644 --- a/WebContent/ITMILL/themes/default/select/select.css +++ b/WebContent/ITMILL/themes/default/select/select.css @@ -83,6 +83,10 @@ padding: 3px 0 0 4px; font-size: 13px; } +.i-filterselect-input:focus { + /* button clips safari outline otherwise (#1684) */ + outline-offset: -1px; +} .i-filterselect-button { float: right; diff --git a/WebContent/ITMILL/themes/default/styles.css b/WebContent/ITMILL/themes/default/styles.css index 92e269c582..60616baa76 100644 --- a/WebContent/ITMILL/themes/default/styles.css +++ b/WebContent/ITMILL/themes/default/styles.css @@ -982,6 +982,10 @@ input.i-modified, padding: 3px 0 0 4px; font-size: 13px; } +.i-filterselect-input:focus { + /* button clips safari outline otherwise (#1684) */ + outline-offset: -1px; +} .i-filterselect-button { float: right; |