From fe18aa8cb5bd3b7281b459b1dacb7bf878387da2 Mon Sep 17 00:00:00 2001 From: xcatliu Date: Thu, 21 Jan 2016 13:29:34 +0800 Subject: Add prefix to footer.html search.json --- docs/_includes/footer.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/_includes') diff --git a/docs/_includes/footer.html b/docs/_includes/footer.html index 662ea1133..3b912c322 100644 --- a/docs/_includes/footer.html +++ b/docs/_includes/footer.html @@ -43,7 +43,7 @@ SimpleJekyllSearch.init({ resultsContainer: document.getElementById('search-results'), searchResultTemplate: '{title}', noResultsText: '', - json: '/search.json' + json: '{{ site.baseurl }}/search.json' }) {% endif %} -- cgit v1.2.3 From 40aee9325da27b479e2a907345edccde55fd05ec Mon Sep 17 00:00:00 2001 From: "Patrick H. Lauke" Date: Wed, 17 Feb 2016 10:22:48 +0000 Subject: - Conveying color meaning to AT as markdown include - Add/replace callout for color and AT with include --- docs/_includes/callout-warning-color-assistive-technologies.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 docs/_includes/callout-warning-color-assistive-technologies.md (limited to 'docs/_includes') diff --git a/docs/_includes/callout-warning-color-assistive-technologies.md b/docs/_includes/callout-warning-color-assistive-technologies.md new file mode 100644 index 000000000..b92a1c341 --- /dev/null +++ b/docs/_includes/callout-warning-color-assistive-technologies.md @@ -0,0 +1,5 @@ +{% callout warning %} +#### Conveying meaning to assistive technologies + +Using color to add meaning only provides a visual indication, which will not be conveyed to users of assistive technologies – such as screen readers. Ensure that information denoted by the color is either obvious from the content itself (e.g. the visible text), or is included through alternative means, such as additional text hidden with the `.sr-only` class. +{% endcallout %} \ No newline at end of file -- cgit v1.2.3 From e0dfe0d24ddca73eb37e500a4231e9fc97de683b Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Thu, 18 Feb 2016 18:08:43 -0800 Subject: Docs: Remove from Ports #18872 to v4 [skip sauce] --- docs/_includes/header.html | 1 - 1 file changed, 1 deletion(-) (limited to 'docs/_includes') diff --git a/docs/_includes/header.html b/docs/_includes/header.html index e7ecb12ab..51b3cda8b 100644 --- a/docs/_includes/header.html +++ b/docs/_includes/header.html @@ -2,7 +2,6 @@ - -- cgit v1.2.3 From 79067a6440ba833fe290a2b386b0588ceb3610c7 Mon Sep 17 00:00:00 2001 From: XhmikosR <xhmikosr@gmail.com> Date: Tue, 26 Jan 2016 14:58:19 +0200 Subject: Fix validation errors. [skip sauce] --- docs/_includes/footer.html | 2 +- docs/_includes/nav-home.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'docs/_includes') diff --git a/docs/_includes/footer.html b/docs/_includes/footer.html index 3b912c322..561d4110c 100644 --- a/docs/_includes/footer.html +++ b/docs/_includes/footer.html @@ -1,4 +1,4 @@ -<footer class="bd-footer text-muted" role="contentinfo"> +<footer class="bd-footer text-muted"> <div class="container"> <ul class="bd-footer-links"> <li><a href="{{ site.repo }}">GitHub</a></li> diff --git a/docs/_includes/nav-home.html b/docs/_includes/nav-home.html index a347a5f7c..0436e2dbe 100644 --- a/docs/_includes/nav-home.html +++ b/docs/_includes/nav-home.html @@ -1,4 +1,4 @@ -<header class="navbar navbar-light navbar-static-top bd-navbar" role="banner"> +<header class="navbar navbar-light navbar-static-top bd-navbar"> <div class="container"> {% comment %} <nav class="nav navbar-nav pull-xs-right"> -- cgit v1.2.3 From 8d8df4e37ada0047a5d6fafb4a94ed1fb90a5623 Mon Sep 17 00:00:00 2001 From: Ivan Malopinsky <ivan@imsky.co> Date: Sat, 27 Feb 2016 17:24:00 -0500 Subject: update theme parameters to fix #19333 --- docs/_includes/footer.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docs/_includes') diff --git a/docs/_includes/footer.html b/docs/_includes/footer.html index 561d4110c..bfd657efe 100644 --- a/docs/_includes/footer.html +++ b/docs/_includes/footer.html @@ -50,8 +50,8 @@ SimpleJekyllSearch.init({ <script> Holder.addTheme('gray', { - background: '#777', - foreground: 'rgba(255,255,255,.75)', + bg: '#777', + fg: 'rgba(255,255,255,.75)', font: 'Helvetica', fontweight: 'normal' }) -- cgit v1.2.3