aboutsummaryrefslogtreecommitdiff
path: root/scss
AgeCommit message (Collapse)AuthorFilesLines
2017-01-21Drop Normalize, port relevant parts to Reboot (#21741)Mark Otto6-555/+186
* 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-21Fix container within navbar on smallest breakpoint (#21722)Pierre Vanduynslager1-0/+7
* Make container in navbar to occupy full width even on smallest breakpoint * Fix typo in comment * Apply fix only on smaller breakpoint * drop the comment as chrome doesn't have a bug here
2017-01-21Progress line height (#21805)Mark Otto1-4/+2
* remove obvi comments * proper fix for #21801 - ensures .progress-bar text is vertically centered should the height of the .progress-bar change by matching the line-height and height values - we can't use flexbox here because the inner text of an element doesn't count as a flex item
2017-01-21fix segmented buttons (#21716)Gijs Boddeus1-4/+1
* fix segmented buttons changed flex-direction to row centering is now done by align-items instead of justify-content this way there is no need for flex property on the .btn inside .btn-group * Update _input-group.scss
2017-01-21Fix gaps between vertical grouped buttons when using labels (#21793) (#21796)Dmytro Yarmak1-0/+1
2017-01-15Remove list-group-item-heading and list-group-item-text (#21653)Pierre-Denis Vanduynslager3-30/+0
2017-01-15Remove unused scss variables (#21579)Pierre-Denis Vanduynslager1-22/+0
* Remove unused scss variables * Remove unnecessary space * Remove $zindex-navbar from docs * Re-add $progress-box-shadow
2017-01-15Remove filter: alpha(opacity = 0);Christian Oliff1-1/+0
Not needed (and all other old IE filter attributes have been removed from the CSS. This was the only one remaining
2017-01-15fixes #21625, closes #21539Mark Otto1-1/+1
don't set focus styles on the anchor, just set hover styles
2017-01-09Update breakpoints in breakpoints.scss commentsRishabh Rajgarhia1-7/+7
2017-01-09_custom.scss should be the first includeZulfiqar Ali1-1/+1
2017-01-06version bumpMark Otto1-1/+1
2017-01-05Doc updates (#21542)Quy1-1/+1
* Change it's to its. * Fix links * Fix typos
2017-01-03Custom Forms: Allow Chrome/Firefox feature that lets the user drag and drop ↵Phillip Marshall1-0/+2
into file inputs (#20033) * Restored functionality of dragging files into .custom-file inputs. * Replaced padding with height on .custom-file-input
2017-01-03clarify usage of base font-size so we know what's upMark Otto5-4/+5
2017-01-03Remove -size-root so we can respect user prefs on browser default font-sizeMark Otto3-9/+8
2017-01-03Drop .carete (#21525)Quy4-30/+0
2017-01-03button groups should be inline-flex to match their button counter parts ↵Mark Otto1-1/+1
(inline-block currently)
2017-01-03Drop .table-reflowMark Otto1-43/+0
Tried redoing this in flexbox, but it falls apart really quickly. Any changes in height of the cells throws it all off since the rows become columns (and thus, content across columns cannot be equally sized). Rather than implement something with such glaring flaws, I'm nuking it outright.
2017-01-02Remove .navbar-dividerQuy1-8/+0
2017-01-02remove magic dropdown positioning for fixed bottom; folks should set this as ↵Mark Otto1-3/+1
needed with .dropup modifier
2017-01-02update rest of docs, remove navbar specific modifiers, fix docs example cssMark Otto2-37/+8
2017-01-02New position utils, split docsMark Otto4-21/+35
- Renames .pos-f-t to .fixed-top, adds .fixed-bottom and .sticky-top - Updates utilities Sass to be split across more files (one for position, sizing, and spacing)
2017-01-02remove line breakMark Otto1-1/+0
2017-01-02Remove .navbar-divider; it's undocumented and wasn't updated with the ↵Mark Otto2-21/+0
flexbox navbar updates, so it's kinda bunk right now
2017-01-02fixes #21511: set line-height to 1.1 for display headingsMark Otto2-10/+15
- had to rearrange vars to re-use heading line-height - align values while we're at it
2017-01-01Update carousel comments (#21501)Quy1-3/+3
2017-01-01Update copyright years to 2017Nuno Arruda1-2/+2
2016-12-31Rip out the tab-focus mixin, remove application to anchors in rebootMark Otto3-15/+1
2016-12-31Fix responsive embed class in flex containerなつき1-5/+18
2016-12-30Rewrite progress component without <progress> elementMark Otto4-112/+21
- <progress> element didn't allow animation, labels overlaid, multiple bars, etc. - Revamps CSS to use something more similar to v3's implementation - Ditches variant mixin for `bg-` utils - Rebuilds docs to match, including adding a new Height section for customizing that. Only potential remaining todo is adding `.sr-only` instances to within the bar. Unsure if that's necessary.
2016-12-29Drop IE9 commentQuy1-1/+0
2016-12-28add position relative to containerMark Otto1-0/+1
allows for better/easier positioning of elements within (e.g., a toggler in a navbar)
2016-12-28use align-items on .form-inline to keep items from growing too much (#21461)Mark Otto1-0/+1
2016-12-28lintingMark Otto1-1/+1
2016-12-28add align-self to linter property orderMark Otto1-0/+1
2016-12-28redo order of css, add contents at topMark Otto1-128/+150
this was mad confusing for awhile
2016-12-28line break for readibilityMark Otto1-0/+1
2016-12-28reflect nav changes here in the responsive viewsMark Otto1-10/+10
- since we're column to start, need to set row. - note that flex-direction cannot be inherited, so we have to set it twice. - apply the horizontal padding again to .nav-link. - remove the .nav-item styles (un-needed). - remove previous .nav-link styles as they were un-nested and potentially problematic in old placement should someone mix more navs in here.
2016-12-28don't let the toggle grow when it's the only flex childMark Otto1-0/+1
2016-12-28set the direction to column (aka, vertical) for mobile viewsMark Otto1-0/+1
2016-12-28remove extra line breakMark Otto1-1/+0
2016-12-28bring over styles from .nav for .navbar-navMark Otto1-3/+7
since we're no longer using the .nav as a base class, we need to bring over some base styles for redoing browser list styles and setting flex in motion. also brings with it some .nav-link styling. we're still using this global class, but with this small modification for alignment of content in responsive modes.
2016-12-28drop the flex-grow: 10 in favor of auto margin utilsMark Otto1-1/+0
2016-12-29Change last reference from tags over to badges.Pierre-Denis Vanduynslager1-1/+1
2016-12-28limit linter override to the affected rulesetMark Otto1-2/+2
2016-12-28remove plain-hover-focus from navbar navsMark Otto1-6/+2
2016-12-28update navs to use `.show` instead of `.open` for dropdownsMark Otto1-2/+2
2016-12-28lintingMark Otto1-2/+2
2016-12-28no need to float, but do set display: block;Mark Otto1-1/+1
this, coupled with the move to flex, fixes #20029