aboutsummaryrefslogtreecommitdiffstats
path: root/src/css.js
Commit message (Collapse)AuthorAgeFilesLines
* CSS: Add animation-iteration-count to cssNumber, fix testsJun Sun2016-01-071-0/+1
| | | | | Fixes gh-2792 Closes gh-2793
* Revert "Ajax:Attributes:CSS:Manipulation: Reduce Android 2.3 support"Michał Gołębiowski2015-11-161-0/+10
| | | | This reverts commit ce3b4a62427c5a3a6669dcb8bf8e27a6287990d5.
* Revert "Misc: Drop support for older browsers; update support comments"Michał Gołębiowski2015-11-161-1/+1
| | | | This reverts commit 740e190223d19a114d5373758127285d14d6b71e.
* Release: fix revert artefactsOleg Gaidarenko2015-11-131-0/+13
|
* Revert "CSS: Ignore the CSS cascade in show()/hide()/etc."Oleg Gaidarenko2015-11-131-16/+65
| | | | This reverts commit 86419b10bfa5e3b71a7d416288ab806d47a31d1f.
* Revert "CSS: Make show/hide/toggle methods a module"Oleg Gaidarenko2015-11-111-1/+21
| | | | This reverts commit 67d7a2eefee768b59eb3d51cb1fb2c671873e58a.
* Revert "CSS: Make .css("width") & .css("height") return fractional values"Oleg Gaidarenko2015-11-111-18/+10
| | | | This reverts commit b60b26e18477d21fa5ec9c6572e114fc5d441730.
* Dimensions: properly manipulate non-px valuesTimmy Willison2015-11-091-9/+19
| | | | | Fixes gh-1712 Close gh-2695
* CSS: Correct misrepresentation of "auto" horizontal margins as 0Richard Gibson2015-10-181-0/+13
| | | | | | | | | | | | Fixes gh-2237 Closes gh-2276 (cherry picked from commit 214e1634ab9b1d13d53647dd5de3bdf7a091d49c) Conflicts: src/css.js src/css/support.js test/unit/support.js
* CSS: use isFinite in place of redundant isNumericTimmy Willison2015-10-181-1/+1
|
* CSS: Make show/hide/toggle methods a moduleDave Methvin2015-10-181-21/+1
| | | | | | | | Unit test changes some uses of .show() and .hide() to .css( "display", ... ), there was already an implicit assumption in several of the existing tests. Fixes gh-2193 Close gh-2648
* Ajax:Attributes:CSS:Manipulation: Reduce Android 2.3 supportMichał Gołębiowski2015-09-141-10/+0
| | | | | | | | Drop non-critical workarounds for Android 2.3. Fixes gh-2483 Fixes gh-2505 Closes gh-2581
* Build: Update jscs and lint filesOleg Gaidarenko2015-09-071-20/+31
| | | | Fixes gh-2056
* CSS: Make .css("width") & .css("height") return fractional valuesMichał Gołębiowski2015-07-071-9/+17
| | | | | Fixes gh-1724 Closes gh-2439
* CSS: Improve a comment explaining IE11 fullscreen bugMichał Gołębiowski2015-07-011-1/+2
|
* CSS: Work around an IE11 fullscreen dimensions bugMartin Naumann2015-06-231-0/+11
| | | | | Fixes gh-1764 Closes gh-2401
* CSS: Don't cache unrecognized CSS property namesMichał Gołębiowski2015-06-011-11/+10
| | | | | | | | | | | | | | | | | This prevents jQuery from caching a prefixed property name if provided directly by the user, e.g. the following code: elem.css( "msTransform", "translate(5px, 2px)" ); should not prevent one from from later setting the transition directly: elem.css( "transform", "translate(5px, 2px)" ); on a browser not understanding the unprefixed version which is the case for Safari 8 & transform. Fixes gh-2015 Closes gh-2298
* CSS: Ignore the CSS cascade in show()/hide()/etc.Richard Gibson2015-05-111-62/+2
| | | | | | Fixes gh-1767 Fixes gh-2071 Closes gh-2180
* CSS: Don't expose jQuery.swapMichał Gołębiowski2015-04-131-4/+4
| | | | | | | | | jQuery.swap was an undocumented API used only internally. With the modular AMD system we currently have it's not necessary to expose this function publicly under the jQuery object. Fixes gh-2058 Closes gh-2182
* CSS: Support relative adjustment in any applicable unitMr212015-03-091-8/+9
| | | | | Fixes gh-1711 Closes gh-2011
* Misc: Drop support for older browsers; update support commentsMichał Gołębiowski2014-11-031-1/+1
| | | | | | | | That includes Opera 12.x, Firefox<29, Safari<6.0 and some hacks for old Blackberry. Closes gh-1820 Refs gh-1815
* CSS: Removed redundant "to the number" in commentAurelio De Rosa2014-09-021-1/+1
| | | | Closes gh-1594
* Build: update grunt-jscs-checker and pass with the new rulesTimmy Willison2014-07-171-15/+31
|
* Support: clean up comments and Support notationDave Methvin2014-06-101-29/+28
| | | | Closes gh-1577
* Dimensions: Reverse a check to avoid potential reflowsChristian Kosmowski2014-04-181-1/+1
| | | | | Fixes #14979 Closes gh-1560
* CSS: jQuery#hide should always save display valueOleg Gaidarenko2014-03-201-6/+3
| | | | | Fixes #14750 Closes gh-1509
* CSS: Add flex-grow and flex-shrink to cssNumberRoman Rei_2014-03-131-0/+2
| | | | | Fixes #14888 Closes gh-1536
* Css: Revert 24e587929f62428e1959b10aace6dc4fd65ab397Michał Gołębiowski2014-03-101-3/+0
| | | | | | | | | | | | The workaround to be able to change !important styles broke the browser keeping the old CSS value if the new one was rejected. Patching it would involve a significant perf hit (~33%) so the initial patch needs to be reverted instead. Tests by m_gol & gibson042. Fixes #14836 Closes gh-1532
* CSS: Return values should be numbersDave Methvin2014-03-041-2/+2
| | | | Fixes #14792
* Fix #14394: Changing style !important in webkit. Close gh-1385.Lihan Li2013-10-151-0/+3
|
* Fixes #14450. Remove CommonJS+AMD syntax.Timmy Willison2013-10-151-23/+21
|
* Fix some code style inconsistenciesOleg2013-10-071-4/+1
|
* Ref #14313: NaN detection. Close gh-1352.Richard Gibson2013-09-121-2/+2
| | | | (cherry picked from commit 0bc0a69026ce4c1ac570a729d3c975a4a55d0ff4)
* charAt -> string indexing. Close gh-1359.Mike Sidorov2013-09-121-1/+1
|
* The cssHook from addGetHookIf wasn't actually getting addedTimmy Willison2013-09-111-1/+1
|
* No ticket. Abstract conditional hook definition.Michał Gołębiowski2013-09-111-20/+9
|
* Remove offset dependency from css. Move curCSS and getStyles to their own ↵Timmy Willison2013-09-101-76/+4
| | | | modules. -39 bytes. Close gh-1360.
* Separate jQuery.fn.init into its own module (for lighter core dependencies ↵Timmy Willison2013-09-091-0/+1
| | | | across all modules)
* Break jQuery.access out into its own module to separate it from core; Adjust ↵Timmy Willison2013-09-091-15/+21
| | | | CommonJS+AMD build support to include non-var dependencies. Convert modules with more than a few dependencies to use CJS+AMD syntax.
* Reorder css.js logicallyTimmy Willison2013-09-091-177/+177
|
* Always return jQuery in modules that can be included separatelyTimmy Willison2013-09-081-0/+1
|
* No ticket. Update support comments to reflect current state of affairs.Michał Gołębiowski2013-09-071-2/+2
|
* No ticket. Optimize the marginRight hook: run the support test once only.Michał Gołębiowski2013-09-061-7/+14
|
* Fix #10814. Make support tests lazy and broken out to components.Michał Gołębiowski2013-09-061-39/+47
|
* Pass all tests (and load Sizzle fixture correctly) when loading with AMDTimmy Willison2013-08-291-2/+3
|
* Fix #14150: revert to ownerDocument.defaultView.getComputedStyle. Close gh-1311.Chris Price2013-08-191-1/+1
|
* Specify support as a dependency wherever it is used. Optimize module order ↵Timmy Willison2013-08-151-1/+3
| | | | to save 15 bytes.
* AMD-ify jQuery sourcegit s! Woo! Fixes #14113, #14163.Timmy Willison2013-08-151-67/+18
|
* Fixes #14049: don't append px to CSS order value. Close gh-1300.Jason Merino2013-07-011-0/+1
|
* Avoid jQuery(this) and a closure for .toggle(Boolean), close gh-1271.Jason Bedard2013-06-021-2/+4
|