##// END OF EJS Templates
Slight changes to the files list (#2658, #2806)....
Jean-Philippe Lang -
r2452:7342a00e0a98
parent child
Show More
@@ -1,42 +1,46
1 <div class="contextual">
1 <div class="contextual">
2 <%= link_to_if_authorized l(:label_attachment_new), {:controller => 'projects', :action => 'add_file', :id => @project}, :class => 'icon icon-add' %>
2 <%= link_to_if_authorized l(:label_attachment_new), {:controller => 'projects', :action => 'add_file', :id => @project}, :class => 'icon icon-add' %>
3 </div>
3 </div>
4
4
5 <h2><%=l(:label_attachment_plural)%></h2>
5 <h2><%=l(:label_attachment_plural)%></h2>
6
6
7 <% delete_allowed = User.current.allowed_to?(:manage_files, @project) %>
7 <% delete_allowed = User.current.allowed_to?(:manage_files, @project) %>
8
8
9 <table class="list">
9 <table class="list files">
10 <thead><tr>
10 <thead><tr>
11 <%= sort_header_tag('filename', :caption => l(:field_filename)) %>
11 <%= sort_header_tag('filename', :caption => l(:field_filename)) %>
12 <%= sort_header_tag('created_on', :caption => l(:label_date), :default_order => 'desc') %>
12 <%= sort_header_tag('created_on', :caption => l(:label_date), :default_order => 'desc') %>
13 <%= sort_header_tag('size', :caption => l(:field_filesize), :default_order => 'desc') %>
13 <%= sort_header_tag('size', :caption => l(:field_filesize), :default_order => 'desc') %>
14 <%= sort_header_tag('downloads', :caption => l(:label_downloads_abbr), :default_order => 'desc') %>
14 <%= sort_header_tag('downloads', :caption => l(:label_downloads_abbr), :default_order => 'desc') %>
15 <th>MD5</th>
15 <th>MD5</th>
16 <th></th>
16 <th></th>
17 </tr></thead>
17 </tr></thead>
18 <tbody>
18 <tbody>
19 <% @containers.each do |container| %>
19 <% @containers.each do |container| %>
20 <% next if container.attachments.empty? -%>
20 <% next if container.attachments.empty? -%>
21 <% if container.is_a?(Version) -%>
21 <% if container.is_a?(Version) -%>
22 <tr><th colspan="6" align="left"><span class="icon icon-package"><b><%=h container %></b></span></th></tr>
22 <tr>
23 <th colspan="6" align="left">
24 <%= link_to(h(container), {:controller => 'versions', :action => 'show', :id => container}, :class => "icon icon-package") %>
25 </th>
26 </tr>
23 <% end -%>
27 <% end -%>
24 <% container.attachments.each do |file| %>
28 <% container.attachments.each do |file| %>
25 <tr class="<%= cycle("odd", "even") %>">
29 <tr class="file <%= cycle("odd", "even") %>">
26 <td><%= link_to_attachment file, :download => true, :title => file.description %></td>
30 <td class="filename"><%= link_to_attachment file, :download => true, :title => file.description %></td>
27 <td align="center"><%= format_time(file.created_on) %></td>
31 <td class="created_on"><%= format_time(file.created_on) %></td>
28 <td align="center"><%= number_to_human_size(file.filesize) %></td>
32 <td class="filesize"><%= number_to_human_size(file.filesize) %></td>
29 <td align="center"><%= file.downloads %></td>
33 <td class="downloads"><%= file.downloads %></td>
30 <td align="center"><small><%= file.digest %></small></td>
34 <td class="digest"><%= file.digest %></td>
31 <td align="center">
35 <td align="center">
32 <%= link_to(image_tag('delete.png'), {:controller => 'attachments', :action => 'destroy', :id => file},
36 <%= link_to(image_tag('delete.png'), {:controller => 'attachments', :action => 'destroy', :id => file},
33 :confirm => l(:text_are_you_sure), :method => :post) if delete_allowed %>
37 :confirm => l(:text_are_you_sure), :method => :post) if delete_allowed %>
34 </td>
38 </td>
35 </tr>
39 </tr>
36 <% end
40 <% end
37 reset_cycle %>
41 reset_cycle %>
38 <% end %>
42 <% end %>
39 </tbody>
43 </tbody>
40 </table>
44 </table>
41
45
42 <% html_title(l(:label_attachment_plural)) -%>
46 <% html_title(l(:label_attachment_plural)) -%>
@@ -1,710 +1,714
1 body { font-family: Verdana, sans-serif; font-size: 12px; color:#484848; margin: 0; padding: 0; min-width: 900px; }
1 body { font-family: Verdana, sans-serif; font-size: 12px; color:#484848; margin: 0; padding: 0; min-width: 900px; }
2
2
3 h1, h2, h3, h4 { font-family: "Trebuchet MS", Verdana, sans-serif;}
3 h1, h2, h3, h4 { font-family: "Trebuchet MS", Verdana, sans-serif;}
4 h1 {margin:0; padding:0; font-size: 24px;}
4 h1 {margin:0; padding:0; font-size: 24px;}
5 h2, .wiki h1 {font-size: 20px;padding: 2px 10px 1px 0px;margin: 0 0 10px 0; border-bottom: 1px solid #bbbbbb; color: #444;}
5 h2, .wiki h1 {font-size: 20px;padding: 2px 10px 1px 0px;margin: 0 0 10px 0; border-bottom: 1px solid #bbbbbb; color: #444;}
6 h3, .wiki h2 {font-size: 16px;padding: 2px 10px 1px 0px;margin: 0 0 10px 0; border-bottom: 1px solid #bbbbbb; color: #444;}
6 h3, .wiki h2 {font-size: 16px;padding: 2px 10px 1px 0px;margin: 0 0 10px 0; border-bottom: 1px solid #bbbbbb; color: #444;}
7 h4, .wiki h3 {font-size: 13px;padding: 2px 10px 1px 0px;margin-bottom: 5px; border-bottom: 1px dotted #bbbbbb; color: #444;}
7 h4, .wiki h3 {font-size: 13px;padding: 2px 10px 1px 0px;margin-bottom: 5px; border-bottom: 1px dotted #bbbbbb; color: #444;}
8
8
9 /***** Layout *****/
9 /***** Layout *****/
10 #wrapper {background: white;}
10 #wrapper {background: white;}
11
11
12 #top-menu {background: #2C4056; color: #fff; height:1.8em; font-size: 0.8em; padding: 2px 2px 0px 6px;}
12 #top-menu {background: #2C4056; color: #fff; height:1.8em; font-size: 0.8em; padding: 2px 2px 0px 6px;}
13 #top-menu ul {margin: 0; padding: 0;}
13 #top-menu ul {margin: 0; padding: 0;}
14 #top-menu li {
14 #top-menu li {
15 float:left;
15 float:left;
16 list-style-type:none;
16 list-style-type:none;
17 margin: 0px 0px 0px 0px;
17 margin: 0px 0px 0px 0px;
18 padding: 0px 0px 0px 0px;
18 padding: 0px 0px 0px 0px;
19 white-space:nowrap;
19 white-space:nowrap;
20 }
20 }
21 #top-menu a {color: #fff; margin-right: 8px; font-weight: bold;}
21 #top-menu a {color: #fff; margin-right: 8px; font-weight: bold;}
22 #top-menu #loggedas { float: right; margin-right: 0.5em; color: #fff; }
22 #top-menu #loggedas { float: right; margin-right: 0.5em; color: #fff; }
23
23
24 #account {float:right;}
24 #account {float:right;}
25
25
26 #header {height:5.3em;margin:0;background-color:#507AAA;color:#f8f8f8; padding: 4px 8px 0px 6px; position:relative;}
26 #header {height:5.3em;margin:0;background-color:#507AAA;color:#f8f8f8; padding: 4px 8px 0px 6px; position:relative;}
27 #header a {color:#f8f8f8;}
27 #header a {color:#f8f8f8;}
28 #header h1 a.ancestor { font-size: 80%; }
28 #header h1 a.ancestor { font-size: 80%; }
29 #quick-search {float:right;}
29 #quick-search {float:right;}
30
30
31 #main-menu {position: absolute; bottom: 0px; left:6px; margin-right: -500px;}
31 #main-menu {position: absolute; bottom: 0px; left:6px; margin-right: -500px;}
32 #main-menu ul {margin: 0; padding: 0;}
32 #main-menu ul {margin: 0; padding: 0;}
33 #main-menu li {
33 #main-menu li {
34 float:left;
34 float:left;
35 list-style-type:none;
35 list-style-type:none;
36 margin: 0px 2px 0px 0px;
36 margin: 0px 2px 0px 0px;
37 padding: 0px 0px 0px 0px;
37 padding: 0px 0px 0px 0px;
38 white-space:nowrap;
38 white-space:nowrap;
39 }
39 }
40 #main-menu li a {
40 #main-menu li a {
41 display: block;
41 display: block;
42 color: #fff;
42 color: #fff;
43 text-decoration: none;
43 text-decoration: none;
44 font-weight: bold;
44 font-weight: bold;
45 margin: 0;
45 margin: 0;
46 padding: 4px 10px 4px 10px;
46 padding: 4px 10px 4px 10px;
47 }
47 }
48 #main-menu li a:hover {background:#759FCF; color:#fff;}
48 #main-menu li a:hover {background:#759FCF; color:#fff;}
49 #main-menu li a.selected, #main-menu li a.selected:hover {background:#fff; color:#555;}
49 #main-menu li a.selected, #main-menu li a.selected:hover {background:#fff; color:#555;}
50
50
51 #main {background-color:#EEEEEE;}
51 #main {background-color:#EEEEEE;}
52
52
53 #sidebar{ float: right; width: 17%; position: relative; z-index: 9; min-height: 600px; padding: 0; margin: 0;}
53 #sidebar{ float: right; width: 17%; position: relative; z-index: 9; min-height: 600px; padding: 0; margin: 0;}
54 * html #sidebar{ width: 17%; }
54 * html #sidebar{ width: 17%; }
55 #sidebar h3{ font-size: 14px; margin-top:14px; color: #666; }
55 #sidebar h3{ font-size: 14px; margin-top:14px; color: #666; }
56 #sidebar hr{ width: 100%; margin: 0 auto; height: 1px; background: #ccc; border: 0; }
56 #sidebar hr{ width: 100%; margin: 0 auto; height: 1px; background: #ccc; border: 0; }
57 * html #sidebar hr{ width: 95%; position: relative; left: -6px; color: #ccc; }
57 * html #sidebar hr{ width: 95%; position: relative; left: -6px; color: #ccc; }
58
58
59 #content { width: 80%; background-color: #fff; margin: 0px; border-right: 1px solid #ddd; padding: 6px 10px 10px 10px; z-index: 10; }
59 #content { width: 80%; background-color: #fff; margin: 0px; border-right: 1px solid #ddd; padding: 6px 10px 10px 10px; z-index: 10; }
60 * html #content{ width: 80%; padding-left: 0; margin-top: 0px; padding: 6px 10px 10px 10px;}
60 * html #content{ width: 80%; padding-left: 0; margin-top: 0px; padding: 6px 10px 10px 10px;}
61 html>body #content { min-height: 600px; }
61 html>body #content { min-height: 600px; }
62 * html body #content { height: 600px; } /* IE */
62 * html body #content { height: 600px; } /* IE */
63
63
64 #main.nosidebar #sidebar{ display: none; }
64 #main.nosidebar #sidebar{ display: none; }
65 #main.nosidebar #content{ width: auto; border-right: 0; }
65 #main.nosidebar #content{ width: auto; border-right: 0; }
66
66
67 #footer {clear: both; border-top: 1px solid #bbb; font-size: 0.9em; color: #aaa; padding: 5px; text-align:center; background:#fff;}
67 #footer {clear: both; border-top: 1px solid #bbb; font-size: 0.9em; color: #aaa; padding: 5px; text-align:center; background:#fff;}
68
68
69 #login-form table {margin-top:5em; padding:1em; margin-left: auto; margin-right: auto; border: 2px solid #FDBF3B; background-color:#FFEBC1; }
69 #login-form table {margin-top:5em; padding:1em; margin-left: auto; margin-right: auto; border: 2px solid #FDBF3B; background-color:#FFEBC1; }
70 #login-form table td {padding: 6px;}
70 #login-form table td {padding: 6px;}
71 #login-form label {font-weight: bold;}
71 #login-form label {font-weight: bold;}
72
72
73 input#openid_url { background: url(../images/openid-bg.gif) no-repeat; background-color: #fff; background-position: 0 50%; padding-left: 18px; }
73 input#openid_url { background: url(../images/openid-bg.gif) no-repeat; background-color: #fff; background-position: 0 50%; padding-left: 18px; }
74
74
75 .clear:after{ content: "."; display: block; height: 0; clear: both; visibility: hidden; }
75 .clear:after{ content: "."; display: block; height: 0; clear: both; visibility: hidden; }
76
76
77 /***** Links *****/
77 /***** Links *****/
78 a, a:link, a:visited{ color: #2A5685; text-decoration: none; }
78 a, a:link, a:visited{ color: #2A5685; text-decoration: none; }
79 a:hover, a:active{ color: #c61a1a; text-decoration: underline;}
79 a:hover, a:active{ color: #c61a1a; text-decoration: underline;}
80 a img{ border: 0; }
80 a img{ border: 0; }
81
81
82 a.issue.closed { text-decoration: line-through; }
82 a.issue.closed { text-decoration: line-through; }
83
83
84 /***** Tables *****/
84 /***** Tables *****/
85 table.list { border: 1px solid #e4e4e4; border-collapse: collapse; width: 100%; margin-bottom: 4px; }
85 table.list { border: 1px solid #e4e4e4; border-collapse: collapse; width: 100%; margin-bottom: 4px; }
86 table.list th { background-color:#EEEEEE; padding: 4px; white-space:nowrap; }
86 table.list th { background-color:#EEEEEE; padding: 4px; white-space:nowrap; }
87 table.list td { vertical-align: top; }
87 table.list td { vertical-align: top; }
88 table.list td.id { width: 2%; text-align: center;}
88 table.list td.id { width: 2%; text-align: center;}
89 table.list td.checkbox { width: 15px; padding: 0px;}
89 table.list td.checkbox { width: 15px; padding: 0px;}
90
90
91 tr.project td.name a { padding-left: 16px; white-space:nowrap; }
91 tr.project td.name a { padding-left: 16px; white-space:nowrap; }
92 tr.project.parent td.name a { background: url('../images/bullet_toggle_minus.png') no-repeat; }
92 tr.project.parent td.name a { background: url('../images/bullet_toggle_minus.png') no-repeat; }
93
93
94 tr.issue { text-align: center; white-space: nowrap; }
94 tr.issue { text-align: center; white-space: nowrap; }
95 tr.issue td.subject, tr.issue td.category, td.assigned_to { white-space: normal; }
95 tr.issue td.subject, tr.issue td.category, td.assigned_to { white-space: normal; }
96 tr.issue td.subject { text-align: left; }
96 tr.issue td.subject { text-align: left; }
97 tr.issue td.done_ratio table.progress { margin-left:auto; margin-right: auto;}
97 tr.issue td.done_ratio table.progress { margin-left:auto; margin-right: auto;}
98
98
99 tr.entry { border: 1px solid #f8f8f8; }
99 tr.entry { border: 1px solid #f8f8f8; }
100 tr.entry td { white-space: nowrap; }
100 tr.entry td { white-space: nowrap; }
101 tr.entry td.filename { width: 30%; }
101 tr.entry td.filename { width: 30%; }
102 tr.entry td.size { text-align: right; font-size: 90%; }
102 tr.entry td.size { text-align: right; font-size: 90%; }
103 tr.entry td.revision, tr.entry td.author { text-align: center; }
103 tr.entry td.revision, tr.entry td.author { text-align: center; }
104 tr.entry td.age { text-align: right; }
104 tr.entry td.age { text-align: right; }
105
105
106 tr.entry span.expander {background-image: url(../images/bullet_toggle_plus.png); padding-left: 8px; margin-left: 0; cursor: pointer;}
106 tr.entry span.expander {background-image: url(../images/bullet_toggle_plus.png); padding-left: 8px; margin-left: 0; cursor: pointer;}
107 tr.entry.open span.expander {background-image: url(../images/bullet_toggle_minus.png);}
107 tr.entry.open span.expander {background-image: url(../images/bullet_toggle_minus.png);}
108 tr.entry.file td.filename a { margin-left: 16px; }
108 tr.entry.file td.filename a { margin-left: 16px; }
109
109
110 tr.changeset td.author { text-align: center; width: 15%; }
110 tr.changeset td.author { text-align: center; width: 15%; }
111 tr.changeset td.committed_on { text-align: center; width: 15%; }
111 tr.changeset td.committed_on { text-align: center; width: 15%; }
112
112
113 tr.file td { text-align: center; }
114 tr.file td.filename { text-align: left; padding-left: 24px; }
115 tr.file td.digest { font-size: 80%; }
116
113 tr.message { height: 2.6em; }
117 tr.message { height: 2.6em; }
114 tr.message td.last_message { font-size: 80%; }
118 tr.message td.last_message { font-size: 80%; }
115 tr.message.locked td.subject a { background-image: url(../images/locked.png); }
119 tr.message.locked td.subject a { background-image: url(../images/locked.png); }
116 tr.message.sticky td.subject a { background-image: url(../images/sticky.png); font-weight: bold; }
120 tr.message.sticky td.subject a { background-image: url(../images/sticky.png); font-weight: bold; }
117
121
118 tr.user td { width:13%; }
122 tr.user td { width:13%; }
119 tr.user td.email { width:18%; }
123 tr.user td.email { width:18%; }
120 tr.user td { white-space: nowrap; }
124 tr.user td { white-space: nowrap; }
121 tr.user.locked, tr.user.registered { color: #aaa; }
125 tr.user.locked, tr.user.registered { color: #aaa; }
122 tr.user.locked a, tr.user.registered a { color: #aaa; }
126 tr.user.locked a, tr.user.registered a { color: #aaa; }
123
127
124 tr.time-entry { text-align: center; white-space: nowrap; }
128 tr.time-entry { text-align: center; white-space: nowrap; }
125 tr.time-entry td.subject, tr.time-entry td.comments { text-align: left; white-space: normal; }
129 tr.time-entry td.subject, tr.time-entry td.comments { text-align: left; white-space: normal; }
126 td.hours { text-align: right; font-weight: bold; padding-right: 0.5em; }
130 td.hours { text-align: right; font-weight: bold; padding-right: 0.5em; }
127 td.hours .hours-dec { font-size: 0.9em; }
131 td.hours .hours-dec { font-size: 0.9em; }
128
132
129 table.plugins td { vertical-align: middle; }
133 table.plugins td { vertical-align: middle; }
130 table.plugins td.configure { text-align: right; padding-right: 1em; }
134 table.plugins td.configure { text-align: right; padding-right: 1em; }
131 table.plugins span.name { font-weight: bold; display: block; margin-bottom: 6px; }
135 table.plugins span.name { font-weight: bold; display: block; margin-bottom: 6px; }
132 table.plugins span.description { display: block; font-size: 0.9em; }
136 table.plugins span.description { display: block; font-size: 0.9em; }
133 table.plugins span.url { display: block; font-size: 0.9em; }
137 table.plugins span.url { display: block; font-size: 0.9em; }
134
138
135 table.list tbody tr:hover { background-color:#ffffdd; }
139 table.list tbody tr:hover { background-color:#ffffdd; }
136 table td {padding:2px;}
140 table td {padding:2px;}
137 table p {margin:0;}
141 table p {margin:0;}
138 .odd {background-color:#f6f7f8;}
142 .odd {background-color:#f6f7f8;}
139 .even {background-color: #fff;}
143 .even {background-color: #fff;}
140
144
141 .highlight { background-color: #FCFD8D;}
145 .highlight { background-color: #FCFD8D;}
142 .highlight.token-1 { background-color: #faa;}
146 .highlight.token-1 { background-color: #faa;}
143 .highlight.token-2 { background-color: #afa;}
147 .highlight.token-2 { background-color: #afa;}
144 .highlight.token-3 { background-color: #aaf;}
148 .highlight.token-3 { background-color: #aaf;}
145
149
146 .box{
150 .box{
147 padding:6px;
151 padding:6px;
148 margin-bottom: 10px;
152 margin-bottom: 10px;
149 background-color:#f6f6f6;
153 background-color:#f6f6f6;
150 color:#505050;
154 color:#505050;
151 line-height:1.5em;
155 line-height:1.5em;
152 border: 1px solid #e4e4e4;
156 border: 1px solid #e4e4e4;
153 }
157 }
154
158
155 div.square {
159 div.square {
156 border: 1px solid #999;
160 border: 1px solid #999;
157 float: left;
161 float: left;
158 margin: .3em .4em 0 .4em;
162 margin: .3em .4em 0 .4em;
159 overflow: hidden;
163 overflow: hidden;
160 width: .6em; height: .6em;
164 width: .6em; height: .6em;
161 }
165 }
162 .contextual {float:right; white-space: nowrap; line-height:1.4em;margin-top:5px; padding-left: 10px; font-size:0.9em;}
166 .contextual {float:right; white-space: nowrap; line-height:1.4em;margin-top:5px; padding-left: 10px; font-size:0.9em;}
163 .contextual input {font-size:0.9em;}
167 .contextual input {font-size:0.9em;}
164 .message .contextual { margin-top: 0; }
168 .message .contextual { margin-top: 0; }
165
169
166 .splitcontentleft{float:left; width:49%;}
170 .splitcontentleft{float:left; width:49%;}
167 .splitcontentright{float:right; width:49%;}
171 .splitcontentright{float:right; width:49%;}
168 form {display: inline;}
172 form {display: inline;}
169 input, select {vertical-align: middle; margin-top: 1px; margin-bottom: 1px;}
173 input, select {vertical-align: middle; margin-top: 1px; margin-bottom: 1px;}
170 fieldset {border: 1px solid #e4e4e4; margin:0;}
174 fieldset {border: 1px solid #e4e4e4; margin:0;}
171 legend {color: #484848;}
175 legend {color: #484848;}
172 hr { width: 100%; height: 1px; background: #ccc; border: 0;}
176 hr { width: 100%; height: 1px; background: #ccc; border: 0;}
173 blockquote { font-style: italic; border-left: 3px solid #e0e0e0; padding-left: 0.6em; margin-left: 2.4em;}
177 blockquote { font-style: italic; border-left: 3px solid #e0e0e0; padding-left: 0.6em; margin-left: 2.4em;}
174 blockquote blockquote { margin-left: 0;}
178 blockquote blockquote { margin-left: 0;}
175 textarea.wiki-edit { width: 99%; }
179 textarea.wiki-edit { width: 99%; }
176 li p {margin-top: 0;}
180 li p {margin-top: 0;}
177 div.issue {background:#ffffdd; padding:6px; margin-bottom:6px;border: 1px solid #d7d7d7;}
181 div.issue {background:#ffffdd; padding:6px; margin-bottom:6px;border: 1px solid #d7d7d7;}
178 p.breadcrumb { font-size: 0.9em; margin: 4px 0 4px 0;}
182 p.breadcrumb { font-size: 0.9em; margin: 4px 0 4px 0;}
179 p.subtitle { font-size: 0.9em; margin: -6px 0 12px 0; font-style: italic; }
183 p.subtitle { font-size: 0.9em; margin: -6px 0 12px 0; font-style: italic; }
180 p.footnote { font-size: 0.9em; margin-top: 0px; margin-bottom: 0px; }
184 p.footnote { font-size: 0.9em; margin-top: 0px; margin-bottom: 0px; }
181
185
182 fieldset#filters, fieldset#date-range { padding: 0.7em; margin-bottom: 8px; }
186 fieldset#filters, fieldset#date-range { padding: 0.7em; margin-bottom: 8px; }
183 fieldset#filters p { margin: 1.2em 0 0.8em 2px; }
187 fieldset#filters p { margin: 1.2em 0 0.8em 2px; }
184 fieldset#filters table { border-collapse: collapse; }
188 fieldset#filters table { border-collapse: collapse; }
185 fieldset#filters table td { padding: 0; vertical-align: middle; }
189 fieldset#filters table td { padding: 0; vertical-align: middle; }
186 fieldset#filters tr.filter { height: 2em; }
190 fieldset#filters tr.filter { height: 2em; }
187 fieldset#filters td.add-filter { text-align: right; vertical-align: top; }
191 fieldset#filters td.add-filter { text-align: right; vertical-align: top; }
188 .buttons { font-size: 0.9em; }
192 .buttons { font-size: 0.9em; }
189
193
190 div#issue-changesets {float:right; width:45%; margin-left: 1em; margin-bottom: 1em; background: #fff; padding-left: 1em; font-size: 90%;}
194 div#issue-changesets {float:right; width:45%; margin-left: 1em; margin-bottom: 1em; background: #fff; padding-left: 1em; font-size: 90%;}
191 div#issue-changesets .changeset { padding: 4px;}
195 div#issue-changesets .changeset { padding: 4px;}
192 div#issue-changesets .changeset { border-bottom: 1px solid #ddd; }
196 div#issue-changesets .changeset { border-bottom: 1px solid #ddd; }
193 div#issue-changesets p { margin-top: 0; margin-bottom: 1em;}
197 div#issue-changesets p { margin-top: 0; margin-bottom: 1em;}
194
198
195 div#activity dl, #search-results { margin-left: 2em; }
199 div#activity dl, #search-results { margin-left: 2em; }
196 div#activity dd, #search-results dd { margin-bottom: 1em; padding-left: 18px; font-size: 0.9em; }
200 div#activity dd, #search-results dd { margin-bottom: 1em; padding-left: 18px; font-size: 0.9em; }
197 div#activity dt, #search-results dt { margin-bottom: 0px; padding-left: 20px; line-height: 18px; background-position: 0 50%; background-repeat: no-repeat; }
201 div#activity dt, #search-results dt { margin-bottom: 0px; padding-left: 20px; line-height: 18px; background-position: 0 50%; background-repeat: no-repeat; }
198 div#activity dt.me .time { border-bottom: 1px solid #999; }
202 div#activity dt.me .time { border-bottom: 1px solid #999; }
199 div#activity dt .time { color: #777; font-size: 80%; }
203 div#activity dt .time { color: #777; font-size: 80%; }
200 div#activity dd .description, #search-results dd .description { font-style: italic; }
204 div#activity dd .description, #search-results dd .description { font-style: italic; }
201 div#activity span.project:after, #search-results span.project:after { content: " -"; }
205 div#activity span.project:after, #search-results span.project:after { content: " -"; }
202 div#activity dd span.description, #search-results dd span.description { display:block; color: #808080; }
206 div#activity dd span.description, #search-results dd span.description { display:block; color: #808080; }
203
207
204 #search-results dd { margin-bottom: 1em; padding-left: 20px; margin-left:0px; }
208 #search-results dd { margin-bottom: 1em; padding-left: 20px; margin-left:0px; }
205
209
206 div#search-results-counts {float:right;}
210 div#search-results-counts {float:right;}
207 div#search-results-counts ul { margin-top: 0.5em; }
211 div#search-results-counts ul { margin-top: 0.5em; }
208 div#search-results-counts li { list-style-type:none; float: left; margin-left: 1em; }
212 div#search-results-counts li { list-style-type:none; float: left; margin-left: 1em; }
209
213
210 dt.issue { background-image: url(../images/ticket.png); }
214 dt.issue { background-image: url(../images/ticket.png); }
211 dt.issue-edit { background-image: url(../images/ticket_edit.png); }
215 dt.issue-edit { background-image: url(../images/ticket_edit.png); }
212 dt.issue-closed { background-image: url(../images/ticket_checked.png); }
216 dt.issue-closed { background-image: url(../images/ticket_checked.png); }
213 dt.issue-note { background-image: url(../images/ticket_note.png); }
217 dt.issue-note { background-image: url(../images/ticket_note.png); }
214 dt.changeset { background-image: url(../images/changeset.png); }
218 dt.changeset { background-image: url(../images/changeset.png); }
215 dt.news { background-image: url(../images/news.png); }
219 dt.news { background-image: url(../images/news.png); }
216 dt.message { background-image: url(../images/message.png); }
220 dt.message { background-image: url(../images/message.png); }
217 dt.reply { background-image: url(../images/comments.png); }
221 dt.reply { background-image: url(../images/comments.png); }
218 dt.wiki-page { background-image: url(../images/wiki_edit.png); }
222 dt.wiki-page { background-image: url(../images/wiki_edit.png); }
219 dt.attachment { background-image: url(../images/attachment.png); }
223 dt.attachment { background-image: url(../images/attachment.png); }
220 dt.document { background-image: url(../images/document.png); }
224 dt.document { background-image: url(../images/document.png); }
221 dt.project { background-image: url(../images/projects.png); }
225 dt.project { background-image: url(../images/projects.png); }
222
226
223 #search-results dt.issue.closed { background-image: url(../images/ticket_checked.png); }
227 #search-results dt.issue.closed { background-image: url(../images/ticket_checked.png); }
224
228
225 div#roadmap fieldset.related-issues { margin-bottom: 1em; }
229 div#roadmap fieldset.related-issues { margin-bottom: 1em; }
226 div#roadmap fieldset.related-issues ul { margin-top: 0.3em; margin-bottom: 0.3em; }
230 div#roadmap fieldset.related-issues ul { margin-top: 0.3em; margin-bottom: 0.3em; }
227 div#roadmap .wiki h1:first-child { display: none; }
231 div#roadmap .wiki h1:first-child { display: none; }
228 div#roadmap .wiki h1 { font-size: 120%; }
232 div#roadmap .wiki h1 { font-size: 120%; }
229 div#roadmap .wiki h2 { font-size: 110%; }
233 div#roadmap .wiki h2 { font-size: 110%; }
230
234
231 div#version-summary { float:right; width:380px; margin-left: 16px; margin-bottom: 16px; background-color: #fff; }
235 div#version-summary { float:right; width:380px; margin-left: 16px; margin-bottom: 16px; background-color: #fff; }
232 div#version-summary fieldset { margin-bottom: 1em; }
236 div#version-summary fieldset { margin-bottom: 1em; }
233 div#version-summary .total-hours { text-align: right; }
237 div#version-summary .total-hours { text-align: right; }
234
238
235 table#time-report td.hours, table#time-report th.period, table#time-report th.total { text-align: right; padding-right: 0.5em; }
239 table#time-report td.hours, table#time-report th.period, table#time-report th.total { text-align: right; padding-right: 0.5em; }
236 table#time-report tbody tr { font-style: italic; color: #777; }
240 table#time-report tbody tr { font-style: italic; color: #777; }
237 table#time-report tbody tr.last-level { font-style: normal; color: #555; }
241 table#time-report tbody tr.last-level { font-style: normal; color: #555; }
238 table#time-report tbody tr.total { font-style: normal; font-weight: bold; color: #555; background-color:#EEEEEE; }
242 table#time-report tbody tr.total { font-style: normal; font-weight: bold; color: #555; background-color:#EEEEEE; }
239 table#time-report .hours-dec { font-size: 0.9em; }
243 table#time-report .hours-dec { font-size: 0.9em; }
240
244
241 form#issue-form .attributes { margin-bottom: 8px; }
245 form#issue-form .attributes { margin-bottom: 8px; }
242 form#issue-form .attributes p { padding-top: 1px; padding-bottom: 2px; }
246 form#issue-form .attributes p { padding-top: 1px; padding-bottom: 2px; }
243 form#issue-form .attributes select { min-width: 30%; }
247 form#issue-form .attributes select { min-width: 30%; }
244
248
245 ul.projects { margin: 0; padding-left: 1em; }
249 ul.projects { margin: 0; padding-left: 1em; }
246 ul.projects.root { margin: 0; padding: 0; }
250 ul.projects.root { margin: 0; padding: 0; }
247 ul.projects ul { border-left: 3px solid #e0e0e0; }
251 ul.projects ul { border-left: 3px solid #e0e0e0; }
248 ul.projects li { list-style-type:none; }
252 ul.projects li { list-style-type:none; }
249 ul.projects li.root { margin-bottom: 1em; }
253 ul.projects li.root { margin-bottom: 1em; }
250 ul.projects li.child { margin-top: 1em;}
254 ul.projects li.child { margin-top: 1em;}
251 ul.projects div.root a.project { font-family: "Trebuchet MS", Verdana, sans-serif; font-weight: bold; font-size: 16px; margin: 0 0 10px 0; }
255 ul.projects div.root a.project { font-family: "Trebuchet MS", Verdana, sans-serif; font-weight: bold; font-size: 16px; margin: 0 0 10px 0; }
252 .my-project { padding-left: 18px; background: url(../images/fav.png) no-repeat 0 50%; }
256 .my-project { padding-left: 18px; background: url(../images/fav.png) no-repeat 0 50%; }
253
257
254 #tracker_project_ids ul { margin: 0; padding-left: 1em; }
258 #tracker_project_ids ul { margin: 0; padding-left: 1em; }
255 #tracker_project_ids li { list-style-type:none; }
259 #tracker_project_ids li { list-style-type:none; }
256
260
257 ul.properties {padding:0; font-size: 0.9em; color: #777;}
261 ul.properties {padding:0; font-size: 0.9em; color: #777;}
258 ul.properties li {list-style-type:none;}
262 ul.properties li {list-style-type:none;}
259 ul.properties li span {font-style:italic;}
263 ul.properties li span {font-style:italic;}
260
264
261 .total-hours { font-size: 110%; font-weight: bold; }
265 .total-hours { font-size: 110%; font-weight: bold; }
262 .total-hours span.hours-int { font-size: 120%; }
266 .total-hours span.hours-int { font-size: 120%; }
263
267
264 .autoscroll {overflow-x: auto; padding:1px; margin-bottom: 1.2em;}
268 .autoscroll {overflow-x: auto; padding:1px; margin-bottom: 1.2em;}
265 #user_firstname, #user_lastname, #user_mail, #my_account_form select { width: 90%; }
269 #user_firstname, #user_lastname, #user_mail, #my_account_form select { width: 90%; }
266
270
267 .pagination {font-size: 90%}
271 .pagination {font-size: 90%}
268 p.pagination {margin-top:8px;}
272 p.pagination {margin-top:8px;}
269
273
270 /***** Tabular forms ******/
274 /***** Tabular forms ******/
271 .tabular p{
275 .tabular p{
272 margin: 0;
276 margin: 0;
273 padding: 5px 0 8px 0;
277 padding: 5px 0 8px 0;
274 padding-left: 180px; /*width of left column containing the label elements*/
278 padding-left: 180px; /*width of left column containing the label elements*/
275 height: 1%;
279 height: 1%;
276 clear:left;
280 clear:left;
277 }
281 }
278
282
279 html>body .tabular p {overflow:hidden;}
283 html>body .tabular p {overflow:hidden;}
280
284
281 .tabular label{
285 .tabular label{
282 font-weight: bold;
286 font-weight: bold;
283 float: left;
287 float: left;
284 text-align: right;
288 text-align: right;
285 margin-left: -180px; /*width of left column*/
289 margin-left: -180px; /*width of left column*/
286 width: 175px; /*width of labels. Should be smaller than left column to create some right
290 width: 175px; /*width of labels. Should be smaller than left column to create some right
287 margin*/
291 margin*/
288 }
292 }
289
293
290 .tabular label.floating{
294 .tabular label.floating{
291 font-weight: normal;
295 font-weight: normal;
292 margin-left: 0px;
296 margin-left: 0px;
293 text-align: left;
297 text-align: left;
294 width: 270px;
298 width: 270px;
295 }
299 }
296
300
297 input#time_entry_comments { width: 90%;}
301 input#time_entry_comments { width: 90%;}
298
302
299 #preview fieldset {margin-top: 1em; background: url(../images/draft.png)}
303 #preview fieldset {margin-top: 1em; background: url(../images/draft.png)}
300
304
301 .tabular.settings p{ padding-left: 300px; }
305 .tabular.settings p{ padding-left: 300px; }
302 .tabular.settings label{ margin-left: -300px; width: 295px; }
306 .tabular.settings label{ margin-left: -300px; width: 295px; }
303
307
304 .required {color: #bb0000;}
308 .required {color: #bb0000;}
305 .summary {font-style: italic;}
309 .summary {font-style: italic;}
306
310
307 #attachments_fields input[type=text] {margin-left: 8px; }
311 #attachments_fields input[type=text] {margin-left: 8px; }
308
312
309 div.attachments { margin-top: 12px; }
313 div.attachments { margin-top: 12px; }
310 div.attachments p { margin:4px 0 2px 0; }
314 div.attachments p { margin:4px 0 2px 0; }
311 div.attachments img { vertical-align: middle; }
315 div.attachments img { vertical-align: middle; }
312 div.attachments span.author { font-size: 0.9em; color: #888; }
316 div.attachments span.author { font-size: 0.9em; color: #888; }
313
317
314 p.other-formats { text-align: right; font-size:0.9em; color: #666; }
318 p.other-formats { text-align: right; font-size:0.9em; color: #666; }
315 .other-formats span + span:before { content: "| "; }
319 .other-formats span + span:before { content: "| "; }
316
320
317 a.atom { background: url(../images/feed.png) no-repeat 1px 50%; padding: 2px 0px 3px 16px; }
321 a.atom { background: url(../images/feed.png) no-repeat 1px 50%; padding: 2px 0px 3px 16px; }
318
322
319 /***** Flash & error messages ****/
323 /***** Flash & error messages ****/
320 #errorExplanation, div.flash, .nodata, .warning {
324 #errorExplanation, div.flash, .nodata, .warning {
321 padding: 4px 4px 4px 30px;
325 padding: 4px 4px 4px 30px;
322 margin-bottom: 12px;
326 margin-bottom: 12px;
323 font-size: 1.1em;
327 font-size: 1.1em;
324 border: 2px solid;
328 border: 2px solid;
325 }
329 }
326
330
327 div.flash {margin-top: 8px;}
331 div.flash {margin-top: 8px;}
328
332
329 div.flash.error, #errorExplanation {
333 div.flash.error, #errorExplanation {
330 background: url(../images/false.png) 8px 5px no-repeat;
334 background: url(../images/false.png) 8px 5px no-repeat;
331 background-color: #ffe3e3;
335 background-color: #ffe3e3;
332 border-color: #dd0000;
336 border-color: #dd0000;
333 color: #550000;
337 color: #550000;
334 }
338 }
335
339
336 div.flash.notice {
340 div.flash.notice {
337 background: url(../images/true.png) 8px 5px no-repeat;
341 background: url(../images/true.png) 8px 5px no-repeat;
338 background-color: #dfffdf;
342 background-color: #dfffdf;
339 border-color: #9fcf9f;
343 border-color: #9fcf9f;
340 color: #005f00;
344 color: #005f00;
341 }
345 }
342
346
343 div.flash.warning {
347 div.flash.warning {
344 background: url(../images/warning.png) 8px 5px no-repeat;
348 background: url(../images/warning.png) 8px 5px no-repeat;
345 background-color: #FFEBC1;
349 background-color: #FFEBC1;
346 border-color: #FDBF3B;
350 border-color: #FDBF3B;
347 color: #A6750C;
351 color: #A6750C;
348 text-align: left;
352 text-align: left;
349 }
353 }
350
354
351 .nodata, .warning {
355 .nodata, .warning {
352 text-align: center;
356 text-align: center;
353 background-color: #FFEBC1;
357 background-color: #FFEBC1;
354 border-color: #FDBF3B;
358 border-color: #FDBF3B;
355 color: #A6750C;
359 color: #A6750C;
356 }
360 }
357
361
358 #errorExplanation ul { font-size: 0.9em;}
362 #errorExplanation ul { font-size: 0.9em;}
359 #errorExplanation h2, #errorExplanation p { display: none; }
363 #errorExplanation h2, #errorExplanation p { display: none; }
360
364
361 /***** Ajax indicator ******/
365 /***** Ajax indicator ******/
362 #ajax-indicator {
366 #ajax-indicator {
363 position: absolute; /* fixed not supported by IE */
367 position: absolute; /* fixed not supported by IE */
364 background-color:#eee;
368 background-color:#eee;
365 border: 1px solid #bbb;
369 border: 1px solid #bbb;
366 top:35%;
370 top:35%;
367 left:40%;
371 left:40%;
368 width:20%;
372 width:20%;
369 font-weight:bold;
373 font-weight:bold;
370 text-align:center;
374 text-align:center;
371 padding:0.6em;
375 padding:0.6em;
372 z-index:100;
376 z-index:100;
373 filter:alpha(opacity=50);
377 filter:alpha(opacity=50);
374 opacity: 0.5;
378 opacity: 0.5;
375 }
379 }
376
380
377 html>body #ajax-indicator { position: fixed; }
381 html>body #ajax-indicator { position: fixed; }
378
382
379 #ajax-indicator span {
383 #ajax-indicator span {
380 background-position: 0% 40%;
384 background-position: 0% 40%;
381 background-repeat: no-repeat;
385 background-repeat: no-repeat;
382 background-image: url(../images/loading.gif);
386 background-image: url(../images/loading.gif);
383 padding-left: 26px;
387 padding-left: 26px;
384 vertical-align: bottom;
388 vertical-align: bottom;
385 }
389 }
386
390
387 /***** Calendar *****/
391 /***** Calendar *****/
388 table.cal {border-collapse: collapse; width: 100%; margin: 0px 0 6px 0;border: 1px solid #d7d7d7;}
392 table.cal {border-collapse: collapse; width: 100%; margin: 0px 0 6px 0;border: 1px solid #d7d7d7;}
389 table.cal thead th {width: 14%;}
393 table.cal thead th {width: 14%;}
390 table.cal tbody tr {height: 100px;}
394 table.cal tbody tr {height: 100px;}
391 table.cal th { background-color:#EEEEEE; padding: 4px; }
395 table.cal th { background-color:#EEEEEE; padding: 4px; }
392 table.cal td {border: 1px solid #d7d7d7; vertical-align: top; font-size: 0.9em;}
396 table.cal td {border: 1px solid #d7d7d7; vertical-align: top; font-size: 0.9em;}
393 table.cal td p.day-num {font-size: 1.1em; text-align:right;}
397 table.cal td p.day-num {font-size: 1.1em; text-align:right;}
394 table.cal td.odd p.day-num {color: #bbb;}
398 table.cal td.odd p.day-num {color: #bbb;}
395 table.cal td.today {background:#ffffdd;}
399 table.cal td.today {background:#ffffdd;}
396 table.cal td.today p.day-num {font-weight: bold;}
400 table.cal td.today p.day-num {font-weight: bold;}
397
401
398 /***** Tooltips ******/
402 /***** Tooltips ******/
399 .tooltip{position:relative;z-index:24;}
403 .tooltip{position:relative;z-index:24;}
400 .tooltip:hover{z-index:25;color:#000;}
404 .tooltip:hover{z-index:25;color:#000;}
401 .tooltip span.tip{display: none; text-align:left;}
405 .tooltip span.tip{display: none; text-align:left;}
402
406
403 div.tooltip:hover span.tip{
407 div.tooltip:hover span.tip{
404 display:block;
408 display:block;
405 position:absolute;
409 position:absolute;
406 top:12px; left:24px; width:270px;
410 top:12px; left:24px; width:270px;
407 border:1px solid #555;
411 border:1px solid #555;
408 background-color:#fff;
412 background-color:#fff;
409 padding: 4px;
413 padding: 4px;
410 font-size: 0.8em;
414 font-size: 0.8em;
411 color:#505050;
415 color:#505050;
412 }
416 }
413
417
414 /***** Progress bar *****/
418 /***** Progress bar *****/
415 table.progress {
419 table.progress {
416 border: 1px solid #D7D7D7;
420 border: 1px solid #D7D7D7;
417 border-collapse: collapse;
421 border-collapse: collapse;
418 border-spacing: 0pt;
422 border-spacing: 0pt;
419 empty-cells: show;
423 empty-cells: show;
420 text-align: center;
424 text-align: center;
421 float:left;
425 float:left;
422 margin: 1px 6px 1px 0px;
426 margin: 1px 6px 1px 0px;
423 }
427 }
424
428
425 table.progress td { height: 0.9em; }
429 table.progress td { height: 0.9em; }
426 table.progress td.closed { background: #BAE0BA none repeat scroll 0%; }
430 table.progress td.closed { background: #BAE0BA none repeat scroll 0%; }
427 table.progress td.done { background: #DEF0DE none repeat scroll 0%; }
431 table.progress td.done { background: #DEF0DE none repeat scroll 0%; }
428 table.progress td.open { background: #FFF none repeat scroll 0%; }
432 table.progress td.open { background: #FFF none repeat scroll 0%; }
429 p.pourcent {font-size: 80%;}
433 p.pourcent {font-size: 80%;}
430 p.progress-info {clear: left; font-style: italic; font-size: 80%;}
434 p.progress-info {clear: left; font-style: italic; font-size: 80%;}
431
435
432 /***** Tabs *****/
436 /***** Tabs *****/
433 #content .tabs {height: 2.6em; border-bottom: 1px solid #bbbbbb; margin-bottom:1.2em; position:relative;}
437 #content .tabs {height: 2.6em; border-bottom: 1px solid #bbbbbb; margin-bottom:1.2em; position:relative;}
434 #content .tabs ul {margin:0; position:absolute; bottom:-2px; padding-left:1em;}
438 #content .tabs ul {margin:0; position:absolute; bottom:-2px; padding-left:1em;}
435 #content .tabs>ul { bottom:-1px; } /* others */
439 #content .tabs>ul { bottom:-1px; } /* others */
436 #content .tabs ul li {
440 #content .tabs ul li {
437 float:left;
441 float:left;
438 list-style-type:none;
442 list-style-type:none;
439 white-space:nowrap;
443 white-space:nowrap;
440 margin-right:8px;
444 margin-right:8px;
441 background:#fff;
445 background:#fff;
442 }
446 }
443 #content .tabs ul li a{
447 #content .tabs ul li a{
444 display:block;
448 display:block;
445 font-size: 0.9em;
449 font-size: 0.9em;
446 text-decoration:none;
450 text-decoration:none;
447 line-height:1.3em;
451 line-height:1.3em;
448 padding:4px 6px 4px 6px;
452 padding:4px 6px 4px 6px;
449 border: 1px solid #ccc;
453 border: 1px solid #ccc;
450 border-bottom: 1px solid #bbbbbb;
454 border-bottom: 1px solid #bbbbbb;
451 background-color: #eeeeee;
455 background-color: #eeeeee;
452 color:#777;
456 color:#777;
453 font-weight:bold;
457 font-weight:bold;
454 }
458 }
455
459
456 #content .tabs ul li a:hover {
460 #content .tabs ul li a:hover {
457 background-color: #ffffdd;
461 background-color: #ffffdd;
458 text-decoration:none;
462 text-decoration:none;
459 }
463 }
460
464
461 #content .tabs ul li a.selected {
465 #content .tabs ul li a.selected {
462 background-color: #fff;
466 background-color: #fff;
463 border: 1px solid #bbbbbb;
467 border: 1px solid #bbbbbb;
464 border-bottom: 1px solid #fff;
468 border-bottom: 1px solid #fff;
465 }
469 }
466
470
467 #content .tabs ul li a.selected:hover {
471 #content .tabs ul li a.selected:hover {
468 background-color: #fff;
472 background-color: #fff;
469 }
473 }
470
474
471 /***** Diff *****/
475 /***** Diff *****/
472 .diff_out { background: #fcc; }
476 .diff_out { background: #fcc; }
473 .diff_in { background: #cfc; }
477 .diff_in { background: #cfc; }
474
478
475 /***** Wiki *****/
479 /***** Wiki *****/
476 div.wiki table {
480 div.wiki table {
477 border: 1px solid #505050;
481 border: 1px solid #505050;
478 border-collapse: collapse;
482 border-collapse: collapse;
479 margin-bottom: 1em;
483 margin-bottom: 1em;
480 }
484 }
481
485
482 div.wiki table, div.wiki td, div.wiki th {
486 div.wiki table, div.wiki td, div.wiki th {
483 border: 1px solid #bbb;
487 border: 1px solid #bbb;
484 padding: 4px;
488 padding: 4px;
485 }
489 }
486
490
487 div.wiki .external {
491 div.wiki .external {
488 background-position: 0% 60%;
492 background-position: 0% 60%;
489 background-repeat: no-repeat;
493 background-repeat: no-repeat;
490 padding-left: 12px;
494 padding-left: 12px;
491 background-image: url(../images/external.png);
495 background-image: url(../images/external.png);
492 }
496 }
493
497
494 div.wiki a.new {
498 div.wiki a.new {
495 color: #b73535;
499 color: #b73535;
496 }
500 }
497
501
498 div.wiki pre {
502 div.wiki pre {
499 margin: 1em 1em 1em 1.6em;
503 margin: 1em 1em 1em 1.6em;
500 padding: 2px;
504 padding: 2px;
501 background-color: #fafafa;
505 background-color: #fafafa;
502 border: 1px solid #dadada;
506 border: 1px solid #dadada;
503 width:95%;
507 width:95%;
504 overflow-x: auto;
508 overflow-x: auto;
505 }
509 }
506
510
507 div.wiki ul.toc {
511 div.wiki ul.toc {
508 background-color: #ffffdd;
512 background-color: #ffffdd;
509 border: 1px solid #e4e4e4;
513 border: 1px solid #e4e4e4;
510 padding: 4px;
514 padding: 4px;
511 line-height: 1.2em;
515 line-height: 1.2em;
512 margin-bottom: 12px;
516 margin-bottom: 12px;
513 margin-right: 12px;
517 margin-right: 12px;
514 margin-left: 0;
518 margin-left: 0;
515 display: table
519 display: table
516 }
520 }
517 * html div.wiki ul.toc { width: 50%; } /* IE6 doesn't autosize div */
521 * html div.wiki ul.toc { width: 50%; } /* IE6 doesn't autosize div */
518
522
519 div.wiki ul.toc.right { float: right; margin-left: 12px; margin-right: 0; width: auto; }
523 div.wiki ul.toc.right { float: right; margin-left: 12px; margin-right: 0; width: auto; }
520 div.wiki ul.toc.left { float: left; margin-right: 12px; margin-left: 0; width: auto; }
524 div.wiki ul.toc.left { float: left; margin-right: 12px; margin-left: 0; width: auto; }
521 div.wiki ul.toc li { list-style-type:none;}
525 div.wiki ul.toc li { list-style-type:none;}
522 div.wiki ul.toc li.heading2 { margin-left: 6px; }
526 div.wiki ul.toc li.heading2 { margin-left: 6px; }
523 div.wiki ul.toc li.heading3 { margin-left: 12px; font-size: 0.8em; }
527 div.wiki ul.toc li.heading3 { margin-left: 12px; font-size: 0.8em; }
524
528
525 div.wiki ul.toc a {
529 div.wiki ul.toc a {
526 font-size: 0.9em;
530 font-size: 0.9em;
527 font-weight: normal;
531 font-weight: normal;
528 text-decoration: none;
532 text-decoration: none;
529 color: #606060;
533 color: #606060;
530 }
534 }
531 div.wiki ul.toc a:hover { color: #c61a1a; text-decoration: underline;}
535 div.wiki ul.toc a:hover { color: #c61a1a; text-decoration: underline;}
532
536
533 a.wiki-anchor { display: none; margin-left: 6px; text-decoration: none; }
537 a.wiki-anchor { display: none; margin-left: 6px; text-decoration: none; }
534 a.wiki-anchor:hover { color: #aaa !important; text-decoration: none; }
538 a.wiki-anchor:hover { color: #aaa !important; text-decoration: none; }
535 h1:hover a.wiki-anchor, h2:hover a.wiki-anchor, h3:hover a.wiki-anchor { display: inline; color: #ddd; }
539 h1:hover a.wiki-anchor, h2:hover a.wiki-anchor, h3:hover a.wiki-anchor { display: inline; color: #ddd; }
536
540
537 /***** My page layout *****/
541 /***** My page layout *****/
538 .block-receiver {
542 .block-receiver {
539 border:1px dashed #c0c0c0;
543 border:1px dashed #c0c0c0;
540 margin-bottom: 20px;
544 margin-bottom: 20px;
541 padding: 15px 0 15px 0;
545 padding: 15px 0 15px 0;
542 }
546 }
543
547
544 .mypage-box {
548 .mypage-box {
545 margin:0 0 20px 0;
549 margin:0 0 20px 0;
546 color:#505050;
550 color:#505050;
547 line-height:1.5em;
551 line-height:1.5em;
548 }
552 }
549
553
550 .handle {
554 .handle {
551 cursor: move;
555 cursor: move;
552 }
556 }
553
557
554 a.close-icon {
558 a.close-icon {
555 display:block;
559 display:block;
556 margin-top:3px;
560 margin-top:3px;
557 overflow:hidden;
561 overflow:hidden;
558 width:12px;
562 width:12px;
559 height:12px;
563 height:12px;
560 background-repeat: no-repeat;
564 background-repeat: no-repeat;
561 cursor:pointer;
565 cursor:pointer;
562 background-image:url('../images/close.png');
566 background-image:url('../images/close.png');
563 }
567 }
564
568
565 a.close-icon:hover {
569 a.close-icon:hover {
566 background-image:url('../images/close_hl.png');
570 background-image:url('../images/close_hl.png');
567 }
571 }
568
572
569 /***** Gantt chart *****/
573 /***** Gantt chart *****/
570 .gantt_hdr {
574 .gantt_hdr {
571 position:absolute;
575 position:absolute;
572 top:0;
576 top:0;
573 height:16px;
577 height:16px;
574 border-top: 1px solid #c0c0c0;
578 border-top: 1px solid #c0c0c0;
575 border-bottom: 1px solid #c0c0c0;
579 border-bottom: 1px solid #c0c0c0;
576 border-right: 1px solid #c0c0c0;
580 border-right: 1px solid #c0c0c0;
577 text-align: center;
581 text-align: center;
578 overflow: hidden;
582 overflow: hidden;
579 }
583 }
580
584
581 .task {
585 .task {
582 position: absolute;
586 position: absolute;
583 height:8px;
587 height:8px;
584 font-size:0.8em;
588 font-size:0.8em;
585 color:#888;
589 color:#888;
586 padding:0;
590 padding:0;
587 margin:0;
591 margin:0;
588 line-height:0.8em;
592 line-height:0.8em;
589 }
593 }
590
594
591 .task_late { background:#f66 url(../images/task_late.png); border: 1px solid #f66; }
595 .task_late { background:#f66 url(../images/task_late.png); border: 1px solid #f66; }
592 .task_done { background:#66f url(../images/task_done.png); border: 1px solid #66f; }
596 .task_done { background:#66f url(../images/task_done.png); border: 1px solid #66f; }
593 .task_todo { background:#aaa url(../images/task_todo.png); border: 1px solid #aaa; }
597 .task_todo { background:#aaa url(../images/task_todo.png); border: 1px solid #aaa; }
594 .milestone { background-image:url(../images/milestone.png); background-repeat: no-repeat; border: 0; }
598 .milestone { background-image:url(../images/milestone.png); background-repeat: no-repeat; border: 0; }
595
599
596 /***** Icons *****/
600 /***** Icons *****/
597 .icon {
601 .icon {
598 background-position: 0% 40%;
602 background-position: 0% 40%;
599 background-repeat: no-repeat;
603 background-repeat: no-repeat;
600 padding-left: 20px;
604 padding-left: 20px;
601 padding-top: 2px;
605 padding-top: 2px;
602 padding-bottom: 3px;
606 padding-bottom: 3px;
603 }
607 }
604
608
605 .icon22 {
609 .icon22 {
606 background-position: 0% 40%;
610 background-position: 0% 40%;
607 background-repeat: no-repeat;
611 background-repeat: no-repeat;
608 padding-left: 26px;
612 padding-left: 26px;
609 line-height: 22px;
613 line-height: 22px;
610 vertical-align: middle;
614 vertical-align: middle;
611 }
615 }
612
616
613 .icon-add { background-image: url(../images/add.png); }
617 .icon-add { background-image: url(../images/add.png); }
614 .icon-edit { background-image: url(../images/edit.png); }
618 .icon-edit { background-image: url(../images/edit.png); }
615 .icon-copy { background-image: url(../images/copy.png); }
619 .icon-copy { background-image: url(../images/copy.png); }
616 .icon-del { background-image: url(../images/delete.png); }
620 .icon-del { background-image: url(../images/delete.png); }
617 .icon-move { background-image: url(../images/move.png); }
621 .icon-move { background-image: url(../images/move.png); }
618 .icon-save { background-image: url(../images/save.png); }
622 .icon-save { background-image: url(../images/save.png); }
619 .icon-cancel { background-image: url(../images/cancel.png); }
623 .icon-cancel { background-image: url(../images/cancel.png); }
620 .icon-file { background-image: url(../images/file.png); }
624 .icon-file { background-image: url(../images/file.png); }
621 .icon-folder { background-image: url(../images/folder.png); }
625 .icon-folder { background-image: url(../images/folder.png); }
622 .open .icon-folder { background-image: url(../images/folder_open.png); }
626 .open .icon-folder { background-image: url(../images/folder_open.png); }
623 .icon-package { background-image: url(../images/package.png); }
627 .icon-package { background-image: url(../images/package.png); }
624 .icon-home { background-image: url(../images/home.png); }
628 .icon-home { background-image: url(../images/home.png); }
625 .icon-user { background-image: url(../images/user.png); }
629 .icon-user { background-image: url(../images/user.png); }
626 .icon-mypage { background-image: url(../images/user_page.png); }
630 .icon-mypage { background-image: url(../images/user_page.png); }
627 .icon-admin { background-image: url(../images/admin.png); }
631 .icon-admin { background-image: url(../images/admin.png); }
628 .icon-projects { background-image: url(../images/projects.png); }
632 .icon-projects { background-image: url(../images/projects.png); }
629 .icon-help { background-image: url(../images/help.png); }
633 .icon-help { background-image: url(../images/help.png); }
630 .icon-attachment { background-image: url(../images/attachment.png); }
634 .icon-attachment { background-image: url(../images/attachment.png); }
631 .icon-index { background-image: url(../images/index.png); }
635 .icon-index { background-image: url(../images/index.png); }
632 .icon-history { background-image: url(../images/history.png); }
636 .icon-history { background-image: url(../images/history.png); }
633 .icon-time { background-image: url(../images/time.png); }
637 .icon-time { background-image: url(../images/time.png); }
634 .icon-time-add { background-image: url(../images/time_add.png); }
638 .icon-time-add { background-image: url(../images/time_add.png); }
635 .icon-stats { background-image: url(../images/stats.png); }
639 .icon-stats { background-image: url(../images/stats.png); }
636 .icon-warning { background-image: url(../images/warning.png); }
640 .icon-warning { background-image: url(../images/warning.png); }
637 .icon-fav { background-image: url(../images/fav.png); }
641 .icon-fav { background-image: url(../images/fav.png); }
638 .icon-fav-off { background-image: url(../images/fav_off.png); }
642 .icon-fav-off { background-image: url(../images/fav_off.png); }
639 .icon-reload { background-image: url(../images/reload.png); }
643 .icon-reload { background-image: url(../images/reload.png); }
640 .icon-lock { background-image: url(../images/locked.png); }
644 .icon-lock { background-image: url(../images/locked.png); }
641 .icon-unlock { background-image: url(../images/unlock.png); }
645 .icon-unlock { background-image: url(../images/unlock.png); }
642 .icon-checked { background-image: url(../images/true.png); }
646 .icon-checked { background-image: url(../images/true.png); }
643 .icon-details { background-image: url(../images/zoom_in.png); }
647 .icon-details { background-image: url(../images/zoom_in.png); }
644 .icon-report { background-image: url(../images/report.png); }
648 .icon-report { background-image: url(../images/report.png); }
645 .icon-comment { background-image: url(../images/comment.png); }
649 .icon-comment { background-image: url(../images/comment.png); }
646
650
647 .icon22-projects { background-image: url(../images/22x22/projects.png); }
651 .icon22-projects { background-image: url(../images/22x22/projects.png); }
648 .icon22-users { background-image: url(../images/22x22/users.png); }
652 .icon22-users { background-image: url(../images/22x22/users.png); }
649 .icon22-tracker { background-image: url(../images/22x22/tracker.png); }
653 .icon22-tracker { background-image: url(../images/22x22/tracker.png); }
650 .icon22-role { background-image: url(../images/22x22/role.png); }
654 .icon22-role { background-image: url(../images/22x22/role.png); }
651 .icon22-workflow { background-image: url(../images/22x22/workflow.png); }
655 .icon22-workflow { background-image: url(../images/22x22/workflow.png); }
652 .icon22-options { background-image: url(../images/22x22/options.png); }
656 .icon22-options { background-image: url(../images/22x22/options.png); }
653 .icon22-notifications { background-image: url(../images/22x22/notifications.png); }
657 .icon22-notifications { background-image: url(../images/22x22/notifications.png); }
654 .icon22-authent { background-image: url(../images/22x22/authent.png); }
658 .icon22-authent { background-image: url(../images/22x22/authent.png); }
655 .icon22-info { background-image: url(../images/22x22/info.png); }
659 .icon22-info { background-image: url(../images/22x22/info.png); }
656 .icon22-comment { background-image: url(../images/22x22/comment.png); }
660 .icon22-comment { background-image: url(../images/22x22/comment.png); }
657 .icon22-package { background-image: url(../images/22x22/package.png); }
661 .icon22-package { background-image: url(../images/22x22/package.png); }
658 .icon22-settings { background-image: url(../images/22x22/settings.png); }
662 .icon22-settings { background-image: url(../images/22x22/settings.png); }
659 .icon22-plugin { background-image: url(../images/22x22/plugin.png); }
663 .icon22-plugin { background-image: url(../images/22x22/plugin.png); }
660
664
661 img.gravatar {
665 img.gravatar {
662 padding: 2px;
666 padding: 2px;
663 border: solid 1px #d5d5d5;
667 border: solid 1px #d5d5d5;
664 background: #fff;
668 background: #fff;
665 }
669 }
666
670
667 div.issue img.gravatar {
671 div.issue img.gravatar {
668 float: right;
672 float: right;
669 margin: 0 0 0 1em;
673 margin: 0 0 0 1em;
670 padding: 5px;
674 padding: 5px;
671 }
675 }
672
676
673 div.issue table img.gravatar {
677 div.issue table img.gravatar {
674 height: 14px;
678 height: 14px;
675 width: 14px;
679 width: 14px;
676 padding: 2px;
680 padding: 2px;
677 float: left;
681 float: left;
678 margin: 0 0.5em 0 0;
682 margin: 0 0.5em 0 0;
679 }
683 }
680
684
681 #history img.gravatar {
685 #history img.gravatar {
682 padding: 3px;
686 padding: 3px;
683 margin: 0 1.5em 1em 0;
687 margin: 0 1.5em 1em 0;
684 float: left;
688 float: left;
685 }
689 }
686
690
687 td.username img.gravatar {
691 td.username img.gravatar {
688 float: left;
692 float: left;
689 margin: 0 1em 0 0;
693 margin: 0 1em 0 0;
690 }
694 }
691
695
692 #activity dt img.gravatar {
696 #activity dt img.gravatar {
693 float: left;
697 float: left;
694 margin: 0 1em 1em 0;
698 margin: 0 1em 1em 0;
695 }
699 }
696
700
697 #activity dt,
701 #activity dt,
698 .journal {
702 .journal {
699 clear: left;
703 clear: left;
700 }
704 }
701
705
702 h2 img { vertical-align:middle; }
706 h2 img { vertical-align:middle; }
703
707
704
708
705 /***** Media print specific styles *****/
709 /***** Media print specific styles *****/
706 @media print {
710 @media print {
707 #top-menu, #header, #main-menu, #sidebar, #footer, .contextual, .other-formats { display:none; }
711 #top-menu, #header, #main-menu, #sidebar, #footer, .contextual, .other-formats { display:none; }
708 #main { background: #fff; }
712 #main { background: #fff; }
709 #content { width: 99%; margin: 0; padding: 0; border: 0; background: #fff; overflow: visible !important;}
713 #content { width: 99%; margin: 0; padding: 0; border: 0; background: #fff; overflow: visible !important;}
710 }
714 }
General Comments 0
You need to be logged in to leave comments. Login now