Fixed a bug in post's display

main
Inga 🏳‍🌈 14 years ago
parent cdd6516c59
commit 9d3bca576d
  1. 2
      Builder/IISMainHandler/build.txt
  2. 9
      static/css/modern/global.css
  3. 1
      templates/Modern/elems/PostInfo.xslt
  4. 4
      templates/Modern/elems/UserInfoBar.xslt

@ -1,5 +1,7 @@
body { font-size:11pt; } body { font-size:11pt; }
.zerosize { width:0px;height:0px;max-width:0px;max-height:0px; }
pre pre
{ {
overflow-x: auto; overflow-x: auto;
@ -48,6 +50,12 @@ pre
min-width:6em; min-width:6em;
max-width:6em; max-width:6em;
width:expression((this.scrollHeight >= 90) ? '90px' : 'auto'); width:expression((this.scrollHeight >= 90) ? '90px' : 'auto');
}
.userbar_additionalcontainer {
width:0px;
max-width:0px;
height:0px;
max-height:0px;
overflow:visible; overflow:visible;
} }
.userbar_additional { .userbar_additional {
@ -104,4 +112,3 @@ blockquote hr {
padding:0px; padding:0px;
margin:0px; margin:0px;
} }

@ -110,6 +110,7 @@
</div> </div>
</xsl:if> </xsl:if>
</div> </div>
<div style="clear:both;" class="zerosize"><xsl:comment>zerosize</xsl:comment></div>
</div> </div>
</xsl:template> </xsl:template>

@ -20,7 +20,8 @@
</xsl:choose> </xsl:choose>
</a> </a>
</div> </div>
<div class="userbar_additional" style="display:none"> <div class="userbar_additionalcontainer" style="display:none">
<div class="userbar_additional">
<xsl:if test="avatar"> <xsl:if test="avatar">
<div class="userbar_name"> <div class="userbar_name">
<xsl:apply-templates select="current()" mode="userLink"/> <xsl:apply-templates select="current()" mode="userLink"/>
@ -45,5 +46,6 @@
</xsl:if> </xsl:if>
</div> </div>
</div> </div>
</div>
</xsl:template> </xsl:template>
</xsl:stylesheet> </xsl:stylesheet>
Loading…
Cancel
Save