diff options
author | Scott Jehl <scott@scottjehl.com> | 2008-12-14 15:47:51 +0000 |
---|---|---|
committer | Scott Jehl <scott@scottjehl.com> | 2008-12-14 15:47:51 +0000 |
commit | 5cd62418dca3d55614d199665cde065d2d7d6799 (patch) | |
tree | 74c4bd98e9e5804c4e3a63bc5172de06bc87a484 /themes | |
parent | 3f255c93238391ac9e4c1815af4947b264ba43e8 (diff) | |
download | jquery-ui-5cd62418dca3d55614d199665cde065d2d7d6799.tar.gz jquery-ui-5cd62418dca3d55614d199665cde065d2d7d6799.zip |
- removed :active outlines
- set :focus pseudo to match hover state
Diffstat (limited to 'themes')
-rw-r--r-- | themes/base/ui.theme.css | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/themes/base/ui.theme.css b/themes/base/ui.theme.css index e45fd5971..6eb7cf491 100644 --- a/themes/base/ui.theme.css +++ b/themes/base/ui.theme.css @@ -10,6 +10,7 @@ ----------------------------------*/ .ui-widget { font-family: Verdana,Arial,sans-serif/*{ffDefault}*/; font-size: 1.1em/*{fsDefault}*/; } .ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: Verdana,Arial,sans-serif/*{ffDefault}*/; font-size: 1em; } +.ui-widget a:active { outline: 0 !important; } .ui-widget-header { border: 1px solid #aaaaaa/*{borderColorHeader}*/; background: #cccccc/*{bgColorHeader}*/ url(images/cccccc_40x100_textures_03_highlight_soft_75.png)/*{bgImgUrlHeader}*/ 0 50% repeat-x; color: #222222/*{fcHeader}*/; font-weight: bold; } .ui-widget-header a { color: #222222/*{fcHeader}*/; } .ui-widget-content { border: 1px solid #aaaaaa/*{borderColorContent}*/; background: #ffffff/*{bgColorContent}*/ url(images/ffffff_40x100_textures_02_glass_75.png)/*{bgImgUrlContent}*/ 0 0/*{bgContentYPos}*/ repeat-x/*{bgContentRepeat}*/; color: #222222/*{fcContent}*/; } @@ -19,8 +20,8 @@ ----------------------------------*/ .ui-state-default { border: 1px solid #d3d3d3/*{borderColorDefault}*/; background: #e6e6e6/*{bgColorDefault}*/ url(images/e6e6e6_40x100_textures_02_glass_75.png)/*{bgImgUrlDefault}*/ 0 50% repeat-x; font-weight: normal/*{fwDefault}*/; color: #555555/*{fcDefault}*/ !important; } .ui-state-default a { color: #555555/*{fcDefault}*/; text-decoration: none; } -.ui-state-hover { border: 1px solid #999999/*{borderColorHover}*/; background: #dadada/*{bgColorHover}*/ url(images/dadada_40x100_textures_02_glass_75.png)/*{bgImgUrlHover}*/ 0 50% repeat-x; font-weight: normal/*{fwDefault}*/; color: #212121/*{fcHover}*/ !important; } -.ui-state-hover a { color: #212121/*{fcHover}*/; text-decoration: none; } +.ui-state-hover, .ui-state-default:focus, .ui-state-hover:focus { border: 1px solid #999999/*{borderColorHover}*/; background: #dadada/*{bgColorHover}*/ url(images/dadada_40x100_textures_02_glass_75.png)/*{bgImgUrlHover}*/ 0 50% repeat-x; font-weight: normal/*{fwDefault}*/; color: #212121/*{fcHover}*/ !important; } +.ui-state-hover a, .ui-state-default:focus a, .ui-state-hover:focus a { color: #212121/*{fcHover}*/; text-decoration: none; } .ui-state-active { border: 1px solid #aaaaaa/*{borderColorActive}*/; background: #ffffff/*{bgColorActive}*/ url(images/ffffff_40x100_textures_02_glass_65.png)/*{bgImgUrlActive}*/ 0 50% repeat-x; font-weight: normal/*{fwDefault}*/; color: #212121/*{fcActive}*/ !important; outline: none; } .ui-state-active a { color: #212121/*{fcActive}*/; outline: none; text-decoration: none; } |