MDL-16784 Adding YUI 2.6.0

This commit is contained in:
nicolasconnault 2008-10-03 13:26:32 +00:00
parent fa10a85e87
commit 36af3d4cdf
378 changed files with 263821 additions and 1 deletions

50
lib/yui/fonts/README Executable file
View file

@ -0,0 +1,50 @@
YUI Library - Fonts - Release Notes
Version 2.6.0
* Added font reduction and face restatement for select, input, button, and textarea
* Comments and formatting updates.
* KNOWN ISSUE:
In IE8 Beta 2, user-initiated Text Size adjustment does not work because our keyword
filters to IE do not reach IE8. Note that Zoom works, providing users a resize option.
Version 2.5.2
* Added comments regarding font shorthand filter for IE in Quirks Mode.
Version 2.5.1
* No changes.
Version 2.5.0
* No changes.
Version 2.4.0
* Rechanged core line-height from 1.22 to 1.231, sans units.
* Updated line-height value for monospcaed elements.
Version 2.3.0
* Updated %-to-px conversion charted for increased accuracy
across browsers
* Move body line-height away from * wildcard selector. Now it is
part of the initial BODY rule set.
* Changed core lineheight from 1.22em to 1.231 (no units)
* Changed code,pre to not use font-property shorthand syntax
* Tweaked the sizing fix for monospace font size (pre,code...)
* Added "kbd,samp,tt" as new selectors for monospaced font stuff
* Added line-height:99% to keep monospaced font the right height
Version 2.2.0 - 2.2.2
* No changes.
Version 0.10.1 - 0.12.2
* No changes.
Version 0.10.0
* Initial release.

7
lib/yui/fonts/fonts-min.css vendored Executable file
View file

@ -0,0 +1,7 @@
/*
Copyright (c) 2008, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://developer.yahoo.net/yui/license.txt
version: 2.6.0
*/
body{font:13px/1.231 arial,helvetica,clean,sans-serif;*font-size:small;*font:x-small;}select,input,button,textarea{font:99% arial,helvetica,clean,sans-serif;}table{font-size:inherit;font:100%;}pre,code,kbd,samp,tt{font-family:monospace;*font-size:108%;line-height:100%;}

46
lib/yui/fonts/fonts.css Executable file
View file

@ -0,0 +1,46 @@
/*
Copyright (c) 2008, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://developer.yahoo.net/yui/license.txt
version: 2.6.0
*/
/**
* Percents could work for IE, but for backCompat purposes, we are using keywords.
* x-small is for IE6/7 quirks mode.
*/
body {
font:13px/1.231 arial,helvetica,clean,sans-serif;
*font-size:small; /* for IE */
*font:x-small; /* for IE in quirks mode */
}
/**
* Nudge down to get to 13px equivalent for these form elements
*/
select,
input,
button,
textarea {
font:99% arial,helvetica,clean,sans-serif;
}
/**
* To help tables remember to inherit
*/
table {
font-size:inherit;
font:100%;
}
/**
* Bump up IE to get to 13px equivalent for these fixed-width elements
*/
pre,
code,
kbd,
samp,
tt {
font-family:monospace;
*font-size:108%;
line-height:100%;
}