diff options
author | Scott Jehl <scott@scottjehl.com> | 2009-08-28 16:12:39 +0000 |
---|---|---|
committer | Scott Jehl <scott@scottjehl.com> | 2009-08-28 16:12:39 +0000 |
commit | 8d2cacae17cc2324f9c0020a9742fe771537db64 (patch) | |
tree | b02ad168f2f2085e31c46cf56d6f26a77ae21fac | |
parent | 16607b109ee3aaf7b7ccc7792c2d743cfb786d59 (diff) | |
download | jquery-ui-8d2cacae17cc2324f9c0020a9742fe771537db64.tar.gz jquery-ui-8d2cacae17cc2324f9c0020a9742fe771537db64.zip |
added rule to negate outlines on :active state, so the outlines won't appear as much during mouse interaction.
-rw-r--r-- | themes/base/ui.theme.css | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/themes/base/ui.theme.css b/themes/base/ui.theme.css index 03fa98b2a..4d19fc7f0 100644 --- a/themes/base/ui.theme.css +++ b/themes/base/ui.theme.css @@ -24,6 +24,7 @@ .ui-state-hover a, .ui-state-hover a:hover { color: #212121/*{fcHover}*/; text-decoration: none; } .ui-state-active, .ui-widget-content .ui-state-active { border: 1px solid #aaaaaa/*{borderColorActive}*/; background: #ffffff/*{bgColorActive}*/ url(images/ui-bg_glass_65_ffffff_1x400.png)/*{bgImgUrlActive}*/ 50%/*{bgActiveXPos}*/ 50%/*{bgActiveYPos}*/ repeat-x/*{bgActiveRepeat}*/; font-weight: normal/*{fwDefault}*/; color: #212121/*{fcActive}*/; } .ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited { color: #212121/*{fcActive}*/; text-decoration: none; } +.ui-widget :active { outline: none; } /* Interaction Cues ----------------------------------*/ |