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/_includes/header.html | 3 --- 1 file changed, 3 deletions(-) (limited to 'docs/_includes/header.html') diff --git a/docs/_includes/header.html b/docs/_includes/header.html index 37e27cd07..11076af46 100644 --- a/docs/_includes/header.html +++ b/docs/_includes/header.html @@ -15,9 +15,6 @@ {% if site.github %} - {% if page.title == "Flexbox grid system" %} - - {% endif %} {% else %} {% endif %} -- cgit v1.2.3 From e2b6badb86571d482c9653e05cedda10aae12127 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sat, 31 Dec 2016 12:20:32 -0800 Subject: v4: Rip out IE compatibility mode meta tags (#21483) * Remove IE compatibility mode meta tag from docs, examples, and JS tests as we no longer support IE9 and IE8 * update and remove some IE bits from our supported browser page * update introduction.md to match * reword starter template intro --- docs/_includes/header.html | 1 - 1 file changed, 1 deletion(-) (limited to 'docs/_includes/header.html') diff --git a/docs/_includes/header.html b/docs/_includes/header.html index 11076af46..57415be54 100644 --- a/docs/_includes/header.html +++ b/docs/_includes/header.html @@ -1,5 +1,4 @@ - -- cgit v1.2.3 From c709ce19a5bebee1cd3f083b0e2d924eb251c729 Mon Sep 17 00:00:00 2001 From: Maxime Locqueville <maxiloc@gmail.com> Date: Sun, 28 May 2017 18:50:53 +0200 Subject: add docsearch --- docs/_includes/header.html | 3 +++ 1 file changed, 3 insertions(+) (limited to 'docs/_includes/header.html') diff --git a/docs/_includes/header.html b/docs/_includes/header.html index 57415be54..fd9a9a28c 100644 --- a/docs/_includes/header.html +++ b/docs/_includes/header.html @@ -19,6 +19,9 @@ {% endif %} <!-- Documentation extras --> +{% if page.layout == "docs" %} +<link rel="stylesheet" href="https://cdn.jsdelivr.net/docsearch.js/2/docsearch.min.css" /> +{% endif %} <link href="{{ site.baseurl }}/assets/css/docs.min.css" rel="stylesheet"> <!-- Favicons --> -- cgit v1.2.3 From 3e76d6565603fafa2c85ad81d7b6345c4e279c72 Mon Sep 17 00:00:00 2001 From: Mark Otto <markdotto@gmail.com> Date: Sun, 28 May 2017 22:50:57 -0700 Subject: Rearrange all the docs to allow for a docs/major.minor/ setup --- docs/_includes/header.html | 38 -------------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 docs/_includes/header.html (limited to 'docs/_includes/header.html') diff --git a/docs/_includes/header.html b/docs/_includes/header.html deleted file mode 100644 index fd9a9a28c..000000000 --- a/docs/_includes/header.html +++ /dev/null @@ -1,38 +0,0 @@ -<meta charset="utf-8"> -<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> - -<title> - {% if page.title %} - {{ page.title }} · {{ site.title }} - {% else %} - {{ site.title }} · {{ site.description }} - {% endif %} - - -{% include social.html %} - - -{% if site.github %} - -{% else %} - -{% endif %} - - -{% if page.layout == "docs" %} - -{% endif %} - - - - - - - -- cgit v1.2.3