| Age | Commit message (Collapse) | Author | Files | Lines |
|
- Restores two-mixin approach to generating semantic grid columns (now with 'make-col-ready' and 'make-col')
- Removes need for .col-xs-12 by restoring the mass list of all grid tier classes to set position, min-height, and padding
- Adds an initial 'width: 100%' to flexbox grid column prep (later overridden by the column sizing in 'flex' shorthand or 'width') to prevent flexbox columns from collapsing in lower viewports
|
|
|
|
The example for column ordering still referenced the old push/pull class names.
|
|
|
|
[ci skip]
|
|
(#20328)
|
|
instead of border-radius
|
|
remove current HTML-based symbol, add any missing aria-* attributes
|
|
[skip sauce]
|
|
Clarify valid values of Carousel's `pause` option
Fixes #18205
[skip sauce]
|
|
|
|
To avoid infinite recursion in newer npm versions, which added a lifecycle script for `npm shrinkwrap`.
Refs https://github.com/npm/npm/issues/13253
Refs https://github.com/npm/npm/pull/12814
[ci skip]
|
|
[skip sauce]
|
|
https://bugs.webkit.org/show_bug.cgi?id=159753
[skip sauce]
|
|
|
|
Used zopfli 1.0.1 with `zopflipng.exe -m --lossy_transparent -y --iterations=1000`.
Before: 199 KB (203.922 bytes)
After: 197 KB (202.151 bytes)
[ci skip]
|
|
[ci skip]
|
|
[ci skip]
|
|
[ci skip]
|
|
[ci skip]
|
|
In about 'Reboot', it says "moving **from** `rem` **to** `em` units. It should be moving from `em` to `rem`.
|
|
As this causes non-standard dotted outline on checkboxes/radio buttons
in OS X Firefox
Ports #19935 to v4
Refs #19933
[skip sauce]
|
|
|
|
[skip sauce]
|
|
Add Most Wanted Features entries for <dialog>
|
|
Refs https://bugzil.la/840640
Refs https://webkit.org/b/84635
[skip sauce]
|
|
|
|
SCSS-Lint 0.49.0 modifies Shorthand linter to report lint if a shorthand
of a length not specified in the allowed_shorthands option is used.
New defaults include "4" in the list of allowed shorthands, so we are changing our configuration accordingly.
Ref: https://github.com/brigade/scss-lint/commit/e283d1689699f581561fea344df3168128c46d7b
|
|
Fix typo in 'Reboot' section
|
|
Changed `box-sizing: border` to `box-sizing: border-box`
|
|
Update devDepedencies.
|
|
.scss-lint.yml
|
|
|
|
Avoid globbing in jscs npm script for Windows compatibility
|
|
Update dependencies.
|
|
Fixes #20197
[skip sauce]
[skip validator]
|
|
[ci skip]
|
|
Only grunt-saucelabs is left in order to update grunt to v1.x.
|
|
|
|
* bower.json, package.json: Extend jQuery version ranges to include v3
* NuGet: Bump jQuery to v3.0.0.1
* Docs+Examples: Update jQuery to v3.0.0
* Use jQuery v3.0.0 for JS unit tests
* Update jqueryVersionCheck to allow jQuery v3.x.x
|
|
done()s (#20198)
Fixes test flakiness on OS X Safari and Android when using jQuery 3.
Fixes #20182 more
Refs #20191
|
|
Use shx so that the npm scripts work everywhere the same.
|
|
|
|
Fixes #18813
Closes #20187
[skip sauce]
|
|
[ci skip]
|
|
Instead of doing a new assert.async(), just do a single one for the entire test
and let the .then() be async as well.
Closes #20190
|
|
|
|
Refs https://bugzilla.mozilla.org/show_bug.cgi?id=1282363
|
|
Closes #19906
[skip validator]
|
|
Previously, when running the docs locally, the site, rooted at:
http://localhost:9001/
would reference docs assets using relative URLs such as:
/../assets/js/vendor/anchor.min.js
which is equivalent to:
http://localhost:9001/../assets/js/vendor/anchor.min.js
which is nonsense, since the root directory has no parent directory.
Apparently browsers silently ignore this extra '..', hence why this wasn't noticed until now.
But if you adjust Jekyll's `baseurl` setting, this mistake causes incorrect URLs to get generated.
This commit corrects the problem by removing the extra '../' from the paths.
These paths are also referenced in the Gruntfile, where the fix actually allows us to simplify the code.
Previously, in the Gruntfile, we were doing, e.g.:
path.join('./docs/assets', '../assets/js/vendor/anchor.min.js')
which calculates to:
./docs/assets/../assets/js/vendor/anchor.min.js
which can be simplified to:
./docs/assets/js/vendor/anchor.min.js
So we can remove the '/assets' suffix from the left argument
and the '../' prefix from the right argument
and still obtain the same result.
|