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