From 62a129184d144de67349ff300a315c42dadc8712 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Tue, 18 Oct 2016 19:15:58 -0700 Subject: Add vertical-align utilities - Adds six new utils for vertical-align property - Documents the additional classes in the utils docs --- docs/_data/nav.yml | 1 + 1 file changed, 1 insertion(+) (limited to 'docs/_data') diff --git a/docs/_data/nav.yml b/docs/_data/nav.yml index 9e3e55367..f89a136f8 100644 --- a/docs/_data/nav.yml +++ b/docs/_data/nav.yml @@ -66,6 +66,7 @@ - title: Sizing and positioning - title: Spacing - title: Typography + - title: Vertical align # - title: Extend # pages: -- cgit v1.2.3 From 1aa6ff393bb11497e04c1a0a9e3a4b3e8797c2c1 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Mon, 24 Oct 2016 22:12:19 -0700 Subject: Fixes #20948: Rename Microsoft Edge to just Edge in docs --- docs/_data/browser-bugs.yml | 20 ++++++++++---------- docs/_data/browser-features.yml | 10 +++++----- 2 files changed, 15 insertions(+), 15 deletions(-) (limited to 'docs/_data') diff --git a/docs/_data/browser-bugs.yml b/docs/_data/browser-bugs.yml index 97c6d3d35..ec3c433d7 100644 --- a/docs/_data/browser-bugs.yml +++ b/docs/_data/browser-bugs.yml @@ -1,6 +1,6 @@ - browser: > - Microsoft Edge + Edge summary: > Visual artifacts in scrollable modal dialogs upstream_bug: > @@ -10,7 +10,7 @@ - browser: > - Microsoft Edge + Edge summary: > Native browser tooltip for `title` shows on first keyboard focus (in addition to custom tooltip component) upstream_bug: > @@ -20,7 +20,7 @@ - browser: > - Microsoft Edge + Edge summary: > Hovered element still remains in `:hover` state after scrolling away. upstream_bug: > @@ -30,7 +30,7 @@ - browser: > - Microsoft Edge + Edge summary: > When hovering over a ``'s pop-up menu is blank on some systems. + upstream_bug: > + Chromium#510079 + origin: > + Bootstrap#21120 + - browser: > Safari -- cgit v1.2.3 From 036437ec866ee38bd05f5e201d692412d78470c0 Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Mon, 28 Nov 2016 22:23:28 -0800 Subject: Add Wall of Browser Bugs entry for #20759 Refs https://bugs.webkit.org/show_bug.cgi?id=162362 Closes #20759 [ci skip] --- docs/_data/browser-bugs.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'docs/_data') diff --git a/docs/_data/browser-bugs.yml b/docs/_data/browser-bugs.yml index d12cb4f49..d3f7b43f5 100644 --- a/docs/_data/browser-bugs.yml +++ b/docs/_data/browser-bugs.yml @@ -460,6 +460,16 @@ origin: > Bootstrap#12832 +- + browser: > + Safari (iOS) + summary: > + Element which is `position:fixed` disappears after opening a `` menu on iPad causes shifting of hit-testing areas - upstream_bug: > - WebKit#150079, Safari#23082521 - origin: > - Bootstrap#14975 - - browser: > Safari (iOS) -- cgit v1.2.3 From eb2e1102be0f4641ee3e5c4e7853360d5a04e3d8 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Wed, 21 Dec 2016 20:26:17 -0800 Subject: Flexbox all the time (Drop IE9 support and remove $enable-flex option) (#21389) * 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 --- docs/_data/nav.yml | 2 -- 1 file changed, 2 deletions(-) (limited to 'docs/_data') diff --git a/docs/_data/nav.yml b/docs/_data/nav.yml index 847375422..6723352f4 100644 --- a/docs/_data/nav.yml +++ b/docs/_data/nav.yml @@ -6,7 +6,6 @@ - title: Browsers & devices - title: JavaScript - title: Options - - title: Flexbox - title: Build tools - title: Best practices - title: Accessibility @@ -15,7 +14,6 @@ pages: - title: Overview - title: Grid - - title: Flexbox grid - title: Media object - title: Responsive utilities -- cgit v1.2.3 From 5464f4ab7e1ea5e6ef841609dbeb04d0436655db Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Fri, 23 Dec 2016 11:48:03 -0800 Subject: Start to blow out and document more flexbox utilities - Adds new flexbox.md file to utilities docs - Adds a `breakpoints.yml` data file for easier output of responsive classes in the docs. Will put this to use on other pages soon. - Adds hella flex utils. There are some dupes for now, but they'll get removed in time. --- docs/_data/breakpoints.yml | 29 +++++++++++++++++++++++++++++ docs/_data/nav.yml | 1 + 2 files changed, 30 insertions(+) create mode 100644 docs/_data/breakpoints.yml (limited to 'docs/_data') diff --git a/docs/_data/breakpoints.yml b/docs/_data/breakpoints.yml new file mode 100644 index 000000000..3c8cfe293 --- /dev/null +++ b/docs/_data/breakpoints.yml @@ -0,0 +1,29 @@ +- breakpoint: xs + abbr: "" + name: Extra small + min-width: 0px + container: "" + +- breakpoint: sm + abbr: -sm + name: Small + min-width: 576px + container: 540px + +- breakpoint: md + abbr: -md + name: Medium + min-width: 768px + container: 720px + +- breakpoint: lg + abbr: -lg + name: Large + min-width: 992px + container: 960px + +- breakpoint: xl + abbr: -xl + name: Extra large + min-width: 1200px + container: 1140px diff --git a/docs/_data/nav.yml b/docs/_data/nav.yml index 6723352f4..256e1bb9d 100644 --- a/docs/_data/nav.yml +++ b/docs/_data/nav.yml @@ -56,6 +56,7 @@ - title: Clearfix - title: Close icon - title: Colors + - title: Flexbox - title: Display property - title: Image replacement - title: Invisible content -- cgit v1.2.3