r1479: Remove the need for $stylevar[alt_color] by using the altcolor CSS class by...
[bugdar.git] / templates / stylevars.txt
1 /*=====================================================================*\
2 || ###################################################################
3 || # Bugdar [#]version[#]
4 || # Copyright ©2002-[#]year[#] Blue Static
5 || #
6 || # This program 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; version [#]gpl[#] of the License.
9 || #
10 || # This program is distributed in the hope that it will be useful, but
11 || # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 || # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 || # more details.
14 || #
15 || # You should have received a copy of the GNU General Public License along
16 || # with this program; if not, write to the Free Software Foundation, Inc.,
17 || # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
18 || ###################################################################
19 \*=====================================================================*/
20
21 /*
22 This file is parsed to create PHP variables that
23 are used in templates with the $stylevar[] array.
24 It is similar to how a CSS element would be done.
25
26 Each line has:
27 variablename: value;
28
29 Only letters and numbers are valid in variable names;
30 everything else is converted to an undescore.
31
32 Values only are allowed to have numbers, letters, dashes,
33 periods/decimals, the number/pound sign, and the percent sign.
34
35 Comments are only valid in C++ style (the type of comment this is).
36 */
37
38 /* table elements */
39
40 border: 0;
41 spacing: 2;
42 padding: 2;
43
44 /* page elements */
45
46 normal-width: 100%;
47 alternate-width: 45%;
48
49 /* alternate background color used when status colors aren't displayed */
50 alt-color: #BFCCCF;
51
52 /*=====================================================================*\
53 || ###################################################################
54 || # $HeadURL$
55 || # $Id$
56 || ###################################################################
57 \*=====================================================================*/