From 7cbe1ed8a6c6f8a42450983d647fd972290d1776 Mon Sep 17 00:00:00 2001 From: Steve Sutton Date: Wed, 18 Feb 2015 09:43:06 -0500 Subject: [PATCH] Move css into app.css moving from the inline used in slideshow templates --- .../templates/rotatingImages.html | 21 ------------------- css/app.css | 20 +++++++++++++++++- scss/_slideshow.scss | 20 ++++++++++++++++++ scss/app.scss | 1 + 4 files changed, 40 insertions(+), 22 deletions(-) create mode 100644 scss/_slideshow.scss diff --git a/Toolkit/RotatingImages/templates/rotatingImages.html b/Toolkit/RotatingImages/templates/rotatingImages.html index 7a63826..4eb05f0 100644 --- a/Toolkit/RotatingImages/templates/rotatingImages.html +++ b/Toolkit/RotatingImages/templates/rotatingImages.html @@ -1,24 +1,3 @@ - {if:images}
diff --git a/css/app.css b/css/app.css index a03a80d..80a70f7 100644 --- a/css/app.css +++ b/css/app.css @@ -7147,4 +7147,22 @@ aside.right-off-canvas-menu ul.off-canvas-list li > ul li > a { font-size: 0.875rem; line-height: 18px; } -/* END toggle class for off-canvas menu*/ \ No newline at end of file +/* END toggle class for off-canvas menu*/ +.nivo-caption { + background: #369 !important; + background: rgba(51, 102, 153, 0.8) !important; } + +.nivo-caption span { + float: right; } + +.nivo-controlNav { + display: block; + position: absolute; + z-index: 999; + top: -10px; + right: 10px; } + +#slider-wrapper { + width: 100%; + height: auto; + position: relative; } diff --git a/scss/_slideshow.scss b/scss/_slideshow.scss new file mode 100644 index 0000000..50b3df4 --- /dev/null +++ b/scss/_slideshow.scss @@ -0,0 +1,20 @@ +.nivo-caption { + background: #369 !important; + background: rgba(51,102,153,0.8) !important; + } +.nivo-caption span { + float: right; + } +.nivo-controlNav { + display: block; + position: absolute; + z-index: 999; + top: -10px; + right: 10px; + } +#slider-wrapper { + width: 100%; + height: auto; + position: relative; + } + diff --git a/scss/app.scss b/scss/app.scss index 13db37c..31a4979 100644 --- a/scss/app.scss +++ b/scss/app.scss @@ -1,6 +1,7 @@ @import "settings"; @import "foundation"; @import "structure"; +@import "slideshow"; // Or selectively include components // @import -- 2.17.1