Changeset 5791
- Timestamp:
- Oct 7, 2011, 10:55:20 AM (11 years ago)
- Location:
- trunk
- Files:
-
- 9 added
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/doc/src/docbook/user/webclient.xml
r5789 r5791 1930 1930 </para> 1931 1931 1932 <figure id="webclient.figures.viewpresets" >1932 <figure id="webclient.figures.viewpresets" float="right"> 1933 1933 <title>The view / presets dropdown</title> 1934 1934 <screenshot> -
trunk/lib/docbook/custom-styles/docbook/plain/css/docbook.css
r5789 r5791 125 125 } 126 126 127 .guimenu, .guisubmenu, .guimenuitem { 128 padding-right: 2px; 129 padding-left: 2px; 130 } 131 127 132 .userinput, .literallayout { 128 133 font-family: monospace; … … 221 226 /* ADMONITIONS ------------------------------------------------------ {{{ */ 222 227 223 div. note, div.important, div.example, div.informalexample, div.tip, div.warning, div.caution{228 div.admonition, div.example, div.informalexample { 224 229 margin: 1em; 225 230 padding: 0.5em; 226 231 border: 1px solid gray; 227 232 background-color: #f8f8e0; 228 } 229 230 div.important th, div.note th, div.tip th, div.warning th, div.caution th { 231 text-align: left; 232 border-bottom: solid 1px gray; 233 } 234 235 div.warning div.tip, div.important div.note { 233 border-radius: 8px; 234 -moz-border-radius: 8px; 235 box-shadow: 3px 3px 5px #cccccc; 236 -moz-box-shadow: 3px 3px 5px #999999; 237 } 238 239 div.admonition th { 240 text-align: left; 241 font-size: 1.3em; 242 xborder-bottom: solid 1px gray; 243 } 244 245 div.admonition div.admonition { 236 246 background-color: #ffffff; 237 } 238 247 box-shadow: 0px 0px 0px #cccccc; 248 -moz-box-shadow: 0px 0px 0px #999999; 249 } 250 251 div.admonition p:first-child { 252 margin-top: 0px; 253 } 239 254 /* ------------------------------------------------------------------- }}} */ 240 255 -
trunk/lib/docbook/custom-styles/docbook/plain/xsl/customized.chunked.xsl
r5676 r5791 49 49 <xsl:param name="admon.graphics" select="1"/> 50 50 <xsl:param name="admon.graphics.path">gfx/admonitions/</xsl:param> 51 <xsl:param name="admon.graphics.extension">. gif</xsl:param>51 <xsl:param name="admon.graphics.extension">.png</xsl:param> 52 52 <xsl:param name="admon.style"></xsl:param> 53 53 <xsl:param name="admonition.title.properties">text-align: left</xsl:param> 54 <xsl:param name="menuchoice.menu.separator">►</xsl:param> 54 55 55 56 <xsl:param name="keep.relative.image.uris" select="false"/> … … 60 61 61 62 <xsl:param name="chunker.output.encoding">utf-8</xsl:param> 63 <xsl:param name="chunker.output.doctype-public">-//W3C//DTD HTML 4.01 Transitional//EN</xsl:param> 64 <xsl:param name="chunker.output.doctype-system">http://www.w3.org/TR/html4/loose.dtd</xsl:param> 62 65 <xsl:param name="chunker.output.indent">yes</xsl:param> 63 66 <xsl:param name="chunker.message.nofilename">1</xsl:param> … … 275 278 </xsl:template> 276 279 280 <xsl:template match="*" mode="admon.graphic.width"> 281 <xsl:param name="node" select="."/> 282 <xsl:text>32</xsl:text> 283 </xsl:template> 284 285 <xsl:template match="note|warning|tip|important|caution" mode="class.attribute"> 286 <xsl:param name="class" select="local-name(.)"/> 287 <!-- permit customization of class attributes --> 288 <!-- Use element name by default --> 289 <xsl:attribute name="class"> 290 <xsl:value-of select="concat('admonition ', $class)"/> 291 </xsl:attribute> 292 </xsl:template> 293 277 294 <xsl:template match="classname"> 278 295 <xsl:call-template name="inline.monoseq"/>
Note: See TracChangeset
for help on using the changeset viewer.