aboutsummaryrefslogtreecommitdiffstats
path: root/src/css.js
Commit message (Collapse)AuthorAgeFilesLines
...
* Opera doesn't give height/width of display: none elements with ↵jeresig2010-11-031-6/+13
| | | | getComputedStyle but does with currentStyle - fall back to that if it exists.
* Make sure that accessing computed CSS for elements returns 'auto' instead of ↵jeresig2010-11-011-4/+5
| | | | '' consistently. Fixes #7337.
* Make sure that .width()/.height() don't return NaN also standardize on ↵jeresig2010-10-221-6/+2
| | | | returning instead of auto for default values (which is what we do elsewhere in .css() as well). Fixes #7225.
* Make sure that the correct height/width of the elements is retreived. Fixes ↵jeresig2010-10-221-2/+14
| | | | #7225.
* Make sure that height/width getters work on hidden inputs and disconnected ↵jeresig2010-10-221-0/+4
| | | | elements. Fixes #7225.
* Fixed getting styles from disconnected nodes. Fixes #7148.Scott González2010-10-111-0/+3
|
* Merge branch 'animate-nonblock' of http://github.com/csnover/jquery into ↵John Resig2010-10-091-8/+3
|\ | | | | | | csnover-animate-nonblock
| * Fix :visible does not work properly when display:none is set directly on an ↵Colin Snover2010-10-051-8/+3
| | | | | | | | element in IE8. Fixes #4512.
* | Make sure null/NaN values aren't set in .css(). Fixes #7116.jeresig2010-10-091-1/+6
| |
* | Prevent IE from throwing errors when setting RGBA values. Fixes #5509.Colin Snover2010-10-091-1/+5
|/
* Make sure setting opacity does not clobber other inline filters. Fixes #7101.Colin Snover2010-09-301-1/+1
|
* Make sure that mixed case alpha filters are handled correctly in IE. Fixes ↵John Resig2010-09-281-1/+1
| | | | #5632.
* Make setting .css(name, undefined) a no-op. Fixes #4388.John Resig2010-09-281-0/+5
|
* Make sure that opacity is being reset properly on a show animation. ↵jeresig2010-09-271-9/+13
| | | | Additionally expose jQuery.isNaN from the data module.
* We can just use isNaN for this check in the IE opacity code.jeresig2010-09-271-1/+1
|
* Make sure the currentStyle property exists before attempting to access it.jeresig2010-09-271-3/+3
|
* Make sure that non-px values aren't manipulated before input to height/width.John Resig2010-09-211-1/+1
|
* Simplifying the camelCase logic used in the CSS and Effects modules.John Resig2010-09-171-2/+6
|
* Cleaning up some un-needed CSS code and adding back a temporary (deprecated) ↵John Resig2010-09-171-7/+8
| | | | curCSS method.
* Make sure that empty height/width values are still set.John Resig2010-09-171-4/+9
|
* Split apart jQuery.css into jQuery.css (computed values) and jQuery.style ↵jeresig2010-09-161-28/+56
| | | | (currently set values).
* Making some more adjustments to handle auto CSS properties.John Resig2010-09-131-1/+1
|
* Only set height/width if it's a non-negative number (don't set it to 0).jeresig2010-09-091-1/+5
|
* Another logic bug caught by furf in ad950c8c5992937640a1e1aca8d63bb476b001f6.jeresig2010-09-091-1/+1
|
* Make sure that the CSS hook getter isn't called if a forced computed style ↵jeresig2010-09-091-6/+5
| | | | is done.
* Make sure that string values are returned from the height/width CSS properties.jeresig2010-09-091-1/+1
|
* Landing a bunch of bug fixes from furf's pull request at ↵jeresig2010-09-091-6/+10
| | | | eefcbaebb31b89b5eb360cd5ec6165b89c84e75f.
* Make sure that jQuery works even when the individual modules are loaded ↵jeresig2010-09-081-0/+4
| | | | separately AND jQuery.noConflict(true) is used. Fixes #7011.
* Broke more of the property-specific CSS logic out of the jQuery.css() function.John Resig2010-09-051-30/+34
|
* First pass at unifying the various CSS methods in jQuery (jQuery.style, ↵John Resig2010-09-051-69/+45
| | | | jQuery.curCSS, and jQuery.css are now all under jQuery.css).
* Broke apart some of the browser-specific logic for CSS handling.John Resig2010-09-051-95/+93
|
* Some more minor formatting tweaks.John Resig2010-09-041-4/+12
|
* Tweaking the formatting from the previous commit.John Resig2010-09-041-6/+4
|
* First look at css hooks. These hooks provide a way to change how jQuery ↵Brandon Aaron2010-09-021-32/+54
| | | | | | handles getting and setting certain css properties. This means normalizing properties like background-position can easily be done via plugins. They are similar in concept to the special event hooks. Return false from the hook to revert control back to jQuery's normal processes for getting and setting certain css properties.
* Only attempt to use the IE technique for setting opacity if the filter ↵John Resig2010-08-261-1/+1
| | | | property exists (otherwise fallback to the standards-compatible technique).
* Made it so that you no longer need to build jQuery in order to run the test ↵jeresig2010-03-231-1/+1
| | | | suite (but you'll still need a checkout of QUnit and Sizzle, at least).
* More changes to get jQuery in line with JSLint.jeresig2010-03-011-1/+1
|
* Made some code tweaks related to running jQuery through JSLint (thanks to ↵jeresig2010-03-011-24/+29
| | | | Lorin Larson for the JSLint run).
* Standardize on using double-quotes for string literals.jeresig2009-12-211-3/+3
|
* Made a number of spacing changes to bring the code more-inline with the ↵jeresig2009-12-211-3/+9
| | | | jQuery Core Style Guideline.
* Make sure that the defaultView exists before attempting to get at the ↵John Resig2009-12-091-1/+7
| | | | computedStyle (makes it easier to hide items that don't have a view). Fixes #5619.
* Made sure that css('width') and height returned string values, not numerical ↵John Resig2009-12-091-2/+2
| | | | values. Fixes #5627.
* Made sure that css() in IE handles negative non-px values correctly. Fixes ↵jeresig2009-12-051-2/+2
| | | | #3331.
* Minor syntactical changes to :visible and :hidden.jeresig2009-12-051-8/+8
|
* Fixes a bug I introducedYehuda Katz2009-12-041-1/+1
|
* Removing unnecessary parens from :hidden.jeresig2009-12-031-3/+4
|
* Fix css("opacity") to not clobber other filters in IE. Closes #4707.Yehuda Katz2009-12-011-2/+3
|
* added missing radix parameter for parseInt()Karl Swedberg2009-11-281-1/+1
|
* Landing tweak from 'haruka' that fixes non-pixel fontSize values in IE. ↵John Resig2009-11-111-2/+2
| | | | Fixes #760.
* Moved a bunch of methods out of the jQuery-specific Sizzle code into ↵John Resig2009-10-261-0/+16
| | | | more-appropriate files, in jQuery itself.