$(call copy, $(addprefix nrt-blue/,back.png bot.png left.png next.png prev.png right.png top.png style.css))
$(call copy, $(addprefix plain/,back.png next.png prev.png style.css))
-$(call copy, $(addprefix highslide/, highslide-ie6.css highslide.config.js highslide-with-gallery.js highslide.css))
+$(call copy, $(addprefix highslide/, highslide.css highslide-ie6.css highslide-with-gallery.js custom.css custom.js))
$(call copy, $(addprefix highslide/graphics/, \
close.png closeX.png controlbar-black-border.gif controlbar-text-buttons.png controlbar-white-small.gif \
controlbar-white.gif controlbar2.gif controlbar3.gif controlbar4-hover.gif controlbar4.gif fullexpand.gif \
return <<AMEN ;
<link rel=stylesheet href='$tdir/style.css' type='text/css' media=all>
<script type="text/javascript" src="$hsdir/highslide-with-gallery.js"></script>
-<script type="text/javascript" src="$hsdir/highslide.config.js" charset="utf-8"></script>
+<script type="text/javascript" src="$hsdir/custom.js" charset="utf-8"></script>
<script type="text/javascript">
hs.graphicsDir = '$hsdir/graphics/';
</script>
<link rel="stylesheet" type="text/css" href="$hsdir/highslide.css">
+<link rel="stylesheet" type="text/css" href="$hsdir/custom.css">
<!--[if lt IE 7]>
<link rel="stylesheet" type="text/css" href="$hsdir/highslide-ie6.css">
<![endif]-->
--- /dev/null
+/*
+ * Site-specific stylesheet for Highslide JS gallery theme
+ */
+
+.highslide-wrapper, .highslide-outline {
+ background: #111111;
+}
+.highslide img {
+ border: 1px solid #D0D0D0;
+}
+.highslide:hover img {
+ border-color: #A0A0A0;
+}
+.highslide-active-anchor img {
+ visibility: visible;
+ border-color: #808080 !important;
+}
+.highslide-image {
+ border: 2px solid #111111;
+}
+.highslide-caption {
+ color: #CCCCCC;
+ padding: 2px;
+}
+.highslide-loading {
+ color: black;
+ border: 1px solid black;
+ background-color: white;
+ background-image: url(graphics/loader.white.gif);
+}
+.highslide-controls {
+ position: static !important;
+ margin: 0;
+ width: 120px !important;
+}
+.highslide-gallery ul li {
+ width: 130px;
+ height: 110px;
+ border: 1px solid #505;
+ margin: 2px;
+}
+.highslide-dimming {
+ background: black;
+}
--- /dev/null
+/*
+ * Site-specific configuration settings for Highslide JS
+ */
+
+hs.showCredits = true;
+hs.creditsPosition = 'top right';
+hs.outlineType = 'rounded-black';
+hs.fadeInOut = false;
+hs.align = 'center';
+hs.useBox = true;
+hs.width = 1080;
+hs.height = 840;
+// hs.allowMultipleInstances = false;
+hs.captionEval = 'this.thumb.title';
+hs.captionOverlay = { position: "top" };
+hs.expandDuration = 100;
+hs.restoreDuration = 100;
+hs.dimmingDuration = 100;
+hs.dimmingOpacity = 0.8;
+hs.transitionDuration = 100;
+hs.thumbnailId = 'thumb1';
+hs.numberPosition = 'caption';
+hs.transitions = ['expand', 'crossfade'];
+
+hs.addSlideshow({
+ interval: 5000,
+ repeat: false,
+ useControls: true,
+ fixedControls: 'fit',
+ overlayOptions: {
+ className: 'controls-in-heading',
+ opacity: 0.6,
+ position: 'top center',
+ hideOnMouseOut: true
+ },
+ thumbstrip: {
+ mode: 'horizontal',
+ position: 'below',
+ relativeTo: 'expander'
+ }
+
+});
+++ /dev/null
-/*
- * Site-specific configuration settings for Highslide JS
- */
-
-hs.showCredits = true;
-hs.creditsPosition = 'top right';
-hs.outlineType = 'rounded-black';
-hs.fadeInOut = false;
-hs.align = 'center';
-hs.useBox = true;
-hs.width = 1080;
-hs.height = 840;
-// hs.allowMultipleInstances = false;
-hs.captionEval = 'this.thumb.title';
-hs.captionOverlay = { position: "top" };
-hs.expandDuration = 100;
-hs.restoreDuration = 100;
-hs.dimmingDuration = 100;
-hs.dimmingOpacity = 0.8;
-hs.transitionDuration = 100;
-hs.thumbnailId = 'thumb1';
-hs.numberPosition = 'caption';
-hs.transitions = ['expand', 'crossfade'];
-
-hs.addSlideshow({
- interval: 5000,
- repeat: false,
- useControls: true,
- fixedControls: 'fit',
- overlayOptions: {
- className: 'controls-in-heading',
- opacity: 0.6,
- position: 'top center',
- hideOnMouseOut: true
- },
- thumbstrip: {
- mode: 'horizontal',
- position: 'below',
- relativeTo: 'expander'
- }
-
-});
.highslide-thumbstrip-float .highslide-marker {
display: none;
}
-
-/*********************/
-/* Customized styles */
-/*********************/
-
-.highslide-wrapper, .highslide-outline {
- background: #111111;
-}
-.highslide img {
- border: 1px solid #D0D0D0;
-}
-.highslide:hover img {
- border-color: #A0A0A0;
-}
-.highslide-active-anchor img {
- visibility: visible;
- border-color: #808080 !important;
-}
-.highslide-image {
- border: 2px solid #111111;
-}
-.highslide-caption {
- color: #CCCCCC;
- padding: 2px;
-}
-.highslide-loading {
- color: black;
- border: 1px solid black;
- background-color: white;
- background-image: url(graphics/loader.white.gif);
-}
-.highslide-controls {
- position: static !important;
- margin: 0;
- width: 120px !important;
-}
-.highslide-gallery ul li {
- width: 130px;
- height: 110px;
- border: 1px solid #505;
- margin: 2px;
-}
-.highslide-dimming {
- background: black;
-}