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