##// END OF EJS Templates
removed menu.css and rails.css (content merged into application.css)...
Jean-Philippe Lang -
r108:676fe403abf2
parent child
Show More
@@ -1,145 +1,143
1 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
2 2 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
3 3 <head>
4 4 <title><%= $RDM_HEADER_TITLE + (@html_title ? ": #{@html_title}" : "") %></title>
5 5 <meta http-equiv="content-type" content="text/html; charset=utf-8" />
6 6 <meta name="description" content="redMine" />
7 7 <meta name="keywords" content="issue,bug,tracker" />
8 8 <%= stylesheet_link_tag "application" %>
9 <%= stylesheet_link_tag "menu" %>
10 <%= stylesheet_link_tag "rails" %>
11 9 <%= stylesheet_link_tag "print", :media => "print" %>
12 10 <%= javascript_include_tag :defaults %>
13 11 <%= javascript_include_tag 'menu' %>
14 12 <%= javascript_include_tag 'calendar/calendar' %>
15 13 <%= javascript_include_tag "calendar/lang/calendar-#{current_language}.js" %>
16 14 <%= javascript_include_tag 'calendar/calendar-setup' %>
17 15 <%= stylesheet_link_tag 'calendar' %>
18 16 <%= stylesheet_link_tag 'jstoolbar' %>
19 17 </head>
20 18
21 19 <body>
22 20 <div id="container" >
23 21
24 22 <div id="header">
25 23 <div style="float: left;">
26 24 <h1><%= $RDM_HEADER_TITLE %></h1>
27 25 <h2><%= $RDM_HEADER_SUBTITLE %></h2>
28 26 </div>
29 27 <div style="float: right; padding-right: 1em; padding-top: 0.2em;">
30 28 <% if loggedin? %><small><%=l(:label_logged_as)%> <b><%= @logged_in_user.login %></b></small><% end %>
31 29 </div>
32 30 </div>
33 31
34 32 <div id="navigation">
35 33 <ul>
36 34 <li class="selected"><%= link_to l(:label_home), { :controller => '' }, :class => "picHome" %></li>
37 35 <li><%= link_to l(:label_my_page), { :controller => 'my', :action => 'page'}, :class => "picUserPage" %></li>
38 36 <li><%= link_to l(:label_project_plural), { :controller => 'projects' }, :class => "picProject" %></li>
39 37
40 38 <% unless @project.nil? || @project.id.nil? %>
41 39 <li><%= link_to @project.name, { :controller => 'projects', :action => 'show', :id => @project }, :class => "picProject", :onmouseover => "buttonMouseover(event, 'menuProject');" %></li>
42 40 <% end %>
43 41
44 42 <% if loggedin? %>
45 43 <li><%= link_to l(:label_my_account), { :controller => 'my', :action => 'account' }, :class => "picUser" %></li>
46 44 <% end %>
47 45
48 46 <% if admin_loggedin? %>
49 47 <li><%= link_to l(:label_administration), { :controller => 'admin' }, :class => "picAdmin", :onmouseover => "buttonMouseover(event, 'menuAdmin');" %></li>
50 48 <% end %>
51 49
52 50 <li class="right"><%= link_to l(:label_help), { :controller => 'help', :ctrl => @params[:controller], :page => @params[:action] }, :target => "new", :class => "picHelp" %></li>
53 51
54 52 <% if loggedin? %>
55 53 <li class="right"><%= link_to l(:label_logout), { :controller => 'account', :action => 'logout' }, :class => "picUser" %></li>
56 54 <% else %>
57 55 <li class="right"><%= link_to l(:label_login), { :controller => 'account', :action => 'login' }, :class => "picUser" %></li>
58 56 <% end %>
59 57 </ul>
60 58 </div>
61 59
62 60 <% if admin_loggedin? %>
63 61 <div id="menuAdmin" class="menu" onmouseover="menuMouseover(event)">
64 62 <a class="menuItem" href="/admin/projects" onmouseover="menuItemMouseover(event,'menuProjects');"><span class="menuItemText"><%=l(:label_project_plural)%></span><span class="menuItemArrow">&#9654;</span></a>
65 63 <a class="menuItem" href="/users" onmouseover="menuItemMouseover(event,'menuUsers');"><span class="menuItemText"><%=l(:label_user_plural)%></span><span class="menuItemArrow">&#9654;</span></a>
66 64 <a class="menuItem" href="/roles"><%=l(:label_role_and_permissions)%></a>
67 65 <a class="menuItem" href="/trackers" onmouseover="menuItemMouseover(event,'menuTrackers');"><span class="menuItemText"><%=l(:label_tracker_plural)%></span><span class="menuItemArrow">&#9654;</span></a>
68 66 <a class="menuItem" href="/custom_fields"><%=l(:label_custom_field_plural)%></a>
69 67 <a class="menuItem" href="/enumerations"><%=l(:label_enumerations)%></a>
70 68 <a class="menuItem" href="/admin/mail_options"><%=l(:field_mail_notification)%></a>
71 69 <a class="menuItem" href="/auth_sources"><%=l(:label_authentication)%></a>
72 70 <a class="menuItem" href="/admin/info"><%=l(:label_information_plural)%></a>
73 71 </div>
74 72 <div id="menuTrackers" class="menu">
75 73 <a class="menuItem" href="/issue_statuses"><%=l(:label_issue_status_plural)%></a>
76 74 <a class="menuItem" href="/roles/workflow"><%=l(:label_workflow)%></a>
77 75 </div>
78 76 <div id="menuProjects" class="menu"><a class="menuItem" href="/projects/add"><%=l(:label_new)%></a></div>
79 77 <div id="menuUsers" class="menu"><a class="menuItem" href="/users/add"><%=l(:label_new)%></a></div>
80 78 <% end %>
81 79
82 80 <% unless @project.nil? || @project.id.nil? %>
83 81 <div id="menuProject" class="menu" onmouseover="menuMouseover(event)">
84 82 <%= link_to l(:label_calendar), {:controller => 'projects', :action => 'calendar', :id => @project }, :class => "menuItem" %>
85 83 <%= link_to l(:label_gantt), {:controller => 'projects', :action => 'gantt', :id => @project }, :class => "menuItem" %>
86 84 <%= link_to l(:label_issue_plural), {:controller => 'projects', :action => 'list_issues', :id => @project }, :class => "menuItem" %>
87 85 <%= link_to l(:label_report_plural), {:controller => 'reports', :action => 'issue_report', :id => @project }, :class => "menuItem" %>
88 86 <%= link_to l(:label_activity), {:controller => 'projects', :action => 'activity', :id => @project }, :class => "menuItem" %>
89 87 <%= link_to l(:label_news_plural), {:controller => 'projects', :action => 'list_news', :id => @project }, :class => "menuItem" %>
90 88 <%= link_to l(:label_change_log), {:controller => 'projects', :action => 'changelog', :id => @project }, :class => "menuItem" %>
91 89 <%= link_to l(:label_document_plural), {:controller => 'projects', :action => 'list_documents', :id => @project }, :class => "menuItem" %>
92 90 <%= link_to l(:label_member_plural), {:controller => 'projects', :action => 'list_members', :id => @project }, :class => "menuItem" %>
93 91 <%= link_to l(:label_attachment_plural), {:controller => 'projects', :action => 'list_files', :id => @project }, :class => "menuItem" %>
94 92 <%= link_to l(:label_repository), {:controller => 'repositories', :action => 'show', :id => @project}, :class => "menuItem" if @project.repository and !@project.repository.new_record? %>
95 93 <%= link_to_if_authorized l(:label_settings), {:controller => 'projects', :action => 'settings', :id => @project }, :class => "menuItem" %>
96 94 </div>
97 95 <% end %>
98 96
99 97
100 98 <div id="subcontent">
101 99
102 100 <% unless @project.nil? || @project.id.nil? %>
103 101 <h2><%= @project.name %></h2>
104 102 <ul class="menublock">
105 103 <li><%= link_to l(:label_overview), :controller => 'projects', :action => 'show', :id => @project %></li>
106 104 <li><%= link_to l(:label_calendar), :controller => 'projects', :action => 'calendar', :id => @project %></li>
107 105 <li><%= link_to l(:label_gantt), :controller => 'projects', :action => 'gantt', :id => @project %></li>
108 106 <li><%= link_to l(:label_issue_plural), :controller => 'projects', :action => 'list_issues', :id => @project %></li>
109 107 <li><%= link_to l(:label_report_plural), :controller => 'reports', :action => 'issue_report', :id => @project %></li>
110 108 <li><%= link_to l(:label_activity), :controller => 'projects', :action => 'activity', :id => @project %></li>
111 109 <li><%= link_to l(:label_news_plural), :controller => 'projects', :action => 'list_news', :id => @project %></li>
112 110 <li><%= link_to l(:label_change_log), :controller => 'projects', :action => 'changelog', :id => @project %></li>
113 111 <li><%= link_to l(:label_document_plural), :controller => 'projects', :action => 'list_documents', :id => @project %></li>
114 112 <li><%= link_to l(:label_member_plural), :controller => 'projects', :action => 'list_members', :id => @project %></li>
115 113 <li><%= link_to l(:label_attachment_plural), :controller => 'projects', :action => 'list_files', :id => @project %></li>
116 114 <li><%= link_to l(:label_repository), :controller => 'repositories', :action => 'show', :id => @project if @project.repository and !@project.repository.new_record? %></li>
117 115 <li><%= link_to_if_authorized l(:label_settings), :controller => 'projects', :action => 'settings', :id => @project %></li>
118 116 </ul>
119 117 <% end %>
120 118
121 119 <% if loggedin? and @logged_in_user.memberships.length > 0 %>
122 120 <h2><%=l(:label_my_projects) %></h2>
123 121 <ul class="menublock">
124 122 <% for membership in @logged_in_user.memberships %>
125 123 <li><%= link_to membership.project.name, :controller => 'projects', :action => 'show', :id => membership.project %></li>
126 124 <% end %>
127 125 </ul>
128 126 <% end %>
129 127 </div>
130 128
131 129 <div id="content">
132 130 <% if flash[:notice] %><p style="color: green"><%= flash[:notice] %></p><% end %>
133 131 <%= @content_for_layout %>
134 132 </div>
135 133
136 134 <div id="footer">
137 135 <p>
138 136 <%= auto_link $RDM_FOOTER_SIG %> |
139 137 <a href="http://redmine.rubyforge.org/" target="_new"><%= RDM_APP_NAME %></a> <%= RDM_APP_VERSION %>
140 138 </p>
141 139 </div>
142 140
143 141 </div>
144 142 </body>
145 143 </html> No newline at end of file
@@ -1,441 +1,511
1 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 2 /* Edited by Jean-Philippe Lang *>
3 3 /**************** Body and tag styles ****************/
4 4
5 5
6 6 #header * {margin:0; padding:0;}
7 7 p, ul, ol, li {margin:0; padding:0;}
8 8
9 9
10 10 body{
11 11 font:76% Verdana,Tahoma,Arial,sans-serif;
12 12 line-height:1.4em;
13 13 text-align:center;
14 14 color:#303030;
15 15 background:#e8eaec;
16 16 margin:0;
17 17 }
18 18
19 19
20 20 a{
21 21 color:#467aa7;
22 22 font-weight:bold;
23 23 text-decoration:none;
24 24 background-color:inherit;
25 25 }
26 26
27 27 a:hover{color:#2a5a8a; text-decoration:none; background-color:inherit;}
28 28 a img{border:none;}
29 29
30 30 p{padding:0 0 1em 0;}
31 31 p form{margin-top:0; margin-bottom:20px;}
32 32
33 33 img.left,img.center,img.right{padding:4px; border:1px solid #a0a0a0;}
34 34 img.left{float:left; margin:0 12px 5px 0;}
35 35 img.center{display:block; margin:0 auto 5px auto;}
36 36 img.right{float:right; margin:0 0 5px 12px;}
37 37
38 38 /**************** Header and navigation styles ****************/
39 39
40 40 #container{
41 41 width:100%;
42 42 min-width: 800px;
43 43 margin:0;
44 44 padding:0;
45 45 text-align:left;
46 46 background:#ffffff;
47 47 color:#303030;
48 48 }
49 49
50 50 #header{
51 51 height:4.5em;
52 52 margin:0;
53 53 background:#467aa7;
54 54 color:#ffffff;
55 55 margin-bottom:1px;
56 56 }
57 57
58 58 #header h1{
59 59 padding:10px 0 0 20px;
60 60 font-size:2em;
61 61 background-color:inherit;
62 62 color:#fff;
63 63 letter-spacing:-1px;
64 64 font-weight:bold;
65 65 font-family: Trebuchet MS,Georgia,"Times New Roman",serif;
66 66 }
67 67
68 68 #header h2{
69 69 margin:3px 0 0 40px;
70 70 font-size:1.5em;
71 71 background-color:inherit;
72 72 color:#f0f2f4;
73 73 letter-spacing:-1px;
74 74 font-weight:normal;
75 75 font-family: Trebuchet MS,Georgia,"Times New Roman",serif;
76 76 }
77 77
78 78 #navigation{
79 79 height:2.2em;
80 80 line-height:2.2em;
81 81 margin:0;
82 82 background:#578bb8;
83 83 color:#ffffff;
84 84 }
85 85
86 86 #navigation li{
87 87 float:left;
88 88 list-style-type:none;
89 89 border-right:1px solid #ffffff;
90 90 white-space:nowrap;
91 91 }
92 92
93 93 #navigation li.right {
94 94 float:right;
95 95 list-style-type:none;
96 96 border-right:0;
97 97 border-left:1px solid #ffffff;
98 98 white-space:nowrap;
99 99 }
100 100
101 101 #navigation li a{
102 102 display:block;
103 103 padding:0px 10px 0px 22px;
104 104 font-size:0.8em;
105 105 font-weight:normal;
106 106 text-decoration:none;
107 107 background-color:inherit;
108 108 color: #ffffff;
109 109 }
110 110
111 111 * html #navigation a {width:1%;}
112 112
113 113 #navigation .selected,#navigation a:hover{
114 114 color:#ffffff;
115 115 text-decoration:none;
116 116 background-color: #80b0da;
117 117 }
118 118
119 119 /**************** Icons links *******************/
120 120 .picHome { background: url(../images/home.png) no-repeat 4px 50%; }
121 121 .picUser { background: url(../images/user.png) no-repeat 4px 50%; }
122 122 .picUserPage { background: url(../images/user_page.png) no-repeat 4px 50%; }
123 123 .picAdmin { background: url(../images/admin.png) no-repeat 4px 50%; }
124 124 .picProject { background: url(../images/projects.png) no-repeat 4px 50%; }
125 125 .picLogout { background: url(../images/logout.png) no-repeat 4px 50%; }
126 126 .picHelp { background: url(../images/help.png) no-repeat 4px 50%; }
127 127
128 128 .picEdit { background: url(../images/edit.png) no-repeat 4px 50%; }
129 129 .picDelete { background: url(../images/delete.png) no-repeat 4px 50%; }
130 130 .picAdd { background: url(../images/add.png) no-repeat 4px 50%; }
131 131 .picMove { background: url(../images/move.png) no-repeat 4px 50%; }
132 132 .picCheck { background: url(../images/check.png) no-repeat 4px 70%; }
133 133 .picPdf { background: url(../images/pdf.png) no-repeat 4px 50%;}
134 134 .picCsv { background: url(../images/csv.png) no-repeat 4px 50%;}
135 135
136 136 .pic { padding-left: 18px; margin-left: 3px; }
137 137
138 138 .icon {
139 139 background-position: 0% 40%;
140 140 background-repeat: no-repeat;
141 141 padding-left: 20px;
142 142 }
143 143
144 144 .folder { background-image: url(../images/folder.png); }
145 145 .file { background-image: url(../images/file.png); }
146 146
147 147 /**************** Content styles ****************/
148 148
149 149 html>body #content {
150 150 height: auto;
151 151 min-height: 500px;
152 152 }
153 153
154 154 #content{
155 155 width: auto;
156 156 height:500px;
157 157 font-size:0.9em;
158 158 padding:20px 10px 10px 20px;
159 159 margin-left: 120px;
160 160 border-left: 1px dashed #c0c0c0;
161 161
162 162 }
163 163
164 164 #content h2{
165 165 display:block;
166 166 margin:0 0 16px 0;
167 167 font-size:1.7em;
168 168 font-weight:normal;
169 169 letter-spacing:-1px;
170 170 color:#606060;
171 171 background-color:inherit;
172 172 font-family: Trebuchet MS,Georgia,"Times New Roman",serif;
173 173 }
174 174
175 175 #content h2 a{font-weight:normal;}
176 176 #content h3{margin:0 0 12px 0; font-size:1.4em;color:#707070;font-family: Trebuchet MS,Georgia,"Times New Roman",serif;}
177 177 #content h4{font-size: 1em; margin-bottom: 12px; margin-top: 20px; font-weight: normal; border-bottom: dotted 1px #c0c0c0;}
178 178 #content a:hover,#subcontent a:hover{text-decoration:underline;}
179 179 #content ul,#content ol{margin:0 5px 16px 35px;}
180 180 #content dl{margin:0 5px 10px 25px;}
181 181 #content dt{font-weight:bold; margin-bottom:5px;}
182 182 #content dd{margin:0 0 10px 15px;}
183 183
184 184
185 185 /***********************************************/
186 186
187 187 form {
188 188 display: inline;
189 189 }
190 190
191 191 blockquote {
192 192 padding-left: 6px;
193 193 border-left: 2px solid #ccc;
194 194 }
195 195
196 196 input, select {
197 197 vertical-align: middle;
198 198 }
199 199
200 200 input.button-small
201 201 {
202 202 font-size: 0.8em;
203 203 }
204 204
205 205 .select-small
206 206 {
207 207 font-size: 0.8em;
208 208 }
209 209
210 210 label {
211 211 font-weight: bold;
212 212 font-size: 1em;
213 213 }
214 214
215 215 fieldset {
216 216 border:1px solid #c0c0c0;
217 217 padding: 6px;
218 218 }
219 219
220 220 legend {
221 221 color: #505050;
222 222
223 223 }
224 224
225 225 .required {
226 226 color: #bb0000;
227 227 }
228 228
229 229 .odd {
230 230 background-color:#f6f7f8;
231 231 }
232 232 .even {
233 233 background-color: #fff;
234 234 }
235 235
236 236 hr { border:none; border-bottom: dotted 1px #c0c0c0; }
237 237
238 238 div.square {
239 239 border: 1px solid #999;
240 240 float: left;
241 241 margin: .4em .5em 0 0;
242 242 overflow: hidden;
243 243 width: .6em; height: .6em;
244 244 }
245 245
246 246 table p {
247 247 margin:0;
248 248 padding:0;
249 249 }
250 250
251 251 /********** Table used to display lists of things ***********/
252 252
253 253 table.list {
254 254 width:100%;
255 255 border-collapse: collapse;
256 256 border: 1px dotted #d0d0d0;
257 257 margin-bottom: 6px;
258 258 }
259 259
260 260 table.with-cells td {
261 261 border: 1px solid #d7d7d7;
262 262 }
263 263
264 264 table.list thead th {
265 265 text-align: center;
266 266 background: #eee;
267 267 border: 1px solid #d7d7d7;
268 268 }
269 269
270 270 table.list tbody th {
271 271 font-weight: normal;
272 272 background: #eed;
273 273 border: 1px solid #d7d7d7;
274 274 }
275 275
276 /********** Validation error messages *************/
277 #errorExplanation {
278 width: 400px;
279 border: 0;
280 padding: 7px;
281 padding-bottom: 3px;
282 margin-bottom: 0px;
283 }
284
285 #errorExplanation h2 {
286 text-align: left;
287 font-weight: bold;
288 padding: 5px 5px 10px 26px;
289 font-size: 1em;
290 margin: -7px;
291 background: url(../images/alert.png) no-repeat 6px 6px;
292 }
293
294 #errorExplanation p {
295 color: #333;
296 margin-bottom: 0;
297 padding: 5px;
298 }
299
300 #errorExplanation ul li {
301 font-size: 1em;
302 list-style: none;
303 margin-left: -16px;
304 }
305
306 /*========== Drop down menu ==============*/
307 div.menu {
308 background-color: #FFFFFF;
309 border-style: solid;
310 border-width: 1px;
311 border-color: #7F9DB9;
312 position: absolute;
313 top: 0px;
314 left: 0px;
315 padding: 0;
316 visibility: hidden;
317 z-index: 101;
318 }
319
320 div.menu a.menuItem {
321 font-size: 10px;
322 font-weight: normal;
323 line-height: 2em;
324 color: #000000;
325 background-color: #FFFFFF;
326 cursor: default;
327 display: block;
328 padding: 0 1em;
329 margin: 0;
330 border: 0;
331 text-decoration: none;
332 white-space: nowrap;
333 }
334
335 div.menu a.menuItem:hover, div.menu a.menuItemHighlight {
336 background-color: #80b0da;
337 color: #ffffff;
338 }
339
340 div.menu a.menuItem span.menuItemText {}
341
342 div.menu a.menuItem span.menuItemArrow {
343 margin-right: -.75em;
344 }
345
276 346 /**************** Sidebar styles ****************/
277 347
278 348 #subcontent{
279 349 position: absolute;
280 350 left: 0px;
281 351 width:110px;
282 352 padding:20px 20px 10px 5px;
283 353 }
284 354
285 355 #subcontent h2{
286 356 display:block;
287 357 margin:0 0 5px 0;
288 358 font-size:1.0em;
289 359 font-weight:bold;
290 360 text-align:left;
291 361 color:#606060;
292 362 background-color:inherit;
293 363 font-family: Trebuchet MS,Georgia,"Times New Roman",serif;
294 364 }
295 365
296 366 #subcontent p{margin:0 0 16px 0; font-size:0.9em;}
297 367
298 368 /**************** Menublock styles ****************/
299 369
300 370 .menublock{margin:0 0 20px 8px; font-size:0.8em;}
301 371 .menublock li{list-style:none; display:block; padding:1px; margin-bottom:0px;}
302 372 .menublock li a{font-weight:bold; text-decoration:none;}
303 373 .menublock li a:hover{text-decoration:none;}
304 374 .menublock li ul{margin:0; font-size:1em; font-weight:normal;}
305 375 .menublock li ul li{margin-bottom:0;}
306 376 .menublock li ul a{font-weight:normal;}
307 377
308 378 /**************** Footer styles ****************/
309 379
310 380 #footer{
311 381 clear:both;
312 382 padding:5px 0;
313 383 margin:0;
314 384 font-size:0.9em;
315 385 color:#f0f0f0;
316 386 background:#467aa7;
317 387 }
318 388
319 389 #footer p{padding:0; margin:0; text-align:center;}
320 390 #footer a{color:#f0f0f0; background-color:inherit; font-weight:bold;}
321 391 #footer a:hover{color:#ffffff; background-color:inherit; text-decoration: underline;}
322 392
323 393 /**************** Misc classes and styles ****************/
324 394
325 395 .splitcontentleft{float:left; width:49%;}
326 396 .splitcontentright{float:right; width:49%;}
327 397 .clear{clear:both;}
328 398 .small{font-size:0.8em;line-height:1.4em;padding:0 0 0 0;}
329 399 .hide{display:none;}
330 400 .textcenter{text-align:center;}
331 401 .textright{text-align:right;}
332 402 .important{color:#f02025; background-color:inherit; font-weight:bold;}
333 403
334 404 .box{
335 405 margin:0 0 20px 0;
336 406 padding:10px;
337 407 border:1px solid #c0c0c0;
338 408 background-color:#fafbfc;
339 409 color:#505050;
340 410 line-height:1.5em;
341 411 }
342 412
343 413 a.close-icon {
344 414 display:block;
345 415 margin-top:3px;
346 416 overflow:hidden;
347 417 width:12px;
348 418 height:12px;
349 419 background-repeat: no-repeat;
350 420 cursor:pointer;
351 421 background-image:url('../images/close.png');
352 422 }
353 423
354 424 a.close-icon:hover {
355 425 background-image:url('../images/close_hl.png');
356 426 }
357 427
358 428 .rightbox{
359 429 background: #fafbfc;
360 430 border: 1px solid #c0c0c0;
361 431 float: right;
362 432 padding: 8px;
363 433 position: relative;
364 434 margin: 0 5px 5px;
365 435 }
366 436
367 437 .layout-active {
368 438 background: #ECF3E1;
369 439 }
370 440
371 441 .block-receiver {
372 442 border:1px dashed #c0c0c0;
373 443 margin-bottom: 20px;
374 444 padding: 15px 0 15px 0;
375 445 }
376 446
377 447 .mypage-box {
378 448 margin:0 0 20px 0;
379 449 color:#505050;
380 450 line-height:1.5em;
381 451 }
382 452
383 453 .handle {
384 454 cursor: move;
385 455 }
386 456
387 457 .login {
388 458 width: 50%;
389 459 text-align: left;
390 460 }
391 461
392 462 img.calendar-trigger {
393 463 cursor: pointer;
394 464 vertical-align: middle;
395 465 margin-left: 4px;
396 466 }
397 467
398 468 #history p {
399 469 margin-left: 34px;
400 470 }
401 471
402 472 /***** Contextual links div *****/
403 473 .contextual {
404 474 float: right;
405 475 font-size: 0.8em;
406 476 }
407 477
408 478 .contextual select, .contextual input {
409 479 font-size: 1em;
410 480 }
411 481
412 482
413 483 /***** CSS FORM ******/
414 484 .tabular p{
415 485 margin: 0;
416 486 padding: 5px 0 8px 0;
417 487 padding-left: 180px; /*width of left column containing the label elements*/
418 488 height: 1%;
419 489 }
420 490
421 491 .tabular label{
422 492 font-weight: bold;
423 493 float: left;
424 494 margin-left: -180px; /*width of left column*/
425 495 width: 175px; /*width of labels. Should be smaller than left column to create some right
426 496 margin*/
427 497 }
428 498
429 499 .error {
430 500 color: #cc0000;
431 501 }
432 502
433 503
434 504 /*.threepxfix class below:
435 505 Targets IE6- ONLY. Adds 3 pixel indent for multi-line form contents.
436 506 to account for 3 pixel bug: http://www.positioniseverything.net/explorer/threepxtest.html
437 507 */
438 508
439 509 * html .threepxfix{
440 510 margin-left: 3px;
441 511 } No newline at end of file
1 NO CONTENT: file was removed
1 NO CONTENT: file was removed
General Comments 0
You need to be logged in to leave comments. Login now