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