]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/fusionforge/fusionforge-print.css
Add page PhpWikiAdministration/SetExternal for Fusionforge
[SourceForge/phpwiki.git] / themes / fusionforge / fusionforge-print.css
1 /**
2  * $Id$
3  *
4  * Copyright (C) 2008 Alcatel-Lucent
5  *
6  * This file is part of PhpWiki.
7  *
8  * PhpWiki is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * PhpWiki is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License along
19  * with PhpWiki; if not, write to the Free Software Foundation, Inc.,
20  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 */
22
23 /*
24  * Standard Alcatel-Lucent disclaimer for contributing to open source
25  *
26  * "The Style Sheet ("Contribution") has not been tested and/or
27  * validated for release as or in products, combinations with products or
28  * other commercial use. Any use of the Contribution is entirely made at
29  * the user's own responsibility and the user can not rely on any features,
30  * functionalities or performances Alcatel-Lucent has attributed to the
31  * Contribution.
32  *
33  * THE CONTRIBUTION BY ALCATEL-LUCENT IS PROVIDED AS IS, WITHOUT WARRANTY
34  * OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
35  * WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, COMPLIANCE,
36  * NON-INTERFERENCE AND/OR INTERWORKING WITH THE SOFTWARE TO WHICH THE
37  * CONTRIBUTION HAS BEEN MADE, TITLE AND NON-INFRINGEMENT. IN NO EVENT SHALL
38  * ALCATEL-LUCENT BE LIABLE FOR ANY DAMAGES OR OTHER LIABLITY, WHETHER IN
39  * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
40  * CONTRIBUTION OR THE USE OR OTHER DEALINGS IN THE CONTRIBUTION, WHETHER
41  * TOGETHER WITH THE SOFTWARE TO WHICH THE CONTRIBUTION RELATES OR ON A STAND
42  * ALONE BASIS."
43  */
44
45 /* Do not print the wiki navigation and edition bars */
46 .toolpalettes { display: none; }
47
48 /* Do not print Page Trail line */
49 .pagetrail { display: none; }
50
51 /* Do not print main wiki browse banner */
52 .browsebanner { display: none; }
53
54 /* Do not print rateit widget */
55 #rateit-widget-top { display: none; }
56
57 /* Do not print date of last edition */
58 .editdate { display: none; }
59
60 /* Print links in black */
61 a { color: black; }
62
63 /* Do not print icons in front of hyperlinks */
64 a.interwiki img { display: none; }
65 a.named-interwiki img { display: none; }
66 a.namedurl img { display: none; }
67
68 /* Do not print "none" sorting icon */
69 img[src="/wiki/themes/fusionforge/buttons/no_order.png"] { display: none; }
70
71 /**
72  * Table of content
73  */
74 div.toc {
75     border: 1px solid black;
76 }
77
78 /* Do not print TOC toggle image */
79 #toctoggle { display: none; }
80
81 div.toc p.toctitle, h1, h2, h3, h4, h5, h6 {
82     border-bottom: 1px solid black;
83 }
84
85 h1 { font-weight: bold; }
86
87 /*
88 div.toclist a::after {
89     content: leader('.') target-counter(attr(href), page);
90 }
91 */
92
93 table.boxed, table.bordered, table.bordered th, table.bordered td {
94     border-color: black;
95 }
96
97 #content {
98     background: white;
99     border: none;
100 }
101
102 /* Do not cut tables with class "nobreak" */
103
104 table.nobreak {
105     page-break-inside: avoid !important;
106 }