bdelacretaz 2003/09/27 12:12:05
Modified: src/blocks/slop/samples/yapt/css yapt-style.css
src/blocks/slop/samples/yapt/presentations yapt-demo.txt
src/blocks/slop/samples/yapt/stylesheets html-slides.xsl
Log:
Opera navigation positioning problem corrected
Revision Changes Path
1.3 +11 -1
cocoon-2.1/src/blocks/slop/samples/yapt/css/yapt-style.css
Index: yapt-style.css
===================================================================
RCS file:
/home/cvs/cocoon-2.1/src/blocks/slop/samples/yapt/css/yapt-style.css,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- yapt-style.css 27 Sep 2003 18:46:34 -0000 1.2
+++ yapt-style.css 27 Sep 2003 19:12:05 -0000 1.3
@@ -90,8 +90,18 @@
/** navigation at the bottom of slides */
#navigation {
position:fixed;
+ margin: 0;
+ padding: 0;
+ height: 1em;
+ left: 0;
+ top: auto;
+ right: 1em;
bottom: 0;
clear: both;
+ font-size: 60%;
+ text-align: right;
+ line-height: 80%;
+ display: inline;
}
#navigation div {
@@ -99,7 +109,7 @@
}
#navigation a {
- font-size: 80%;
+ border-bottom: none;
color: grey;
}
1.3 +1 -4
cocoon-2.1/src/blocks/slop/samples/yapt/presentations/yapt-demo.txt
Index: yapt-demo.txt
===================================================================
RCS file:
/home/cvs/cocoon-2.1/src/blocks/slop/samples/yapt/presentations/yapt-demo.txt,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- yapt-demo.txt 27 Sep 2003 18:46:34 -0000 1.2
+++ yapt-demo.txt 27 Sep 2003 19:12:05 -0000 1.3
@@ -48,9 +48,6 @@
When printing, only Opera honors the "page-breaks" CSS properties, current
versions of other browsers
will break images and slides in two when laying out pages.
-When an image on the left goes below flowed text, Opera does not correctly
position the navigation bar at
-the bottom of the page.
-
slide: Image examples: half-left image
img_leftHalf: screenshot.jpg
1.4 +4 -10
cocoon-2.1/src/blocks/slop/samples/yapt/stylesheets/html-slides.xsl
Index: html-slides.xsl
===================================================================
RCS file:
/home/cvs/cocoon-2.1/src/blocks/slop/samples/yapt/stylesheets/html-slides.xsl,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- html-slides.xsl 27 Sep 2003 18:46:34 -0000 1.3
+++ html-slides.xsl 27 Sep 2003 19:12:05 -0000 1.4
@@ -80,23 +80,17 @@
<xsl:if test="$prev">
<div class="navItem">
- <a href="{concat('slide-',$prev)}">
- previous
- </a>
+ <a href="{concat('slide-',$prev)}">previous</a>
</div>
</xsl:if>
<div class="navItem">
- <a href="index">
- index
- </a>
+ <a href="index">index</a>
</div>
<xsl:if test="$next">
<div class="navItem">
- <a href="{concat('slide-',$next)}">
- next
- </a>
+ <a href="{concat('slide-',$next)}">next</a>
</div>
</xsl:if>