Changeset bc37722c


Ignore:
Timestamp:
05/26/2004 08:22:29 PM (20 years ago)
Author:
Manuel Canales Esparcia <manuel@…>
Branches:
10.0, 10.0-rc1, 10.1, 10.1-rc1, 11.0, 11.0-rc1, 11.0-rc2, 11.0-rc3, 11.1, 11.1-rc1, 11.2, 11.2-rc1, 11.3, 11.3-rc1, 12.0, 12.0-rc1, 12.1, 12.1-rc1, 6.0, 6.1, 6.1.1, 6.3, 6.4, 6.5, 6.6, 6.7, 6.8, 7.0, 7.1, 7.2, 7.3, 7.4, 7.5, 7.5-systemd, 7.6, 7.6-systemd, 7.7, 7.7-systemd, 7.8, 7.8-systemd, 7.9, 7.9-systemd, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, arm, bdubbs/gcc13, ml-11.0, multilib, renodr/libudev-from-systemd, s6-init, trunk, xry111/arm64, xry111/arm64-12.0, xry111/clfs-ng, xry111/lfs-next, xry111/loongarch, xry111/loongarch-12.0, xry111/loongarch-12.1, xry111/mips64el, xry111/pip3, xry111/rust-wip-20221008, xry111/update-glibc
Children:
8c16bf7
Parents:
964e0ea
Message:

Some changes in the CSS code to apetease IE6.
Changed the output matkup for admonitions.

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@3718 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

Location:
stylesheets
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • stylesheets/lfs-nochunks.xsl

    r964e0ea rbc37722c  
    11<?xml version='1.0' encoding='ISO-8859-1'?>
    2 
    3 <!-- Version 0.9 - Manuel Canales Esparcia <macana@lfs-es.org>
    4 Based on the original lfs-chunked.xsl created by Matthew Burgess -->
    52
    63<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  • stylesheets/lfs.css

    r964e0ea rbc37722c  
    5656
    5757div.navheader ul, div.navfooter ul {
    58   padding: .2em;
     58  padding: .2em .5em .5em 0;
     59  margin-left: 0px;
     60  margin-right: 2px;
    5961  position: relative;
    6062  background: #dbddec;
     
    7072  left: 0;
    7173  text-align: left;
    72   padding: 0.2em .5em;
    73   margin: 0;
     74  padding: 0.2em 1em;
     75  margin-left: 6px;
    7476}
    7577
     
    7779  position: absolute;
    7880  display: block;
    79   right: 0;
    8081  text-align: right;
    81   padding: 0.2em .5em;
    82   margin: 0;
     82  right: 5px;
     83  padding: 0.2em 0.5em;
     84  margin-right: 7px;
    8385}
    8486
     
    128130
    129131/* Admonitions */
    130 div.admonition {
     132div.note, div.tip {
    131133  background-color: #fffff6;
    132   border: medium solid #600;
     134  border: 2px solid #dbddec;
    133135  width: 90%;
    134136  margin: .5em auto;
     137}
     138
     139div.important, div.warning, div.caution {
     140  background-color: #fffff6;
     141  border: medium solid #400;
     142  width: 90%;
     143  margin: .5em auto;
     144  color: #600;
     145  font-size: larger;
     146}
     147
     148div.important h3, div.warning h3, div.caution h3 {
     149  color: #900;
    135150}
    136151
     
    146161div.admonbody {
    147162  margin: .5em;
     163}
     164
     165div.important em, div.warning em, div.caution em {
     166  color: #000;
     167  font-weight: bold;
     168}
     169
     170div.important tt, div.warning tt, div.caution tt {
     171  font-weight: bold;
    148172}
    149173
     
    206230div.wrap h1 {
    207231  background: #f5f6f7;
    208   padding: 0.5em 0 0.3em 0;
    209   margin: 0;
     232  padding: 1em 0 0.5em 0;
     233  margin: 0px auto;
    210234}
    211235
     
    213237  background: #f5f6f7;
    214238  border-bottom: 0.2em solid #dbddec;
    215   padding: 0 0.5em 0.3em 0.5em;
    216   margin: 0;
     239  padding: 0.5em 0.5em 0.3em 0.5em;
     240  margin: 0px auto;
    217241}
    218242
     
    232256  background: #f5f6f7;
    233257  border-top: 0.2em solid #dbddec;
    234   padding: 0.5em 0.5em 0.5em 0.5em;
     258  padding: 0.5em 0.5em 1em 0.5em;
    235259  margin: 0.5em 0 .5em 0;
    236260}
  • stylesheets/xhtml/lfs-admon.xsl

    r964e0ea rbc37722c  
    2222      </xsl:choose>
    2323    </xsl:variable>
    24     <div class="admonition">
     24    <div class="{name(.)}">
    2525      <div class ="admonhead">
    2626        <img alt="[{$admon.type}]">
     
    2929          </xsl:attribute>
    3030        </img>
    31         <h3 class="{name(.)}">
     31        <h3 class="admontitle">
    3232          <xsl:value-of select="$admon.type"/>
    3333          <xsl:if test="title">
Note: See TracChangeset for help on using the changeset viewer.