aboutsummaryrefslogtreecommitdiff
path: root/scss/_variables.scss
AgeCommit message (Collapse)AuthorFilesLines
2017-01-28Add new extra large size for modal containersJuan Carlos González Cabrero1-0/+1
2017-01-24Pixel perfect navbar toggler (#21821)Geremia Taglialatela1-2/+2
The actual available size of the navbar toggler icon is 30px, but the SVG uses a 32 unit grid. This commit uses a 30 unit grid and updates icon accordingly.
2017-01-15Remove list-group-item-heading and list-group-item-text (#21653)Pierre-Denis Vanduynslager1-3/+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-03clarify usage of base font-size so we know what's upMark Otto1-0/+1
2017-01-03Remove -size-root so we can respect user prefs on browser default font-sizeMark Otto1-4/+1
2017-01-03Drop .carete (#21525)Quy1-1/+0
2017-01-02update rest of docs, remove navbar specific modifiers, fix docs example cssMark Otto1-8/+8
2017-01-02Remove .navbar-divider; it's undocumented and wasn't updated with the ↵Mark Otto1-2/+0
flexbox navbar updates, so it's kinda bunk right now
2017-01-02fixes #21511: set line-height to 1.1 for display headingsMark Otto1-10/+11
- had to rearrange vars to re-use heading line-height - align values while we're at it
2016-12-30Rewrite progress component without <progress> elementMark Otto1-11/+8
- <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-28Revamp list group states and docs to matchMark Otto1-16/+19
- Overhauls the states, including the link/button variants, for list groups to better match how we handle .btn states. - Moved the .list-group-item-action styles before the .list-group-item so that we don't have to do as much overriding. - Removed the plain-hover-focus mixins from the disabled and active states since they're unnecessary. - Added support for :active states on the .list-group-item-action variant (for the current click state). - Removed the heading and text classes and variables since we can accomplish the same thing with utilities. - Added support for :disabled on the .list-group-item-action as well since we can use those with button elements. - Rearranged docs to reflect all the above changes. - Reformatted some Sass variables.
2016-12-28Remove plain-hover-focus mixins from navsMark Otto1-2/+0
- No need to set hover and focus on disabled or active elements. Disabled has no interactivity and active will inherit the focus. - Also removes two now unused vars.
2016-12-28create a variable for the focus box-shadow, use it in the button base classMark Otto1-0/+1
also be sure to apply it for the active state when shadows are enabled
2016-12-28Rip numberQuy1-1/+1
2016-12-27add some varsMark Otto1-0/+11
2016-12-25Fixes #20586Mark Otto1-1/+1
Use pixels instead of rem units for focus box-shadow on custom controls so that IE11, Edge, and Win FF screw it up less
2016-12-25Use variables for the width/height classesStarsam801-0/+7
2016-12-25darker border on modal headerMark Otto1-1/+1
2016-12-24rip numbersMark Otto1-67/+67
2016-12-24Update toc numbering (#21422)Quy1-4/+3
2016-12-24remove unused media vars, update numbers (oof) /cc @QuyMark Otto1-10/+3
2016-12-24Undo #21171 (which closed #20977)Mark Otto1-0/+1
Turns out we did have the correct height calculation with our custom selects. The problem was we lacked a shared line-height with our buttons and inputs. This restores the previous `calc` math and adds a line-height that reuses the input line-height.
2016-12-22Rename Tags to Badges in commentsQuy1-2/+3
2016-12-22Merge branch 'flex-cards' into v4-devMark Otto1-2/+4
2016-12-22Add color variables for white and black (#21397)Jacob Müller1-66/+68
* Add color variables for white and black Closes #21395.
2016-12-22move to grid gutter width, fixes #21300Mark Otto1-1/+1
2016-12-22add card column margin variable instead of relying on a default card marginMark Otto1-0/+1
this assumes no margin on the .card to start (which will follow in a later commit)
2016-12-22add card column count variableMark Otto1-0/+1
2016-12-22Rename card column gap variableMark Otto1-1/+1
2016-12-22flexbox powered indicatorsMark Otto1-0/+1
This revamps the indicators to use flexbox instead of inline-block for added flexbility (hah). Indicators now automatically scale based on the number of elements present, and max out at the `$carousel-indicator-width` instead of always being that wide.
2016-12-22Redo navbar-togglerMark Otto1-1/+1
- Require inner element for the icon for improved customization (e.g., drop the element to replace it with your own icon font or SVG) - Tighten up padding - Better comments
2016-12-22fixes #18115: move forward with one naming scheme for inversed color ↵Mark Otto1-6/+6
schemes, renaming .navbar-dark to .navbar-inverse (matching .card-inverse in the process and restoring v3's inverted class name)
2016-12-21Flexbox all the time (Drop IE9 support and remove $enable-flex option) (#21389)Mark Otto1-1/+0
* remove the $enable-flex variable option * remove bootstrap-flex.css dist file and it's grunt task * remove the separate flex css file for docs; it's all the same now * remove flexbox docs (porting some to the main grid docs in next commit) * clean up few grid docs bits to simplify copy, start to mention flexbox * port relevant flexbox-grid.md content to grid.md - clean up mixins - update how it works section - bring over sizing and alignment sections * remove the $enable-flex from the options.md page * update lead paragraph to mention flexbox * update migration to mention loss of ie9 support * remove mention of flexbox dist file * clarify IE support * making a note * remove flexbox variant mentions from component docs - updates docs for media object, navs, list group, and cards to consolidate docs - no more need to callout flexbox variants since it's now the default * remove $enable-flex if/else from sass files * remove flex dist files * update scss lint property order to account for flex properties * linting * change to numberless classes for autosizing, wrap in highlighting div * bump gruntfile and postcss to ie10 * redo intro sections * rearrange * phew, redo hella grid docs - rearrange all the things - consolidate some bits * remove reference to flexbox mode * more border action for demo * Make some changes to the .card's in .card-deck's to ensure footers align to the bottom
2016-12-20Redo color varsMark Otto1-5/+17
This pulls in some changes from #18462 to include a set of generic color variables. It doesn't include a Sass map for generating the theme colors yet, since we can't easily do that for all components, but does give a few more color choices to folks and an easier way to customize.
2016-12-19Rename -bg-inverse to -inverse-bg; add -inverse-color (#21371)Mark Otto1-1/+3
2016-12-19Merge branch 'progress-brand' of https://github.com/szastupov/bootstrap into ↵Mark Otto1-1/+1
szastupov-progress-brand
2016-12-19Merge branch '14840-consistent-colors' of https://github.com/Kovah/bootstrap ↵Mark Otto1-26/+26
into Kovah-14840-consistent-colors
2016-12-19Add variables for transitions (#21345)Tom Lutzenberger1-0/+13
* Add variables for transitions * Add variables for transitions
2016-12-19Add 'system-ui' to font stack.Bardi Harborow1-1/+1
2016-12-20Use brand color for progress barStepan Zastupov1-1/+1
2016-12-04simplify svg by only using viewboxMark Otto1-2/+2
2016-12-04drop the fixed width of the indicators. instead use the carousel-control ↵Mark Otto1-2/+0
width as margins to ensure content doesn't overlap
2016-12-04rename varMark Otto1-1/+1
2016-12-04there's no font, so rip that varMark Otto1-1/+0
2016-12-04remove unused varsMark Otto1-2/+0
2016-12-04redo control icons to use open iconic svgs inlinedMark Otto1-0/+3
2016-12-04Merge branch 'v4-dev' into carouselMark Otto1-12/+13
2016-12-04nuke the text-shadowMark Otto1-2/+0
2016-12-04redesign indicatorsMark Otto1-3/+2