Adding some new png files to supoprt alternate css
Fix css validation for media='print' stylesheet Add alternate css file NO VISIBLE CHANGES FOR USERS git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@10934 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
2
Makefile
@ -28,7 +28,7 @@ lfs: validate profile-html
|
||||
mkdir -p $(BASEDIR)/images; \
|
||||
fi;
|
||||
$(Q)cp images/*.png $(BASEDIR)/images
|
||||
# $(Q)cd $(BASEDIR)/; sed -i -e "s@../stylesheets@stylesheets@g" *.html
|
||||
$(Q)cd $(BASEDIR)/; sed -i -e "s@../stylesheets@stylesheets@g" *.html
|
||||
# $(Q)cd $(BASEDIR)/; sed -i -e "s@../images@images@g" *.html
|
||||
|
||||
@echo "Running Tidy and obfuscate.sh..."
|
||||
|
BIN
images/chevron-bottom.png
Normal file
After Width: | Height: | Size: 213 B |
BIN
images/chevron-left.png
Normal file
After Width: | Height: | Size: 211 B |
BIN
images/chevron-right.png
Normal file
After Width: | Height: | Size: 191 B |
BIN
images/chevron-top.png
Normal file
After Width: | Height: | Size: 204 B |
BIN
images/grid-three-up.png
Normal file
After Width: | Height: | Size: 146 B |
BIN
images/menu.png
Normal file
After Width: | Height: | Size: 158 B |
BIN
images/note.png
Before Width: | Height: | Size: 490 B After Width: | Height: | Size: 229 B |
BIN
images/tux.png
Normal file
After Width: | Height: | Size: 11 KiB |
@ -31,7 +31,8 @@ $Date$
|
||||
<!-- Print CSS Stylesheet -->
|
||||
<!-- The original template is in {docbook-xsl}/xhtml/docbook.xsl -->
|
||||
<xsl:template name='user.head.content'>
|
||||
<link rel="stylesheet" href="stylesheets/lfs-print.css" type="text/css" media="print"/>
|
||||
<link rel="stylesheet" href="../stylesheets/lfs-print.css" type="text/css" media="print"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
||||
</xsl:template>
|
||||
|
||||
<!-- Drop some unwanted style attributes -->
|
||||
|
@ -7,3 +7,12 @@ $Date$
|
||||
.navfooter, .headerlinks {
|
||||
display: none;
|
||||
}
|
||||
|
||||
div.navheader {
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
div.navheader ul,
|
||||
div.navheader ul{
|
||||
display: none;
|
||||
}
|
||||
|