reveal event locations in calendar sidebar

git-svn-id: svn://svn.c3d2.de/c3d2-web/trunk@1452 31f61c52-7bfb-0310-b897-fc00f8a278f0
This commit is contained in:
astro 2009-01-07 21:46:04 +00:00
parent 2e388b2380
commit c9d3c90759
2 changed files with 19 additions and 0 deletions

View File

@ -296,6 +296,20 @@ dl:hover dd ul.location-hints {
text-decoration: underline;
}
#upcoming ul li .location {
/*display: none;*/
visibility: hidden;
white-space: nowrap;
overflow: hidden;
font-size: xx-small;
font-weight: bold;
}
#upcoming ul li:hover .location {
/*display: inline;*/
visibility: visible;
background-color: white;
}
/* -- footer -- */
#footer {
margin: 0 2em 2em 2em;

View File

@ -194,6 +194,11 @@
<a href="{$href}">
<xsl:value-of select="title"/>
</a>
<xsl:if test="location">
<xsl:text> </xsl:text>
<span class="location"><xsl:value-of select="location"/></span>
</xsl:if>
</li>
</xsl:if>
</xsl:for-each>