source: branches/htmlform/ipdb.css@ 463

Last change on this file since 463 was 463, checked in by Kris Deugau, 14 years ago

/branches/htmlform

Validation nitpick fix in assign.tmpl - also fixes missing field
name on alloctype list. <headdesk>
Convert new assignment result page to template.
Add missing error handling, missing IP pool selection on confirm.tmpl
Create footer template object earlier to allow pushing bits into
it during processing
Prepare to move initial output further down execution to prepare for
proper error handling in subs
Fix probable bug introduced with r456 where the "Routing" type isn't
available when it should be. Maybe. Probably.
Error messages for sub insertAssign() and confirmAssign could arguably
be further moved into the templates, but the complexity of the template
would go *way* up with little or no benefit.
See #3.

File size: 3.4 KB
Line 
1/* Default/global defs for specific tags */
2fieldset {
3 border: none;
4 padding: 0px;
5 margin: 0px;
6}
7
8#debug {
9 background-color: #990066;
10 padding: 2px;
11}
12
13/* Specific divs */
14#bodyheader {
15 margin-left: 4px;
16 position: relative;
17}
18#homelink {
19 font-size: 13px;
20 font-weight: bold;
21 position: absolute;
22 right: 10px;
23 bottom: 2px;
24 text-align: right;
25}
26#subheader {
27 background-color: #D0E0E0;
28 font-size: 90%;
29 padding: 3px;
30 border-top: thin solid #000000;
31 /* apparently this is required to keep "contained" position: absolute divs from escaping. O_o */
32 position: relative;
33}
34#csearch {
35 float: right;
36 padding: 3px;
37}
38#newlink {
39 position: absolute;
40 right: 10px;
41 top: 6px;
42 text-align: right;
43}
44#main {
45 padding: 10px;
46 border-top: thin solid #000000;
47/* text-align: center;*/
48 padding-top: 20px;
49 position: relative;
50}
51#utils {
52 font-size: 13px;
53 font-weight: bold;
54 position: absolute;
55 right: 10px;
56 top: 2px;
57 text-align: right;
58}
59#adminlink {
60 position: absolute;
61 right: 10px;
62 bottom: 5px;
63}
64#footer {
65 border-top: thin solid #000000;
66}
67#contact {
68 font-size: 10px;
69 position: absolute;
70 right: 10px;
71 text-align: right;
72}
73
74body {
75 background-color: #ffffff;
76 text-color: #000000;
77 font-family: helvetica;
78 margin: 0;
79}
80
81a { text-decoration: underline; }
82a:link { color:#3333ff; } /* unvisited link */
83a:visited { color:#663366; } /* visited link */
84a:hover { color:#dd00dd; } /* mouse over link */
85a:active { color:#cc0000; } /* selected link */
86
87table.centre {
88 margin-left: auto;
89 margin-right: auto;
90}
91
92/* Defs for bulk-data rows */
93tr.header {
94 background-color: #CCCCCC;
95 font-family: Verdana, Arial, Helvetica, sans-serif;
96}
97tr.row0 {
98 background-color: #A8C4D0;
99 font-family: Verdana, Arial, Helvetica, sans-serif;
100 font-size: 90%;
101}
102tr.row1 {
103 background-color: #d0e0e0;
104 font-family: Verdana, Arial, Helvetica, sans-serif;
105 font-size: 90%;
106}
107
108/* legacy defs */
109tr.color0 {
110 background-color: #A8C4D0;
111 font-family: Verdana, Arial, Helvetica, sans-serif;
112 font-size: 90%;
113}
114
115tr.color1 {
116 background-color: #d0e0e0;
117 font-family: Verdana, Arial, Helvetica, sans-serif;
118 font-size: 90%;
119}
120
121tr.color2 {
122 background-color: #A8C4D0;
123 font-family: Verdana, Arial, Helvetica, sans-serif;
124 font-size: 90%;
125}
126
127tr.hack {
128 background-color: #E4EEE8;
129 font-family: Verdana, Arial, Helvetica, sans-serif;
130 font-size: 90%;
131}
132
133tr.warning {
134 background-color: #000000;
135 font-family: Verdana, Arial, Helvetica, sans-serif;
136 font-weight: bold;
137 color: red;
138}
139
140tr.header {
141 background-color: #CCCCCC;
142 font-family: Verdana, Arial, Helvetica, sans-serif;
143}
144
145td {
146 padding-right: 2px;
147 padding-left: 2px;
148}
149
150/* Generic classes */
151.indent {
152 margin-left: 5%;
153 font-size: 90%;
154}
155
156.regular {
157 font-family: Verdana, Arial, Helvetica, sans-serif;
158 font-size: 100%;
159}
160
161.heading {
162 font-size: 110%;
163 font-weight: bold;
164 font-family: Verdana, Arial, Helvetica, sans-serif;
165}
166
167.tblsubtitle {
168 font-size: 105%;
169 font-weight: bold;
170 font-family: Verdana, Arial, Helvetica, sans-serif;
171}
172
173.small {
174 font-size: 60%;
175}
176
177.center {
178 text-align: center;
179 font-family: Verdana, Arial, Helvetica, sans-serif;
180 font-size: 100%;
181}
182
183.err {
184 text-align: center;
185 font-size: 100%;
186}
187
188.red {
189 font-weight: bold;
190 font-family: Verdana, Arial, Helvetica, sans-serif;
191 font-size:100%;
192 color: red;
193}
194
195.mask {
196 background: #00ff00;
197}
198
199.wildcard {
200 background: #ffff00;
201}
Note: See TracBrowser for help on using the repository browser.