From ef49635ae25352d2c9e9fb65048bd3cab90418ac Mon Sep 17 00:00:00 2001 From: XhmikosR <xhmikosr@users.sourceforge.net> Date: Thu, 27 Feb 2014 11:15:53 +0200 Subject: [PATCH] Fix csslint errors. --- docs/examples/cover/cover.css | 1 + docs/examples/sticky-footer-navbar/index.html | 2 +- docs/examples/sticky-footer-navbar/sticky-footer-navbar.css | 4 ++-- docs/examples/sticky-footer/index.html | 2 +- docs/examples/sticky-footer/sticky-footer.css | 2 +- 5 files changed, 6 insertions(+), 5 deletions(-) diff --git a/docs/examples/cover/cover.css b/docs/examples/cover/cover.css index fb478ed094..9fcc9274f1 100644 --- a/docs/examples/cover/cover.css +++ b/docs/examples/cover/cover.css @@ -84,6 +84,7 @@ body { .masthead-nav > li > a:hover, .masthead-nav > li > a:focus { background-color: transparent; + border-bottom-color: #a9a9a9; border-bottom-color: rgba(255,255,255,.25); } .masthead-nav > .active > a, diff --git a/docs/examples/sticky-footer-navbar/index.html b/docs/examples/sticky-footer-navbar/index.html index dbce0806cd..9c7566ed63 100644 --- a/docs/examples/sticky-footer-navbar/index.html +++ b/docs/examples/sticky-footer-navbar/index.html @@ -71,7 +71,7 @@ <p>Back to <a href="../sticky-footer">the default sticky footer</a> minus the navbar.</p> </div> - <div id="footer"> + <div class="footer"> <div class="container"> <p class="text-muted">Place sticky footer content here.</p> </div> diff --git a/docs/examples/sticky-footer-navbar/sticky-footer-navbar.css b/docs/examples/sticky-footer-navbar/sticky-footer-navbar.css index 76ac2ec89c..ee80380630 100644 --- a/docs/examples/sticky-footer-navbar/sticky-footer-navbar.css +++ b/docs/examples/sticky-footer-navbar/sticky-footer-navbar.css @@ -8,7 +8,7 @@ body { /* Margin bottom by footer height */ margin-bottom: 60px; } -#footer { +.footer { position: absolute; bottom: 0; width: 100%; @@ -29,7 +29,7 @@ body > .container { margin: 20px 0; } -#footer > .container { +.footer > .container { padding-right: 15px; padding-left: 15px; } diff --git a/docs/examples/sticky-footer/index.html b/docs/examples/sticky-footer/index.html index a1d30106f1..5788cd5c91 100644 --- a/docs/examples/sticky-footer/index.html +++ b/docs/examples/sticky-footer/index.html @@ -37,7 +37,7 @@ <p>Use <a href="../sticky-footer-navbar">the sticky footer with a fixed navbar</a> if need be, too.</p> </div> - <div id="footer"> + <div class="footer"> <div class="container"> <p class="text-muted">Place sticky footer content here.</p> </div> diff --git a/docs/examples/sticky-footer/sticky-footer.css b/docs/examples/sticky-footer/sticky-footer.css index 8e9adcfaa4..b6699e80ed 100644 --- a/docs/examples/sticky-footer/sticky-footer.css +++ b/docs/examples/sticky-footer/sticky-footer.css @@ -8,7 +8,7 @@ body { /* Margin bottom by footer height */ margin-bottom: 60px; } -#footer { +.footer { position: absolute; bottom: 0; width: 100%; -- GitLab