summaryrefslogtreecommitdiffstats
path: root/js/yui/base
diff options
context:
space:
mode:
authorDavid Lawrence <dlawrence@mozilla.com>2011-04-23 14:03:15 +0200
committerDavid Lawrence <dlawrence@mozilla.com>2011-04-23 14:03:15 +0200
commit4c08043332e39576eed0868c22e6089eafa6aabf (patch)
tree5a8ad25f26a345feadedfe82782a763da051564e /js/yui/base
parent8bb0ca1f5c922f8ea2fe64a59b1e1811dfaca65a (diff)
downloadbugzilla-4c08043332e39576eed0868c22e6089eafa6aabf.tar.gz
bugzilla-4c08043332e39576eed0868c22e6089eafa6aabf.tar.xz
Bug 649879 - Update to YUI 2.9.0
r/a=mkanat
Diffstat (limited to 'js/yui/base')
-rw-r--r--js/yui/base/base-min.css6
-rw-r--r--js/yui/base/base.css18
2 files changed, 15 insertions, 9 deletions
diff --git a/js/yui/base/base-min.css b/js/yui/base/base-min.css
index c354440fe..f71b9a562 100644
--- a/js/yui/base/base-min.css
+++ b/js/yui/base/base-min.css
@@ -1,7 +1,7 @@
/*
-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
*/
-body{margin:10px;}h1{font-size:138.5%;}h2{font-size:123.1%;}h3{font-size:108%;}h1,h2,h3{margin:1em 0;}h1,h2,h3,h4,h5,h6,strong,dt{font-weight:bold;}optgroup{font-weight:normal;}abbr,acronym{border-bottom:1px dotted #000;cursor:help;}em{font-style:italic;}del{text-decoration:line-through;}blockquote,ul,ol,dl{margin:1em;}ol,ul,dl{margin-left:2em;}ol li{list-style:decimal outside;}ul li{list-style:disc outside;}dl dd{margin-left:1em;}th,td{border:1px solid #000;padding:.5em;}th{font-weight:bold;text-align:center;}caption{margin-bottom:.5em;text-align:center;}sup{vertical-align:super;}sub{vertical-align:sub;}p,fieldset,table,pre{margin-bottom:1em;}button,input[type="checkbox"],input[type="radio"],input[type="reset"],input[type="submit"]{padding:1px;} \ No newline at end of file
+body{margin:10px}h1{font-size:138.5%}h2{font-size:123.1%}h3{font-size:108%}h1,h2,h3{margin:1em 0}h1,h2,h3,h4,h5,h6,strong,dt{font-weight:bold}optgroup{font-weight:normal}abbr,acronym{border-bottom:1px dotted #000;cursor:help}em{font-style:italic}del{text-decoration:line-through}blockquote,ul,ol,dl{margin:1em}ol,ul,dl{margin-left:2em}ol{list-style:decimal outside}ul{list-style:disc outside}dl dd{margin-left:1em}th,td{border:1px solid #000;padding:.5em}th{font-weight:bold;text-align:center}caption{margin-bottom:.5em;text-align:center}sup{vertical-align:super}sub{vertical-align:sub}p,fieldset,table,pre{margin-bottom:1em}button,input[type="checkbox"],input[type="radio"],input[type="reset"],input[type="submit"]{padding:1px}img{-ms-interpolation-mode:bicubic} \ No newline at end of file
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;
+}