aboutsummaryrefslogtreecommitdiff
path: root/scss/_reboot.scss
AgeCommit message (Collapse)AuthorFilesLines
2017-10-07Enable stylelint for _reboot.scss.XhmikosR1-3/+13
2017-10-03Use variable for heading margin bottom in rebootSimon Knox1-1/+1
2017-10-02Switch to stylelint. (#23572)XhmikosR1-1/+1
2017-09-27Reset button element border-radius in Reboot (#24126)Mark Otto1-0/+7
2017-09-26Add style for non-overlapping scrollbar in IE (#24081)Prateek Goel1-0/+3
2017-09-26Normalize all links. (#24109)XhmikosR1-1/+1
* use a trailing slash when possible * use https when possible * remove a few redirected links * consistently use `https://popper.js.org/` * fix `iconUrl` in nuget files * change Jekyll Windows guide to the official one
2017-08-21Exclude input type=range from touch-action:manipulationPatrick H. Lauke1-1/+1
2017-08-14Remove remaining v4 alpha references (#23414)Jacob Müller1-1/+1
* Remove remaining references to v4 Alpha This commit removes the remaining refrences to the v4 Alpha website and replaces them with the corresponding v4 Beta ones. **Note:** We have to hard code the current docs version at some places. Wouldn't it be good to have a `/docs/latest/` redirect to solve this "issue" in the future? * Don't update the domain in the CNAME file
2017-08-10Fix to Chrome inheritance bug (#22872) (#23118)Prateek Goel1-7/+6
* Fix to Chrome inheritance bug (#22872) * Remove box-sizing from html box-sizing removed from html and order of wild card selected and html selector swapped to maintain correctness of comments.
2017-08-10Add margin variable for paragraphs (#23140)Prateek Goel1-1/+1
2017-08-10Set explicit text-align on <body> element so we can use inherit to override ↵Mark Otto1-2/+6
the default <th> text-align value
2017-05-05Add shim for "new" HTML5 structural elements (#22573)Patrick H. Lauke1-0/+4
For IE10 (and any older browsers) support , so at least the layout doesn't fall apart if author is using them.
2017-04-10Remove `cursor: not-allowed` stylesPatrick H. Lauke1-7/+0
2017-03-18Update scss mixins to comply with scss-linting rules (#22151)naicko1-1/+1
* Fixed some linting issues * Run npm tasks after scss cleanup * Revert "Run npm tasks after scss cleanup" This reverts commit 1103a0da68d1846ad592eb4a105046a939557830. * Property sort order for grid * Let's respest the property order in the mixins * Respect property sort order in reboot file * ::-ms-expand is a vendor-prefix, add it to the scss-lint disable * Revert hover mixin comment * Fixed missing mixin hover-focus
2017-01-23Remove `cursor: pointer;` (#21812)Mark Otto1-11/+0
* Remove most of custom cursor: pointer; implementations * turns out that's not so much of a thing
2017-01-21Drop Normalize, port relevant parts to Reboot (#21741)Mark Otto1-79/+185
* Get this party started by removing mention of Normalize.css * Nuke the old comment, consolidate to a single line and number as appropriate * Bring over styles for HTML element from Normalize to Reboot * Move margin override for body element from Normalize to Reboot * Drop the block reset for HTML5 elements in IE9- from Normalize given we dropped IE9 support * Building on previous commit, do the same thing for figure, figcaption, and main * Remove IE9- display from Normalize given our browser support * Drop IE8 figure margin because we're IE10+ * No need for the h1 overrides because we reset these font and margin styles anyway in _type.scss already * Drop Safari 6 b and strong normalization because we're Safari 8+ * Remove mark styles for IE9- from Normalize * Remove old iOS audio fixes from Normalize * Remove IE9- display for progress from Normalize * Remove more IE9- rules from Normalize * One more IE9- display removal for canvas element * Move pre overrides from Normalize to Reboot * Move over some link resets to Reboot, drop others - Move over background-color and text-decoration - Drop focus outline change given it affects the offset on hover of focused links * Move over more code element resets, consolidate with pre overrides, too * Move over sub and sup wholesale * Move over img normalization to Reboot * Move over SVG override too * - Drop dupe hidden, but add comment for it - Move over template - Move over summary * Remove bulk of @viewport comment * edit down that code comment * consolidate html-based normalizations * update comments * Consolidate abbr styles * move over more type elements * move over hr changes * move over form controls and more * move over button resets * move over firefox button changes * move over search changes and more * we nuke all these styles for fieldsets anyway, so outright remove them * no need for those, we override them * move over legend, fieldset, progress * line break * delete normalize file * linting * update comment * clarify docs mentions of normalize and reboot * remove normalize excludes from linter * remove normalize excludes from cli task * linting * callout license since we forked part of normalize * Improve comments, move table background reset to .table class instead of in reboot * trailing space
2017-01-15fixes #21625, closes #21539Mark Otto1-1/+1
don't set focus styles on the anchor, just set hover styles
2017-01-03Remove -size-root so we can respect user prefs on browser default font-sizeMark Otto1-3/+5
2016-12-31Rip out the tab-focus mixin, remove application to anchors in rebootMark Otto1-5/+1
2016-12-02Reboot: Update <fieldset> comment to clarify that the default weirdness is ↵Chris Rebert1-3/+5
part of the standard. (#21261) Refs https://html.spec.whatwg.org/multipage/#the-fieldset-and-legend-elements [skip sauce]
2016-11-30Reboot: Add direct link to Edge scrollbar bugChris Rebert1-0/+1
Refs https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/7165383/ [ci skip]
2016-11-30Reboot: Link directly to the temporal inputs WebKit bugChris Rebert1-2/+2
Refs https://bugs.webkit.org/show_bug.cgi?id=139848 [ci skip]
2016-11-28Fix #20908 (#21244)Mark Otto1-2/+1
Remove the border-bottom from abbr elements since that's covered with an underline in Normalize.css. Updates the docs to match and tweaks some code comments, too.
2016-10-25Body font weight variabletomhorvat1-0/+1
2016-10-03Fix broken/redirected links, moving to HTTPS where possible. (#20557)Bardi Harborow1-6/+6
2016-10-02update commentMark Otto1-2/+1
2016-10-02remove the margin there since it's in normalizeMark Otto1-2/+0
2016-10-02Only override input border-radius as part of .form-control to avoid bug with ↵Mark Otto1-2/+0
iOS Safari (alt fix for #20247) (#20695)
2016-09-04Disable important flag on Sass linter (#20627)Mark Otto1-1/+1
2016-05-12Merge pull request #19874 from patrickhlauke/v4-links-not-anchors-focusableMark Otto1-2/+3
Make named anchor/placeholder link style reset more specific
2016-05-10Make named anchor/placeholder link style reset more specificPatrick H. Lauke1-2/+3
This avoids applying the reset to named anchors/placeholder links (links without an `href`) that have explicitly been made keyboard-focusable (using `tabindex`). This is not fool-proof - it's not easy/straightforward to check for the actual `tabindex` value itself, to ensure it's positive, not will this apply if a link has been "blessed" with `tabindex` via JS. However, this should catch most common uses (and gives a reasonably valid way around the issue for developers who, for whatever reason, DO want to use links without `href` - as side effect, it forces best practice of at least ensuring these links can also be focused with the keyboard)
2016-05-08Redo checkboxes and radiosMark Otto1-0/+11
- Move disabled radio and checkbox styles to Reboot - Collapse .radio and .checkbox into single class, .form-check - Collapse .radio-inline and .checkbox-inline into single class, .form-check-inline - Require classes for sub-elements in both new classes
2016-05-08Merge branch 'v4-dev' into v4-forms-cleanupMark Otto1-1/+4
2016-05-08remove unneeded, commented out border change for legends; it's handled in ↵Mark Otto1-1/+0
normalize
2016-05-08document table border collapse change, move from old normalize to our rebootMark Otto1-0/+2
2016-05-08move that change to rebootMark Otto1-0/+2
2016-04-23Avoid hacking around the temporal input bug in iOSMark Otto1-0/+12
- Rather than use CSS hacks, let's avoid needing to hack anything - Creates a new Reboot entry to simply reset the appear of the temporal inputs, thereby avoiding the problem entirely - Less than ideal for conveying affordance on iOS, but given bugginess of the input itself, seems a decent tradeoff
2016-03-05_reboot.scss: Capitalization & periods in commentChris Rebert1-4/+4
For consistency with the rest of the file [ci skip]
2016-03-05Neutralize link styles for placeholder links/named anchorsPatrick H. Lauke1-0/+19
2016-02-07Reboot: Update @viewport comment to account for ↵Chris Rebert1-2/+1
de944e088b278a989c83b4bfebb99e5042821021 [ci skip]
2016-02-06Fixes #17300: drop the unused at-viewportsMark Otto1-7/+1
2016-02-06linter overhaulMark Otto1-0/+2
2016-02-03Redo line-height globallyMark Otto1-1/+1
- Rename -height to -height-base to match other vars - Drop use of -height across the board and rely on it to be inherited - Adjust padding of .dropdown-header to account for different line-height of h6 heading element (this needs refactoring for variables and rems also)
2016-01-21Reboot: Remove now-unnecessary input[type="search"] box-sizing overrideChris Rebert1-2/+0
Revert "fixes #17379: override search input box-sizing to match our global overrides" This reverts commits 468a9d9359a1008675b2c19a1fae1d9016a7686d & 57998dc274a06b64d4caeda372aeea7b9d1af3ee. https://github.com/necolas/normalize.css/pull/496 has made this override unnecessary. [skip sauce]
2016-01-06Set -ms-overflow-style:scrollbar to workaround apparent IE11+Edge @viewport bugChris Rebert1-0/+7
Closes #18543
2015-12-07fixes #18330Mark Otto1-0/+9
2015-12-07fixes #18320: pull in suit base reset for button focus styles in FF and IEMark Otto1-0/+9
2015-12-07spacingMark Otto1-1/+1
2015-12-06Merge pull request #18426 from twbs/label-reboot-comment-grammarMark Otto1-1/+1
Fix grammar of comment for <label> in Reboot
2015-12-06Add 3 more font-weight variablesChris Rebert1-1/+1
Refs #14368 [skip sauce] [skip validator]