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