##// END OF EJS Templates
added an icon on news comments...
Jean-Philippe Lang -
r139:2dc385079844
parent child
Show More
1 NO CONTENT: new file 100644, binary diff hidden
NO CONTENT: new file 100644, binary diff hidden
@@ -1,34 +1,34
1 <div class="contextual">
1 <div class="contextual">
2 <%= link_to_if_authorized l(:button_edit), {:controller => 'news', :action => 'edit', :id => @news}, :class => 'pic picEdit' %>
2 <%= link_to_if_authorized l(:button_edit), {:controller => 'news', :action => 'edit', :id => @news}, :class => 'pic picEdit' %>
3 <%= link_to_if_authorized l(:button_delete), {:controller => 'news', :action => 'destroy', :id => @news}, :confirm => l(:text_are_you_sure), :post => true, :class => 'pic picDelete' %>
3 <%= link_to_if_authorized l(:button_delete), {:controller => 'news', :action => 'destroy', :id => @news}, :confirm => l(:text_are_you_sure), :post => true, :class => 'pic picDelete' %>
4 </div>
4 </div>
5
5
6 <h2><%=h @news.title %></h2>
6 <h2><%=h @news.title %></h2>
7
7
8 <p><em><%=h @news.summary %><br />
8 <p><em><% unless @news.summary.empty? %><%=h @news.summary %><br /><% end %>
9 <%= @news.author.display_name %>, <%= format_time(@news.created_on) %></em></p>
9 <%= @news.author.display_name %>, <%= format_time(@news.created_on) %></em></p>
10 <br />
10 <br />
11 <%= textilizable auto_link @news.description %>
11 <%= textilizable auto_link @news.description %>
12 <br />
12 <br />
13
13
14 <div id="comments" style="margin-bottom:16px;">
14 <div id="comments" style="margin-bottom:16px;">
15 <h3><%= l(:label_comment_plural) %></h3>
15 <h3 class="icon comment"><%= l(:label_comment_plural) %></h3>
16 <% @news.comments.each do |comment| %>
16 <% @news.comments.each do |comment| %>
17 <% next if comment.new_record? %>
17 <% next if comment.new_record? %>
18 <h4><%= format_time(comment.created_on) %> - <%= comment.author.name %></h4>
18 <h4><%= format_time(comment.created_on) %> - <%= comment.author.name %></h4>
19 <div class="contextual">
19 <div class="contextual">
20 <%= link_to_if_authorized l(:button_delete), {:controller => 'news', :action => 'destroy_comment', :id => @news, :comment_id => comment}, :confirm => l(:text_are_you_sure), :post => true, :class => 'pic picDelete' %>
20 <%= link_to_if_authorized l(:button_delete), {:controller => 'news', :action => 'destroy_comment', :id => @news, :comment_id => comment}, :confirm => l(:text_are_you_sure), :post => true, :class => 'pic picDelete' %>
21 </div>
21 </div>
22 <%= simple_format(auto_link(h comment.comment))%>
22 <%= simple_format(auto_link(h comment.comment))%>
23 <% end if @news.comments_count > 0 %>
23 <% end if @news.comments_count > 0 %>
24 </div>
24 </div>
25
25
26 <% if authorize_for 'news', 'add_comment' %>
26 <% if authorize_for 'news', 'add_comment' %>
27 <h3><%= l(:label_comment_add) %></h3>
27 <h3><%= l(:label_comment_add) %></h3>
28 <%= start_form_tag :action => 'add_comment', :id => @news %>
28 <%= start_form_tag :action => 'add_comment', :id => @news %>
29 <%= error_messages_for 'comment' %>
29 <%= error_messages_for 'comment' %>
30 <p><label for="comment_comment"><%= l(:field_comment) %></label><br />
30 <p><label for="comment_comment"><%= l(:field_comment) %></label><br />
31 <%= text_area 'comment', 'comment', :cols => 60, :rows => 6 %></p>
31 <%= text_area 'comment', 'comment', :cols => 60, :rows => 6 %></p>
32 <%= submit_tag l(:button_add) %>
32 <%= submit_tag l(:button_add) %>
33 <%= end_form_tag %>
33 <%= end_form_tag %>
34 <% end %> No newline at end of file
34 <% end %>
@@ -1,536 +1,537
1 /* andreas08 - an open source xhtml/css website layout by Andreas Viklund - http://andreasviklund.com . Free to use in any way and for any purpose as long as the proper credits are given to the original designer. Version: 1.0, November 28, 2005 */
1 /* andreas08 - an open source xhtml/css website layout by Andreas Viklund - http://andreasviklund.com . Free to use in any way and for any purpose as long as the proper credits are given to the original designer. Version: 1.0, November 28, 2005 */
2 /* Edited by Jean-Philippe Lang *>
2 /* Edited by Jean-Philippe Lang *>
3 /**************** Body and tag styles ****************/
3 /**************** Body and tag styles ****************/
4
4
5
5
6 #header * {margin:0; padding:0;}
6 #header * {margin:0; padding:0;}
7 p, ul, ol, li {margin:0; padding:0;}
7 p, ul, ol, li {margin:0; padding:0;}
8
8
9
9
10 body{
10 body{
11 font:76% Verdana,Tahoma,Arial,sans-serif;
11 font:76% Verdana,Tahoma,Arial,sans-serif;
12 line-height:1.4em;
12 line-height:1.4em;
13 text-align:center;
13 text-align:center;
14 color:#303030;
14 color:#303030;
15 background:#e8eaec;
15 background:#e8eaec;
16 margin:0;
16 margin:0;
17 }
17 }
18
18
19
19
20 a{
20 a{
21 color:#467aa7;
21 color:#467aa7;
22 font-weight:bold;
22 font-weight:bold;
23 text-decoration:none;
23 text-decoration:none;
24 background-color:inherit;
24 background-color:inherit;
25 }
25 }
26
26
27 a:hover{color:#2a5a8a; text-decoration:none; background-color:inherit;}
27 a:hover{color:#2a5a8a; text-decoration:none; background-color:inherit;}
28 a img{border:none;}
28 a img{border:none;}
29
29
30 p{padding:0 0 1em 0;}
30 p{padding:0 0 1em 0;}
31 p form{margin-top:0; margin-bottom:20px;}
31 p form{margin-top:0; margin-bottom:20px;}
32
32
33 img.left,img.center,img.right{padding:4px; border:1px solid #a0a0a0;}
33 img.left,img.center,img.right{padding:4px; border:1px solid #a0a0a0;}
34 img.left{float:left; margin:0 12px 5px 0;}
34 img.left{float:left; margin:0 12px 5px 0;}
35 img.center{display:block; margin:0 auto 5px auto;}
35 img.center{display:block; margin:0 auto 5px auto;}
36 img.right{float:right; margin:0 0 5px 12px;}
36 img.right{float:right; margin:0 0 5px 12px;}
37
37
38 /**************** Header and navigation styles ****************/
38 /**************** Header and navigation styles ****************/
39
39
40 #container{
40 #container{
41 width:100%;
41 width:100%;
42 min-width: 800px;
42 min-width: 800px;
43 margin:0;
43 margin:0;
44 padding:0;
44 padding:0;
45 text-align:left;
45 text-align:left;
46 background:#ffffff;
46 background:#ffffff;
47 color:#303030;
47 color:#303030;
48 }
48 }
49
49
50 #header{
50 #header{
51 height:4.5em;
51 height:4.5em;
52 margin:0;
52 margin:0;
53 background:#467aa7;
53 background:#467aa7;
54 color:#ffffff;
54 color:#ffffff;
55 margin-bottom:1px;
55 margin-bottom:1px;
56 }
56 }
57
57
58 #header h1{
58 #header h1{
59 padding:10px 0 0 20px;
59 padding:10px 0 0 20px;
60 font-size:2em;
60 font-size:2em;
61 background-color:inherit;
61 background-color:inherit;
62 color:#fff;
62 color:#fff;
63 letter-spacing:-1px;
63 letter-spacing:-1px;
64 font-weight:bold;
64 font-weight:bold;
65 font-family: Trebuchet MS,Georgia,"Times New Roman",serif;
65 font-family: Trebuchet MS,Georgia,"Times New Roman",serif;
66 }
66 }
67
67
68 #header h2{
68 #header h2{
69 margin:3px 0 0 40px;
69 margin:3px 0 0 40px;
70 font-size:1.5em;
70 font-size:1.5em;
71 background-color:inherit;
71 background-color:inherit;
72 color:#f0f2f4;
72 color:#f0f2f4;
73 letter-spacing:-1px;
73 letter-spacing:-1px;
74 font-weight:normal;
74 font-weight:normal;
75 font-family: Trebuchet MS,Georgia,"Times New Roman",serif;
75 font-family: Trebuchet MS,Georgia,"Times New Roman",serif;
76 }
76 }
77
77
78 #navigation{
78 #navigation{
79 height:2.2em;
79 height:2.2em;
80 line-height:2.2em;
80 line-height:2.2em;
81 margin:0;
81 margin:0;
82 background:#578bb8;
82 background:#578bb8;
83 color:#ffffff;
83 color:#ffffff;
84 }
84 }
85
85
86 #navigation li{
86 #navigation li{
87 float:left;
87 float:left;
88 list-style-type:none;
88 list-style-type:none;
89 border-right:1px solid #ffffff;
89 border-right:1px solid #ffffff;
90 white-space:nowrap;
90 white-space:nowrap;
91 }
91 }
92
92
93 #navigation li.right {
93 #navigation li.right {
94 float:right;
94 float:right;
95 list-style-type:none;
95 list-style-type:none;
96 border-right:0;
96 border-right:0;
97 border-left:1px solid #ffffff;
97 border-left:1px solid #ffffff;
98 white-space:nowrap;
98 white-space:nowrap;
99 }
99 }
100
100
101 #navigation li a{
101 #navigation li a{
102 display:block;
102 display:block;
103 padding:0px 10px 0px 22px;
103 padding:0px 10px 0px 22px;
104 font-size:0.8em;
104 font-size:0.8em;
105 font-weight:normal;
105 font-weight:normal;
106 text-decoration:none;
106 text-decoration:none;
107 background-color:inherit;
107 background-color:inherit;
108 color: #ffffff;
108 color: #ffffff;
109 }
109 }
110
110
111 #navigation li.submenu {
111 #navigation li.submenu {
112 background:url(../images/arrow_down.png) 96% 80% no-repeat;
112 background:url(../images/arrow_down.png) 96% 80% no-repeat;
113 }
113 }
114
114
115 #navigation li.submenu a {
115 #navigation li.submenu a {
116 padding:0px 16px 0px 22px;
116 padding:0px 16px 0px 22px;
117 }
117 }
118
118
119 * html #navigation a {width:1%;}
119 * html #navigation a {width:1%;}
120
120
121 #navigation .selected,#navigation a:hover{
121 #navigation .selected,#navigation a:hover{
122 color:#ffffff;
122 color:#ffffff;
123 text-decoration:none;
123 text-decoration:none;
124 background-color: #80b0da;
124 background-color: #80b0da;
125 }
125 }
126
126
127 /**************** Icons links *******************/
127 /**************** Icons links *******************/
128 .picHome { background: url(../images/home.png) no-repeat 4px 50%; }
128 .picHome { background: url(../images/home.png) no-repeat 4px 50%; }
129 .picUser { background: url(../images/user.png) no-repeat 4px 50%; }
129 .picUser { background: url(../images/user.png) no-repeat 4px 50%; }
130 .picUserPage { background: url(../images/user_page.png) no-repeat 4px 50%; }
130 .picUserPage { background: url(../images/user_page.png) no-repeat 4px 50%; }
131 .picAdmin { background: url(../images/admin.png) no-repeat 4px 50%; }
131 .picAdmin { background: url(../images/admin.png) no-repeat 4px 50%; }
132 .picProject { background: url(../images/projects.png) no-repeat 4px 50%; }
132 .picProject { background: url(../images/projects.png) no-repeat 4px 50%; }
133 .picLogout { background: url(../images/logout.png) no-repeat 4px 50%; }
133 .picLogout { background: url(../images/logout.png) no-repeat 4px 50%; }
134 .picHelp { background: url(../images/help.png) no-repeat 4px 50%; }
134 .picHelp { background: url(../images/help.png) no-repeat 4px 50%; }
135
135
136 .picEdit { background: url(../images/edit.png) no-repeat 4px 50%; }
136 .picEdit { background: url(../images/edit.png) no-repeat 4px 50%; }
137 .picDelete { background: url(../images/delete.png) no-repeat 4px 50%; }
137 .picDelete { background: url(../images/delete.png) no-repeat 4px 50%; }
138 .picAdd { background: url(../images/add.png) no-repeat 4px 50%; }
138 .picAdd { background: url(../images/add.png) no-repeat 4px 50%; }
139 .picMove { background: url(../images/move.png) no-repeat 4px 50%; }
139 .picMove { background: url(../images/move.png) no-repeat 4px 50%; }
140 .picCheck { background: url(../images/check.png) no-repeat 4px 70%; }
140 .picCheck { background: url(../images/check.png) no-repeat 4px 70%; }
141 .picPdf { background: url(../images/pdf.png) no-repeat 4px 50%;}
141 .picPdf { background: url(../images/pdf.png) no-repeat 4px 50%;}
142
142
143 .pic { padding-left: 18px; margin-left: 3px; }
143 .pic { padding-left: 18px; margin-left: 3px; }
144
144
145 .icon {
145 .icon {
146 background-position: 0% 40%;
146 background-position: 0% 40%;
147 background-repeat: no-repeat;
147 background-repeat: no-repeat;
148 padding-left: 20px;
148 padding-left: 20px;
149 }
149 }
150
150
151 .folder { background-image: url(../images/folder.png); }
151 .folder { background-image: url(../images/folder.png); }
152 .file { background-image: url(../images/file.png); }
152 .file { background-image: url(../images/file.png); }
153 .attachment { background-image: url(../images/attachment.png); }
153 .attachment { background-image: url(../images/attachment.png); }
154 .comment { background-image: url(../images/comment.png); }
154
155
155 /**************** Content styles ****************/
156 /**************** Content styles ****************/
156
157
157 html>body #content {
158 html>body #content {
158 height: auto;
159 height: auto;
159 min-height: 500px;
160 min-height: 500px;
160 }
161 }
161
162
162 #content{
163 #content{
163 width: auto;
164 width: auto;
164 height:500px;
165 height:500px;
165 font-size:0.9em;
166 font-size:0.9em;
166 padding:20px 10px 10px 20px;
167 padding:20px 10px 10px 20px;
167 margin-left: 120px;
168 margin-left: 120px;
168 border-left: 1px dashed #c0c0c0;
169 border-left: 1px dashed #c0c0c0;
169
170
170 }
171 }
171
172
172 #content h2{
173 #content h2{
173 display:block;
174 display:block;
174 margin:0 0 16px 0;
175 margin:0 0 16px 0;
175 font-size:1.7em;
176 font-size:1.7em;
176 font-weight:normal;
177 font-weight:normal;
177 letter-spacing:-1px;
178 letter-spacing:-1px;
178 color:#606060;
179 color:#606060;
179 background-color:inherit;
180 background-color:inherit;
180 font-family: Trebuchet MS,Georgia,"Times New Roman",serif;
181 font-family: Trebuchet MS,Georgia,"Times New Roman",serif;
181 }
182 }
182
183
183 #content h2 a{font-weight:normal;}
184 #content h2 a{font-weight:normal;}
184 #content h3{margin:0 0 12px 0; font-size:1.4em;color:#707070;font-family: Trebuchet MS,Georgia,"Times New Roman",serif;}
185 #content h3{margin:0 0 12px 0; font-size:1.4em;color:#707070;font-family: Trebuchet MS,Georgia,"Times New Roman",serif;}
185 #content h4{font-size: 1em; margin-bottom: 12px; margin-top: 20px; font-weight: normal; border-bottom: dotted 1px #c0c0c0;}
186 #content h4{font-size: 1em; margin-bottom: 12px; margin-top: 20px; font-weight: normal; border-bottom: dotted 1px #c0c0c0;}
186 #content a:hover,#subcontent a:hover{text-decoration:underline;}
187 #content a:hover,#subcontent a:hover{text-decoration:underline;}
187 #content ul,#content ol{margin:0 5px 16px 35px;}
188 #content ul,#content ol{margin:0 5px 16px 35px;}
188 #content dl{margin:0 5px 10px 25px;}
189 #content dl{margin:0 5px 10px 25px;}
189 #content dt{font-weight:bold; margin-bottom:5px;}
190 #content dt{font-weight:bold; margin-bottom:5px;}
190 #content dd{margin:0 0 10px 15px;}
191 #content dd{margin:0 0 10px 15px;}
191
192
192
193
193 /***********************************************/
194 /***********************************************/
194
195
195 form {
196 form {
196 display: inline;
197 display: inline;
197 }
198 }
198
199
199 blockquote {
200 blockquote {
200 padding-left: 6px;
201 padding-left: 6px;
201 border-left: 2px solid #ccc;
202 border-left: 2px solid #ccc;
202 }
203 }
203
204
204 input, select {
205 input, select {
205 vertical-align: middle;
206 vertical-align: middle;
206 margin-bottom: 4px;
207 margin-bottom: 4px;
207 }
208 }
208
209
209 input.button-small
210 input.button-small
210 {
211 {
211 font-size: 0.8em;
212 font-size: 0.8em;
212 }
213 }
213
214
214 .select-small
215 .select-small
215 {
216 {
216 font-size: 0.8em;
217 font-size: 0.8em;
217 }
218 }
218
219
219 label {
220 label {
220 font-weight: bold;
221 font-weight: bold;
221 font-size: 1em;
222 font-size: 1em;
222 }
223 }
223
224
224 fieldset {
225 fieldset {
225 border:1px solid #c0c0c0;
226 border:1px solid #c0c0c0;
226 padding: 6px;
227 padding: 6px;
227 }
228 }
228
229
229 legend {
230 legend {
230 color: #505050;
231 color: #505050;
231
232
232 }
233 }
233
234
234 .required {
235 .required {
235 color: #bb0000;
236 color: #bb0000;
236 }
237 }
237
238
238 .odd {
239 .odd {
239 background-color:#f6f7f8;
240 background-color:#f6f7f8;
240 }
241 }
241 .even {
242 .even {
242 background-color: #fff;
243 background-color: #fff;
243 }
244 }
244
245
245 hr { border:none; border-bottom: dotted 1px #c0c0c0; }
246 hr { border:none; border-bottom: dotted 1px #c0c0c0; }
246
247
247 div.square {
248 div.square {
248 border: 1px solid #999;
249 border: 1px solid #999;
249 float: left;
250 float: left;
250 margin: .4em .5em 0 0;
251 margin: .4em .5em 0 0;
251 overflow: hidden;
252 overflow: hidden;
252 width: .6em; height: .6em;
253 width: .6em; height: .6em;
253 }
254 }
254
255
255 table p {
256 table p {
256 margin:0;
257 margin:0;
257 padding:0;
258 padding:0;
258 }
259 }
259
260
260 ul.documents {
261 ul.documents {
261 list-style-type: none;
262 list-style-type: none;
262 padding: 0;
263 padding: 0;
263 margin: 0;
264 margin: 0;
264 }
265 }
265
266
266 ul.documents li {
267 ul.documents li {
267 background-image: url(../images/file.png);
268 background-image: url(../images/file.png);
268 background-repeat: no-repeat;
269 background-repeat: no-repeat;
269 background-position: 0 .4em;
270 background-position: 0 .4em;
270 padding-left: 20px;
271 padding-left: 20px;
271 margin-bottom: 10px;
272 margin-bottom: 10px;
272 margin-left: -37px;
273 margin-left: -37px;
273 }
274 }
274
275
275 /********** Table used to display lists of things ***********/
276 /********** Table used to display lists of things ***********/
276
277
277 table.list {
278 table.list {
278 width:100%;
279 width:100%;
279 border-collapse: collapse;
280 border-collapse: collapse;
280 border: 1px dotted #d0d0d0;
281 border: 1px dotted #d0d0d0;
281 margin-bottom: 6px;
282 margin-bottom: 6px;
282 }
283 }
283
284
284 table.with-cells td {
285 table.with-cells td {
285 border: 1px solid #d7d7d7;
286 border: 1px solid #d7d7d7;
286 }
287 }
287
288
288 table.list thead th {
289 table.list thead th {
289 text-align: center;
290 text-align: center;
290 background: #eee;
291 background: #eee;
291 border: 1px solid #d7d7d7;
292 border: 1px solid #d7d7d7;
292 color: #777;
293 color: #777;
293 }
294 }
294
295
295 table.list tbody th {
296 table.list tbody th {
296 font-weight: normal;
297 font-weight: normal;
297 background: #eed;
298 background: #eed;
298 border: 1px solid #d7d7d7;
299 border: 1px solid #d7d7d7;
299 }
300 }
300
301
301 /********** Validation error messages *************/
302 /********** Validation error messages *************/
302 #errorExplanation {
303 #errorExplanation {
303 width: 400px;
304 width: 400px;
304 border: 0;
305 border: 0;
305 padding: 7px;
306 padding: 7px;
306 padding-bottom: 3px;
307 padding-bottom: 3px;
307 margin-bottom: 0px;
308 margin-bottom: 0px;
308 }
309 }
309
310
310 #errorExplanation h2 {
311 #errorExplanation h2 {
311 text-align: left;
312 text-align: left;
312 font-weight: bold;
313 font-weight: bold;
313 padding: 5px 5px 10px 26px;
314 padding: 5px 5px 10px 26px;
314 font-size: 1em;
315 font-size: 1em;
315 margin: -7px;
316 margin: -7px;
316 background: url(../images/alert.png) no-repeat 6px 6px;
317 background: url(../images/alert.png) no-repeat 6px 6px;
317 }
318 }
318
319
319 #errorExplanation p {
320 #errorExplanation p {
320 color: #333;
321 color: #333;
321 margin-bottom: 0;
322 margin-bottom: 0;
322 padding: 5px;
323 padding: 5px;
323 }
324 }
324
325
325 #errorExplanation ul li {
326 #errorExplanation ul li {
326 font-size: 1em;
327 font-size: 1em;
327 list-style: none;
328 list-style: none;
328 margin-left: -16px;
329 margin-left: -16px;
329 }
330 }
330
331
331 /*========== Drop down menu ==============*/
332 /*========== Drop down menu ==============*/
332 div.menu {
333 div.menu {
333 background-color: #FFFFFF;
334 background-color: #FFFFFF;
334 border-style: solid;
335 border-style: solid;
335 border-width: 1px;
336 border-width: 1px;
336 border-color: #7F9DB9;
337 border-color: #7F9DB9;
337 position: absolute;
338 position: absolute;
338 top: 0px;
339 top: 0px;
339 left: 0px;
340 left: 0px;
340 padding: 0;
341 padding: 0;
341 visibility: hidden;
342 visibility: hidden;
342 z-index: 101;
343 z-index: 101;
343 }
344 }
344
345
345 div.menu a.menuItem {
346 div.menu a.menuItem {
346 font-size: 10px;
347 font-size: 10px;
347 font-weight: normal;
348 font-weight: normal;
348 line-height: 2em;
349 line-height: 2em;
349 color: #000000;
350 color: #000000;
350 background-color: #FFFFFF;
351 background-color: #FFFFFF;
351 cursor: default;
352 cursor: default;
352 display: block;
353 display: block;
353 padding: 0 1em;
354 padding: 0 1em;
354 margin: 0;
355 margin: 0;
355 border: 0;
356 border: 0;
356 text-decoration: none;
357 text-decoration: none;
357 white-space: nowrap;
358 white-space: nowrap;
358 }
359 }
359
360
360 div.menu a.menuItem:hover, div.menu a.menuItemHighlight {
361 div.menu a.menuItem:hover, div.menu a.menuItemHighlight {
361 background-color: #80b0da;
362 background-color: #80b0da;
362 color: #ffffff;
363 color: #ffffff;
363 }
364 }
364
365
365 div.menu a.menuItem span.menuItemText {}
366 div.menu a.menuItem span.menuItemText {}
366
367
367 div.menu a.menuItem span.menuItemArrow {
368 div.menu a.menuItem span.menuItemArrow {
368 margin-right: -.75em;
369 margin-right: -.75em;
369 }
370 }
370
371
371 /**************** Sidebar styles ****************/
372 /**************** Sidebar styles ****************/
372
373
373 #subcontent{
374 #subcontent{
374 position: absolute;
375 position: absolute;
375 left: 0px;
376 left: 0px;
376 width:110px;
377 width:110px;
377 padding:20px 20px 10px 5px;
378 padding:20px 20px 10px 5px;
378 }
379 }
379
380
380 #subcontent h2{
381 #subcontent h2{
381 display:block;
382 display:block;
382 margin:0 0 5px 0;
383 margin:0 0 5px 0;
383 font-size:1.0em;
384 font-size:1.0em;
384 font-weight:bold;
385 font-weight:bold;
385 text-align:left;
386 text-align:left;
386 color:#606060;
387 color:#606060;
387 background-color:inherit;
388 background-color:inherit;
388 font-family: Trebuchet MS,Georgia,"Times New Roman",serif;
389 font-family: Trebuchet MS,Georgia,"Times New Roman",serif;
389 }
390 }
390
391
391 #subcontent p{margin:0 0 16px 0; font-size:0.9em;}
392 #subcontent p{margin:0 0 16px 0; font-size:0.9em;}
392
393
393 /**************** Menublock styles ****************/
394 /**************** Menublock styles ****************/
394
395
395 .menublock{margin:0 0 20px 8px; font-size:0.8em;}
396 .menublock{margin:0 0 20px 8px; font-size:0.8em;}
396 .menublock li{list-style:none; display:block; padding:1px; margin-bottom:0px;}
397 .menublock li{list-style:none; display:block; padding:1px; margin-bottom:0px;}
397 .menublock li a{font-weight:bold; text-decoration:none;}
398 .menublock li a{font-weight:bold; text-decoration:none;}
398 .menublock li a:hover{text-decoration:none;}
399 .menublock li a:hover{text-decoration:none;}
399 .menublock li ul{margin:0; font-size:1em; font-weight:normal;}
400 .menublock li ul{margin:0; font-size:1em; font-weight:normal;}
400 .menublock li ul li{margin-bottom:0;}
401 .menublock li ul li{margin-bottom:0;}
401 .menublock li ul a{font-weight:normal;}
402 .menublock li ul a{font-weight:normal;}
402
403
403 /**************** Footer styles ****************/
404 /**************** Footer styles ****************/
404
405
405 #footer{
406 #footer{
406 clear:both;
407 clear:both;
407 padding:5px 0;
408 padding:5px 0;
408 margin:0;
409 margin:0;
409 font-size:0.9em;
410 font-size:0.9em;
410 color:#f0f0f0;
411 color:#f0f0f0;
411 background:#467aa7;
412 background:#467aa7;
412 }
413 }
413
414
414 #footer p{padding:0; margin:0; text-align:center;}
415 #footer p{padding:0; margin:0; text-align:center;}
415 #footer a{color:#f0f0f0; background-color:inherit; font-weight:bold;}
416 #footer a{color:#f0f0f0; background-color:inherit; font-weight:bold;}
416 #footer a:hover{color:#ffffff; background-color:inherit; text-decoration: underline;}
417 #footer a:hover{color:#ffffff; background-color:inherit; text-decoration: underline;}
417
418
418 /**************** Misc classes and styles ****************/
419 /**************** Misc classes and styles ****************/
419
420
420 .splitcontentleft{float:left; width:49%;}
421 .splitcontentleft{float:left; width:49%;}
421 .splitcontentright{float:right; width:49%;}
422 .splitcontentright{float:right; width:49%;}
422 .clear{clear:both;}
423 .clear{clear:both;}
423 .small{font-size:0.8em;line-height:1.4em;padding:0 0 0 0;}
424 .small{font-size:0.8em;line-height:1.4em;padding:0 0 0 0;}
424 .hide{display:none;}
425 .hide{display:none;}
425 .textcenter{text-align:center;}
426 .textcenter{text-align:center;}
426 .textright{text-align:right;}
427 .textright{text-align:right;}
427 .important{color:#f02025; background-color:inherit; font-weight:bold;}
428 .important{color:#f02025; background-color:inherit; font-weight:bold;}
428
429
429 .box{
430 .box{
430 margin:0 0 20px 0;
431 margin:0 0 20px 0;
431 padding:10px;
432 padding:10px;
432 border:1px solid #c0c0c0;
433 border:1px solid #c0c0c0;
433 background-color:#fafbfc;
434 background-color:#fafbfc;
434 color:#505050;
435 color:#505050;
435 line-height:1.5em;
436 line-height:1.5em;
436 }
437 }
437
438
438 a.close-icon {
439 a.close-icon {
439 display:block;
440 display:block;
440 margin-top:3px;
441 margin-top:3px;
441 overflow:hidden;
442 overflow:hidden;
442 width:12px;
443 width:12px;
443 height:12px;
444 height:12px;
444 background-repeat: no-repeat;
445 background-repeat: no-repeat;
445 cursor:pointer;
446 cursor:pointer;
446 background-image:url('../images/close.png');
447 background-image:url('../images/close.png');
447 }
448 }
448
449
449 a.close-icon:hover {
450 a.close-icon:hover {
450 background-image:url('../images/close_hl.png');
451 background-image:url('../images/close_hl.png');
451 }
452 }
452
453
453 .rightbox{
454 .rightbox{
454 background: #fafbfc;
455 background: #fafbfc;
455 border: 1px solid #c0c0c0;
456 border: 1px solid #c0c0c0;
456 float: right;
457 float: right;
457 padding: 8px;
458 padding: 8px;
458 position: relative;
459 position: relative;
459 margin: 0 5px 5px;
460 margin: 0 5px 5px;
460 }
461 }
461
462
462 .layout-active {
463 .layout-active {
463 background: #ECF3E1;
464 background: #ECF3E1;
464 }
465 }
465
466
466 .block-receiver {
467 .block-receiver {
467 border:1px dashed #c0c0c0;
468 border:1px dashed #c0c0c0;
468 margin-bottom: 20px;
469 margin-bottom: 20px;
469 padding: 15px 0 15px 0;
470 padding: 15px 0 15px 0;
470 }
471 }
471
472
472 .mypage-box {
473 .mypage-box {
473 margin:0 0 20px 0;
474 margin:0 0 20px 0;
474 color:#505050;
475 color:#505050;
475 line-height:1.5em;
476 line-height:1.5em;
476 }
477 }
477
478
478 .handle {
479 .handle {
479 cursor: move;
480 cursor: move;
480 }
481 }
481
482
482 .login {
483 .login {
483 width: 50%;
484 width: 50%;
484 text-align: left;
485 text-align: left;
485 }
486 }
486
487
487 img.calendar-trigger {
488 img.calendar-trigger {
488 cursor: pointer;
489 cursor: pointer;
489 vertical-align: middle;
490 vertical-align: middle;
490 margin-left: 4px;
491 margin-left: 4px;
491 }
492 }
492
493
493 #history p {
494 #history p {
494 margin-left: 34px;
495 margin-left: 34px;
495 }
496 }
496
497
497 /***** Contextual links div *****/
498 /***** Contextual links div *****/
498 .contextual {
499 .contextual {
499 float: right;
500 float: right;
500 font-size: 0.8em;
501 font-size: 0.8em;
501 }
502 }
502
503
503 .contextual select, .contextual input {
504 .contextual select, .contextual input {
504 font-size: 1em;
505 font-size: 1em;
505 }
506 }
506
507
507
508
508 /***** CSS FORM ******/
509 /***** CSS FORM ******/
509 .tabular p{
510 .tabular p{
510 margin: 0;
511 margin: 0;
511 padding: 5px 0 8px 0;
512 padding: 5px 0 8px 0;
512 padding-left: 180px; /*width of left column containing the label elements*/
513 padding-left: 180px; /*width of left column containing the label elements*/
513 height: 1%;
514 height: 1%;
514 }
515 }
515
516
516 .tabular label{
517 .tabular label{
517 font-weight: bold;
518 font-weight: bold;
518 float: left;
519 float: left;
519 margin-left: -180px; /*width of left column*/
520 margin-left: -180px; /*width of left column*/
520 width: 175px; /*width of labels. Should be smaller than left column to create some right
521 width: 175px; /*width of labels. Should be smaller than left column to create some right
521 margin*/
522 margin*/
522 }
523 }
523
524
524 .error {
525 .error {
525 color: #cc0000;
526 color: #cc0000;
526 }
527 }
527
528
528
529
529 /*.threepxfix class below:
530 /*.threepxfix class below:
530 Targets IE6- ONLY. Adds 3 pixel indent for multi-line form contents.
531 Targets IE6- ONLY. Adds 3 pixel indent for multi-line form contents.
531 to account for 3 pixel bug: http://www.positioniseverything.net/explorer/threepxtest.html
532 to account for 3 pixel bug: http://www.positioniseverything.net/explorer/threepxtest.html
532 */
533 */
533
534
534 * html .threepxfix{
535 * html .threepxfix{
535 margin-left: 3px;
536 margin-left: 3px;
536 } No newline at end of file
537 }
1 NO CONTENT: file was removed, binary diff hidden
NO CONTENT: file was removed, binary diff hidden
General Comments 0
You need to be logged in to leave comments. Login now