From: jordan Date: Thu, 7 Jul 2011 11:23:40 +0000 (+0000) Subject: Resolves OSQA-721, adding the ViewBox images in a separate directory in the media... X-Git-Tag: live~203 X-Git-Url: https://git.openstreetmap.org/osqa.git/commitdiff_plain/6ebde88b50458c1ba0d81d42ab3bc59e131537b1 Resolves OSQA-721, adding the ViewBox images in a separate directory in the media folder, changing the prev and next button selectors of the ViewBox CSS git-svn-id: http://svn.osqa.net/svnroot/osqa/trunk@1110 0cfe37f9-358a-4d5e-be75-b63607b5c754 --- diff --git a/forum/skins/default/media/images/viewbox/ViewBox_bg.png b/forum/skins/default/media/images/viewbox/ViewBox_bg.png new file mode 100644 index 0000000..396ed6d Binary files /dev/null and b/forum/skins/default/media/images/viewbox/ViewBox_bg.png differ diff --git a/forum/skins/default/media/images/viewbox/ViewBox_next.png b/forum/skins/default/media/images/viewbox/ViewBox_next.png new file mode 100644 index 0000000..30ec82a Binary files /dev/null and b/forum/skins/default/media/images/viewbox/ViewBox_next.png differ diff --git a/forum/skins/default/media/images/viewbox/ViewBox_prev.png b/forum/skins/default/media/images/viewbox/ViewBox_prev.png new file mode 100644 index 0000000..b5f25ab Binary files /dev/null and b/forum/skins/default/media/images/viewbox/ViewBox_prev.png differ diff --git a/forum/skins/default/media/images/viewbox/viewbox_close.png b/forum/skins/default/media/images/viewbox/viewbox_close.png new file mode 100644 index 0000000..6595cc8 Binary files /dev/null and b/forum/skins/default/media/images/viewbox/viewbox_close.png differ diff --git a/forum/skins/default/media/js/viewbox.css b/forum/skins/default/media/js/viewbox.css index dd39a14..b563176 100644 --- a/forum/skins/default/media/js/viewbox.css +++ b/forum/skins/default/media/js/viewbox.css @@ -31,7 +31,7 @@ padding:10px; height:20px; width:20px; - background-image:url(img/ViewBox_bg.png); + background-image:url(../images/viewbox/ViewBox_bg.png); background-color:#0f0e0e; overflow:visible; z-index:2200; @@ -56,7 +56,7 @@ position:absolute; top:-40px; right:-7px; - background:url(img/viewbox_close.png) top left no-repeat; + background:url(../images/viewbox/viewbox_close.png) top left no-repeat; height:30px; width:30px; } @@ -67,7 +67,7 @@ .vb_wrap .next { position:absolute; right:-60px; - background:url(img/ViewBox_next.png) top left no-repeat; + background:url(../images/viewbox/ViewBox_next.png) top left no-repeat; height:50px; width:50px; z-index:2190; @@ -75,12 +75,12 @@ .vb_wrap .prev { position:absolute; left:-59px; - background:url(img/ViewBox_prev.png) top right no-repeat; + background:url(../images/viewbox/ViewBox_prev.png) top right no-repeat; height:50px; width:50px; z-index:2190; } -.vb_wrap .close a, .next a, .prev a { +.vb_wrap .close a, .vb_wrap .next a, .vb_wrap .prev a { display:block; height:100%; width:100%; @@ -105,7 +105,7 @@ } .vb_wrap .text { position:absolute; - background: url(img/ViewBox_bg.png) top left repeat; + background: url(../images/viewbox/ViewBox_bg.png) top left repeat; border-top:solid 1px #121212; bottom:0; left:0; padding:5px;