diff options
Diffstat (limited to 'js/yui/base/base.css')
-rw-r--r-- | js/yui/base/base.css | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/js/yui/base/base.css b/js/yui/base/base.css index 57f394363..557c75e38 100644 --- a/js/yui/base/base.css +++ b/js/yui/base/base.css @@ -1,8 +1,8 @@ /* -Copyright (c) 2010, Yahoo! Inc. All rights reserved. +Copyright (c) 2011, Yahoo! Inc. All rights reserved. Code licensed under the BSD License: http://developer.yahoo.com/yui/license.html -version: 2.8.2r1 +version: 2.9.0 */ /** * YUI Base @@ -70,18 +70,18 @@ ol,ul,dl { margin-left: 2em; } -ol li { +ol { /* Giving OL's LIs generated numbers. */ list-style: decimal outside; } -ul li { +ul { /* Giving UL's LIs generated disc markers. */ list-style: disc outside; } dl dd { - /* Giving UL's LIs generated numbers. */ + /* Giving DD default indent. */ margin-left: 1em; } @@ -121,7 +121,7 @@ pre { /* So things don't run into each other. */ margin-bottom: 1em; } -/* Opera requires 1px of passing to render with contemporary native chrome */ +/* Opera requires 1px of padding to render with contemporary native chrome */ button, input[type="checkbox"], input[type="radio"], @@ -129,3 +129,9 @@ input[type="reset"], input[type="submit"] { padding:1px; } + +/* make IE scale images properly */ +/* see http://code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/ */ + img { + -ms-interpolation-mode:bicubic; +} |