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