diff options
author | Anika Henke <anika@selfthinker.org> | 2012-11-27 03:10:50 +0000 |
---|---|---|
committer | Mike Sherov <mike.sherov@gmail.com> | 2012-11-27 08:36:52 -0500 |
commit | c4b7c754eedf10923f588cf6310f610fcd0c37a9 (patch) | |
tree | bafb454960e8e3586bbb52d9cda223a41e4e6fd1 /themes/base/jquery.ui.theme.css | |
parent | c5e0961268577ff72f98d2ad79d8b9b98e3f75b1 (diff) | |
download | jquery-ui-c4b7c754eedf10923f588cf6310f610fcd0c37a9.tar.gz jquery-ui-c4b7c754eedf10923f588cf6310f610fcd0c37a9.zip |
Theme: removed obsolete vendor-specific prefixes. Fixed #8834 - Theme: Remove unneeded vendor prefixing
Diffstat (limited to 'themes/base/jquery.ui.theme.css')
-rw-r--r-- | themes/base/jquery.ui.theme.css | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/themes/base/jquery.ui.theme.css b/themes/base/jquery.ui.theme.css index 89f03aa86..f1e4adf08 100644 --- a/themes/base/jquery.ui.theme.css +++ b/themes/base/jquery.ui.theme.css @@ -154,9 +154,9 @@ .ui-icon { width: 16px; height: 16px; - background-image: url(images/ui-icons_222222_256x240.png)/*{iconsContent}*/; background-position: 16px 16px; } +.ui-icon, .ui-widget-content .ui-icon { background-image: url(images/ui-icons_222222_256x240.png)/*{iconsContent}*/; } @@ -367,36 +367,24 @@ .ui-corner-top, .ui-corner-left, .ui-corner-tl { - -moz-border-radius-topleft: 4px/*{cornerRadius}*/; - -webkit-border-top-left-radius: 4px/*{cornerRadius}*/; - -khtml-border-top-left-radius: 4px/*{cornerRadius}*/; border-top-left-radius: 4px/*{cornerRadius}*/; } .ui-corner-all, .ui-corner-top, .ui-corner-right, .ui-corner-tr { - -moz-border-radius-topright: 4px/*{cornerRadius}*/; - -webkit-border-top-right-radius: 4px/*{cornerRadius}*/; - -khtml-border-top-right-radius: 4px/*{cornerRadius}*/; border-top-right-radius: 4px/*{cornerRadius}*/; } .ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl { - -moz-border-radius-bottomleft: 4px/*{cornerRadius}*/; - -webkit-border-bottom-left-radius: 4px/*{cornerRadius}*/; - -khtml-border-bottom-left-radius: 4px/*{cornerRadius}*/; border-bottom-left-radius: 4px/*{cornerRadius}*/; } .ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br { - -moz-border-radius-bottomright: 4px/*{cornerRadius}*/; - -webkit-border-bottom-right-radius: 4px/*{cornerRadius}*/; - -khtml-border-bottom-right-radius: 4px/*{cornerRadius}*/; border-bottom-right-radius: 4px/*{cornerRadius}*/; } @@ -412,8 +400,5 @@ background: #aaaaaa/*{bgColorShadow}*/ url(images/ui-bg_flat_0_aaaaaa_40x100.png)/*{bgImgUrlShadow}*/ 50%/*{bgShadowXPos}*/ 50%/*{bgShadowYPos}*/ repeat-x/*{bgShadowRepeat}*/; /* no space between ".3;" and "filter" because themeRoller looks back to the first space for replacement */ opacity: .3;filter:Alpha(Opacity=30)/*{opacityShadow}*/; - -moz-border-radius: 8px/*{cornerRadiusShadow}*/; - -khtml-border-radius: 8px/*{cornerRadiusShadow}*/; - -webkit-border-radius: 8px/*{cornerRadiusShadow}*/; border-radius: 8px/*{cornerRadiusShadow}*/; } |