##// END OF EJS Templates
Use the regular "icon icon-*" on project overview (#24313)....
Jean-Philippe Lang -
r15591:06b97bd91d2b
parent child
Show More
@@ -1,8 +1,8
1 1 <% if @users_by_role.any? %>
2 2 <div class="members box">
3 <h3><%=l(:label_member_plural)%></h3>
3 <h3 class="icon icon-group"><%=l(:label_member_plural)%></h3>
4 4 <% @users_by_role.keys.sort.each do |role| %>
5 5 <p><span class="label"><%= role %>:</span> <%= @users_by_role[role].sort.collect{|u| link_to_user u}.join(", ").html_safe %></p>
6 6 <% end %>
7 7 </div>
8 8 <% end %>
@@ -1,129 +1,129
1 1 <div class="contextual">
2 2 <% if User.current.allowed_to?(:add_subprojects, @project) %>
3 3 <%= link_to l(:label_subproject_new), new_project_path(:parent_id => @project), :class => 'icon icon-add' %>
4 4 <% end %>
5 5 <% if User.current.allowed_to?(:close_project, @project) %>
6 6 <% if @project.active? %>
7 7 <%= link_to l(:button_close), close_project_path(@project), :data => {:confirm => l(:text_are_you_sure)}, :method => :post, :class => 'icon icon-lock' %>
8 8 <% else %>
9 9 <%= link_to l(:button_reopen), reopen_project_path(@project), :data => {:confirm => l(:text_are_you_sure)}, :method => :post, :class => 'icon icon-unlock' %>
10 10 <% end %>
11 11 <% end %>
12 12 </div>
13 13
14 14 <h2><%=l(:label_overview)%></h2>
15 15
16 16 <% unless @project.active? %>
17 17 <p class="warning"><span class="icon icon-lock"><%= l(:text_project_closed) %></span></p>
18 18 <% end %>
19 19
20 20 <div class="splitcontentleft">
21 21 <% if @project.description.present? %>
22 22 <div class="wiki">
23 23 <%= textilizable @project.description %>
24 24 </div>
25 25 <% end %>
26 26 <% if @project.homepage.present? || @project.visible_custom_field_values.any?(&:present?) %>
27 27 <ul>
28 28 <% unless @project.homepage.blank? %>
29 29 <li><span class="label"><%=l(:field_homepage)%>:</span> <%= link_to_if uri_with_safe_scheme?(@project.homepage), @project.homepage, @project.homepage %></li>
30 30 <% end %>
31 31 <% render_custom_field_values(@project) do |custom_field, formatted| %>
32 32 <li><span class="label"><%= custom_field.name %>:</span> <%= formatted %></li>
33 33 <% end %>
34 34 </ul>
35 35 <% end %>
36 36
37 37 <% if User.current.allowed_to?(:view_issues, @project) %>
38 38 <div class="issues box">
39 <h3><%=l(:label_issue_tracking)%></h3>
39 <h3 class="icon icon-issue"><%=l(:label_issue_tracking)%></h3>
40 40 <% if @trackers.present? %>
41 41 <table class="list issue-report">
42 42 <thead>
43 43 <tr>
44 44 <th></th>
45 45 <th><%=l(:label_open_issues_plural)%></th>
46 46 <th><%=l(:label_closed_issues_plural)%></th>
47 47 <th><%=l(:label_total)%></th>
48 48 </tr>
49 49 </thead>
50 50 <tbody>
51 51 <% @trackers.each do |tracker| %>
52 52 <tr class="<%= cycle("odd", "even") %>">
53 53 <td class="name">
54 54 <%= link_to tracker.name, project_issues_path(@project, :set_filter => 1, :tracker_id => tracker.id) %>
55 55 </td>
56 56 <td>
57 57 <%= link_to @open_issues_by_tracker[tracker].to_i, project_issues_path(@project, :set_filter => 1, :tracker_id => tracker.id) %>
58 58 </td>
59 59 <td>
60 60 <%= link_to (@total_issues_by_tracker[tracker].to_i - @open_issues_by_tracker[tracker].to_i), project_issues_path(@project, :set_filter => 1, :tracker_id => tracker.id, :status_id => 'c') %>
61 61 </td>
62 62 <td>
63 63 <%= link_to @total_issues_by_tracker[tracker].to_i, project_issues_path(@project, :set_filter => 1, :tracker_id => tracker.id, :status_id => '*') %>
64 64 </td>
65 65 </tr>
66 66 <% end %>
67 67 </tbody>
68 68 </table>
69 69 <% end %>
70 70 <p>
71 71 <%= link_to l(:label_issue_view_all), project_issues_path(@project, :set_filter => 1) %>
72 72 <% if User.current.allowed_to?(:view_calendar, @project, :global => true) %>
73 73 | <%= link_to l(:label_calendar), project_calendar_path(@project) %>
74 74 <% end %>
75 75 <% if User.current.allowed_to?(:view_gantt, @project, :global => true) %>
76 76 | <%= link_to l(:label_gantt), project_gantt_path(@project) %>
77 77 <% end %>
78 78 </p>
79 79 </div>
80 80 <% end %>
81
81
82 82 <% if User.current.allowed_to?(:view_time_entries, @project) %>
83 83 <div class="spent_time box">
84 <h3><%= l(:label_spent_time) %></h3>
84 <h3 class="icon icon-time"><%= l(:label_spent_time) %></h3>
85 85 <% if @total_hours.present? %>
86 86 <p><%= l_hours(@total_hours) %></p>
87 87 <% end %>
88 88 <p>
89 89 <% if User.current.allowed_to?(:log_time, @project) %>
90 90 <%= link_to l(:button_log_time), new_project_time_entry_path(@project) %> |
91 91 <% end %>
92 92 <%= link_to(l(:label_details), project_time_entries_path(@project)) %> |
93 93 <%= link_to(l(:label_report), report_project_time_entries_path(@project)) %>
94 94 </p>
95 95 </div>
96 96 <% end %>
97 97 <%= call_hook(:view_projects_show_left, :project => @project) %>
98 98 </div>
99 99
100 100 <div class="splitcontentright">
101 101 <%= render :partial => 'members_box' %>
102 102
103 103 <% if @news.any? && authorize_for('news', 'index') %>
104 104 <div class="news box">
105 <h3><%=l(:label_news_latest)%></h3>
105 <h3 class="icon icon-news"><%=l(:label_news_latest)%></h3>
106 106 <%= render :partial => 'news/news', :collection => @news %>
107 107 <p><%= link_to l(:label_news_view_all), project_news_index_path(@project) %></p>
108 108 </div>
109 109 <% end %>
110 110
111 111 <% if @subprojects.any? %>
112 112 <div class="projects box">
113 <h3><%=l(:label_subproject_plural)%></h3>
113 <h3 class="icon icon-projects"><%=l(:label_subproject_plural)%></h3>
114 114 <%= @subprojects.collect{|p| link_to p, project_path(p), :class => p.css_classes}.join(", ").html_safe %>
115 115 </div>
116 116 <% end %>
117 117
118 118 <%= call_hook(:view_projects_show_right, :project => @project) %>
119 119 </div>
120 120
121 121 <% content_for :sidebar do %>
122 122 <%= call_hook(:view_projects_show_sidebar_bottom, :project => @project) %>
123 123 <% end %>
124 124
125 125 <% content_for :header_tags do %>
126 126 <%= auto_discovery_link_tag(:atom, {:controller => 'activities', :action => 'index', :id => @project, :format => 'atom', :key => User.current.rss_key}) %>
127 127 <% end %>
128 128
129 129 <% html_title(l(:label_overview)) -%>
@@ -1,1397 +1,1392
1 1 html {overflow-y:scroll;}
2 2 body { font-family: Verdana, sans-serif; font-size: 12px; color:#333; margin: 0; padding: 0; min-width: 900px; }
3 3
4 4 h1, h2, h3, h4 {font-family: "Trebuchet MS", Verdana, sans-serif;padding: 2px 10px 1px 0px;margin: 0 0 10px 0;}
5 5 #content h1, h2, h3, h4 {color: #555;}
6 6 h2, .wiki h1 {font-size: 20px;}
7 7 h3, .wiki h2 {font-size: 16px;}
8 8 h4, .wiki h3 {font-size: 13px;}
9 9 h4 {border-bottom: 1px dotted #bbb;}
10 10 pre, code {font-family: Consolas, Menlo, "Liberation Mono", Courier, monospace;}
11 11
12 12 /***** Layout *****/
13 13 #wrapper {background: white;overflow: hidden;}
14 14
15 15 #top-menu {background: #3E5B76; color: #fff; height:1.8em; font-size: 0.8em; padding: 2px 2px 0px 6px;}
16 16 #top-menu ul {margin: 0; padding: 0;}
17 17 #top-menu li {
18 18 float:left;
19 19 list-style-type:none;
20 20 margin: 0px 0px 0px 0px;
21 21 padding: 0px 0px 0px 0px;
22 22 white-space:nowrap;
23 23 }
24 24 #top-menu a {color: #fff; margin-right: 8px; font-weight: bold;}
25 25 #top-menu #loggedas { float: right; margin-right: 0.5em; color: #fff; }
26 26
27 27 #account {float:right;}
28 28
29 29 #header {min-height:5.3em;margin:0;background-color:#628DB6;color:#f8f8f8; padding: 4px 8px 20px 6px; position:relative;}
30 30 #header a {color:#f8f8f8;}
31 31 #header h1 { overflow: hidden; text-overflow: ellipsis; white-space: nowrap;}
32 32 #header h1 .breadcrumbs { display:block; font-size: .5em; font-weight: normal; }
33 33 #quick-search {float:right;}
34 34
35 35 #main-menu {position: absolute; bottom: 0px; left:6px; margin-right: -500px; width: 100%;}
36 36 #main-menu ul {margin: 0; padding: 0; width: 100%; white-space: nowrap;}
37 37 #main-menu li {
38 38 float:none;
39 39 list-style-type:none;
40 40 margin: 0px 2px 0px 0px;
41 41 padding: 0px 0px 0px 0px;
42 42 white-space:nowrap;
43 43 display:inline-block;
44 44 }
45 45 #main-menu li a {
46 46 display: block;
47 47 color: #fff;
48 48 text-decoration: none;
49 49 font-weight: bold;
50 50 margin: 0;
51 51 padding: 4px 10px 4px 10px;
52 52 }
53 53 #main-menu li a:hover {background:#759FCF; color:#fff;}
54 54 #main-menu li:hover ul.menu-children, #main-menu li ul.menu-children.visible {display: block;}
55 55 #main-menu li a.selected, #main-menu li a.selected:hover {background:#fff; color:#555;}
56 56 #main-menu li a.new-object { background-color:#759FCF; }
57 57
58 58 #main-menu .menu-children {
59 59 display: none;
60 60 position:absolute;
61 61 width: inherit;
62 62 z-index:45;
63 63 background-color:#fff;
64 64 border-right: 1px solid #759FCF;
65 65 border-bottom: 1px solid #759FCF;
66 66 border-left: 1px solid #759FCF;
67 67 }
68 68 #main-menu .menu-children li {float:left; clear:both; width:100%;}
69 69 #main-menu .menu-children li a {color: #555; background-color:#fff; font-weight:normal;}
70 70 #main-menu .menu-children li a:hover {color: #fff; background-color: #759FCF;}
71 71
72 72 #main-menu .tabs-buttons {
73 73 right: 6px;
74 74 background-color: transparent;
75 75 border-bottom-color: transparent;
76 76 }
77 77
78 78 #admin-menu ul {margin: 0; padding: 0;}
79 79 #admin-menu li {margin: 0; padding: 0 0 6px 0; list-style-type:none;}
80 80
81 81 #main {background-color:#EEEEEE;}
82 82
83 83 #sidebar{ float: right; width: 22%; position: relative; z-index: 9; padding: 0; margin: 0;}
84 84 * html #sidebar{ width: 22%; }
85 85 #sidebar h3{ font-size: 14px; margin-top:14px; color: #666; }
86 86 #sidebar hr{ width: 100%; margin: 0 auto; height: 1px; background: #ccc; border: 0; }
87 87 * html #sidebar hr{ width: 95%; position: relative; left: -6px; color: #ccc; }
88 88 #sidebar .contextual { margin-right: 1em; }
89 89 #sidebar ul, ul.flat {margin: 0; padding: 0;}
90 90 #sidebar ul li, ul.flat li {list-style-type:none;margin: 0px 2px 0px 0px; padding: 0px 0px 0px 0px;}
91 91 #sidebar div.wiki ul {margin:inherit; padding-left:40px;}
92 92 #sidebar div.wiki ul li {list-style-type:inherit;}
93 93
94 94 #content { width: 75%; background-color: #fff; margin: 0px; border-right: 1px solid #ddd; padding: 6px 10px 10px 10px; z-index: 10; }
95 95 * html #content{ width: 75%; padding-left: 0; margin-top: 0px; padding: 6px 10px 10px 10px;}
96 96 html>body #content { min-height: 600px; }
97 97 * html body #content { height: 600px; } /* IE */
98 98
99 99 #main.nosidebar #sidebar{ display: none; }
100 100 #main.nosidebar #content{ width: auto; border-right: 0; }
101 101
102 102 #footer {clear: both; border-top: 1px solid #bbb; font-size: 0.9em; color: #aaa; padding: 5px; text-align:center; background:#fff;}
103 103
104 104 #login-form {margin:5em auto 2em auto; padding:20px; width:340px; border:1px solid #FDBF3B; background-color:#FFEBC1; border-radius:4px; box-sizing: border-box;}
105 105 #login-form label {display:block; margin-bottom:5px;}
106 106 #login-form input[type=text], #login-form input[type=password] {border:1px solid #ccc; border-radius:3px; margin-bottom:15px; padding:7px; display:block; width:100%; box-sizing: border-box;}
107 107 #login-form label {font-weight:bold;}
108 108 #login-form label[for=autologin] {font-weight:normal;}
109 109 #login-form a.lost_password {float:right; font-weight:normal;}
110 110 #login-form input#openid_url {background:#fff url(../images/openid-bg.gif) no-repeat 4px 50%; padding-left:24px !important;}
111 111 #login-form input#login-submit {margin-top:15px; padding:7px; display:block; width:100%; box-sizing: border-box;}
112 112
113 113 div.modal { border-radius:5px; background:#fff; z-index:50; padding:4px;}
114 114 div.modal h3.title {display:none;}
115 115 div.modal p.buttons {text-align:right; margin-bottom:0;}
116 116 div.modal .box p {margin: 0.3em 0;}
117 117
118 118 .clear:after{ content: "."; display: block; height: 0; clear: both; visibility: hidden; }
119 119
120 120 .mobile-show {display: none;}
121 121
122 122 /***** Links *****/
123 123 a, a:link, a:visited{ color: #169; text-decoration: none; }
124 124 a:hover, a:active{ color: #c61a1a; text-decoration: underline;}
125 125 a img{ border: 0; }
126 126
127 127 a.issue.closed, a.issue.closed:link, a.issue.closed:visited { color: #999; text-decoration: line-through; }
128 128 a.project.closed, a.project.closed:link, a.project.closed:visited { color: #999; }
129 129 a.user.locked, a.user.locked:link, a.user.locked:visited {color: #999;}
130 130
131 131 #sidebar a.selected {line-height:1.7em; padding:1px 3px 2px 2px; margin-left:-2px; background-color:#9DB9D5; color:#fff; border-radius:2px;}
132 132 #sidebar a.selected:hover {text-decoration:none;}
133 133 #admin-menu a {line-height:1.7em;}
134 134 #admin-menu a.selected {padding-left: 20px !important; background-position: 2px 40%;}
135 135
136 136 a.collapsible {padding-left: 12px; background: url(../images/arrow_expanded.png) no-repeat -3px 40%;}
137 137 a.collapsible.collapsed {background: url(../images/arrow_collapsed.png) no-repeat -5px 40%;}
138 138
139 139 a#toggle-completed-versions {color:#999;}
140 140
141 141 a.toggle-checkboxes { margin-left: 5px; padding-left: 12px; background: url(../images/toggle_check.png) no-repeat 0% 50%; }
142 142
143 143 /***** Tables *****/
144 144 table.list, .table-list { border: 1px solid #e4e4e4; border-collapse: collapse; width: 100%; margin-bottom: 4px; }
145 145 table.list th, .table-list-header { background-color:#EEEEEE; padding: 4px; white-space:nowrap; font-weight:bold; }
146 146 table.list td {text-align:center; vertical-align:middle; padding-right:10px;}
147 147 table.list td.id { width: 2%; text-align: center;}
148 148 table.list td.name, table.list td.description, table.list td.subject, table.list td.comments, table.list td.roles {text-align: left;}
149 149 table.list td.tick {width:15%}
150 150 table.list td.checkbox { width: 15px; padding: 2px 0 0 0; }
151 151 table.list td.checkbox input {padding:0px;}
152 152 table.list td.buttons, div.buttons { white-space:nowrap; text-align: right; }
153 153 table.list td.buttons a, div.buttons a { margin-right: 0.6em; }
154 154 table.list td.buttons img, div.buttons img {vertical-align:middle;}
155 155 table.list td.reorder {width:15%; white-space:nowrap; text-align:center; }
156 156 table.list table.progress td {padding-right:0px;}
157 157 table.list caption { text-align: left; padding: 0.5em 0.5em 0.5em 0; }
158 158 #role-permissions-trackers table.list th {white-space:normal;}
159 159
160 160 .table-list-cell {display: table-cell; vertical-align: top; padding:2px; }
161 161
162 162 tr.project td.name a { white-space:nowrap; }
163 163 tr.project.closed, tr.project.archived { color: #aaa; }
164 164 tr.project.closed a, tr.project.archived a { color: #aaa; }
165 165
166 166 tr.project.idnt td.name span {background: url(../images/bullet_arrow_right.png) no-repeat 0 50%; padding-left: 16px;}
167 167 tr.project.idnt-1 td.name {padding-left: 0.5em;}
168 168 tr.project.idnt-2 td.name {padding-left: 2em;}
169 169 tr.project.idnt-3 td.name {padding-left: 3.5em;}
170 170 tr.project.idnt-4 td.name {padding-left: 5em;}
171 171 tr.project.idnt-5 td.name {padding-left: 6.5em;}
172 172 tr.project.idnt-6 td.name {padding-left: 8em;}
173 173 tr.project.idnt-7 td.name {padding-left: 9.5em;}
174 174 tr.project.idnt-8 td.name {padding-left: 11em;}
175 175 tr.project.idnt-9 td.name {padding-left: 12.5em;}
176 176
177 177 tr.issue { text-align: center; white-space: nowrap; }
178 178 tr.issue td.subject, tr.issue td.category, td.assigned_to, tr.issue td.string, tr.issue td.text, tr.issue td.list, tr.issue td.relations, tr.issue td.parent { white-space: normal; }
179 179 tr.issue td.relations { text-align: left; }
180 180 tr.issue td.done_ratio table.progress { margin-left:auto; margin-right: auto;}
181 181 tr.issue td.relations span {white-space: nowrap;}
182 182 table.issues td.description {color:#777; font-size:90%; padding:4px 4px 4px 24px; text-align:left; white-space:normal;}
183 183 table.issues td.description pre {white-space:normal;}
184 184
185 185 tr.issue.idnt td.subject {background: url(../images/bullet_arrow_right.png) no-repeat 0 50%;}
186 186 tr.issue.idnt-1 td.subject {padding-left: 24px; background-position: 8px 50%;}
187 187 tr.issue.idnt-2 td.subject {padding-left: 40px; background-position: 24px 50%;}
188 188 tr.issue.idnt-3 td.subject {padding-left: 56px; background-position: 40px 50%;}
189 189 tr.issue.idnt-4 td.subject {padding-left: 72px; background-position: 56px 50%;}
190 190 tr.issue.idnt-5 td.subject {padding-left: 88px; background-position: 72px 50%;}
191 191 tr.issue.idnt-6 td.subject {padding-left: 104px; background-position: 88px 50%;}
192 192 tr.issue.idnt-7 td.subject {padding-left: 120px; background-position: 104px 50%;}
193 193 tr.issue.idnt-8 td.subject {padding-left: 136px; background-position: 120px 50%;}
194 194 tr.issue.idnt-9 td.subject {padding-left: 152px; background-position: 136px 50%;}
195 195
196 196 table.issue-report {table-layout:fixed;}
197 197
198 198 tr.entry { border: 1px solid #f8f8f8; }
199 199 tr.entry td { white-space: nowrap; }
200 200 tr.entry td.filename {width:30%; text-align:left;}
201 201 tr.entry td.filename_no_report {width:70%; text-align:left;}
202 202 tr.entry td.size { text-align: right; font-size: 90%; }
203 203 tr.entry td.revision, tr.entry td.author { text-align: center; }
204 204 tr.entry td.age { text-align: right; }
205 205 tr.entry.file td.filename a { margin-left: 16px; }
206 206 tr.entry.file td.filename_no_report a { margin-left: 16px; }
207 207
208 208 tr span.expander {background-image: url(../images/bullet_toggle_plus.png); padding-left: 8px; margin-left: 0; cursor: pointer;}
209 209 tr.open span.expander {background-image: url(../images/bullet_toggle_minus.png);}
210 210
211 211 tr.changeset { height: 20px }
212 212 tr.changeset ul, ol { margin-top: 0px; margin-bottom: 0px; }
213 213 tr.changeset td.revision_graph { width: 15%; background-color: #fffffb; }
214 214 tr.changeset td.author { text-align: center; width: 15%; white-space:nowrap;}
215 215 tr.changeset td.committed_on { text-align: center; width: 15%; white-space:nowrap;}
216 216
217 217 table.files tbody th {text-align:left;}
218 218 table.files tr.file td.filename { text-align: left; padding-left: 24px; }
219 219 table.files tr.file td.digest { font-size: 80%; }
220 220
221 221 table.members td.roles, table.memberships td.roles { width: 45%; }
222 222
223 223 tr.message { height: 2.6em; }
224 224 tr.message td.subject { padding-left: 20px; }
225 225 tr.message td.created_on { white-space: nowrap; }
226 226 tr.message td.last_message { font-size: 80%; white-space: nowrap; }
227 227 tr.message.locked td.subject { background: url(../images/locked.png) no-repeat 0 1px; }
228 228 tr.message.sticky td.subject { background: url(../images/bullet_go.png) no-repeat 0 1px; font-weight: bold; }
229 229
230 230 tr.version.closed, tr.version.closed a { color: #999; }
231 231 tr.version td.name { padding-left: 20px; }
232 232 tr.version.shared td.name { background: url(../images/link.png) no-repeat 0% 70%; }
233 233 tr.version td.date, tr.version td.status, tr.version td.sharing { text-align: center; white-space:nowrap; }
234 234
235 235 tr.user td {width:13%;white-space: nowrap;}
236 236 td.username, td.firstname, td.lastname, td.email {text-align:left !important;}
237 237 tr.user td.email { width:18%; }
238 238 tr.user.locked, tr.user.registered { color: #aaa; }
239 239 tr.user.locked a, tr.user.registered a { color: #aaa; }
240 240
241 241 table.permissions td.role {color:#999;font-size:90%;font-weight:normal !important;text-align:center;vertical-align:bottom;}
242 242
243 243 tr.wiki-page-version td.updated_on, tr.wiki-page-version td.author {text-align:center;}
244 244
245 245 tr.time-entry { text-align: center; white-space: nowrap; }
246 246 tr.time-entry td.issue, tr.time-entry td.comments, tr.time-entry td.subject, tr.time-entry td.activity { text-align: left; white-space: normal; }
247 247 td.hours { text-align: right; font-weight: bold; padding-right: 0.5em; }
248 248 td.hours .hours-dec { font-size: 0.9em; }
249 249
250 250 table.plugins td { vertical-align: middle; }
251 251 table.plugins td.configure { text-align: right; padding-right: 1em; }
252 252 table.plugins span.name { font-weight: bold; display: block; margin-bottom: 6px; }
253 253 table.plugins span.description { display: block; font-size: 0.9em; }
254 254 table.plugins span.url { display: block; font-size: 0.9em; }
255 255
256 256 tr.group td { padding: 0.8em 0 0.5em 0.3em; border-bottom: 1px solid #ccc; text-align:left; }
257 257 tr.group span.name {font-weight:bold;}
258 258 tr.group span.count {font-weight:bold; position:relative; top:-1px; color:#fff; font-size:10px; background:#9DB9D5; padding:0px 6px 1px 6px; border-radius:3px; margin-left:4px;}
259 259 tr.group span.totals {color: #aaa; font-size: 80%;}
260 260 tr.group span.totals .value {font-weight:bold; color:#777;}
261 261 tr.group a.toggle-all { color: #aaa; font-size: 80%; display:none; float:right; margin-right:4px;}
262 262 tr.group:hover a.toggle-all { display:inline;}
263 263 a.toggle-all:hover {text-decoration:none;}
264 264
265 265 table.list tbody tr:hover { background-color:#ffffdd; }
266 266 table.list tbody tr.group:hover { background-color:inherit; }
267 267 table td {padding:2px;}
268 268 table p {margin:0;}
269 269 .odd {background-color:#f6f7f8;}
270 270 .even {background-color: #fff;}
271 271
272 272 tr.builtin td.name {font-style:italic;}
273 273
274 274 a.sort { padding-right: 16px; background-position: 100% 50%; background-repeat: no-repeat; }
275 275 a.sort.asc { background-image: url(../images/sort_asc.png); }
276 276 a.sort.desc { background-image: url(../images/sort_desc.png); }
277 277
278 278 table.boards a.board, h3.comments { background: url(../images/comment.png) no-repeat 0% 50%; padding-left: 20px; }
279 279 table.boards td.last-message {text-align:left;font-size:80%;}
280 280
281 281 div.table-list.boards .table-list-cell.name {width: 30%;}
282 282
283 283 #content table.list-simple {table-layout:fixed;}
284 284 #content table.list-simple td {white-space:nowrap; overflow:hidden; text-overflow: ellipsis; text-align:left;}
285 285 #content table.list-simple th.id, #content table.list-simple th.project {width:18%;}
286 286 #content table.list-simple th.status {width:14%;}
287 287
288 288 table.messages td.last_message {text-align:left;}
289 289
290 290 #query_form_content {font-size:90%;}
291 291
292 292 .query_sort_criteria_count {
293 293 display: inline-block;
294 294 min-width: 1em;
295 295 }
296 296
297 297 table.query-columns {
298 298 border-collapse: collapse;
299 299 border: 0;
300 300 }
301 301
302 302 table.query-columns td.buttons {
303 303 vertical-align: middle;
304 304 text-align: center;
305 305 }
306 306 table.query-columns td.buttons input[type=button] {width:35px;}
307 307 .query-totals {text-align:right;}
308 308 .query-totals>span {margin-left:0.6em;}
309 309 .query-totals .value {font-weight:bold;}
310 310 body.controller-issues .query-totals {margin-top:-2.3em;}
311 311
312 312 td.center {text-align:center;}
313 313
314 314 h3.version { background: url(../images/package.png) no-repeat 0% 50%; padding-left: 20px; }
315 315
316 div.issues h3 { background: url(../images/ticket.png) no-repeat 0% 50%; padding-left: 20px; }
317 div.members h3 { background: url(../images/group.png) no-repeat 0% 50%; padding-left: 20px; }
318 div.news h3 { background: url(../images/news.png) no-repeat 0% 50%; padding-left: 20px; }
319 div.projects h3 { background: url(../images/projects.png) no-repeat 0% 50%; padding-left: 20px; }
320 div.spent_time h3 { background: url(../images/time.png) no-repeat 0% 50%; padding-left: 20px; }
321
322 316 #watchers select {width: 95%; display: block;}
323 317 #watchers a.delete {opacity: 0.4; margin-left: 5px;}
324 318 #watchers a.delete:hover {opacity: 1;}
325 319 #watchers img.gravatar {margin: 0 4px 2px 0;}
326 320
327 321 span#watchers_inputs {overflow:auto; display:block;}
328 322 span.search_for_watchers {display:block;}
329 323 span.search_for_watchers, span.add_attachment {font-size:80%; line-height:2.5em;}
330 324 span.search_for_watchers a, span.add_attachment a {padding-left:16px; background: url(../images/bullet_add.png) no-repeat 0 50%; }
331 325
332 326
333 327 .highlight { background-color: #FCFD8D;}
334 328 .highlight.token-1 { background-color: #faa;}
335 329 .highlight.token-2 { background-color: #afa;}
336 330 .highlight.token-3 { background-color: #aaf;}
337 331
338 332 .box{
339 333 padding:6px;
340 334 margin-bottom: 10px;
341 335 background-color:#f6f6f6;
342 336 color:#505050;
343 337 line-height:1.5em;
344 338 border: 1px solid #e4e4e4;
345 339 word-wrap: break-word;
346 340 border-radius: 3px;
347 341 }
348 342
349 343 div.square {
350 344 border: 1px solid #999;
351 345 float: left;
352 346 margin: .3em .4em 0 .4em;
353 347 overflow: hidden;
354 348 width: .6em; height: .6em;
355 349 }
356 350 .contextual {float:right; white-space: nowrap; line-height:1.4em;margin:5px 0px; padding-left: 10px; font-size:0.9em;}
357 351 .contextual input, .contextual select {font-size:0.9em;}
358 352 .message .contextual { margin-top: 0; }
359 353
360 354 .splitcontent {overflow:auto;}
361 355 .splitcontentleft{float:left; width:49%;}
362 356 .splitcontentright{float:right; width:49%;}
363 357 form {display: inline;}
364 358 input, select {vertical-align: middle; margin-top: 1px; margin-bottom: 1px;}
365 359 input[type="submit"] { -webkit-appearance: button; }
366 360 fieldset {border: 1px solid #e4e4e4; margin:0;}
367 361 legend {color: #333;}
368 362 hr { width: 100%; height: 1px; background: #ccc; border: 0;}
369 363 blockquote { font-style: italic; border-left: 3px solid #e0e0e0; padding-left: 0.6em; margin-left: 2.4em;}
370 364 blockquote blockquote { margin-left: 0;}
371 365 abbr, span.field-description[title] { border-bottom: 1px dotted #aaa; cursor: help; }
372 366 textarea.wiki-edit {width:99%; resize:vertical;}
373 367 body.textarea-monospace textarea.wiki-edit {font-family: Consolas, Menlo, "Liberation Mono", Courier, monospace; font-size: 12px;}
374 368 body.textarea-proportional textarea.wiki-edit {font-family: Verdana, sans-serif; font-size: 12px;}
375 369 li p {margin-top: 0;}
376 370 div.issue {background:#ffffdd; padding:6px; margin-bottom:6px; border: 1px solid #d7d7d7; border-radius:3px;}
377 371 p.breadcrumb { font-size: 0.9em; margin: 4px 0 4px 0;}
378 372 p.subtitle { font-size: 0.9em; margin: -6px 0 12px 0; font-style: italic; }
379 373 p.footnote { font-size: 0.9em; margin-top: 0px; margin-bottom: 0px; }
380 374 .ltr {direction:ltr !important; unicode-bidi:bidi-override;}
381 375 .rtl {direction:rtl !important; unicode-bidi:bidi-override;}
382 376
383 377 div.issue div.subject div div { padding-left: 16px; }
384 378 div.issue div.subject p {margin: 0; margin-bottom: 0.1em; font-size: 90%; color: #999;}
385 379 div.issue div.subject>div>p { margin-top: 0.5em; }
386 380 div.issue div.subject h3 {margin: 0; margin-bottom: 0.1em;}
387 381 div.issue span.private, div.journal span.private { position:relative; bottom: 2px; text-transform: uppercase; background: #d22; color: #fff; font-weight:bold; padding: 0px 2px 0px 2px; font-size: 60%; margin-right: 2px; border-radius: 2px;}
388 382 div.issue .next-prev-links {color:#999;}
389 383 div.issue .attributes {margin-top: 2em;}
390 384 div.issue .attribute {padding-left:180px; clear:left; min-height: 1.8em;}
391 385 div.issue .attribute .label {width: 170px; margin-left:-180px; font-weight:bold; float:left;}
392 386 div.issue.overdue .due-date .value { color: #c22; }
393 387
394 388 #issue_tree table.issues, #relations table.issues { border: 0; }
395 389 #issue_tree td.checkbox, #relations td.checkbox {display:none;}
396 390 #relations td.buttons {padding:0;}
397 391
398 392 fieldset.collapsible {border-width: 1px 0 0 0;}
399 393 fieldset.collapsible>legend { padding-left: 16px; background: url(../images/arrow_expanded.png) no-repeat 0% 40%; cursor:pointer; }
400 394 fieldset.collapsible.collapsed>legend { background-image: url(../images/arrow_collapsed.png); }
401 395
402 396 fieldset#date-range p { margin: 2px 0 2px 0; }
403 397 fieldset#filters table { border-collapse: collapse; }
404 398 fieldset#filters table td { padding: 0; vertical-align: middle; }
405 399 fieldset#filters tr.filter { height: 2.1em; }
406 400 fieldset#filters td.field { width:230px; }
407 401 fieldset#filters td.operator { width:130px; }
408 402 fieldset#filters td.operator select {max-width:120px;}
409 403 fieldset#filters td.values { white-space:nowrap; }
410 404 fieldset#filters td.values select {min-width:130px; max-width:200px;}
411 405 fieldset#filters td.values input {height:1em;}
412 406
413 407 #filters-table {width:60%; float:left;}
414 408 .add-filter {width:35%; float:right; text-align: right; vertical-align: top;}
415 409
416 410 #issue_is_private_wrap {float:right; margin-right:1em;}
417 411 .toggle-multiselect {background: url(../images/bullet_toggle_plus.png) no-repeat 0% 40%; padding-left:16px; margin-left:0; margin-right:5px; cursor:pointer;}
418 412 .buttons { font-size: 0.9em; margin-bottom: 1.4em; margin-top: 1em; }
419 413
420 414 div#issue-changesets {float:right; width:45%; margin-left: 1em; margin-bottom: 1em; background: #fff; padding-left: 1em; font-size: 90%;}
421 415 div#issue-changesets div.changeset { padding: 4px;}
422 416 div#issue-changesets div.changeset { border-bottom: 1px solid #ddd; }
423 417 div#issue-changesets p { margin-top: 0; margin-bottom: 1em;}
424 418
425 419 div.journal {overflow:auto;}
426 420 div.journal.private-notes {border-left:2px solid #d22; padding-left:4px; margin-left:-6px;}
427 421 div.journal ul.details, ul.revision-info {color:#959595; margin-bottom: 1.5em;}
428 422 div.journal ul.details a, ul.revision-info a {color:#70A7CD;}
429 423 div.journal ul.details a:hover, ul.revision-info a:hover {color:#D14848;}
430 424
431 425 div#activity dl, #search-results { margin-left: 2em; }
432 426 div#activity dd, #search-results dd { margin-bottom: 1em; padding-left: 18px; font-size: 0.9em; }
433 427 div#activity dt, #search-results dt { margin-bottom: 0px; padding-left: 20px; line-height: 18px; background-position: 0 50%; background-repeat: no-repeat; }
434 428 div#activity dt.me .time { border-bottom: 1px solid #999; }
435 429 div#activity dt .time { color: #777; font-size: 80%; }
436 430 div#activity dd .description, #search-results dd .description { font-style: italic; }
437 431 div#activity span.project:after, #search-results span.project:after { content: " -"; }
438 432 div#activity dd span.description, #search-results dd span.description { display:block; color: #808080; }
439 433 div#activity dt.grouped {margin-left:5em;}
440 434 div#activity dd.grouped {margin-left:9em;}
441 435 div#activity dt { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; height: 18px;}
442 436
443 437 #search-results dd { margin-bottom: 1em; padding-left: 20px; margin-left:0px; }
444 438
445 439 div#search-results-counts {float:right;}
446 440 div#search-results-counts ul { margin-top: 0.5em; }
447 441 div#search-results-counts li { list-style-type:none; float: left; margin-left: 1em; }
448 442
449 443 dt.issue { background-image: url(../images/ticket.png); }
450 444 dt.issue-edit { background-image: url(../images/ticket_edit.png); }
451 445 dt.issue-closed { background-image: url(../images/ticket_checked.png); }
452 446 dt.issue-note { background-image: url(../images/ticket_note.png); }
453 447 dt.changeset { background-image: url(../images/changeset.png); }
454 448 dt.news { background-image: url(../images/news.png); }
455 449 dt.message { background-image: url(../images/message.png); }
456 450 dt.reply { background-image: url(../images/comments.png); }
457 451 dt.wiki-page { background-image: url(../images/wiki_edit.png); }
458 452 dt.attachment { background-image: url(../images/attachment.png); }
459 453 dt.document { background-image: url(../images/document.png); }
460 454 dt.project { background-image: url(../images/projects.png); }
461 455 dt.time-entry { background-image: url(../images/time.png); }
462 456
463 457 #search-results dt.issue.closed { background-image: url(../images/ticket_checked.png); }
464 458
465 459 div#roadmap .related-issues { margin-bottom: 1em; }
466 460 div#roadmap .related-issues td.checkbox { display: none; }
467 461 div#roadmap .wiki h1:first-child { display: none; }
468 462 div#roadmap .wiki h1 { font-size: 120%; }
469 463 div#roadmap .wiki h2 { font-size: 110%; }
470 464 body.controller-versions.action-show div#roadmap .related-issues {width:70%;}
471 465
472 466 div#version-summary { float:right; width:28%; margin-left: 16px; margin-bottom: 16px; background-color: #fff; }
473 467 div#version-summary fieldset { margin-bottom: 1em; }
474 468 div#version-summary fieldset.time-tracking table { width:100%; }
475 469 div#version-summary th, div#version-summary td.total-hours { text-align: right; }
476 470
477 471 table#time-report td.hours, table#time-report th.period, table#time-report th.total { text-align: right; padding-right: 0.5em; }
478 472 table#time-report tbody tr.subtotal { font-style: italic; color:#777;}
479 473 table#time-report tbody tr.subtotal td.hours { color:#b0b0b0; }
480 474 table#time-report tbody tr.total { font-weight: bold; background-color:#EEEEEE; border-top:1px solid #e4e4e4;}
481 475 table#time-report .hours-dec { font-size: 0.9em; }
482 476
483 477 div.wiki-page .contextual a {opacity: 0.4}
484 478 div.wiki-page .contextual a:hover {opacity: 1}
485 479
486 480 form .attributes select { width: 60%; }
487 481 form .attributes select + a.icon-only { vertical-align: middle; margin-left: 4px; }
488 482 input#issue_subject, input#document_title { width: 99%; }
489 483 select#issue_done_ratio { width: 95px; }
490 484
491 485 ul.projects {margin:0; padding-left:1em;}
492 486 ul.projects ul {padding-left:1.6em;}
493 487 ul.projects.root {margin:0; padding:0;}
494 488 ul.projects li {list-style-type:none;}
495 489
496 490 #projects-index {
497 491 column-count: auto;
498 492 column-width: 400px;
499 493 -webkit-column-count: auto;
500 494 -webkit-column-width: 400px;
501 495 -webkit-column-gap : 0.5rem;
502 496 -moz-column-count: auto;
503 497 -moz-column-width: 400px;
504 498 -moz-column-gap : 0.5rem;
505 499 }
506 500 #projects-index ul.projects ul.projects { border-left: 3px solid #e0e0e0; padding-left:1em;}
507 501 #projects-index ul.projects li.root {margin-bottom: 1em;}
508 502 #projects-index ul.projects li.child {margin-top: 1em;}
509 503 #projects-index ul.projects div.root a.project { font-family: "Trebuchet MS", Verdana, sans-serif; font-weight: bold; font-size: 16px; margin: 0 0 10px 0; }
510 504 .my-project { padding-left: 18px; background: url(../images/fav.png) no-repeat 0 50%; }
511 505
512 506 #notified-projects>ul, #tracker_project_ids>ul, #custom_field_project_ids>ul {max-height:250px; overflow-y:auto;}
513 507
514 508 #related-issues li img {vertical-align:middle;}
515 509
516 510 ul.properties {padding:0; font-size: 0.9em; color: #777;}
517 511 ul.properties li {list-style-type:none;}
518 512 ul.properties li span {font-style:italic;}
519 513
520 514 .total-hours { font-size: 110%; font-weight: bold; }
521 515 .total-hours span.hours-int { font-size: 120%; }
522 516
523 517 .autoscroll {overflow-x: auto; padding:1px; margin-bottom: 1.2em; position: relative;}
524 518 #user_login, #user_firstname, #user_lastname, #user_mail, #my_account_form select, #user_form select, #user_identity_url { width: 90%; }
525 519
526 520 #workflow_copy_form select { width: 200px; }
527 521 table.transitions td.enabled {background: #bfb;}
528 522 #workflow_form table select {font-size:90%; max-width:100px;}
529 523 table.fields_permissions td.readonly {background:#ddd;}
530 524 table.fields_permissions td.required {background:#d88;}
531 525
532 526 select.expandable {vertical-align:top;}
533 527
534 528 textarea#custom_field_possible_values {width: 95%; resize:vertical}
535 529 textarea#custom_field_default_value {width: 95%; resize:vertical}
536 530 .sort-handle {display:inline-block; vertical-align:middle;}
537 531
538 532 input#content_comments {width: 99%}
539 533
540 534 span.pagination {margin-left:3px; color:#888; display:block;}
541 535 .pagination ul.pages {
542 536 margin: 0 5px 0 0;
543 537 padding: 0;
544 538 display: inline;
545 539 }
546 540 .pagination ul.pages li {
547 541 display: inline-block;
548 542 padding: 0;
549 543 border: 1px solid #ddd;
550 544 margin-left: -1px;
551 545 line-height: 2em;
552 546 margin-bottom: 1em;
553 547 white-space: nowrap;
554 548 text-align: center;
555 549 }
556 550 .pagination ul.pages li a,
557 551 .pagination ul.pages li span {
558 552 padding: 3px 8px;
559 553 }
560 554 .pagination ul.pages li:first-child {
561 555 border-top-left-radius: 4px;
562 556 border-bottom-left-radius: 4px;
563 557 }
564 558 .pagination ul.pages li:last-child {
565 559 border-top-right-radius: 4px;
566 560 border-bottom-right-radius: 4px;
567 561 }
568 562 .pagination ul.pages li.current {
569 563 color: white;
570 564 background-color: #628DB6;
571 565 border-color: #628DB6;
572 566 }
573 567 .pagination ul.pages li.page:hover {
574 568 background-color: #ddd;
575 569 }
576 570 .pagination ul.pages li.page a:hover,
577 571 .pagination ul.pages li.page a:active {
578 572 color: #169;
579 573 text-decoration: inherit;
580 574 }
581 575 .pagination .per-page span.selected {
582 576 font-weight: bold;
583 577 }
584 578 span.pagination>span {white-space:nowrap;}
585 579
586 580 #search-form fieldset p {margin:0.2em 0;}
587 581
588 582 /***** Tabular forms ******/
589 583 .tabular p{
590 584 margin: 0;
591 585 padding: 3px 0 3px 0;
592 586 padding-left: 180px; /* width of left column containing the label elements */
593 587 min-height: 2em;
594 588 clear:left;
595 589 }
596 590
597 591 html>body .tabular p {overflow:hidden;}
598 592
599 593 .tabular input, .tabular select {max-width:95%}
600 594 .tabular textarea {width:95%; resize:vertical;}
601 595
602 596 .tabular label{
603 597 font-weight: bold;
604 598 float: left;
605 599 text-align: right;
606 600 /* width of left column */
607 601 margin-left: -180px;
608 602 /* width of labels. Should be smaller than left column to create some right margin */
609 603 width: 175px;
610 604 }
611 605
612 606 .tabular label.floating{
613 607 font-weight: normal;
614 608 margin-left: 0px;
615 609 text-align: left;
616 610 width: 270px;
617 611 }
618 612
619 613 label.block {
620 614 display: block;
621 615 width: auto !important;
622 616 }
623 617
624 618 .tabular label.block{
625 619 font-weight: normal;
626 620 margin-left: 0px !important;
627 621 text-align: left;
628 622 float: none;
629 623 }
630 624
631 625 .tabular label.inline{
632 626 font-weight: normal;
633 627 float:none;
634 628 margin-left: 5px !important;
635 629 width: auto;
636 630 }
637 631
638 632 label.no-css {
639 633 font-weight: inherit;
640 634 float:none;
641 635 text-align:left;
642 636 margin-left:0px;
643 637 width:auto;
644 638 }
645 639 input#time_entry_comments { width: 90%;}
646 640
647 641 #preview fieldset {margin-top: 1em; background: url(../images/draft.png)}
648 642
649 643 .tabular.settings p{ padding-left: 300px; }
650 644 .tabular.settings label{ margin-left: -300px; width: 295px; }
651 645 .tabular.settings textarea { width: 99%; }
652 646
653 647 .settings.enabled_scm table {width:100%}
654 648 .settings.enabled_scm td.scm_name{ font-weight: bold; }
655 649
656 650 fieldset.settings label { display: block; }
657 651 fieldset#notified_events .parent { padding-left: 20px; }
658 652
659 653 span.required {color: #bb0000;}
660 654 .summary {font-style: italic;}
661 655
662 656 .check_box_group {
663 657 display:block;
664 658 width:95%;
665 659 max-height:300px;
666 660 overflow-y:auto;
667 661 padding:2px 4px 4px 2px;
668 662 background:#fff;
669 663 border:1px solid #9EB1C2;
670 664 border-radius:2px
671 665 }
672 666 .check_box_group label {
673 667 font-weight: normal;
674 668 margin-left: 0px !important;
675 669 text-align: left;
676 670 float: none;
677 671 display: block;
678 672 width: auto;
679 673 }
680 674 .check_box_group.bool_cf {border:0; background:inherit;}
681 675 .check_box_group.bool_cf label {display: inline;}
682 676
683 677 .attachments_fields input.description, #existing-attachments input.description {margin-left:4px; width:340px;}
684 678 .attachments_fields>span, #existing-attachments>span {display:block; white-space:nowrap;}
685 679 .attachments_fields input.filename, #existing-attachments .filename {border:0; width:250px; color:#555; background-color:inherit; background:url(../images/attachment.png) no-repeat 1px 50%; padding-left:18px;}
686 680 .tabular input.filename {max-width:75% !important;}
687 681 .attachments_fields input.filename {height:1.8em;}
688 682 .attachments_fields .ajax-waiting input.filename {background:url(../images/hourglass.png) no-repeat 0px 50%;}
689 683 .attachments_fields .ajax-loading input.filename {background:url(../images/loading.gif) no-repeat 0px 50%;}
690 684 .attachments_fields div.ui-progressbar { width: 100px; height:14px; margin: 2px 0 -5px 8px; display: inline-block; }
691 685 a.remove-upload {background: url(../images/delete.png) no-repeat 1px 50%; width:1px; display:inline-block; padding-left:16px;}
692 686 a.remove-upload:hover {text-decoration:none !important;}
693 687 .existing-attachment.deleted .filename {text-decoration:line-through; color:#999 !important;}
694 688
695 689 div.fileover { background-color: lavender; }
696 690
697 691 div.attachments { margin: 12px 0; }
698 692 div.attachments p { margin:4px 0 2px 0; }
699 693 div.attachments img { vertical-align: middle; }
700 694 div.attachments span.author { font-size: 0.9em; color: #888; }
701 695
702 696 div.thumbnails {margin:0.6em;}
703 697 div.thumbnails div {background:#fff;border:2px solid #ddd;display:inline-block;margin-right:2px;}
704 698 div.thumbnails img {margin: 3px; vertical-align: middle;}
705 699 #history div.thumbnails {margin-left: 2em;}
706 700
707 701 p.other-formats { text-align: right; font-size:0.9em; color: #666; }
708 702 .other-formats span + span:before { content: "| "; }
709 703
710 704 a.atom { background: url(../images/feed.png) no-repeat 1px 50%; padding: 2px 0px 3px 16px; }
711 705
712 706 em.info {font-style:normal;font-size:90%;color:#888;display:block;}
713 707 em.info.error {padding-left:20px; background:url(../images/exclamation.png) no-repeat 0 50%;}
714 708
715 709 textarea.text_cf {width:95%; resize:vertical;}
716 710 input.string_cf, input.link_cf {width:95%;}
717 711 select.bool_cf {width:auto !important;}
718 712
719 713 #tab-content-modules fieldset p {margin:3px 0 4px 0;}
720 714
721 715 #tab-content-users .splitcontentleft {width: 64%;}
722 716 #tab-content-users .splitcontentright {width: 34%;}
723 717 #tab-content-users fieldset {padding:1em; margin-bottom: 1em;}
724 718 #tab-content-users fieldset legend {font-weight: bold;}
725 719 #tab-content-users fieldset label {display: block;}
726 720 #tab-content-users #principals {max-height: 400px; overflow: auto;}
727 721
728 722 #users_for_watcher {height: 200px; overflow:auto;}
729 723 #users_for_watcher label {display: block;}
730 724
731 725 table.members td.name {padding-left: 20px;}
732 726 table.members td.group, table.members td.groupnonmember, table.members td.groupanonymous {background: url(../images/group.png) no-repeat 0% 1px;}
733 727
734 728 input#principal_search, input#user_search {width:90%}
735 729 .roles-selection label {display:inline-block; width:210px;}
736 730
737 731 input.autocomplete {
738 732 background: #fff url(../images/magnifier.png) no-repeat 2px 50%; padding-left:20px !important;
739 733 border:1px solid #9EB1C2; border-radius:2px; height:1.5em;
740 734 }
741 735 input.autocomplete.ajax-loading {
742 736 background-image: url(../images/loading.gif);
743 737 }
744 738
745 739 .role-visibility {padding-left:2em;}
746 740
747 741 .objects-selection {
748 742 height: 300px;
749 743 overflow: auto;
750 744 margin-bottom: 1em;
751 745 }
752 746
753 747 .objects-selection label {
754 748 display: block;
755 749 }
756 750
757 751 .objects-selection>div, #user_group_ids {
758 752 column-count: auto;
759 753 column-width: 200px;
760 754 -webkit-column-count: auto;
761 755 -webkit-column-width: 200px;
762 756 -webkit-column-gap : 0.5rem;
763 757 -webkit-column-rule: 1px solid #ccc;
764 758 -moz-column-count: auto;
765 759 -moz-column-width: 200px;
766 760 -moz-column-gap : 0.5rem;
767 761 -moz-column-rule: 1px solid #ccc;
768 762 }
769 763
770 764 /***** Flash & error messages ****/
771 765 #errorExplanation, div.flash, .nodata, .warning, .conflict {
772 766 padding: 6px 4px 6px 30px;
773 767 margin-bottom: 12px;
774 768 font-size: 1.1em;
775 769 border: 1px solid;
776 770 border-radius: 3px;
777 771 }
778 772
779 773 div.flash {margin-top: 8px;}
780 774
781 775 div.flash.error, #errorExplanation {
782 776 background: url(../images/exclamation.png) 8px 50% no-repeat;
783 777 background-color: #ffe3e3;
784 778 border-color: #d88;
785 779 color: #880000;
786 780 }
787 781
788 782 div.flash.notice {
789 783 background: url(../images/true.png) 8px 5px no-repeat;
790 784 background-color: #dfffdf;
791 785 border-color: #9fcf9f;
792 786 color: #005f00;
793 787 }
794 788
795 789 div.flash.warning, .conflict {
796 790 background: url(../images/warning.png) 8px 5px no-repeat;
797 791 background-color: #F3EDD1;
798 792 border-color: #eadbbc;
799 793 color: #A6750C;
800 794 text-align: left;
801 795 }
802 796
803 797 .nodata, .warning {
804 798 text-align: center;
805 799 background-color: #F3EDD1;
806 800 border-color: #eadbbc;
807 801 color: #A6750C;
808 802 }
809 803
810 804 #errorExplanation ul { font-size: 0.9em;}
811 805 #errorExplanation h2, #errorExplanation p { display: none; }
812 806
813 807 .conflict-details {font-size:80%;}
814 808
815 809 /***** Ajax indicator ******/
816 810 #ajax-indicator {
817 811 position: absolute; /* fixed not supported by IE */
818 812 background-color:#eee;
819 813 border: 1px solid #bbb;
820 814 top:35%;
821 815 left:40%;
822 816 width:20%;
823 817 font-weight:bold;
824 818 text-align:center;
825 819 padding:0.6em;
826 820 z-index:100;
827 821 opacity: 0.5;
828 822 }
829 823
830 824 html>body #ajax-indicator { position: fixed; }
831 825
832 826 #ajax-indicator span {
833 827 background-position: 0% 40%;
834 828 background-repeat: no-repeat;
835 829 background-image: url(../images/loading.gif);
836 830 padding-left: 26px;
837 831 vertical-align: bottom;
838 832 }
839 833
840 834 /***** Calendar *****/
841 835 table.cal {border-collapse: collapse; width: 100%; margin: 0px 0 6px 0;border: 1px solid #d7d7d7;}
842 836 table.cal thead th {width: 14%; background-color:#EEEEEE; padding: 4px; }
843 837 table.cal thead th.week-number {width: auto;}
844 838 table.cal tbody tr {height: 100px;}
845 839 table.cal td {border: 1px solid #d7d7d7; vertical-align: top; font-size: 0.9em;}
846 840 table.cal td.week-number { background-color:#EEEEEE; padding: 4px; border:none; font-size: 1em;}
847 841 table.cal td p.day-num {font-size: 1.1em; text-align:right;}
848 842 table.cal td.odd p.day-num {color: #bbb;}
849 843 table.cal td.today {background:#ffffdd;}
850 844 table.cal td.today p.day-num {font-weight: bold;}
851 845 table.cal .starting a, p.cal.legend .starting {background: url(../images/bullet_go.png) no-repeat -1px -2px; padding-left:16px;}
852 846 table.cal .ending a, p.cal.legend .ending {background: url(../images/bullet_end.png) no-repeat -1px -2px; padding-left:16px;}
853 847 table.cal .starting.ending a, p.cal.legend .starting.ending {background: url(../images/bullet_diamond.png) no-repeat -1px -2px; padding-left:16px;}
854 848 p.cal.legend span {display:block;}
855 849
856 850 /***** Tooltips ******/
857 851 .tooltip{position:relative;z-index:24;}
858 852 .tooltip:hover{z-index:25;color:#000;}
859 853 .tooltip span.tip{display: none; text-align:left;}
860 854
861 855 div.tooltip:hover span.tip{
862 856 display:block;
863 857 position:absolute;
864 858 top:12px; width:270px;
865 859 border:1px solid #555;
866 860 background-color:#fff;
867 861 padding: 4px;
868 862 font-size: 0.8em;
869 863 color:#505050;
870 864 }
871 865
872 866 img.ui-datepicker-trigger {
873 867 cursor: pointer;
874 868 vertical-align: middle;
875 869 margin-left: 4px;
876 870 }
877 871
878 872 /***** Progress bar *****/
879 873 table.progress {
880 874 border-collapse: collapse;
881 875 border-spacing: 0pt;
882 876 empty-cells: show;
883 877 text-align: center;
884 878 float:left;
885 879 margin: 1px 6px 1px 0px;
886 880 }
887 881
888 882 table.progress {width:80px;}
889 883 table.progress td { height: 1em; }
890 884 table.progress td.closed { background: #BAE0BA none repeat scroll 0%; }
891 885 table.progress td.done { background: #D3EDD3 none repeat scroll 0%; }
892 886 table.progress td.todo { background: #eee none repeat scroll 0%; }
893 887 p.percent {font-size: 80%; margin:0;}
894 888 p.progress-info {clear: left; font-size: 80%; margin-top:-4px; color:#777;}
895 889
896 890 .version-overview table.progress {width:40em;}
897 891 .version-overview table.progress td { height: 1.2em; }
898 892
899 893 /***** Tabs *****/
900 894 #content .tabs {height: 2.6em; margin-bottom:1.2em; position:relative; overflow:hidden;}
901 895 #content .tabs ul {margin:0; position:absolute; bottom:0; padding-left:0.5em; width: 2000px; border-bottom: 1px solid #bbbbbb;}
902 896 #content .tabs ul li {
903 897 float:left;
904 898 list-style-type:none;
905 899 white-space:nowrap;
906 900 margin-right:4px;
907 901 background:#fff;
908 902 position:relative;
909 903 margin-bottom:-1px;
910 904 }
911 905 #content .tabs ul li a{
912 906 display:block;
913 907 font-size: 0.9em;
914 908 text-decoration:none;
915 909 line-height:1.3em;
916 910 padding:4px 6px 4px 6px;
917 911 border: 1px solid #ccc;
918 912 border-bottom: 1px solid #bbbbbb;
919 913 background-color: #f6f6f6;
920 914 color:#999;
921 915 font-weight:bold;
922 916 border-top-left-radius:3px;
923 917 border-top-right-radius:3px;
924 918 }
925 919
926 920 #content .tabs ul li a:hover {
927 921 background-color: #ffffdd;
928 922 text-decoration:none;
929 923 }
930 924
931 925 #content .tabs ul li a.selected {
932 926 background-color: #fff;
933 927 border: 1px solid #bbbbbb;
934 928 border-bottom: 1px solid #fff;
935 929 color:#444;
936 930 }
937 931
938 932 #content .tabs ul li a.selected:hover {background-color: #fff;}
939 933
940 934 div.tabs-buttons { position:absolute; right: 0; width: 54px; height: 24px; background: white; bottom: 0; border-bottom: 1px solid #bbbbbb; }
941 935
942 936 button.tab-left, button.tab-right {
943 937 font-size: 0.9em;
944 938 cursor: pointer;
945 939 height:24px;
946 940 border: 1px solid #ccc;
947 941 border-bottom: 1px solid #bbbbbb;
948 942 position:absolute;
949 943 padding:4px;
950 944 width: 20px;
951 945 bottom: -1px;
952 946 }
953 947 button.tab-left:hover, button.tab-right:hover {
954 948 background-color: #f5f5f5;
955 949 }
956 950 button.tab-left:focus, button.tab-right:focus {
957 951 outline: 0;
958 952 }
959 953
960 954 button.tab-left {
961 955 right: 20px;
962 956 background: #eeeeee url(../images/bullet_arrow_left.png) no-repeat 50% 50%;
963 957 border-top-left-radius:3px;
964 958 }
965 959
966 960 button.tab-right {
967 961 right: 0;
968 962 background: #eeeeee url(../images/bullet_arrow_right.png) no-repeat 50% 50%;
969 963 border-top-right-radius:3px;
970 964 }
971 965
972 966 button.tab-left.disabled, button.tab-right.disabled {
973 967 background-color: #ccc;
974 968 cursor: unset;
975 969 }
976 970
977 971 /***** Diff *****/
978 972 .diff_out { background: #fcc; }
979 973 .diff_out span { background: #faa; }
980 974 .diff_in { background: #cfc; }
981 975 .diff_in span { background: #afa; }
982 976
983 977 .text-diff {
984 978 padding: 1em;
985 979 background-color:#f6f6f6;
986 980 color:#505050;
987 981 border: 1px solid #e4e4e4;
988 982 }
989 983
990 984 /***** Wiki *****/
991 985 div.wiki table {
992 986 border-collapse: collapse;
993 987 margin-bottom: 1em;
994 988 }
995 989
996 990 div.wiki table, div.wiki td, div.wiki th {
997 991 border: 1px solid #bbb;
998 992 padding: 4px;
999 993 }
1000 994
1001 995 div.wiki .noborder, div.wiki .noborder td, div.wiki .noborder th {border:0;}
1002 996
1003 997 div.wiki .external {
1004 998 background-position: 0% 60%;
1005 999 background-repeat: no-repeat;
1006 1000 padding-left: 12px;
1007 1001 background-image: url(../images/external.png);
1008 1002 }
1009 1003
1010 1004 div.wiki a {word-wrap: break-word;}
1011 1005 div.wiki a.new {color: #b73535;}
1012 1006
1013 1007 div.wiki ul, div.wiki ol {margin-bottom:1em;}
1014 1008 div.wiki li>ul, div.wiki li>ol {margin-bottom: 0;}
1015 1009
1016 1010 div.wiki pre {
1017 1011 margin: 1em 1em 1em 1.6em;
1018 1012 padding: 8px;
1019 1013 background-color: #fafafa;
1020 1014 border: 1px solid #e2e2e2;
1021 1015 border-radius: 3px;
1022 1016 width:auto;
1023 1017 overflow-x: auto;
1024 1018 overflow-y: hidden;
1025 1019 }
1026 1020
1027 1021 div.wiki ul.toc {
1028 1022 background-color: #ffffdd;
1029 1023 border: 1px solid #e4e4e4;
1030 1024 padding: 4px;
1031 1025 line-height: 1.2em;
1032 1026 margin-bottom: 12px;
1033 1027 margin-right: 12px;
1034 1028 margin-left: 0;
1035 1029 display: table
1036 1030 }
1037 1031 * html div.wiki ul.toc { width: 50%; } /* IE6 doesn't autosize div */
1038 1032
1039 1033 div.wiki ul.toc.right { float: right; margin-left: 12px; margin-right: 0; width: auto; }
1040 1034 div.wiki ul.toc.left { float: left; margin-right: 12px; margin-left: 0; width: auto; }
1041 1035 div.wiki ul.toc ul { margin: 0; padding: 0; }
1042 1036 div.wiki ul.toc li {list-style-type:none; margin: 0; font-size:12px;}
1043 1037 div.wiki ul.toc li li {margin-left: 1.5em; font-size:10px;}
1044 1038 div.wiki ul.toc a {
1045 1039 font-size: 0.9em;
1046 1040 font-weight: normal;
1047 1041 text-decoration: none;
1048 1042 color: #606060;
1049 1043 }
1050 1044 div.wiki ul.toc a:hover { color: #c61a1a; text-decoration: underline;}
1051 1045
1052 1046 a.wiki-anchor { display: none; margin-left: 6px; text-decoration: none; }
1053 1047 a.wiki-anchor:hover { color: #aaa !important; text-decoration: none; }
1054 1048 h1:hover a.wiki-anchor, h2:hover a.wiki-anchor, h3:hover a.wiki-anchor { display: inline; color: #ddd; }
1055 1049
1056 1050 div.wiki img {vertical-align:middle; max-width:100%;}
1057 1051
1058 1052 /***** My page layout *****/
1059 1053 .block-receiver {
1060 1054 border:1px dashed #c0c0c0;
1061 1055 margin-bottom: 20px;
1062 1056 padding: 15px 0 15px 0;
1063 1057 }
1064 1058
1065 1059 .mypage-box {
1066 1060 margin:0 0 20px 0;
1067 1061 color:#505050;
1068 1062 line-height:1.5em;
1069 1063 }
1070 1064 .mypage-box .icon-close {
1071 1065 float:right;
1072 1066 }
1073 1067
1074 1068 .handle {cursor: move;}
1075 1069
1076 1070 /***** Gantt chart *****/
1077 1071 .gantt_hdr {
1078 1072 position:absolute;
1079 1073 top:0;
1080 1074 height:16px;
1081 1075 border-top: 1px solid #c0c0c0;
1082 1076 border-bottom: 1px solid #c0c0c0;
1083 1077 border-right: 1px solid #c0c0c0;
1084 1078 text-align: center;
1085 1079 overflow: hidden;
1086 1080 }
1087 1081
1088 1082 .gantt_hdr.nwday {background-color:#f1f1f1; color:#999;}
1089 1083
1090 1084 .gantt_subjects { font-size: 0.8em; }
1091 1085 .gantt_subjects div { line-height:16px;height:16px;overflow:hidden;white-space:nowrap;text-overflow: ellipsis; }
1092 1086
1093 1087 .task {
1094 1088 position: absolute;
1095 1089 height:8px;
1096 1090 font-size:0.8em;
1097 1091 color:#888;
1098 1092 padding:0;
1099 1093 margin:0;
1100 1094 line-height:16px;
1101 1095 white-space:nowrap;
1102 1096 }
1103 1097
1104 1098 .task.label {width:100%;}
1105 1099 .task.label.project, .task.label.version { font-weight: bold; }
1106 1100
1107 1101 .task_late { background:#f66 url(../images/task_late.png); border: 1px solid #f66; }
1108 1102 .task_done { background:#00c600 url(../images/task_done.png); border: 1px solid #00c600; }
1109 1103 .task_todo { background:#aaa url(../images/task_todo.png); border: 1px solid #aaa; }
1110 1104
1111 1105 .task_todo.parent { background: #888; border: 1px solid #888; height: 3px;}
1112 1106 .task_late.parent, .task_done.parent { height: 3px;}
1113 1107 .task.parent.marker.starting { position: absolute; background: url(../images/task_parent_end.png) no-repeat 0 0; width: 8px; height: 16px; margin-left: -4px; left: 0px; top: -1px;}
1114 1108 .task.parent.marker.ending { position: absolute; background: url(../images/task_parent_end.png) no-repeat 0 0; width: 8px; height: 16px; margin-left: -4px; right: 0px; top: -1px;}
1115 1109
1116 1110 .version.task_late { background:#f66 url(../images/milestone_late.png); border: 1px solid #f66; height: 2px; margin-top: 3px;}
1117 1111 .version.task_done { background:#00c600 url(../images/milestone_done.png); border: 1px solid #00c600; height: 2px; margin-top: 3px;}
1118 1112 .version.task_todo { background:#fff url(../images/milestone_todo.png); border: 1px solid #fff; height: 2px; margin-top: 3px;}
1119 1113 .version.marker { background-image:url(../images/version_marker.png); background-repeat: no-repeat; border: 0; margin-left: -4px; margin-top: 1px; }
1120 1114
1121 1115 .project.task_late { background:#f66 url(../images/milestone_late.png); border: 1px solid #f66; height: 2px; margin-top: 3px;}
1122 1116 .project.task_done { background:#00c600 url(../images/milestone_done.png); border: 1px solid #00c600; height: 2px; margin-top: 3px;}
1123 1117 .project.task_todo { background:#fff url(../images/milestone_todo.png); border: 1px solid #fff; height: 2px; margin-top: 3px;}
1124 1118 .project.marker { background-image:url(../images/project_marker.png); background-repeat: no-repeat; border: 0; margin-left: -4px; margin-top: 1px; }
1125 1119
1126 1120 .version-behind-schedule a, .issue-behind-schedule a {color: #f66914;}
1127 1121 .version-overdue a, .issue-overdue a, .project-overdue a {color: #f00;}
1128 1122
1129 1123 /***** Icons *****/
1130 1124 .icon {
1131 1125 background-position: 0% 50%;
1132 1126 background-repeat: no-repeat;
1133 1127 padding-left: 20px;
1134 1128 padding-top: 2px;
1135 1129 padding-bottom: 3px;
1136 1130 }
1137 1131 .icon-only {
1138 1132 background-position: 0% 50%;
1139 1133 background-repeat: no-repeat;
1140 1134 padding-left: 16px;
1141 1135 display: inline-block;
1142 1136 width: 0;
1143 1137 height: 16px;
1144 1138 overflow: hidden;
1145 1139 padding-top: 0;
1146 1140 padding-bottom: 0;
1147 1141 font-size: 8px;
1148 1142 vertical-align: middle;
1149 1143 }
1150 1144 .icon-only::after {
1151 1145 content: "&nbsp;";
1152 1146 }
1153 1147
1154 1148 .icon-add { background-image: url(../images/add.png); }
1155 1149 .icon-edit { background-image: url(../images/edit.png); }
1156 1150 .icon-copy { background-image: url(../images/copy.png); }
1157 1151 .icon-duplicate { background-image: url(../images/duplicate.png); }
1158 1152 .icon-del { background-image: url(../images/delete.png); }
1159 1153 .icon-move { background-image: url(../images/move.png); }
1160 1154 .icon-save { background-image: url(../images/save.png); }
1161 1155 .icon-cancel { background-image: url(../images/cancel.png); }
1162 1156 .icon-multiple { background-image: url(../images/table_multiple.png); }
1163 1157 .icon-folder { background-image: url(../images/folder.png); }
1164 1158 .open .icon-folder { background-image: url(../images/folder_open.png); }
1165 1159 .icon-package { background-image: url(../images/package.png); }
1166 1160 .icon-user { background-image: url(../images/user.png); }
1167 1161 .icon-projects { background-image: url(../images/projects.png); }
1168 1162 .icon-help { background-image: url(../images/help.png); }
1169 1163 .icon-attachment { background-image: url(../images/attachment.png); }
1170 1164 .icon-history { background-image: url(../images/history.png); }
1171 1165 .icon-time { background-image: url(../images/time.png); }
1172 1166 .icon-time-add { background-image: url(../images/time_add.png); }
1173 1167 .icon-stats { background-image: url(../images/stats.png); }
1174 1168 .icon-warning { background-image: url(../images/warning.png); }
1175 1169 .icon-error { background-image: url(../images/exclamation.png); }
1176 1170 .icon-fav { background-image: url(../images/fav.png); }
1177 1171 .icon-fav-off { background-image: url(../images/fav_off.png); }
1178 1172 .icon-reload { background-image: url(../images/reload.png); }
1179 1173 .icon-lock { background-image: url(../images/locked.png); }
1180 1174 .icon-unlock { background-image: url(../images/unlock.png); }
1181 1175 .icon-checked { background-image: url(../images/toggle_check.png); }
1182 1176 .icon-details { background-image: url(../images/zoom_in.png); }
1183 1177 .icon-report { background-image: url(../images/report.png); }
1184 1178 .icon-comment { background-image: url(../images/comment.png); }
1185 1179 .icon-summary { background-image: url(../images/lightning.png); }
1186 1180 .icon-server-authentication { background-image: url(../images/server_key.png); }
1187 1181 .icon-issue { background-image: url(../images/ticket.png); }
1188 1182 .icon-zoom-in { background-image: url(../images/zoom_in.png); }
1189 1183 .icon-zoom-out { background-image: url(../images/zoom_out.png); }
1190 1184 .icon-magnifier { background-image: url(../images/magnifier.png); }
1191 1185 .icon-passwd { background-image: url(../images/textfield_key.png); }
1192 1186 .icon-test { background-image: url(../images/bullet_go.png); }
1193 1187 .icon-email { background-image: url(../images/email.png); }
1194 1188 .icon-email-disabled { background-image: url(../images/email_disabled.png); }
1195 1189 .icon-email-add { background-image: url(../images/email_add.png); }
1196 1190 .icon-move-up { background-image: url(../images/1uparrow.png); }
1197 1191 .icon-move-top { background-image: url(../images/2uparrow.png); }
1198 1192 .icon-move-down { background-image: url(../images/1downarrow.png); }
1199 1193 .icon-move-bottom { background-image: url(../images/2downarrow.png); }
1200 1194 .icon-ok { background-image: url(../images/true.png); }
1201 1195 .icon-not-ok { background-image: url(../images/false.png); }
1202 1196 .icon-link-break { background-image: url(../images/link_break.png); }
1203 1197 .icon-list { background-image: url(../images/text_list_bullets.png); }
1204 1198 .icon-close { background-image: url(../images/close.png); }
1205 1199 .icon-close:hover { background-image: url(../images/close_hl.png); }
1206 1200 .icon-settings { background-image: url(../images/changeset.png); }
1207 1201 .icon-group { background-image: url(../images/group.png); }
1208 1202 .icon-roles { background-image: url(../images/database_key.png); }
1209 1203 .icon-issue-edit { background-image: url(../images/ticket_edit.png); }
1210 1204 .icon-workflows { background-image: url(../images/ticket_go.png); }
1211 1205 .icon-custom-fields { background-image: url(../images/textfield.png); }
1212 1206 .icon-plugins { background-image: url(../images/plugin.png); }
1207 .icon-news { background: url(../images/news.png); }
1213 1208
1214 1209 .icon-file { background-image: url(../images/files/default.png); }
1215 1210 .icon-file.text-plain { background-image: url(../images/files/text.png); }
1216 1211 .icon-file.text-x-c { background-image: url(../images/files/c.png); }
1217 1212 .icon-file.text-x-csharp { background-image: url(../images/files/csharp.png); }
1218 1213 .icon-file.text-x-java { background-image: url(../images/files/java.png); }
1219 1214 .icon-file.text-x-javascript { background-image: url(../images/files/js.png); }
1220 1215 .icon-file.text-x-php { background-image: url(../images/files/php.png); }
1221 1216 .icon-file.text-x-ruby { background-image: url(../images/files/ruby.png); }
1222 1217 .icon-file.text-xml { background-image: url(../images/files/xml.png); }
1223 1218 .icon-file.text-css { background-image: url(../images/files/css.png); }
1224 1219 .icon-file.text-html { background-image: url(../images/files/html.png); }
1225 1220 .icon-file.image-gif { background-image: url(../images/files/image.png); }
1226 1221 .icon-file.image-jpeg { background-image: url(../images/files/image.png); }
1227 1222 .icon-file.image-png { background-image: url(../images/files/image.png); }
1228 1223 .icon-file.image-tiff { background-image: url(../images/files/image.png); }
1229 1224 .icon-file.application-pdf { background-image: url(../images/files/pdf.png); }
1230 1225 .icon-file.application-zip { background-image: url(../images/files/zip.png); }
1231 1226 .icon-file.application-x-gzip { background-image: url(../images/files/zip.png); }
1232 1227
1233 1228 .sort-handle { width:16px; height:16px; background:url(../images/reorder.png) no-repeat 0 50%; cursor:move; }
1234 1229 .sort-handle.ajax-loading { background-image: url(../images/loading.gif); }
1235 1230 tr.ui-sortable-helper { border:1px solid #e4e4e4; }
1236 1231
1237 1232 .contextual>*:not(:first-child), .buttons>.icon:not(:first-child) { margin-left: 5px; }
1238 1233
1239 1234 img.gravatar {
1240 1235 vertical-align: middle;
1241 1236 border-radius: 20%;
1242 1237 }
1243 1238
1244 1239 div.issue img.gravatar {
1245 1240 float: left;
1246 1241 margin: 0 6px 0 0;
1247 1242 }
1248 1243
1249 1244 h2 img.gravatar {margin: -2px 4px -4px 0;}
1250 1245 h3 img.gravatar {margin: -4px 4px -4px 0;}
1251 1246 h4 img.gravatar {margin: -2px 4px -4px 0;}
1252 1247 td.username img.gravatar {margin: 0 0.5em 0 0; vertical-align: top;}
1253 1248 #activity dt img.gravatar {float: left; margin: 0 1em 1em 0;}
1254 1249 /* Used on 12px Gravatar img tags without the icon background */
1255 1250 .icon-gravatar {float: left; margin-right: 4px;}
1256 1251
1257 1252 #activity dt, .journal {clear: left;}
1258 1253
1259 1254 .journal-link {float: right;}
1260 1255
1261 1256 h2 img { vertical-align:middle; }
1262 1257
1263 1258 .hascontextmenu { cursor: context-menu; }
1264 1259
1265 1260 .sample-data {border:1px solid #ccc; border-collapse:collapse; background-color:#fff; margin:0.5em;}
1266 1261 .sample-data td {border:1px solid #ccc; padding: 2px 4px; font-family: Consolas, Menlo, "Liberation Mono", Courier, monospace;}
1267 1262 .sample-data tr:first-child td {font-weight:bold; text-align:center;}
1268 1263
1269 1264 .ui-progressbar {position: relative;}
1270 1265 #progress-label {
1271 1266 position: absolute; left: 50%; top: 4px;
1272 1267 font-weight: bold;
1273 1268 color: #555; text-shadow: 1px 1px 0 #fff;
1274 1269 }
1275 1270
1276 1271 /* Custom JQuery styles */
1277 1272 .ui-datepicker-title select {width:70px !important; margin-top:-2px !important; margin-right:4px !important;}
1278 1273
1279 1274
1280 1275 /************* CodeRay styles *************/
1281 1276 .syntaxhl div {display: inline;}
1282 1277 .syntaxhl .code pre { overflow: auto }
1283 1278
1284 1279 .syntaxhl .annotation { color:#007 }
1285 1280 .syntaxhl .attribute-name { color:#b48 }
1286 1281 .syntaxhl .attribute-value { color:#700 }
1287 1282 .syntaxhl .binary { color:#549 }
1288 1283 .syntaxhl .binary .char { color:#325 }
1289 1284 .syntaxhl .binary .delimiter { color:#325 }
1290 1285 .syntaxhl .char { color:#D20 }
1291 1286 .syntaxhl .char .content { color:#D20 }
1292 1287 .syntaxhl .char .delimiter { color:#710 }
1293 1288 .syntaxhl .class { color:#B06; font-weight:bold }
1294 1289 .syntaxhl .class-variable { color:#369 }
1295 1290 .syntaxhl .color { color:#0A0 }
1296 1291 .syntaxhl .comment { color:#777 }
1297 1292 .syntaxhl .comment .char { color:#444 }
1298 1293 .syntaxhl .comment .delimiter { color:#444 }
1299 1294 .syntaxhl .constant { color:#036; font-weight:bold }
1300 1295 .syntaxhl .decorator { color:#B0B }
1301 1296 .syntaxhl .definition { color:#099; font-weight:bold }
1302 1297 .syntaxhl .delimiter { color:black }
1303 1298 .syntaxhl .directive { color:#088; font-weight:bold }
1304 1299 .syntaxhl .docstring { color:#D42; }
1305 1300 .syntaxhl .doctype { color:#34b }
1306 1301 .syntaxhl .done { text-decoration: line-through; color: gray }
1307 1302 .syntaxhl .entity { color:#800; font-weight:bold }
1308 1303 .syntaxhl .error { color:#F00; background-color:#FAA }
1309 1304 .syntaxhl .escape { color:#666 }
1310 1305 .syntaxhl .exception { color:#C00; font-weight:bold }
1311 1306 .syntaxhl .float { color:#60E }
1312 1307 .syntaxhl .function { color:#06B; font-weight:bold }
1313 1308 .syntaxhl .function .delimiter { color:#059 }
1314 1309 .syntaxhl .function .content { color:#037 }
1315 1310 .syntaxhl .global-variable { color:#d70 }
1316 1311 .syntaxhl .hex { color:#02b }
1317 1312 .syntaxhl .id { color:#33D; font-weight:bold }
1318 1313 .syntaxhl .include { color:#B44; font-weight:bold }
1319 1314 .syntaxhl .inline { background-color: hsla(0,0%,0%,0.07); color: black }
1320 1315 .syntaxhl .inline-delimiter { font-weight: bold; color: #666 }
1321 1316 .syntaxhl .instance-variable { color:#33B }
1322 1317 .syntaxhl .integer { color:#00D }
1323 1318 .syntaxhl .imaginary { color:#f00 }
1324 1319 .syntaxhl .important { color:#D00 }
1325 1320 .syntaxhl .key { color: #606 }
1326 1321 .syntaxhl .key .char { color: #60f }
1327 1322 .syntaxhl .key .delimiter { color: #404 }
1328 1323 .syntaxhl .keyword { color:#080; font-weight:bold }
1329 1324 .syntaxhl .label { color:#970; font-weight:bold }
1330 1325 .syntaxhl .local-variable { color:#950 }
1331 1326 .syntaxhl .map .content { color:#808 }
1332 1327 .syntaxhl .map .delimiter { color:#40A}
1333 1328 .syntaxhl .map { background-color:hsla(200,100%,50%,0.06); }
1334 1329 .syntaxhl .namespace { color:#707; font-weight:bold }
1335 1330 .syntaxhl .octal { color:#40E }
1336 1331 .syntaxhl .operator { }
1337 1332 .syntaxhl .predefined { color:#369; font-weight:bold }
1338 1333 .syntaxhl .predefined-constant { color:#069 }
1339 1334 .syntaxhl .predefined-type { color:#0a8; font-weight:bold }
1340 1335 .syntaxhl .preprocessor { color:#579 }
1341 1336 .syntaxhl .pseudo-class { color:#00C; font-weight:bold }
1342 1337 .syntaxhl .regexp { background-color:hsla(300,100%,50%,0.06); }
1343 1338 .syntaxhl .regexp .content { color:#808 }
1344 1339 .syntaxhl .regexp .delimiter { color:#404 }
1345 1340 .syntaxhl .regexp .modifier { color:#C2C }
1346 1341 .syntaxhl .reserved { color:#080; font-weight:bold }
1347 1342 .syntaxhl .shell { background-color:hsla(120,100%,50%,0.06); }
1348 1343 .syntaxhl .shell .content { color:#2B2 }
1349 1344 .syntaxhl .shell .delimiter { color:#161 }
1350 1345 .syntaxhl .string { background-color:hsla(0,100%,50%,0.05); }
1351 1346 .syntaxhl .string .char { color: #b0b }
1352 1347 .syntaxhl .string .content { color: #D20 }
1353 1348 .syntaxhl .string .delimiter { color: #710 }
1354 1349 .syntaxhl .string .modifier { color: #E40 }
1355 1350 .syntaxhl .symbol { color:#A60 }
1356 1351 .syntaxhl .symbol .content { color:#A60 }
1357 1352 .syntaxhl .symbol .delimiter { color:#740 }
1358 1353 .syntaxhl .tag { color:#070; font-weight:bold }
1359 1354 .syntaxhl .type { color:#339; font-weight:bold }
1360 1355 .syntaxhl .value { color: #088 }
1361 1356 .syntaxhl .variable { color:#037 }
1362 1357
1363 1358 .syntaxhl .insert { background: hsla(120,100%,50%,0.12) }
1364 1359 .syntaxhl .delete { background: hsla(0,100%,50%,0.12) }
1365 1360 .syntaxhl .change { color: #bbf; background: #007 }
1366 1361 .syntaxhl .head { color: #f8f; background: #505 }
1367 1362 .syntaxhl .head .filename { color: white; }
1368 1363
1369 1364 .syntaxhl .delete .eyecatcher { background-color: hsla(0,100%,50%,0.2); border: 1px solid hsla(0,100%,45%,0.5); margin: -1px; border-bottom: none; border-top-left-radius: 5px; border-top-right-radius: 5px; }
1370 1365 .syntaxhl .insert .eyecatcher { background-color: hsla(120,100%,50%,0.2); border: 1px solid hsla(120,100%,25%,0.5); margin: -1px; border-top: none; border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; }
1371 1366
1372 1367 .syntaxhl .insert .insert { color: #0c0; background:transparent; font-weight:bold }
1373 1368 .syntaxhl .delete .delete { color: #c00; background:transparent; font-weight:bold }
1374 1369 .syntaxhl .change .change { color: #88f }
1375 1370 .syntaxhl .head .head { color: #f4f }
1376 1371
1377 1372 /***** Media print specific styles *****/
1378 1373 @media print {
1379 1374 #top-menu, #header, #main-menu, #sidebar, #footer, .contextual, .other-formats { display:none; }
1380 1375 #main { background: #fff; }
1381 1376 #content { width: 99%; margin: 0; padding: 0; border: 0; background: #fff; overflow: visible !important;}
1382 1377 #wiki_add_attachment { display:none; }
1383 1378 .hide-when-print, .pagination ul.pages, .pagination .per-page { display: none !important; }
1384 1379 .autoscroll {overflow-x: visible;}
1385 1380 table.list {margin-top:0.5em;}
1386 1381 table.list th, table.list td {border: 1px solid #aaa;}
1387 1382 }
1388 1383
1389 1384 /* Accessibility specific styles */
1390 1385 .hidden-for-sighted {
1391 1386 position:absolute;
1392 1387 left:-10000px;
1393 1388 top:auto;
1394 1389 width:1px;
1395 1390 height:1px;
1396 1391 overflow:hidden;
1397 1392 }
General Comments 0
You need to be logged in to leave comments. Login now