diff --git a/lib/wraith/gallery_template/slideshow_template.erb b/lib/wraith/gallery_template/slideshow_template.erb index 5f40c79c..38beb28f 100644 --- a/lib/wraith/gallery_template/slideshow_template.erb +++ b/lib/wraith/gallery_template/slideshow_template.erb @@ -33,8 +33,8 @@ margin-top: 60px; } - .prev span:before, - .next span:before { + .prev span::before, + .next span::before { font-size: 35px; padding: 10px; display: block; @@ -43,21 +43,19 @@ display: block; } - .prev span:before { + .prev span::before { content:"\f0d9"; } - .next span:before { + .next span::before { content:"\f0da"; } - .list-group-item.checked a:after { - color: #23e343; - } + .list-group-item a span { word-wrap: break-word; width: 95%; display: block; } - .list-group-item a:after { + .list-group-item a::after { content:"\f00c"; font-family: "FontAwesome"; color: #eae6e6; @@ -65,6 +63,18 @@ right: 10px; top: 10px; } + + .list-group-item.current a::after { + color: #E1AB2F; + font-weight: bold; + content: "---"; + } + .list-group-item.checked a::after { + color: #23e343; + content:"\f00c"; + font-weight: normal; + } + .checked a { color: #000; } @@ -79,7 +89,7 @@ margin-left: 20px; } - .compare:before { + .compare::before { font-family: "FontAwesome"; content:"\f0c5"; font-size: 30px; @@ -105,23 +115,116 @@ margin-right: 20px; max-width: 30%; } + + .compare-modal ~ .prev { + z-index: 9999; + position: fixed; + top: 0; + left: 0; + width: 4%; + padding: 7px; + } + + .compare-modal ~ .next { + z-index: 9999; + position: fixed; + top: 0; + right: 0; + width: 4%; + padding: 7px; + } + + .compare-modal h1 { + color: white; + } +