##// END OF EJS Templates
Restyles the issue counts....
Jean-Philippe Lang -
r10358:6f13f2b84207
parent child
Show More
@@ -1,42 +1,42
1 <%= form_tag({}) do -%>
1 <%= form_tag({}) do -%>
2 <%= hidden_field_tag 'back_url', url_for(params), :id => nil %>
2 <%= hidden_field_tag 'back_url', url_for(params), :id => nil %>
3 <div class="autoscroll">
3 <div class="autoscroll">
4 <table class="list issues">
4 <table class="list issues">
5 <thead>
5 <thead>
6 <tr>
6 <tr>
7 <th class="checkbox hide-when-print">
7 <th class="checkbox hide-when-print">
8 <%= link_to image_tag('toggle_check.png'), {},
8 <%= link_to image_tag('toggle_check.png'), {},
9 :onclick => 'toggleIssuesSelection(this); return false;',
9 :onclick => 'toggleIssuesSelection(this); return false;',
10 :title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}" %>
10 :title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}" %>
11 </th>
11 </th>
12 <%= sort_header_tag('id', :caption => '#', :default_order => 'desc') %>
12 <%= sort_header_tag('id', :caption => '#', :default_order => 'desc') %>
13 <% query.columns.each do |column| %>
13 <% query.columns.each do |column| %>
14 <%= column_header(column) %>
14 <%= column_header(column) %>
15 <% end %>
15 <% end %>
16 </tr>
16 </tr>
17 </thead>
17 </thead>
18 <% previous_group = false %>
18 <% previous_group = false %>
19 <tbody>
19 <tbody>
20 <% issue_list(issues) do |issue, level| -%>
20 <% issue_list(issues) do |issue, level| -%>
21 <% if @query.grouped? && (group = @query.group_by_column.value(issue)) != previous_group %>
21 <% if @query.grouped? && (group = @query.group_by_column.value(issue)) != previous_group %>
22 <% reset_cycle %>
22 <% reset_cycle %>
23 <tr class="group open">
23 <tr class="group open">
24 <td colspan="<%= query.columns.size + 2 %>">
24 <td colspan="<%= query.columns.size + 2 %>">
25 <span class="expander" onclick="toggleRowGroup(this);">&nbsp;</span>
25 <span class="expander" onclick="toggleRowGroup(this);">&nbsp;</span>
26 <%= group.blank? ? 'None' : column_content(@query.group_by_column, issue) %> <span class="count">(<%= @issue_count_by_group[group] %>)</span>
26 <%= group.blank? ? 'None' : column_content(@query.group_by_column, issue) %> <span class="count"><%= @issue_count_by_group[group] %></span>
27 <%= link_to_function("#{l(:button_collapse_all)}/#{l(:button_expand_all)}",
27 <%= link_to_function("#{l(:button_collapse_all)}/#{l(:button_expand_all)}",
28 "toggleAllRowGroups(this)", :class => 'toggle-all') %>
28 "toggleAllRowGroups(this)", :class => 'toggle-all') %>
29 </td>
29 </td>
30 </tr>
30 </tr>
31 <% previous_group = group %>
31 <% previous_group = group %>
32 <% end %>
32 <% end %>
33 <tr id="issue-<%= issue.id %>" class="hascontextmenu <%= cycle('odd', 'even') %> <%= issue.css_classes %> <%= level > 0 ? "idnt idnt-#{level}" : nil %>">
33 <tr id="issue-<%= issue.id %>" class="hascontextmenu <%= cycle('odd', 'even') %> <%= issue.css_classes %> <%= level > 0 ? "idnt idnt-#{level}" : nil %>">
34 <td class="checkbox hide-when-print"><%= check_box_tag("ids[]", issue.id, false, :id => nil) %></td>
34 <td class="checkbox hide-when-print"><%= check_box_tag("ids[]", issue.id, false, :id => nil) %></td>
35 <td class="id"><%= link_to issue.id, issue_path(issue) %></td>
35 <td class="id"><%= link_to issue.id, issue_path(issue) %></td>
36 <%= raw query.columns.map {|column| "<td class=\"#{column.css_classes}\">#{column_content(column, issue)}</td>"}.join %>
36 <%= raw query.columns.map {|column| "<td class=\"#{column.css_classes}\">#{column_content(column, issue)}</td>"}.join %>
37 </tr>
37 </tr>
38 <% end -%>
38 <% end -%>
39 </tbody>
39 </tbody>
40 </table>
40 </table>
41 </div>
41 </div>
42 <% end -%>
42 <% end -%>
@@ -1,1132 +1,1132
1 html {overflow-y:scroll;}
1 html {overflow-y:scroll;}
2 body { font-family: Verdana, sans-serif; font-size: 12px; color:#484848; margin: 0; padding: 0; min-width: 900px; }
2 body { font-family: Verdana, sans-serif; font-size: 12px; color:#484848; margin: 0; padding: 0; min-width: 900px; }
3
3
4 h1, h2, h3, h4 {font-family: "Trebuchet MS", Verdana, sans-serif;padding: 2px 10px 1px 0px;margin: 0 0 10px 0;}
4 h1, h2, h3, h4 {font-family: "Trebuchet MS", Verdana, sans-serif;padding: 2px 10px 1px 0px;margin: 0 0 10px 0;}
5 #content h1, h2, h3, h4 {color: #555;}
5 #content h1, h2, h3, h4 {color: #555;}
6 h2, .wiki h1 {font-size: 20px;}
6 h2, .wiki h1 {font-size: 20px;}
7 h3, .wiki h2 {font-size: 16px;}
7 h3, .wiki h2 {font-size: 16px;}
8 h4, .wiki h3 {font-size: 13px;}
8 h4, .wiki h3 {font-size: 13px;}
9 h4 {border-bottom: 1px dotted #bbb;}
9 h4 {border-bottom: 1px dotted #bbb;}
10
10
11 /***** Layout *****/
11 /***** Layout *****/
12 #wrapper {background: white;}
12 #wrapper {background: white;}
13
13
14 #top-menu {background: #3E5B76; color: #fff; height:1.8em; font-size: 0.8em; padding: 2px 2px 0px 6px;}
14 #top-menu {background: #3E5B76; color: #fff; height:1.8em; font-size: 0.8em; padding: 2px 2px 0px 6px;}
15 #top-menu ul {margin: 0; padding: 0;}
15 #top-menu ul {margin: 0; padding: 0;}
16 #top-menu li {
16 #top-menu li {
17 float:left;
17 float:left;
18 list-style-type:none;
18 list-style-type:none;
19 margin: 0px 0px 0px 0px;
19 margin: 0px 0px 0px 0px;
20 padding: 0px 0px 0px 0px;
20 padding: 0px 0px 0px 0px;
21 white-space:nowrap;
21 white-space:nowrap;
22 }
22 }
23 #top-menu a {color: #fff; margin-right: 8px; font-weight: bold;}
23 #top-menu a {color: #fff; margin-right: 8px; font-weight: bold;}
24 #top-menu #loggedas { float: right; margin-right: 0.5em; color: #fff; }
24 #top-menu #loggedas { float: right; margin-right: 0.5em; color: #fff; }
25
25
26 #account {float:right;}
26 #account {float:right;}
27
27
28 #header {height:5.3em;margin:0;background-color:#628DB6;color:#f8f8f8; padding: 4px 8px 0px 6px; position:relative;}
28 #header {height:5.3em;margin:0;background-color:#628DB6;color:#f8f8f8; padding: 4px 8px 0px 6px; position:relative;}
29 #header a {color:#f8f8f8;}
29 #header a {color:#f8f8f8;}
30 #header h1 a.ancestor { font-size: 80%; }
30 #header h1 a.ancestor { font-size: 80%; }
31 #quick-search {float:right;}
31 #quick-search {float:right;}
32
32
33 #main-menu {position: absolute; bottom: 0px; left:6px; margin-right: -500px;}
33 #main-menu {position: absolute; bottom: 0px; left:6px; margin-right: -500px;}
34 #main-menu ul {margin: 0; padding: 0;}
34 #main-menu ul {margin: 0; padding: 0;}
35 #main-menu li {
35 #main-menu li {
36 float:left;
36 float:left;
37 list-style-type:none;
37 list-style-type:none;
38 margin: 0px 2px 0px 0px;
38 margin: 0px 2px 0px 0px;
39 padding: 0px 0px 0px 0px;
39 padding: 0px 0px 0px 0px;
40 white-space:nowrap;
40 white-space:nowrap;
41 }
41 }
42 #main-menu li a {
42 #main-menu li a {
43 display: block;
43 display: block;
44 color: #fff;
44 color: #fff;
45 text-decoration: none;
45 text-decoration: none;
46 font-weight: bold;
46 font-weight: bold;
47 margin: 0;
47 margin: 0;
48 padding: 4px 10px 4px 10px;
48 padding: 4px 10px 4px 10px;
49 }
49 }
50 #main-menu li a:hover {background:#759FCF; color:#fff;}
50 #main-menu li a:hover {background:#759FCF; color:#fff;}
51 #main-menu li a.selected, #main-menu li a.selected:hover {background:#fff; color:#555;}
51 #main-menu li a.selected, #main-menu li a.selected:hover {background:#fff; color:#555;}
52
52
53 #admin-menu ul {margin: 0; padding: 0;}
53 #admin-menu ul {margin: 0; padding: 0;}
54 #admin-menu li {margin: 0; padding: 0 0 6px 0; list-style-type:none;}
54 #admin-menu li {margin: 0; padding: 0 0 6px 0; list-style-type:none;}
55
55
56 #admin-menu a { background-position: 0% 40%; background-repeat: no-repeat; padding-left: 20px; padding-top: 2px; padding-bottom: 3px;}
56 #admin-menu a { background-position: 0% 40%; background-repeat: no-repeat; padding-left: 20px; padding-top: 2px; padding-bottom: 3px;}
57 #admin-menu a.projects { background-image: url(../images/projects.png); }
57 #admin-menu a.projects { background-image: url(../images/projects.png); }
58 #admin-menu a.users { background-image: url(../images/user.png); }
58 #admin-menu a.users { background-image: url(../images/user.png); }
59 #admin-menu a.groups { background-image: url(../images/group.png); }
59 #admin-menu a.groups { background-image: url(../images/group.png); }
60 #admin-menu a.roles { background-image: url(../images/database_key.png); }
60 #admin-menu a.roles { background-image: url(../images/database_key.png); }
61 #admin-menu a.trackers { background-image: url(../images/ticket.png); }
61 #admin-menu a.trackers { background-image: url(../images/ticket.png); }
62 #admin-menu a.issue_statuses { background-image: url(../images/ticket_edit.png); }
62 #admin-menu a.issue_statuses { background-image: url(../images/ticket_edit.png); }
63 #admin-menu a.workflows { background-image: url(../images/ticket_go.png); }
63 #admin-menu a.workflows { background-image: url(../images/ticket_go.png); }
64 #admin-menu a.custom_fields { background-image: url(../images/textfield.png); }
64 #admin-menu a.custom_fields { background-image: url(../images/textfield.png); }
65 #admin-menu a.enumerations { background-image: url(../images/text_list_bullets.png); }
65 #admin-menu a.enumerations { background-image: url(../images/text_list_bullets.png); }
66 #admin-menu a.settings { background-image: url(../images/changeset.png); }
66 #admin-menu a.settings { background-image: url(../images/changeset.png); }
67 #admin-menu a.plugins { background-image: url(../images/plugin.png); }
67 #admin-menu a.plugins { background-image: url(../images/plugin.png); }
68 #admin-menu a.info { background-image: url(../images/help.png); }
68 #admin-menu a.info { background-image: url(../images/help.png); }
69 #admin-menu a.server_authentication { background-image: url(../images/server_key.png); }
69 #admin-menu a.server_authentication { background-image: url(../images/server_key.png); }
70
70
71 #main {background-color:#EEEEEE;}
71 #main {background-color:#EEEEEE;}
72
72
73 #sidebar{ float: right; width: 22%; position: relative; z-index: 9; padding: 0; margin: 0;}
73 #sidebar{ float: right; width: 22%; position: relative; z-index: 9; padding: 0; margin: 0;}
74 * html #sidebar{ width: 22%; }
74 * html #sidebar{ width: 22%; }
75 #sidebar h3{ font-size: 14px; margin-top:14px; color: #666; }
75 #sidebar h3{ font-size: 14px; margin-top:14px; color: #666; }
76 #sidebar hr{ width: 100%; margin: 0 auto; height: 1px; background: #ccc; border: 0; }
76 #sidebar hr{ width: 100%; margin: 0 auto; height: 1px; background: #ccc; border: 0; }
77 * html #sidebar hr{ width: 95%; position: relative; left: -6px; color: #ccc; }
77 * html #sidebar hr{ width: 95%; position: relative; left: -6px; color: #ccc; }
78 #sidebar .contextual { margin-right: 1em; }
78 #sidebar .contextual { margin-right: 1em; }
79
79
80 #content { width: 75%; background-color: #fff; margin: 0px; border-right: 1px solid #ddd; padding: 6px 10px 10px 10px; z-index: 10; }
80 #content { width: 75%; background-color: #fff; margin: 0px; border-right: 1px solid #ddd; padding: 6px 10px 10px 10px; z-index: 10; }
81 * html #content{ width: 75%; padding-left: 0; margin-top: 0px; padding: 6px 10px 10px 10px;}
81 * html #content{ width: 75%; padding-left: 0; margin-top: 0px; padding: 6px 10px 10px 10px;}
82 html>body #content { min-height: 600px; }
82 html>body #content { min-height: 600px; }
83 * html body #content { height: 600px; } /* IE */
83 * html body #content { height: 600px; } /* IE */
84
84
85 #main.nosidebar #sidebar{ display: none; }
85 #main.nosidebar #sidebar{ display: none; }
86 #main.nosidebar #content{ width: auto; border-right: 0; }
86 #main.nosidebar #content{ width: auto; border-right: 0; }
87
87
88 #footer {clear: both; border-top: 1px solid #bbb; font-size: 0.9em; color: #aaa; padding: 5px; text-align:center; background:#fff;}
88 #footer {clear: both; border-top: 1px solid #bbb; font-size: 0.9em; color: #aaa; padding: 5px; text-align:center; background:#fff;}
89
89
90 #login-form table {margin-top:5em; padding:1em; margin-left: auto; margin-right: auto; border: 2px solid #FDBF3B; background-color:#FFEBC1; }
90 #login-form table {margin-top:5em; padding:1em; margin-left: auto; margin-right: auto; border: 2px solid #FDBF3B; background-color:#FFEBC1; }
91 #login-form table td {padding: 6px;}
91 #login-form table td {padding: 6px;}
92 #login-form label {font-weight: bold;}
92 #login-form label {font-weight: bold;}
93 #login-form input#username, #login-form input#password { width: 300px; }
93 #login-form input#username, #login-form input#password { width: 300px; }
94
94
95 div.modal { border-radius:5px; background:#fff; z-index:50; padding:4px;}
95 div.modal { border-radius:5px; background:#fff; z-index:50; padding:4px;}
96 div.modal h3.title {display:none;}
96 div.modal h3.title {display:none;}
97 div.modal p.buttons {text-align:right; margin-bottom:0;}
97 div.modal p.buttons {text-align:right; margin-bottom:0;}
98
98
99 input#openid_url { background: url(../images/openid-bg.gif) no-repeat; background-color: #fff; background-position: 0 50%; padding-left: 18px; }
99 input#openid_url { background: url(../images/openid-bg.gif) no-repeat; background-color: #fff; background-position: 0 50%; padding-left: 18px; }
100
100
101 .clear:after{ content: "."; display: block; height: 0; clear: both; visibility: hidden; }
101 .clear:after{ content: "."; display: block; height: 0; clear: both; visibility: hidden; }
102
102
103 /***** Links *****/
103 /***** Links *****/
104 a, a:link, a:visited{ color: #169; text-decoration: none; }
104 a, a:link, a:visited{ color: #169; text-decoration: none; }
105 a:hover, a:active{ color: #c61a1a; text-decoration: underline;}
105 a:hover, a:active{ color: #c61a1a; text-decoration: underline;}
106 a img{ border: 0; }
106 a img{ border: 0; }
107
107
108 a.issue.closed, a.issue.closed:link, a.issue.closed:visited { color: #999; text-decoration: line-through; }
108 a.issue.closed, a.issue.closed:link, a.issue.closed:visited { color: #999; text-decoration: line-through; }
109 a.project.closed, a.project.closed:link, a.project.closed:visited { color: #999; }
109 a.project.closed, a.project.closed:link, a.project.closed:visited { color: #999; }
110
110
111 #sidebar a.selected {line-height:1.7em; padding:1px 3px 2px 2px; margin-left:-2px; background-color:#9DB9D5; color:#fff; border-radius:2px;}
111 #sidebar a.selected {line-height:1.7em; padding:1px 3px 2px 2px; margin-left:-2px; background-color:#9DB9D5; color:#fff; border-radius:2px;}
112 #sidebar a.selected:hover {text-decoration:none;}
112 #sidebar a.selected:hover {text-decoration:none;}
113 #admin-menu a {line-height:1.7em;}
113 #admin-menu a {line-height:1.7em;}
114 #admin-menu a.selected {padding-left: 20px !important; background-position: 2px 40%;}
114 #admin-menu a.selected {padding-left: 20px !important; background-position: 2px 40%;}
115
115
116 a.collapsible {padding-left: 12px; background: url(../images/arrow_expanded.png) no-repeat -3px 40%;}
116 a.collapsible {padding-left: 12px; background: url(../images/arrow_expanded.png) no-repeat -3px 40%;}
117 a.collapsible.collapsed {background: url(../images/arrow_collapsed.png) no-repeat -5px 40%;}
117 a.collapsible.collapsed {background: url(../images/arrow_collapsed.png) no-repeat -5px 40%;}
118
118
119 a#toggle-completed-versions {color:#999;}
119 a#toggle-completed-versions {color:#999;}
120 /***** Tables *****/
120 /***** Tables *****/
121 table.list { border: 1px solid #e4e4e4; border-collapse: collapse; width: 100%; margin-bottom: 4px; }
121 table.list { border: 1px solid #e4e4e4; border-collapse: collapse; width: 100%; margin-bottom: 4px; }
122 table.list th { background-color:#EEEEEE; padding: 4px; white-space:nowrap; }
122 table.list th { background-color:#EEEEEE; padding: 4px; white-space:nowrap; }
123 table.list td { vertical-align: top; padding-right:10px; }
123 table.list td { vertical-align: top; padding-right:10px; }
124 table.list td.id { width: 2%; text-align: center;}
124 table.list td.id { width: 2%; text-align: center;}
125 table.list td.checkbox { width: 15px; padding: 2px 0 0 0; }
125 table.list td.checkbox { width: 15px; padding: 2px 0 0 0; }
126 table.list td.checkbox input {padding:0px;}
126 table.list td.checkbox input {padding:0px;}
127 table.list td.buttons { width: 15%; white-space:nowrap; text-align: right; }
127 table.list td.buttons { width: 15%; white-space:nowrap; text-align: right; }
128 table.list td.buttons a { padding-right: 0.6em; }
128 table.list td.buttons a { padding-right: 0.6em; }
129 table.list caption { text-align: left; padding: 0.5em 0.5em 0.5em 0; }
129 table.list caption { text-align: left; padding: 0.5em 0.5em 0.5em 0; }
130
130
131 tr.project td.name a { white-space:nowrap; }
131 tr.project td.name a { white-space:nowrap; }
132 tr.project.closed, tr.project.archived { color: #aaa; }
132 tr.project.closed, tr.project.archived { color: #aaa; }
133 tr.project.closed a, tr.project.archived a { color: #aaa; }
133 tr.project.closed a, tr.project.archived a { color: #aaa; }
134
134
135 tr.project.idnt td.name span {background: url(../images/bullet_arrow_right.png) no-repeat 0 50%; padding-left: 16px;}
135 tr.project.idnt td.name span {background: url(../images/bullet_arrow_right.png) no-repeat 0 50%; padding-left: 16px;}
136 tr.project.idnt-1 td.name {padding-left: 0.5em;}
136 tr.project.idnt-1 td.name {padding-left: 0.5em;}
137 tr.project.idnt-2 td.name {padding-left: 2em;}
137 tr.project.idnt-2 td.name {padding-left: 2em;}
138 tr.project.idnt-3 td.name {padding-left: 3.5em;}
138 tr.project.idnt-3 td.name {padding-left: 3.5em;}
139 tr.project.idnt-4 td.name {padding-left: 5em;}
139 tr.project.idnt-4 td.name {padding-left: 5em;}
140 tr.project.idnt-5 td.name {padding-left: 6.5em;}
140 tr.project.idnt-5 td.name {padding-left: 6.5em;}
141 tr.project.idnt-6 td.name {padding-left: 8em;}
141 tr.project.idnt-6 td.name {padding-left: 8em;}
142 tr.project.idnt-7 td.name {padding-left: 9.5em;}
142 tr.project.idnt-7 td.name {padding-left: 9.5em;}
143 tr.project.idnt-8 td.name {padding-left: 11em;}
143 tr.project.idnt-8 td.name {padding-left: 11em;}
144 tr.project.idnt-9 td.name {padding-left: 12.5em;}
144 tr.project.idnt-9 td.name {padding-left: 12.5em;}
145
145
146 tr.issue { text-align: center; white-space: nowrap; }
146 tr.issue { text-align: center; white-space: nowrap; }
147 tr.issue td.subject, tr.issue td.category, td.assigned_to, tr.issue td.string, tr.issue td.text, tr.issue td.relations { white-space: normal; }
147 tr.issue td.subject, tr.issue td.category, td.assigned_to, tr.issue td.string, tr.issue td.text, tr.issue td.relations { white-space: normal; }
148 tr.issue td.subject, tr.issue td.relations { text-align: left; }
148 tr.issue td.subject, tr.issue td.relations { text-align: left; }
149 tr.issue td.done_ratio table.progress { margin-left:auto; margin-right: auto;}
149 tr.issue td.done_ratio table.progress { margin-left:auto; margin-right: auto;}
150 tr.issue td.relations span {white-space: nowrap;}
150 tr.issue td.relations span {white-space: nowrap;}
151
151
152 tr.issue.idnt td.subject a {background: url(../images/bullet_arrow_right.png) no-repeat 0 50%; padding-left: 16px;}
152 tr.issue.idnt td.subject a {background: url(../images/bullet_arrow_right.png) no-repeat 0 50%; padding-left: 16px;}
153 tr.issue.idnt-1 td.subject {padding-left: 0.5em;}
153 tr.issue.idnt-1 td.subject {padding-left: 0.5em;}
154 tr.issue.idnt-2 td.subject {padding-left: 2em;}
154 tr.issue.idnt-2 td.subject {padding-left: 2em;}
155 tr.issue.idnt-3 td.subject {padding-left: 3.5em;}
155 tr.issue.idnt-3 td.subject {padding-left: 3.5em;}
156 tr.issue.idnt-4 td.subject {padding-left: 5em;}
156 tr.issue.idnt-4 td.subject {padding-left: 5em;}
157 tr.issue.idnt-5 td.subject {padding-left: 6.5em;}
157 tr.issue.idnt-5 td.subject {padding-left: 6.5em;}
158 tr.issue.idnt-6 td.subject {padding-left: 8em;}
158 tr.issue.idnt-6 td.subject {padding-left: 8em;}
159 tr.issue.idnt-7 td.subject {padding-left: 9.5em;}
159 tr.issue.idnt-7 td.subject {padding-left: 9.5em;}
160 tr.issue.idnt-8 td.subject {padding-left: 11em;}
160 tr.issue.idnt-8 td.subject {padding-left: 11em;}
161 tr.issue.idnt-9 td.subject {padding-left: 12.5em;}
161 tr.issue.idnt-9 td.subject {padding-left: 12.5em;}
162
162
163 tr.entry { border: 1px solid #f8f8f8; }
163 tr.entry { border: 1px solid #f8f8f8; }
164 tr.entry td { white-space: nowrap; }
164 tr.entry td { white-space: nowrap; }
165 tr.entry td.filename { width: 30%; }
165 tr.entry td.filename { width: 30%; }
166 tr.entry td.filename_no_report { width: 70%; }
166 tr.entry td.filename_no_report { width: 70%; }
167 tr.entry td.size { text-align: right; font-size: 90%; }
167 tr.entry td.size { text-align: right; font-size: 90%; }
168 tr.entry td.revision, tr.entry td.author { text-align: center; }
168 tr.entry td.revision, tr.entry td.author { text-align: center; }
169 tr.entry td.age { text-align: right; }
169 tr.entry td.age { text-align: right; }
170 tr.entry.file td.filename a { margin-left: 16px; }
170 tr.entry.file td.filename a { margin-left: 16px; }
171 tr.entry.file td.filename_no_report a { margin-left: 16px; }
171 tr.entry.file td.filename_no_report a { margin-left: 16px; }
172
172
173 tr span.expander {background-image: url(../images/bullet_toggle_plus.png); padding-left: 8px; margin-left: 0; cursor: pointer;}
173 tr span.expander {background-image: url(../images/bullet_toggle_plus.png); padding-left: 8px; margin-left: 0; cursor: pointer;}
174 tr.open span.expander {background-image: url(../images/bullet_toggle_minus.png);}
174 tr.open span.expander {background-image: url(../images/bullet_toggle_minus.png);}
175
175
176 tr.changeset { height: 20px }
176 tr.changeset { height: 20px }
177 tr.changeset ul, ol { margin-top: 0px; margin-bottom: 0px; }
177 tr.changeset ul, ol { margin-top: 0px; margin-bottom: 0px; }
178 tr.changeset td.revision_graph { width: 15%; background-color: #fffffb; }
178 tr.changeset td.revision_graph { width: 15%; background-color: #fffffb; }
179 tr.changeset td.author { text-align: center; width: 15%; white-space:nowrap;}
179 tr.changeset td.author { text-align: center; width: 15%; white-space:nowrap;}
180 tr.changeset td.committed_on { text-align: center; width: 15%; white-space:nowrap;}
180 tr.changeset td.committed_on { text-align: center; width: 15%; white-space:nowrap;}
181
181
182 table.files tr.file td { text-align: center; }
182 table.files tr.file td { text-align: center; }
183 table.files tr.file td.filename { text-align: left; padding-left: 24px; }
183 table.files tr.file td.filename { text-align: left; padding-left: 24px; }
184 table.files tr.file td.digest { font-size: 80%; }
184 table.files tr.file td.digest { font-size: 80%; }
185
185
186 table.members td.roles, table.memberships td.roles { width: 45%; }
186 table.members td.roles, table.memberships td.roles { width: 45%; }
187
187
188 tr.message { height: 2.6em; }
188 tr.message { height: 2.6em; }
189 tr.message td.subject { padding-left: 20px; }
189 tr.message td.subject { padding-left: 20px; }
190 tr.message td.created_on { white-space: nowrap; }
190 tr.message td.created_on { white-space: nowrap; }
191 tr.message td.last_message { font-size: 80%; white-space: nowrap; }
191 tr.message td.last_message { font-size: 80%; white-space: nowrap; }
192 tr.message.locked td.subject { background: url(../images/locked.png) no-repeat 0 1px; }
192 tr.message.locked td.subject { background: url(../images/locked.png) no-repeat 0 1px; }
193 tr.message.sticky td.subject { background: url(../images/bullet_go.png) no-repeat 0 1px; font-weight: bold; }
193 tr.message.sticky td.subject { background: url(../images/bullet_go.png) no-repeat 0 1px; font-weight: bold; }
194
194
195 tr.version.closed, tr.version.closed a { color: #999; }
195 tr.version.closed, tr.version.closed a { color: #999; }
196 tr.version td.name { padding-left: 20px; }
196 tr.version td.name { padding-left: 20px; }
197 tr.version.shared td.name { background: url(../images/link.png) no-repeat 0% 70%; }
197 tr.version.shared td.name { background: url(../images/link.png) no-repeat 0% 70%; }
198 tr.version td.date, tr.version td.status, tr.version td.sharing { text-align: center; white-space:nowrap; }
198 tr.version td.date, tr.version td.status, tr.version td.sharing { text-align: center; white-space:nowrap; }
199
199
200 tr.user td { width:13%; }
200 tr.user td { width:13%; }
201 tr.user td.email { width:18%; }
201 tr.user td.email { width:18%; }
202 tr.user td { white-space: nowrap; }
202 tr.user td { white-space: nowrap; }
203 tr.user.locked, tr.user.registered { color: #aaa; }
203 tr.user.locked, tr.user.registered { color: #aaa; }
204 tr.user.locked a, tr.user.registered a { color: #aaa; }
204 tr.user.locked a, tr.user.registered a { color: #aaa; }
205
205
206 table.permissions td.role {color:#999;font-size:90%;font-weight:normal !important;text-align:center;vertical-align:bottom;}
206 table.permissions td.role {color:#999;font-size:90%;font-weight:normal !important;text-align:center;vertical-align:bottom;}
207
207
208 tr.wiki-page-version td.updated_on, tr.wiki-page-version td.author {text-align:center;}
208 tr.wiki-page-version td.updated_on, tr.wiki-page-version td.author {text-align:center;}
209
209
210 tr.time-entry { text-align: center; white-space: nowrap; }
210 tr.time-entry { text-align: center; white-space: nowrap; }
211 tr.time-entry td.subject, tr.time-entry td.comments { text-align: left; white-space: normal; }
211 tr.time-entry td.subject, tr.time-entry td.comments { text-align: left; white-space: normal; }
212 td.hours { text-align: right; font-weight: bold; padding-right: 0.5em; }
212 td.hours { text-align: right; font-weight: bold; padding-right: 0.5em; }
213 td.hours .hours-dec { font-size: 0.9em; }
213 td.hours .hours-dec { font-size: 0.9em; }
214
214
215 table.plugins td { vertical-align: middle; }
215 table.plugins td { vertical-align: middle; }
216 table.plugins td.configure { text-align: right; padding-right: 1em; }
216 table.plugins td.configure { text-align: right; padding-right: 1em; }
217 table.plugins span.name { font-weight: bold; display: block; margin-bottom: 6px; }
217 table.plugins span.name { font-weight: bold; display: block; margin-bottom: 6px; }
218 table.plugins span.description { display: block; font-size: 0.9em; }
218 table.plugins span.description { display: block; font-size: 0.9em; }
219 table.plugins span.url { display: block; font-size: 0.9em; }
219 table.plugins span.url { display: block; font-size: 0.9em; }
220
220
221 table.list tbody tr.group td { padding: 0.8em 0 0.5em 0.3em; font-weight: bold; border-bottom: 1px solid #ccc; }
221 table.list tbody tr.group td { padding: 0.8em 0 0.5em 0.3em; font-weight: bold; border-bottom: 1px solid #ccc; }
222 table.list tbody tr.group span.count { color: #aaa; font-size: 80%; }
222 table.list tbody tr.group span.count {position:relative; top:-1px; color:#fff; font-size:10px; background:#9DB9D5; padding:0px 6px 1px 6px; border-radius:3px; margin-left:4px;}
223 tr.group a.toggle-all { color: #aaa; font-size: 80%; font-weight: normal; display:none;}
223 tr.group a.toggle-all { color: #aaa; font-size: 80%; font-weight: normal; display:none;}
224 tr.group:hover a.toggle-all { display:inline;}
224 tr.group:hover a.toggle-all { display:inline;}
225 a.toggle-all:hover {text-decoration:none;}
225 a.toggle-all:hover {text-decoration:none;}
226
226
227 table.list tbody tr:hover { background-color:#ffffdd; }
227 table.list tbody tr:hover { background-color:#ffffdd; }
228 table.list tbody tr.group:hover { background-color:inherit; }
228 table.list tbody tr.group:hover { background-color:inherit; }
229 table td {padding:2px;}
229 table td {padding:2px;}
230 table p {margin:0;}
230 table p {margin:0;}
231 .odd {background-color:#f6f7f8;}
231 .odd {background-color:#f6f7f8;}
232 .even {background-color: #fff;}
232 .even {background-color: #fff;}
233
233
234 a.sort { padding-right: 16px; background-position: 100% 50%; background-repeat: no-repeat; }
234 a.sort { padding-right: 16px; background-position: 100% 50%; background-repeat: no-repeat; }
235 a.sort.asc { background-image: url(../images/sort_asc.png); }
235 a.sort.asc { background-image: url(../images/sort_asc.png); }
236 a.sort.desc { background-image: url(../images/sort_desc.png); }
236 a.sort.desc { background-image: url(../images/sort_desc.png); }
237
237
238 table.attributes { width: 100% }
238 table.attributes { width: 100% }
239 table.attributes th { vertical-align: top; text-align: left; }
239 table.attributes th { vertical-align: top; text-align: left; }
240 table.attributes td { vertical-align: top; }
240 table.attributes td { vertical-align: top; }
241
241
242 table.boards a.board, h3.comments { background: url(../images/comment.png) no-repeat 0% 50%; padding-left: 20px; }
242 table.boards a.board, h3.comments { background: url(../images/comment.png) no-repeat 0% 50%; padding-left: 20px; }
243 table.boards td.topic-count, table.boards td.message-count {text-align:center;}
243 table.boards td.topic-count, table.boards td.message-count {text-align:center;}
244 table.boards td.last-message {font-size:80%;}
244 table.boards td.last-message {font-size:80%;}
245
245
246 table.messages td.author, table.messages td.created_on, table.messages td.reply-count {text-align:center;}
246 table.messages td.author, table.messages td.created_on, table.messages td.reply-count {text-align:center;}
247
247
248 table.query-columns {
248 table.query-columns {
249 border-collapse: collapse;
249 border-collapse: collapse;
250 border: 0;
250 border: 0;
251 }
251 }
252
252
253 table.query-columns td.buttons {
253 table.query-columns td.buttons {
254 vertical-align: middle;
254 vertical-align: middle;
255 text-align: center;
255 text-align: center;
256 }
256 }
257
257
258 td.center {text-align:center;}
258 td.center {text-align:center;}
259
259
260 h3.version { background: url(../images/package.png) no-repeat 0% 50%; padding-left: 20px; }
260 h3.version { background: url(../images/package.png) no-repeat 0% 50%; padding-left: 20px; }
261
261
262 div.issues h3 { background: url(../images/ticket.png) no-repeat 0% 50%; padding-left: 20px; }
262 div.issues h3 { background: url(../images/ticket.png) no-repeat 0% 50%; padding-left: 20px; }
263 div.members h3 { background: url(../images/group.png) no-repeat 0% 50%; padding-left: 20px; }
263 div.members h3 { background: url(../images/group.png) no-repeat 0% 50%; padding-left: 20px; }
264 div.news h3 { background: url(../images/news.png) no-repeat 0% 50%; padding-left: 20px; }
264 div.news h3 { background: url(../images/news.png) no-repeat 0% 50%; padding-left: 20px; }
265 div.projects h3 { background: url(../images/projects.png) no-repeat 0% 50%; padding-left: 20px; }
265 div.projects h3 { background: url(../images/projects.png) no-repeat 0% 50%; padding-left: 20px; }
266
266
267 #watchers ul {margin: 0; padding: 0;}
267 #watchers ul {margin: 0; padding: 0;}
268 #watchers li {list-style-type:none;margin: 0px 2px 0px 0px; padding: 0px 0px 0px 0px;}
268 #watchers li {list-style-type:none;margin: 0px 2px 0px 0px; padding: 0px 0px 0px 0px;}
269 #watchers select {width: 95%; display: block;}
269 #watchers select {width: 95%; display: block;}
270 #watchers a.delete {opacity: 0.4;}
270 #watchers a.delete {opacity: 0.4;}
271 #watchers a.delete:hover {opacity: 1;}
271 #watchers a.delete:hover {opacity: 1;}
272 #watchers img.gravatar {margin: 0 4px 2px 0;}
272 #watchers img.gravatar {margin: 0 4px 2px 0;}
273
273
274 span#watchers_inputs {overflow:auto; display:block;}
274 span#watchers_inputs {overflow:auto; display:block;}
275 span.search_for_watchers {display:block;}
275 span.search_for_watchers {display:block;}
276 span.search_for_watchers, span.add_attachment {font-size:80%; line-height:2.5em;}
276 span.search_for_watchers, span.add_attachment {font-size:80%; line-height:2.5em;}
277 span.search_for_watchers a, span.add_attachment a {padding-left:16px; background: url(../images/bullet_add.png) no-repeat 0 50%; }
277 span.search_for_watchers a, span.add_attachment a {padding-left:16px; background: url(../images/bullet_add.png) no-repeat 0 50%; }
278
278
279
279
280 .highlight { background-color: #FCFD8D;}
280 .highlight { background-color: #FCFD8D;}
281 .highlight.token-1 { background-color: #faa;}
281 .highlight.token-1 { background-color: #faa;}
282 .highlight.token-2 { background-color: #afa;}
282 .highlight.token-2 { background-color: #afa;}
283 .highlight.token-3 { background-color: #aaf;}
283 .highlight.token-3 { background-color: #aaf;}
284
284
285 .box{
285 .box{
286 padding:6px;
286 padding:6px;
287 margin-bottom: 10px;
287 margin-bottom: 10px;
288 background-color:#f6f6f6;
288 background-color:#f6f6f6;
289 color:#505050;
289 color:#505050;
290 line-height:1.5em;
290 line-height:1.5em;
291 border: 1px solid #e4e4e4;
291 border: 1px solid #e4e4e4;
292 }
292 }
293
293
294 div.square {
294 div.square {
295 border: 1px solid #999;
295 border: 1px solid #999;
296 float: left;
296 float: left;
297 margin: .3em .4em 0 .4em;
297 margin: .3em .4em 0 .4em;
298 overflow: hidden;
298 overflow: hidden;
299 width: .6em; height: .6em;
299 width: .6em; height: .6em;
300 }
300 }
301 .contextual {float:right; white-space: nowrap; line-height:1.4em;margin-top:5px; padding-left: 10px; font-size:0.9em;}
301 .contextual {float:right; white-space: nowrap; line-height:1.4em;margin-top:5px; padding-left: 10px; font-size:0.9em;}
302 .contextual input, .contextual select {font-size:0.9em;}
302 .contextual input, .contextual select {font-size:0.9em;}
303 .message .contextual { margin-top: 0; }
303 .message .contextual { margin-top: 0; }
304
304
305 .splitcontent {overflow:auto;}
305 .splitcontent {overflow:auto;}
306 .splitcontentleft{float:left; width:49%;}
306 .splitcontentleft{float:left; width:49%;}
307 .splitcontentright{float:right; width:49%;}
307 .splitcontentright{float:right; width:49%;}
308 form {display: inline;}
308 form {display: inline;}
309 input, select {vertical-align: middle; margin-top: 1px; margin-bottom: 1px;}
309 input, select {vertical-align: middle; margin-top: 1px; margin-bottom: 1px;}
310 fieldset {border: 1px solid #e4e4e4; margin:0;}
310 fieldset {border: 1px solid #e4e4e4; margin:0;}
311 legend {color: #484848;}
311 legend {color: #484848;}
312 hr { width: 100%; height: 1px; background: #ccc; border: 0;}
312 hr { width: 100%; height: 1px; background: #ccc; border: 0;}
313 blockquote { font-style: italic; border-left: 3px solid #e0e0e0; padding-left: 0.6em; margin-left: 2.4em;}
313 blockquote { font-style: italic; border-left: 3px solid #e0e0e0; padding-left: 0.6em; margin-left: 2.4em;}
314 blockquote blockquote { margin-left: 0;}
314 blockquote blockquote { margin-left: 0;}
315 acronym { border-bottom: 1px dotted; cursor: help; }
315 acronym { border-bottom: 1px dotted; cursor: help; }
316 textarea.wiki-edit { width: 99%; }
316 textarea.wiki-edit { width: 99%; }
317 li p {margin-top: 0;}
317 li p {margin-top: 0;}
318 div.issue {background:#ffffdd; padding:6px; margin-bottom:6px;border: 1px solid #d7d7d7;}
318 div.issue {background:#ffffdd; padding:6px; margin-bottom:6px;border: 1px solid #d7d7d7;}
319 p.breadcrumb { font-size: 0.9em; margin: 4px 0 4px 0;}
319 p.breadcrumb { font-size: 0.9em; margin: 4px 0 4px 0;}
320 p.subtitle { font-size: 0.9em; margin: -6px 0 12px 0; font-style: italic; }
320 p.subtitle { font-size: 0.9em; margin: -6px 0 12px 0; font-style: italic; }
321 p.footnote { font-size: 0.9em; margin-top: 0px; margin-bottom: 0px; }
321 p.footnote { font-size: 0.9em; margin-top: 0px; margin-bottom: 0px; }
322
322
323 div.issue div.subject div div { padding-left: 16px; }
323 div.issue div.subject div div { padding-left: 16px; }
324 div.issue div.subject p {margin: 0; margin-bottom: 0.1em; font-size: 90%; color: #999;}
324 div.issue div.subject p {margin: 0; margin-bottom: 0.1em; font-size: 90%; color: #999;}
325 div.issue div.subject>div>p { margin-top: 0.5em; }
325 div.issue div.subject>div>p { margin-top: 0.5em; }
326 div.issue div.subject h3 {margin: 0; margin-bottom: 0.1em;}
326 div.issue div.subject h3 {margin: 0; margin-bottom: 0.1em;}
327 div.issue 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;}
327 div.issue 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;}
328 div.issue .next-prev-links {color:#999;}
328 div.issue .next-prev-links {color:#999;}
329 div.issue table.attributes th {width:22%;}
329 div.issue table.attributes th {width:22%;}
330 div.issue table.attributes td {width:28%;}
330 div.issue table.attributes td {width:28%;}
331
331
332 #issue_tree table.issues, #relations table.issues { border: 0; }
332 #issue_tree table.issues, #relations table.issues { border: 0; }
333 #issue_tree td.checkbox, #relations td.checkbox {display:none;}
333 #issue_tree td.checkbox, #relations td.checkbox {display:none;}
334 #relations td.buttons {padding:0;}
334 #relations td.buttons {padding:0;}
335
335
336 fieldset.collapsible { border-width: 1px 0 0 0; font-size: 0.9em; }
336 fieldset.collapsible { border-width: 1px 0 0 0; font-size: 0.9em; }
337 fieldset.collapsible legend { padding-left: 16px; background: url(../images/arrow_expanded.png) no-repeat 0% 40%; cursor:pointer; }
337 fieldset.collapsible legend { padding-left: 16px; background: url(../images/arrow_expanded.png) no-repeat 0% 40%; cursor:pointer; }
338 fieldset.collapsible.collapsed legend { background-image: url(../images/arrow_collapsed.png); }
338 fieldset.collapsible.collapsed legend { background-image: url(../images/arrow_collapsed.png); }
339
339
340 fieldset#date-range p { margin: 2px 0 2px 0; }
340 fieldset#date-range p { margin: 2px 0 2px 0; }
341 fieldset#filters table { border-collapse: collapse; }
341 fieldset#filters table { border-collapse: collapse; }
342 fieldset#filters table td { padding: 0; vertical-align: middle; }
342 fieldset#filters table td { padding: 0; vertical-align: middle; }
343 fieldset#filters tr.filter { height: 2.1em; }
343 fieldset#filters tr.filter { height: 2.1em; }
344 fieldset#filters td.field { width:230px; }
344 fieldset#filters td.field { width:230px; }
345 fieldset#filters td.operator { width:180px; }
345 fieldset#filters td.operator { width:180px; }
346 fieldset#filters td.operator select {max-width:170px;}
346 fieldset#filters td.operator select {max-width:170px;}
347 fieldset#filters td.values { white-space:nowrap; }
347 fieldset#filters td.values { white-space:nowrap; }
348 fieldset#filters td.values select {min-width:130px;}
348 fieldset#filters td.values select {min-width:130px;}
349 fieldset#filters td.values input {height:1em;}
349 fieldset#filters td.values input {height:1em;}
350 fieldset#filters td.add-filter { text-align: right; vertical-align: top; }
350 fieldset#filters td.add-filter { text-align: right; vertical-align: top; }
351
351
352 .toggle-multiselect {background: url(../images/bullet_toggle_plus.png) no-repeat 0% 40%; padding-left:8px; margin-left:0; cursor:pointer;}
352 .toggle-multiselect {background: url(../images/bullet_toggle_plus.png) no-repeat 0% 40%; padding-left:8px; margin-left:0; cursor:pointer;}
353 .buttons { font-size: 0.9em; margin-bottom: 1.4em; margin-top: 1em; }
353 .buttons { font-size: 0.9em; margin-bottom: 1.4em; margin-top: 1em; }
354
354
355 div#issue-changesets {float:right; width:45%; margin-left: 1em; margin-bottom: 1em; background: #fff; padding-left: 1em; font-size: 90%;}
355 div#issue-changesets {float:right; width:45%; margin-left: 1em; margin-bottom: 1em; background: #fff; padding-left: 1em; font-size: 90%;}
356 div#issue-changesets div.changeset { padding: 4px;}
356 div#issue-changesets div.changeset { padding: 4px;}
357 div#issue-changesets div.changeset { border-bottom: 1px solid #ddd; }
357 div#issue-changesets div.changeset { border-bottom: 1px solid #ddd; }
358 div#issue-changesets p { margin-top: 0; margin-bottom: 1em;}
358 div#issue-changesets p { margin-top: 0; margin-bottom: 1em;}
359
359
360 .journal ul.details img {margin:0 0 -3px 4px;}
360 .journal ul.details img {margin:0 0 -3px 4px;}
361 div.journal {overflow:auto;}
361 div.journal {overflow:auto;}
362 div.journal.private-notes {border-left:2px solid #d22; padding-left:4px; margin-left:-6px;}
362 div.journal.private-notes {border-left:2px solid #d22; padding-left:4px; margin-left:-6px;}
363
363
364 div#activity dl, #search-results { margin-left: 2em; }
364 div#activity dl, #search-results { margin-left: 2em; }
365 div#activity dd, #search-results dd { margin-bottom: 1em; padding-left: 18px; font-size: 0.9em; }
365 div#activity dd, #search-results dd { margin-bottom: 1em; padding-left: 18px; font-size: 0.9em; }
366 div#activity dt, #search-results dt { margin-bottom: 0px; padding-left: 20px; line-height: 18px; background-position: 0 50%; background-repeat: no-repeat; }
366 div#activity dt, #search-results dt { margin-bottom: 0px; padding-left: 20px; line-height: 18px; background-position: 0 50%; background-repeat: no-repeat; }
367 div#activity dt.me .time { border-bottom: 1px solid #999; }
367 div#activity dt.me .time { border-bottom: 1px solid #999; }
368 div#activity dt .time { color: #777; font-size: 80%; }
368 div#activity dt .time { color: #777; font-size: 80%; }
369 div#activity dd .description, #search-results dd .description { font-style: italic; }
369 div#activity dd .description, #search-results dd .description { font-style: italic; }
370 div#activity span.project:after, #search-results span.project:after { content: " -"; }
370 div#activity span.project:after, #search-results span.project:after { content: " -"; }
371 div#activity dd span.description, #search-results dd span.description { display:block; color: #808080; }
371 div#activity dd span.description, #search-results dd span.description { display:block; color: #808080; }
372
372
373 #search-results dd { margin-bottom: 1em; padding-left: 20px; margin-left:0px; }
373 #search-results dd { margin-bottom: 1em; padding-left: 20px; margin-left:0px; }
374
374
375 div#search-results-counts {float:right;}
375 div#search-results-counts {float:right;}
376 div#search-results-counts ul { margin-top: 0.5em; }
376 div#search-results-counts ul { margin-top: 0.5em; }
377 div#search-results-counts li { list-style-type:none; float: left; margin-left: 1em; }
377 div#search-results-counts li { list-style-type:none; float: left; margin-left: 1em; }
378
378
379 dt.issue { background-image: url(../images/ticket.png); }
379 dt.issue { background-image: url(../images/ticket.png); }
380 dt.issue-edit { background-image: url(../images/ticket_edit.png); }
380 dt.issue-edit { background-image: url(../images/ticket_edit.png); }
381 dt.issue-closed { background-image: url(../images/ticket_checked.png); }
381 dt.issue-closed { background-image: url(../images/ticket_checked.png); }
382 dt.issue-note { background-image: url(../images/ticket_note.png); }
382 dt.issue-note { background-image: url(../images/ticket_note.png); }
383 dt.changeset { background-image: url(../images/changeset.png); }
383 dt.changeset { background-image: url(../images/changeset.png); }
384 dt.news { background-image: url(../images/news.png); }
384 dt.news { background-image: url(../images/news.png); }
385 dt.message { background-image: url(../images/message.png); }
385 dt.message { background-image: url(../images/message.png); }
386 dt.reply { background-image: url(../images/comments.png); }
386 dt.reply { background-image: url(../images/comments.png); }
387 dt.wiki-page { background-image: url(../images/wiki_edit.png); }
387 dt.wiki-page { background-image: url(../images/wiki_edit.png); }
388 dt.attachment { background-image: url(../images/attachment.png); }
388 dt.attachment { background-image: url(../images/attachment.png); }
389 dt.document { background-image: url(../images/document.png); }
389 dt.document { background-image: url(../images/document.png); }
390 dt.project { background-image: url(../images/projects.png); }
390 dt.project { background-image: url(../images/projects.png); }
391 dt.time-entry { background-image: url(../images/time.png); }
391 dt.time-entry { background-image: url(../images/time.png); }
392
392
393 #search-results dt.issue.closed { background-image: url(../images/ticket_checked.png); }
393 #search-results dt.issue.closed { background-image: url(../images/ticket_checked.png); }
394
394
395 div#roadmap .related-issues { margin-bottom: 1em; }
395 div#roadmap .related-issues { margin-bottom: 1em; }
396 div#roadmap .related-issues td.checkbox { display: none; }
396 div#roadmap .related-issues td.checkbox { display: none; }
397 div#roadmap .wiki h1:first-child { display: none; }
397 div#roadmap .wiki h1:first-child { display: none; }
398 div#roadmap .wiki h1 { font-size: 120%; }
398 div#roadmap .wiki h1 { font-size: 120%; }
399 div#roadmap .wiki h2 { font-size: 110%; }
399 div#roadmap .wiki h2 { font-size: 110%; }
400 body.controller-versions.action-show div#roadmap .related-issues {width:70%;}
400 body.controller-versions.action-show div#roadmap .related-issues {width:70%;}
401
401
402 div#version-summary { float:right; width:28%; margin-left: 16px; margin-bottom: 16px; background-color: #fff; }
402 div#version-summary { float:right; width:28%; margin-left: 16px; margin-bottom: 16px; background-color: #fff; }
403 div#version-summary fieldset { margin-bottom: 1em; }
403 div#version-summary fieldset { margin-bottom: 1em; }
404 div#version-summary fieldset.time-tracking table { width:100%; }
404 div#version-summary fieldset.time-tracking table { width:100%; }
405 div#version-summary th, div#version-summary td.total-hours { text-align: right; }
405 div#version-summary th, div#version-summary td.total-hours { text-align: right; }
406
406
407 table#time-report td.hours, table#time-report th.period, table#time-report th.total { text-align: right; padding-right: 0.5em; }
407 table#time-report td.hours, table#time-report th.period, table#time-report th.total { text-align: right; padding-right: 0.5em; }
408 table#time-report tbody tr.subtotal { font-style: italic; color:#777;}
408 table#time-report tbody tr.subtotal { font-style: italic; color:#777;}
409 table#time-report tbody tr.subtotal td.hours { color:#b0b0b0; }
409 table#time-report tbody tr.subtotal td.hours { color:#b0b0b0; }
410 table#time-report tbody tr.total { font-weight: bold; background-color:#EEEEEE; border-top:1px solid #e4e4e4;}
410 table#time-report tbody tr.total { font-weight: bold; background-color:#EEEEEE; border-top:1px solid #e4e4e4;}
411 table#time-report .hours-dec { font-size: 0.9em; }
411 table#time-report .hours-dec { font-size: 0.9em; }
412
412
413 div.wiki-page .contextual a {opacity: 0.4}
413 div.wiki-page .contextual a {opacity: 0.4}
414 div.wiki-page .contextual a:hover {opacity: 1}
414 div.wiki-page .contextual a:hover {opacity: 1}
415
415
416 form .attributes select { width: 60%; }
416 form .attributes select { width: 60%; }
417 input#issue_subject { width: 99%; }
417 input#issue_subject { width: 99%; }
418 select#issue_done_ratio { width: 95px; }
418 select#issue_done_ratio { width: 95px; }
419
419
420 ul.projects {margin:0; padding-left:1em;}
420 ul.projects {margin:0; padding-left:1em;}
421 ul.projects ul {padding-left:1.6em;}
421 ul.projects ul {padding-left:1.6em;}
422 ul.projects.root {margin:0; padding:0;}
422 ul.projects.root {margin:0; padding:0;}
423 ul.projects li {list-style-type:none;}
423 ul.projects li {list-style-type:none;}
424
424
425 #projects-index ul.projects ul.projects { border-left: 3px solid #e0e0e0; padding-left:1em;}
425 #projects-index ul.projects ul.projects { border-left: 3px solid #e0e0e0; padding-left:1em;}
426 #projects-index ul.projects li.root {margin-bottom: 1em;}
426 #projects-index ul.projects li.root {margin-bottom: 1em;}
427 #projects-index ul.projects li.child {margin-top: 1em;}
427 #projects-index ul.projects li.child {margin-top: 1em;}
428 #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; }
428 #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; }
429 .my-project { padding-left: 18px; background: url(../images/fav.png) no-repeat 0 50%; }
429 .my-project { padding-left: 18px; background: url(../images/fav.png) no-repeat 0 50%; }
430
430
431 #notified-projects ul, #tracker_project_ids ul {max-height:250px; overflow-y:auto;}
431 #notified-projects ul, #tracker_project_ids ul {max-height:250px; overflow-y:auto;}
432
432
433 #related-issues li img {vertical-align:middle;}
433 #related-issues li img {vertical-align:middle;}
434
434
435 ul.properties {padding:0; font-size: 0.9em; color: #777;}
435 ul.properties {padding:0; font-size: 0.9em; color: #777;}
436 ul.properties li {list-style-type:none;}
436 ul.properties li {list-style-type:none;}
437 ul.properties li span {font-style:italic;}
437 ul.properties li span {font-style:italic;}
438
438
439 .total-hours { font-size: 110%; font-weight: bold; }
439 .total-hours { font-size: 110%; font-weight: bold; }
440 .total-hours span.hours-int { font-size: 120%; }
440 .total-hours span.hours-int { font-size: 120%; }
441
441
442 .autoscroll {overflow-x: auto; padding:1px; margin-bottom: 1.2em;}
442 .autoscroll {overflow-x: auto; padding:1px; margin-bottom: 1.2em;}
443 #user_login, #user_firstname, #user_lastname, #user_mail, #my_account_form select, #user_form select, #user_identity_url { width: 90%; }
443 #user_login, #user_firstname, #user_lastname, #user_mail, #my_account_form select, #user_form select, #user_identity_url { width: 90%; }
444
444
445 #workflow_copy_form select { width: 200px; }
445 #workflow_copy_form select { width: 200px; }
446 table.transitions td.enabled {background: #bfb;}
446 table.transitions td.enabled {background: #bfb;}
447 table.fields_permissions select {font-size:90%}
447 table.fields_permissions select {font-size:90%}
448 table.fields_permissions td.readonly {background:#ddd;}
448 table.fields_permissions td.readonly {background:#ddd;}
449 table.fields_permissions td.required {background:#d88;}
449 table.fields_permissions td.required {background:#d88;}
450
450
451 textarea#custom_field_possible_values {width: 99%}
451 textarea#custom_field_possible_values {width: 99%}
452 input#content_comments {width: 99%}
452 input#content_comments {width: 99%}
453
453
454 .pagination {font-size: 90%}
454 .pagination {font-size: 90%}
455 p.pagination {margin-top:8px;}
455 p.pagination {margin-top:8px;}
456
456
457 /***** Tabular forms ******/
457 /***** Tabular forms ******/
458 .tabular p{
458 .tabular p{
459 margin: 0;
459 margin: 0;
460 padding: 3px 0 3px 0;
460 padding: 3px 0 3px 0;
461 padding-left: 180px; /* width of left column containing the label elements */
461 padding-left: 180px; /* width of left column containing the label elements */
462 min-height: 1.8em;
462 min-height: 1.8em;
463 clear:left;
463 clear:left;
464 }
464 }
465
465
466 html>body .tabular p {overflow:hidden;}
466 html>body .tabular p {overflow:hidden;}
467
467
468 .tabular label{
468 .tabular label{
469 font-weight: bold;
469 font-weight: bold;
470 float: left;
470 float: left;
471 text-align: right;
471 text-align: right;
472 /* width of left column */
472 /* width of left column */
473 margin-left: -180px;
473 margin-left: -180px;
474 /* width of labels. Should be smaller than left column to create some right margin */
474 /* width of labels. Should be smaller than left column to create some right margin */
475 width: 175px;
475 width: 175px;
476 }
476 }
477
477
478 .tabular label.floating{
478 .tabular label.floating{
479 font-weight: normal;
479 font-weight: normal;
480 margin-left: 0px;
480 margin-left: 0px;
481 text-align: left;
481 text-align: left;
482 width: 270px;
482 width: 270px;
483 }
483 }
484
484
485 .tabular label.block{
485 .tabular label.block{
486 font-weight: normal;
486 font-weight: normal;
487 margin-left: 0px !important;
487 margin-left: 0px !important;
488 text-align: left;
488 text-align: left;
489 float: none;
489 float: none;
490 display: block;
490 display: block;
491 width: auto;
491 width: auto;
492 }
492 }
493
493
494 .tabular label.inline{
494 .tabular label.inline{
495 float:none;
495 float:none;
496 margin-left: 5px !important;
496 margin-left: 5px !important;
497 width: auto;
497 width: auto;
498 }
498 }
499
499
500 label.no-css {
500 label.no-css {
501 font-weight: inherit;
501 font-weight: inherit;
502 float:none;
502 float:none;
503 text-align:left;
503 text-align:left;
504 margin-left:0px;
504 margin-left:0px;
505 width:auto;
505 width:auto;
506 }
506 }
507 input#time_entry_comments { width: 90%;}
507 input#time_entry_comments { width: 90%;}
508
508
509 #preview fieldset {margin-top: 1em; background: url(../images/draft.png)}
509 #preview fieldset {margin-top: 1em; background: url(../images/draft.png)}
510
510
511 .tabular.settings p{ padding-left: 300px; }
511 .tabular.settings p{ padding-left: 300px; }
512 .tabular.settings label{ margin-left: -300px; width: 295px; }
512 .tabular.settings label{ margin-left: -300px; width: 295px; }
513 .tabular.settings textarea { width: 99%; }
513 .tabular.settings textarea { width: 99%; }
514
514
515 .settings.enabled_scm table {width:100%}
515 .settings.enabled_scm table {width:100%}
516 .settings.enabled_scm td.scm_name{ font-weight: bold; }
516 .settings.enabled_scm td.scm_name{ font-weight: bold; }
517
517
518 fieldset.settings label { display: block; }
518 fieldset.settings label { display: block; }
519 fieldset#notified_events .parent { padding-left: 20px; }
519 fieldset#notified_events .parent { padding-left: 20px; }
520
520
521 span.required {color: #bb0000;}
521 span.required {color: #bb0000;}
522 .summary {font-style: italic;}
522 .summary {font-style: italic;}
523
523
524 #attachments_fields input.description {margin-left: 8px; width:340px;}
524 #attachments_fields input.description {margin-left: 8px; width:340px;}
525 #attachments_fields span {display:block; white-space:nowrap;}
525 #attachments_fields span {display:block; white-space:nowrap;}
526 #attachments_fields img {vertical-align: middle;}
526 #attachments_fields img {vertical-align: middle;}
527
527
528 div.attachments { margin-top: 12px; }
528 div.attachments { margin-top: 12px; }
529 div.attachments p { margin:4px 0 2px 0; }
529 div.attachments p { margin:4px 0 2px 0; }
530 div.attachments img { vertical-align: middle; }
530 div.attachments img { vertical-align: middle; }
531 div.attachments span.author { font-size: 0.9em; color: #888; }
531 div.attachments span.author { font-size: 0.9em; color: #888; }
532
532
533 div.thumbnails {margin-top:0.6em;}
533 div.thumbnails {margin-top:0.6em;}
534 div.thumbnails div {background:#fff;border:2px solid #ddd;display:inline-block;margin-right:2px;}
534 div.thumbnails div {background:#fff;border:2px solid #ddd;display:inline-block;margin-right:2px;}
535 div.thumbnails img {margin: 3px;}
535 div.thumbnails img {margin: 3px;}
536
536
537 p.other-formats { text-align: right; font-size:0.9em; color: #666; }
537 p.other-formats { text-align: right; font-size:0.9em; color: #666; }
538 .other-formats span + span:before { content: "| "; }
538 .other-formats span + span:before { content: "| "; }
539
539
540 a.atom { background: url(../images/feed.png) no-repeat 1px 50%; padding: 2px 0px 3px 16px; }
540 a.atom { background: url(../images/feed.png) no-repeat 1px 50%; padding: 2px 0px 3px 16px; }
541
541
542 em.info {font-style:normal;font-size:90%;color:#888;display:block;}
542 em.info {font-style:normal;font-size:90%;color:#888;display:block;}
543 em.info.error {padding-left:20px; background:url(../images/exclamation.png) no-repeat 0 50%;}
543 em.info.error {padding-left:20px; background:url(../images/exclamation.png) no-repeat 0 50%;}
544
544
545 textarea.text_cf {width:90%;}
545 textarea.text_cf {width:90%;}
546
546
547 /* Project members tab */
547 /* Project members tab */
548 div#tab-content-members .splitcontentleft, div#tab-content-memberships .splitcontentleft, div#tab-content-users .splitcontentleft { width: 64% }
548 div#tab-content-members .splitcontentleft, div#tab-content-memberships .splitcontentleft, div#tab-content-users .splitcontentleft { width: 64% }
549 div#tab-content-members .splitcontentright, div#tab-content-memberships .splitcontentright, div#tab-content-users .splitcontentright { width: 34% }
549 div#tab-content-members .splitcontentright, div#tab-content-memberships .splitcontentright, div#tab-content-users .splitcontentright { width: 34% }
550 div#tab-content-members fieldset, div#tab-content-memberships fieldset, div#tab-content-users fieldset { padding:1em; margin-bottom: 1em; }
550 div#tab-content-members fieldset, div#tab-content-memberships fieldset, div#tab-content-users fieldset { padding:1em; margin-bottom: 1em; }
551 div#tab-content-members fieldset legend, div#tab-content-memberships fieldset legend, div#tab-content-users fieldset legend { font-weight: bold; }
551 div#tab-content-members fieldset legend, div#tab-content-memberships fieldset legend, div#tab-content-users fieldset legend { font-weight: bold; }
552 div#tab-content-members fieldset label, div#tab-content-memberships fieldset label, div#tab-content-users fieldset label { display: block; }
552 div#tab-content-members fieldset label, div#tab-content-memberships fieldset label, div#tab-content-users fieldset label { display: block; }
553 div#tab-content-members fieldset div, div#tab-content-users fieldset div { max-height: 400px; overflow:auto; }
553 div#tab-content-members fieldset div, div#tab-content-users fieldset div { max-height: 400px; overflow:auto; }
554
554
555 #users_for_watcher {height: 200px; overflow:auto;}
555 #users_for_watcher {height: 200px; overflow:auto;}
556 #users_for_watcher label {display: block;}
556 #users_for_watcher label {display: block;}
557
557
558 table.members td.group { padding-left: 20px; background: url(../images/group.png) no-repeat 0% 50%; }
558 table.members td.group { padding-left: 20px; background: url(../images/group.png) no-repeat 0% 50%; }
559
559
560 input#principal_search, input#user_search {width:100%}
560 input#principal_search, input#user_search {width:100%}
561 input#principal_search, input#user_search {
561 input#principal_search, input#user_search {
562 background: url(../images/magnifier.png) no-repeat 2px 50%; padding-left:20px;
562 background: url(../images/magnifier.png) no-repeat 2px 50%; padding-left:20px;
563 border:1px solid #9EB1C2; border-radius:3px; height:1.5em; width:95%;
563 border:1px solid #9EB1C2; border-radius:3px; height:1.5em; width:95%;
564 }
564 }
565 input#principal_search.ajax-loading, input#user_search.ajax-loading {
565 input#principal_search.ajax-loading, input#user_search.ajax-loading {
566 background-image: url(../images/loading.gif);
566 background-image: url(../images/loading.gif);
567 }
567 }
568
568
569 * html div#tab-content-members fieldset div { height: 450px; }
569 * html div#tab-content-members fieldset div { height: 450px; }
570
570
571 /***** Flash & error messages ****/
571 /***** Flash & error messages ****/
572 #errorExplanation, div.flash, .nodata, .warning, .conflict {
572 #errorExplanation, div.flash, .nodata, .warning, .conflict {
573 padding: 4px 4px 4px 30px;
573 padding: 4px 4px 4px 30px;
574 margin-bottom: 12px;
574 margin-bottom: 12px;
575 font-size: 1.1em;
575 font-size: 1.1em;
576 border: 2px solid;
576 border: 2px solid;
577 }
577 }
578
578
579 div.flash {margin-top: 8px;}
579 div.flash {margin-top: 8px;}
580
580
581 div.flash.error, #errorExplanation {
581 div.flash.error, #errorExplanation {
582 background: url(../images/exclamation.png) 8px 50% no-repeat;
582 background: url(../images/exclamation.png) 8px 50% no-repeat;
583 background-color: #ffe3e3;
583 background-color: #ffe3e3;
584 border-color: #dd0000;
584 border-color: #dd0000;
585 color: #880000;
585 color: #880000;
586 }
586 }
587
587
588 div.flash.notice {
588 div.flash.notice {
589 background: url(../images/true.png) 8px 5px no-repeat;
589 background: url(../images/true.png) 8px 5px no-repeat;
590 background-color: #dfffdf;
590 background-color: #dfffdf;
591 border-color: #9fcf9f;
591 border-color: #9fcf9f;
592 color: #005f00;
592 color: #005f00;
593 }
593 }
594
594
595 div.flash.warning, .conflict {
595 div.flash.warning, .conflict {
596 background: url(../images/warning.png) 8px 5px no-repeat;
596 background: url(../images/warning.png) 8px 5px no-repeat;
597 background-color: #FFEBC1;
597 background-color: #FFEBC1;
598 border-color: #FDBF3B;
598 border-color: #FDBF3B;
599 color: #A6750C;
599 color: #A6750C;
600 text-align: left;
600 text-align: left;
601 }
601 }
602
602
603 .nodata, .warning {
603 .nodata, .warning {
604 text-align: center;
604 text-align: center;
605 background-color: #FFEBC1;
605 background-color: #FFEBC1;
606 border-color: #FDBF3B;
606 border-color: #FDBF3B;
607 color: #A6750C;
607 color: #A6750C;
608 }
608 }
609
609
610 #errorExplanation ul { font-size: 0.9em;}
610 #errorExplanation ul { font-size: 0.9em;}
611 #errorExplanation h2, #errorExplanation p { display: none; }
611 #errorExplanation h2, #errorExplanation p { display: none; }
612
612
613 .conflict-details {font-size:80%;}
613 .conflict-details {font-size:80%;}
614
614
615 /***** Ajax indicator ******/
615 /***** Ajax indicator ******/
616 #ajax-indicator {
616 #ajax-indicator {
617 position: absolute; /* fixed not supported by IE */
617 position: absolute; /* fixed not supported by IE */
618 background-color:#eee;
618 background-color:#eee;
619 border: 1px solid #bbb;
619 border: 1px solid #bbb;
620 top:35%;
620 top:35%;
621 left:40%;
621 left:40%;
622 width:20%;
622 width:20%;
623 font-weight:bold;
623 font-weight:bold;
624 text-align:center;
624 text-align:center;
625 padding:0.6em;
625 padding:0.6em;
626 z-index:100;
626 z-index:100;
627 opacity: 0.5;
627 opacity: 0.5;
628 }
628 }
629
629
630 html>body #ajax-indicator { position: fixed; }
630 html>body #ajax-indicator { position: fixed; }
631
631
632 #ajax-indicator span {
632 #ajax-indicator span {
633 background-position: 0% 40%;
633 background-position: 0% 40%;
634 background-repeat: no-repeat;
634 background-repeat: no-repeat;
635 background-image: url(../images/loading.gif);
635 background-image: url(../images/loading.gif);
636 padding-left: 26px;
636 padding-left: 26px;
637 vertical-align: bottom;
637 vertical-align: bottom;
638 }
638 }
639
639
640 /***** Calendar *****/
640 /***** Calendar *****/
641 table.cal {border-collapse: collapse; width: 100%; margin: 0px 0 6px 0;border: 1px solid #d7d7d7;}
641 table.cal {border-collapse: collapse; width: 100%; margin: 0px 0 6px 0;border: 1px solid #d7d7d7;}
642 table.cal thead th {width: 14%; background-color:#EEEEEE; padding: 4px; }
642 table.cal thead th {width: 14%; background-color:#EEEEEE; padding: 4px; }
643 table.cal thead th.week-number {width: auto;}
643 table.cal thead th.week-number {width: auto;}
644 table.cal tbody tr {height: 100px;}
644 table.cal tbody tr {height: 100px;}
645 table.cal td {border: 1px solid #d7d7d7; vertical-align: top; font-size: 0.9em;}
645 table.cal td {border: 1px solid #d7d7d7; vertical-align: top; font-size: 0.9em;}
646 table.cal td.week-number { background-color:#EEEEEE; padding: 4px; border:none; font-size: 1em;}
646 table.cal td.week-number { background-color:#EEEEEE; padding: 4px; border:none; font-size: 1em;}
647 table.cal td p.day-num {font-size: 1.1em; text-align:right;}
647 table.cal td p.day-num {font-size: 1.1em; text-align:right;}
648 table.cal td.odd p.day-num {color: #bbb;}
648 table.cal td.odd p.day-num {color: #bbb;}
649 table.cal td.today {background:#ffffdd;}
649 table.cal td.today {background:#ffffdd;}
650 table.cal td.today p.day-num {font-weight: bold;}
650 table.cal td.today p.day-num {font-weight: bold;}
651 table.cal .starting a, p.cal.legend .starting {background: url(../images/bullet_go.png) no-repeat -1px -2px; padding-left:16px;}
651 table.cal .starting a, p.cal.legend .starting {background: url(../images/bullet_go.png) no-repeat -1px -2px; padding-left:16px;}
652 table.cal .ending a, p.cal.legend .ending {background: url(../images/bullet_end.png) no-repeat -1px -2px; padding-left:16px;}
652 table.cal .ending a, p.cal.legend .ending {background: url(../images/bullet_end.png) no-repeat -1px -2px; padding-left:16px;}
653 table.cal .starting.ending a, p.cal.legend .starting.ending {background: url(../images/bullet_diamond.png) no-repeat -1px -2px; padding-left:16px;}
653 table.cal .starting.ending a, p.cal.legend .starting.ending {background: url(../images/bullet_diamond.png) no-repeat -1px -2px; padding-left:16px;}
654 p.cal.legend span {display:block;}
654 p.cal.legend span {display:block;}
655
655
656 /***** Tooltips ******/
656 /***** Tooltips ******/
657 .tooltip{position:relative;z-index:24;}
657 .tooltip{position:relative;z-index:24;}
658 .tooltip:hover{z-index:25;color:#000;}
658 .tooltip:hover{z-index:25;color:#000;}
659 .tooltip span.tip{display: none; text-align:left;}
659 .tooltip span.tip{display: none; text-align:left;}
660
660
661 div.tooltip:hover span.tip{
661 div.tooltip:hover span.tip{
662 display:block;
662 display:block;
663 position:absolute;
663 position:absolute;
664 top:12px; left:24px; width:270px;
664 top:12px; left:24px; width:270px;
665 border:1px solid #555;
665 border:1px solid #555;
666 background-color:#fff;
666 background-color:#fff;
667 padding: 4px;
667 padding: 4px;
668 font-size: 0.8em;
668 font-size: 0.8em;
669 color:#505050;
669 color:#505050;
670 }
670 }
671
671
672 img.ui-datepicker-trigger {
672 img.ui-datepicker-trigger {
673 cursor: pointer;
673 cursor: pointer;
674 vertical-align: middle;
674 vertical-align: middle;
675 margin-left: 4px;
675 margin-left: 4px;
676 }
676 }
677
677
678 /***** Progress bar *****/
678 /***** Progress bar *****/
679 table.progress {
679 table.progress {
680 border-collapse: collapse;
680 border-collapse: collapse;
681 border-spacing: 0pt;
681 border-spacing: 0pt;
682 empty-cells: show;
682 empty-cells: show;
683 text-align: center;
683 text-align: center;
684 float:left;
684 float:left;
685 margin: 1px 6px 1px 0px;
685 margin: 1px 6px 1px 0px;
686 }
686 }
687
687
688 table.progress td { height: 1em; }
688 table.progress td { height: 1em; }
689 table.progress td.closed { background: #BAE0BA none repeat scroll 0%; }
689 table.progress td.closed { background: #BAE0BA none repeat scroll 0%; }
690 table.progress td.done { background: #D3EDD3 none repeat scroll 0%; }
690 table.progress td.done { background: #D3EDD3 none repeat scroll 0%; }
691 table.progress td.todo { background: #eee none repeat scroll 0%; }
691 table.progress td.todo { background: #eee none repeat scroll 0%; }
692 p.pourcent {font-size: 80%;}
692 p.pourcent {font-size: 80%;}
693 p.progress-info {clear: left; font-size: 80%; margin-top:-4px; color:#777;}
693 p.progress-info {clear: left; font-size: 80%; margin-top:-4px; color:#777;}
694
694
695 #roadmap table.progress td { height: 1.2em; }
695 #roadmap table.progress td { height: 1.2em; }
696 /***** Tabs *****/
696 /***** Tabs *****/
697 #content .tabs {height: 2.6em; margin-bottom:1.2em; position:relative; overflow:hidden;}
697 #content .tabs {height: 2.6em; margin-bottom:1.2em; position:relative; overflow:hidden;}
698 #content .tabs ul {margin:0; position:absolute; bottom:0; padding-left:0.5em; width: 2000px; border-bottom: 1px solid #bbbbbb;}
698 #content .tabs ul {margin:0; position:absolute; bottom:0; padding-left:0.5em; width: 2000px; border-bottom: 1px solid #bbbbbb;}
699 #content .tabs ul li {
699 #content .tabs ul li {
700 float:left;
700 float:left;
701 list-style-type:none;
701 list-style-type:none;
702 white-space:nowrap;
702 white-space:nowrap;
703 margin-right:4px;
703 margin-right:4px;
704 background:#fff;
704 background:#fff;
705 position:relative;
705 position:relative;
706 margin-bottom:-1px;
706 margin-bottom:-1px;
707 }
707 }
708 #content .tabs ul li a{
708 #content .tabs ul li a{
709 display:block;
709 display:block;
710 font-size: 0.9em;
710 font-size: 0.9em;
711 text-decoration:none;
711 text-decoration:none;
712 line-height:1.3em;
712 line-height:1.3em;
713 padding:4px 6px 4px 6px;
713 padding:4px 6px 4px 6px;
714 border: 1px solid #ccc;
714 border: 1px solid #ccc;
715 border-bottom: 1px solid #bbbbbb;
715 border-bottom: 1px solid #bbbbbb;
716 background-color: #f6f6f6;
716 background-color: #f6f6f6;
717 color:#999;
717 color:#999;
718 font-weight:bold;
718 font-weight:bold;
719 border-top-left-radius:3px;
719 border-top-left-radius:3px;
720 border-top-right-radius:3px;
720 border-top-right-radius:3px;
721 }
721 }
722
722
723 #content .tabs ul li a:hover {
723 #content .tabs ul li a:hover {
724 background-color: #ffffdd;
724 background-color: #ffffdd;
725 text-decoration:none;
725 text-decoration:none;
726 }
726 }
727
727
728 #content .tabs ul li a.selected {
728 #content .tabs ul li a.selected {
729 background-color: #fff;
729 background-color: #fff;
730 border: 1px solid #bbbbbb;
730 border: 1px solid #bbbbbb;
731 border-bottom: 1px solid #fff;
731 border-bottom: 1px solid #fff;
732 color:#444;
732 color:#444;
733 }
733 }
734
734
735 #content .tabs ul li a.selected:hover {background-color: #fff;}
735 #content .tabs ul li a.selected:hover {background-color: #fff;}
736
736
737 div.tabs-buttons { position:absolute; right: 0; width: 48px; height: 24px; background: white; bottom: 0; border-bottom: 1px solid #bbbbbb; }
737 div.tabs-buttons { position:absolute; right: 0; width: 48px; height: 24px; background: white; bottom: 0; border-bottom: 1px solid #bbbbbb; }
738
738
739 button.tab-left, button.tab-right {
739 button.tab-left, button.tab-right {
740 font-size: 0.9em;
740 font-size: 0.9em;
741 cursor: pointer;
741 cursor: pointer;
742 height:24px;
742 height:24px;
743 border: 1px solid #ccc;
743 border: 1px solid #ccc;
744 border-bottom: 1px solid #bbbbbb;
744 border-bottom: 1px solid #bbbbbb;
745 position:absolute;
745 position:absolute;
746 padding:4px;
746 padding:4px;
747 width: 20px;
747 width: 20px;
748 bottom: -1px;
748 bottom: -1px;
749 }
749 }
750
750
751 button.tab-left {
751 button.tab-left {
752 right: 20px;
752 right: 20px;
753 background: #eeeeee url(../images/bullet_arrow_left.png) no-repeat 50% 50%;
753 background: #eeeeee url(../images/bullet_arrow_left.png) no-repeat 50% 50%;
754 border-top-left-radius:3px;
754 border-top-left-radius:3px;
755 }
755 }
756
756
757 button.tab-right {
757 button.tab-right {
758 right: 0;
758 right: 0;
759 background: #eeeeee url(../images/bullet_arrow_right.png) no-repeat 50% 50%;
759 background: #eeeeee url(../images/bullet_arrow_right.png) no-repeat 50% 50%;
760 border-top-right-radius:3px;
760 border-top-right-radius:3px;
761 }
761 }
762
762
763 /***** Diff *****/
763 /***** Diff *****/
764 .diff_out { background: #fcc; }
764 .diff_out { background: #fcc; }
765 .diff_out span { background: #faa; }
765 .diff_out span { background: #faa; }
766 .diff_in { background: #cfc; }
766 .diff_in { background: #cfc; }
767 .diff_in span { background: #afa; }
767 .diff_in span { background: #afa; }
768
768
769 .text-diff {
769 .text-diff {
770 padding: 1em;
770 padding: 1em;
771 background-color:#f6f6f6;
771 background-color:#f6f6f6;
772 color:#505050;
772 color:#505050;
773 border: 1px solid #e4e4e4;
773 border: 1px solid #e4e4e4;
774 }
774 }
775
775
776 /***** Wiki *****/
776 /***** Wiki *****/
777 div.wiki table {
777 div.wiki table {
778 border-collapse: collapse;
778 border-collapse: collapse;
779 margin-bottom: 1em;
779 margin-bottom: 1em;
780 }
780 }
781
781
782 div.wiki table, div.wiki td, div.wiki th {
782 div.wiki table, div.wiki td, div.wiki th {
783 border: 1px solid #bbb;
783 border: 1px solid #bbb;
784 padding: 4px;
784 padding: 4px;
785 }
785 }
786
786
787 div.wiki .noborder, div.wiki .noborder td, div.wiki .noborder th {border:0;}
787 div.wiki .noborder, div.wiki .noborder td, div.wiki .noborder th {border:0;}
788
788
789 div.wiki .external {
789 div.wiki .external {
790 background-position: 0% 60%;
790 background-position: 0% 60%;
791 background-repeat: no-repeat;
791 background-repeat: no-repeat;
792 padding-left: 12px;
792 padding-left: 12px;
793 background-image: url(../images/external.png);
793 background-image: url(../images/external.png);
794 }
794 }
795
795
796 div.wiki a.new {color: #b73535;}
796 div.wiki a.new {color: #b73535;}
797
797
798 div.wiki ul, div.wiki ol {margin-bottom:1em;}
798 div.wiki ul, div.wiki ol {margin-bottom:1em;}
799
799
800 div.wiki pre {
800 div.wiki pre {
801 margin: 1em 1em 1em 1.6em;
801 margin: 1em 1em 1em 1.6em;
802 padding: 8px;
802 padding: 8px;
803 background-color: #fafafa;
803 background-color: #fafafa;
804 border: 1px solid #e2e2e2;
804 border: 1px solid #e2e2e2;
805 width:auto;
805 width:auto;
806 overflow-x: auto;
806 overflow-x: auto;
807 overflow-y: hidden;
807 overflow-y: hidden;
808 }
808 }
809
809
810 div.wiki ul.toc {
810 div.wiki ul.toc {
811 background-color: #ffffdd;
811 background-color: #ffffdd;
812 border: 1px solid #e4e4e4;
812 border: 1px solid #e4e4e4;
813 padding: 4px;
813 padding: 4px;
814 line-height: 1.2em;
814 line-height: 1.2em;
815 margin-bottom: 12px;
815 margin-bottom: 12px;
816 margin-right: 12px;
816 margin-right: 12px;
817 margin-left: 0;
817 margin-left: 0;
818 display: table
818 display: table
819 }
819 }
820 * html div.wiki ul.toc { width: 50%; } /* IE6 doesn't autosize div */
820 * html div.wiki ul.toc { width: 50%; } /* IE6 doesn't autosize div */
821
821
822 div.wiki ul.toc.right { float: right; margin-left: 12px; margin-right: 0; width: auto; }
822 div.wiki ul.toc.right { float: right; margin-left: 12px; margin-right: 0; width: auto; }
823 div.wiki ul.toc.left { float: left; margin-right: 12px; margin-left: 0; width: auto; }
823 div.wiki ul.toc.left { float: left; margin-right: 12px; margin-left: 0; width: auto; }
824 div.wiki ul.toc ul { margin: 0; padding: 0; }
824 div.wiki ul.toc ul { margin: 0; padding: 0; }
825 div.wiki ul.toc li {list-style-type:none; margin: 0; font-size:12px;}
825 div.wiki ul.toc li {list-style-type:none; margin: 0; font-size:12px;}
826 div.wiki ul.toc li li {margin-left: 1.5em; font-size:10px;}
826 div.wiki ul.toc li li {margin-left: 1.5em; font-size:10px;}
827 div.wiki ul.toc a {
827 div.wiki ul.toc a {
828 font-size: 0.9em;
828 font-size: 0.9em;
829 font-weight: normal;
829 font-weight: normal;
830 text-decoration: none;
830 text-decoration: none;
831 color: #606060;
831 color: #606060;
832 }
832 }
833 div.wiki ul.toc a:hover { color: #c61a1a; text-decoration: underline;}
833 div.wiki ul.toc a:hover { color: #c61a1a; text-decoration: underline;}
834
834
835 a.wiki-anchor { display: none; margin-left: 6px; text-decoration: none; }
835 a.wiki-anchor { display: none; margin-left: 6px; text-decoration: none; }
836 a.wiki-anchor:hover { color: #aaa !important; text-decoration: none; }
836 a.wiki-anchor:hover { color: #aaa !important; text-decoration: none; }
837 h1:hover a.wiki-anchor, h2:hover a.wiki-anchor, h3:hover a.wiki-anchor { display: inline; color: #ddd; }
837 h1:hover a.wiki-anchor, h2:hover a.wiki-anchor, h3:hover a.wiki-anchor { display: inline; color: #ddd; }
838
838
839 div.wiki img { vertical-align: middle; }
839 div.wiki img { vertical-align: middle; }
840
840
841 /***** My page layout *****/
841 /***** My page layout *****/
842 .block-receiver {
842 .block-receiver {
843 border:1px dashed #c0c0c0;
843 border:1px dashed #c0c0c0;
844 margin-bottom: 20px;
844 margin-bottom: 20px;
845 padding: 15px 0 15px 0;
845 padding: 15px 0 15px 0;
846 }
846 }
847
847
848 .mypage-box {
848 .mypage-box {
849 margin:0 0 20px 0;
849 margin:0 0 20px 0;
850 color:#505050;
850 color:#505050;
851 line-height:1.5em;
851 line-height:1.5em;
852 }
852 }
853
853
854 .handle {cursor: move;}
854 .handle {cursor: move;}
855
855
856 a.close-icon {
856 a.close-icon {
857 display:block;
857 display:block;
858 margin-top:3px;
858 margin-top:3px;
859 overflow:hidden;
859 overflow:hidden;
860 width:12px;
860 width:12px;
861 height:12px;
861 height:12px;
862 background-repeat: no-repeat;
862 background-repeat: no-repeat;
863 cursor:pointer;
863 cursor:pointer;
864 background-image:url('../images/close.png');
864 background-image:url('../images/close.png');
865 }
865 }
866 a.close-icon:hover {background-image:url('../images/close_hl.png');}
866 a.close-icon:hover {background-image:url('../images/close_hl.png');}
867
867
868 /***** Gantt chart *****/
868 /***** Gantt chart *****/
869 .gantt_hdr {
869 .gantt_hdr {
870 position:absolute;
870 position:absolute;
871 top:0;
871 top:0;
872 height:16px;
872 height:16px;
873 border-top: 1px solid #c0c0c0;
873 border-top: 1px solid #c0c0c0;
874 border-bottom: 1px solid #c0c0c0;
874 border-bottom: 1px solid #c0c0c0;
875 border-right: 1px solid #c0c0c0;
875 border-right: 1px solid #c0c0c0;
876 text-align: center;
876 text-align: center;
877 overflow: hidden;
877 overflow: hidden;
878 }
878 }
879
879
880 .gantt_subjects { font-size: 0.8em; }
880 .gantt_subjects { font-size: 0.8em; }
881 .gantt_subjects div { line-height:16px;height:16px;overflow:hidden;white-space:nowrap;text-overflow: ellipsis; }
881 .gantt_subjects div { line-height:16px;height:16px;overflow:hidden;white-space:nowrap;text-overflow: ellipsis; }
882
882
883 .task {
883 .task {
884 position: absolute;
884 position: absolute;
885 height:8px;
885 height:8px;
886 font-size:0.8em;
886 font-size:0.8em;
887 color:#888;
887 color:#888;
888 padding:0;
888 padding:0;
889 margin:0;
889 margin:0;
890 line-height:16px;
890 line-height:16px;
891 white-space:nowrap;
891 white-space:nowrap;
892 }
892 }
893
893
894 .task.label {width:100%;}
894 .task.label {width:100%;}
895 .task.label.project, .task.label.version { font-weight: bold; }
895 .task.label.project, .task.label.version { font-weight: bold; }
896
896
897 .task_late { background:#f66 url(../images/task_late.png); border: 1px solid #f66; }
897 .task_late { background:#f66 url(../images/task_late.png); border: 1px solid #f66; }
898 .task_done { background:#00c600 url(../images/task_done.png); border: 1px solid #00c600; }
898 .task_done { background:#00c600 url(../images/task_done.png); border: 1px solid #00c600; }
899 .task_todo { background:#aaa url(../images/task_todo.png); border: 1px solid #aaa; }
899 .task_todo { background:#aaa url(../images/task_todo.png); border: 1px solid #aaa; }
900
900
901 .task_todo.parent { background: #888; border: 1px solid #888; height: 3px;}
901 .task_todo.parent { background: #888; border: 1px solid #888; height: 3px;}
902 .task_late.parent, .task_done.parent { height: 3px;}
902 .task_late.parent, .task_done.parent { height: 3px;}
903 .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;}
903 .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;}
904 .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;}
904 .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;}
905
905
906 .version.task_late { background:#f66 url(../images/milestone_late.png); border: 1px solid #f66; height: 2px; margin-top: 3px;}
906 .version.task_late { background:#f66 url(../images/milestone_late.png); border: 1px solid #f66; height: 2px; margin-top: 3px;}
907 .version.task_done { background:#00c600 url(../images/milestone_done.png); border: 1px solid #00c600; height: 2px; margin-top: 3px;}
907 .version.task_done { background:#00c600 url(../images/milestone_done.png); border: 1px solid #00c600; height: 2px; margin-top: 3px;}
908 .version.task_todo { background:#fff url(../images/milestone_todo.png); border: 1px solid #fff; height: 2px; margin-top: 3px;}
908 .version.task_todo { background:#fff url(../images/milestone_todo.png); border: 1px solid #fff; height: 2px; margin-top: 3px;}
909 .version.marker { background-image:url(../images/version_marker.png); background-repeat: no-repeat; border: 0; margin-left: -4px; margin-top: 1px; }
909 .version.marker { background-image:url(../images/version_marker.png); background-repeat: no-repeat; border: 0; margin-left: -4px; margin-top: 1px; }
910
910
911 .project.task_late { background:#f66 url(../images/milestone_late.png); border: 1px solid #f66; height: 2px; margin-top: 3px;}
911 .project.task_late { background:#f66 url(../images/milestone_late.png); border: 1px solid #f66; height: 2px; margin-top: 3px;}
912 .project.task_done { background:#00c600 url(../images/milestone_done.png); border: 1px solid #00c600; height: 2px; margin-top: 3px;}
912 .project.task_done { background:#00c600 url(../images/milestone_done.png); border: 1px solid #00c600; height: 2px; margin-top: 3px;}
913 .project.task_todo { background:#fff url(../images/milestone_todo.png); border: 1px solid #fff; height: 2px; margin-top: 3px;}
913 .project.task_todo { background:#fff url(../images/milestone_todo.png); border: 1px solid #fff; height: 2px; margin-top: 3px;}
914 .project.marker { background-image:url(../images/project_marker.png); background-repeat: no-repeat; border: 0; margin-left: -4px; margin-top: 1px; }
914 .project.marker { background-image:url(../images/project_marker.png); background-repeat: no-repeat; border: 0; margin-left: -4px; margin-top: 1px; }
915
915
916 .version-behind-schedule a, .issue-behind-schedule a {color: #f66914;}
916 .version-behind-schedule a, .issue-behind-schedule a {color: #f66914;}
917 .version-overdue a, .issue-overdue a, .project-overdue a {color: #f00;}
917 .version-overdue a, .issue-overdue a, .project-overdue a {color: #f00;}
918
918
919 /***** Icons *****/
919 /***** Icons *****/
920 .icon {
920 .icon {
921 background-position: 0% 50%;
921 background-position: 0% 50%;
922 background-repeat: no-repeat;
922 background-repeat: no-repeat;
923 padding-left: 20px;
923 padding-left: 20px;
924 padding-top: 2px;
924 padding-top: 2px;
925 padding-bottom: 3px;
925 padding-bottom: 3px;
926 }
926 }
927
927
928 .icon-add { background-image: url(../images/add.png); }
928 .icon-add { background-image: url(../images/add.png); }
929 .icon-edit { background-image: url(../images/edit.png); }
929 .icon-edit { background-image: url(../images/edit.png); }
930 .icon-copy { background-image: url(../images/copy.png); }
930 .icon-copy { background-image: url(../images/copy.png); }
931 .icon-duplicate { background-image: url(../images/duplicate.png); }
931 .icon-duplicate { background-image: url(../images/duplicate.png); }
932 .icon-del { background-image: url(../images/delete.png); }
932 .icon-del { background-image: url(../images/delete.png); }
933 .icon-move { background-image: url(../images/move.png); }
933 .icon-move { background-image: url(../images/move.png); }
934 .icon-save { background-image: url(../images/save.png); }
934 .icon-save { background-image: url(../images/save.png); }
935 .icon-cancel { background-image: url(../images/cancel.png); }
935 .icon-cancel { background-image: url(../images/cancel.png); }
936 .icon-multiple { background-image: url(../images/table_multiple.png); }
936 .icon-multiple { background-image: url(../images/table_multiple.png); }
937 .icon-folder { background-image: url(../images/folder.png); }
937 .icon-folder { background-image: url(../images/folder.png); }
938 .open .icon-folder { background-image: url(../images/folder_open.png); }
938 .open .icon-folder { background-image: url(../images/folder_open.png); }
939 .icon-package { background-image: url(../images/package.png); }
939 .icon-package { background-image: url(../images/package.png); }
940 .icon-user { background-image: url(../images/user.png); }
940 .icon-user { background-image: url(../images/user.png); }
941 .icon-projects { background-image: url(../images/projects.png); }
941 .icon-projects { background-image: url(../images/projects.png); }
942 .icon-help { background-image: url(../images/help.png); }
942 .icon-help { background-image: url(../images/help.png); }
943 .icon-attachment { background-image: url(../images/attachment.png); }
943 .icon-attachment { background-image: url(../images/attachment.png); }
944 .icon-history { background-image: url(../images/history.png); }
944 .icon-history { background-image: url(../images/history.png); }
945 .icon-time { background-image: url(../images/time.png); }
945 .icon-time { background-image: url(../images/time.png); }
946 .icon-time-add { background-image: url(../images/time_add.png); }
946 .icon-time-add { background-image: url(../images/time_add.png); }
947 .icon-stats { background-image: url(../images/stats.png); }
947 .icon-stats { background-image: url(../images/stats.png); }
948 .icon-warning { background-image: url(../images/warning.png); }
948 .icon-warning { background-image: url(../images/warning.png); }
949 .icon-fav { background-image: url(../images/fav.png); }
949 .icon-fav { background-image: url(../images/fav.png); }
950 .icon-fav-off { background-image: url(../images/fav_off.png); }
950 .icon-fav-off { background-image: url(../images/fav_off.png); }
951 .icon-reload { background-image: url(../images/reload.png); }
951 .icon-reload { background-image: url(../images/reload.png); }
952 .icon-lock { background-image: url(../images/locked.png); }
952 .icon-lock { background-image: url(../images/locked.png); }
953 .icon-unlock { background-image: url(../images/unlock.png); }
953 .icon-unlock { background-image: url(../images/unlock.png); }
954 .icon-checked { background-image: url(../images/true.png); }
954 .icon-checked { background-image: url(../images/true.png); }
955 .icon-details { background-image: url(../images/zoom_in.png); }
955 .icon-details { background-image: url(../images/zoom_in.png); }
956 .icon-report { background-image: url(../images/report.png); }
956 .icon-report { background-image: url(../images/report.png); }
957 .icon-comment { background-image: url(../images/comment.png); }
957 .icon-comment { background-image: url(../images/comment.png); }
958 .icon-summary { background-image: url(../images/lightning.png); }
958 .icon-summary { background-image: url(../images/lightning.png); }
959 .icon-server-authentication { background-image: url(../images/server_key.png); }
959 .icon-server-authentication { background-image: url(../images/server_key.png); }
960 .icon-issue { background-image: url(../images/ticket.png); }
960 .icon-issue { background-image: url(../images/ticket.png); }
961 .icon-zoom-in { background-image: url(../images/zoom_in.png); }
961 .icon-zoom-in { background-image: url(../images/zoom_in.png); }
962 .icon-zoom-out { background-image: url(../images/zoom_out.png); }
962 .icon-zoom-out { background-image: url(../images/zoom_out.png); }
963 .icon-passwd { background-image: url(../images/textfield_key.png); }
963 .icon-passwd { background-image: url(../images/textfield_key.png); }
964 .icon-test { background-image: url(../images/bullet_go.png); }
964 .icon-test { background-image: url(../images/bullet_go.png); }
965
965
966 .icon-file { background-image: url(../images/files/default.png); }
966 .icon-file { background-image: url(../images/files/default.png); }
967 .icon-file.text-plain { background-image: url(../images/files/text.png); }
967 .icon-file.text-plain { background-image: url(../images/files/text.png); }
968 .icon-file.text-x-c { background-image: url(../images/files/c.png); }
968 .icon-file.text-x-c { background-image: url(../images/files/c.png); }
969 .icon-file.text-x-csharp { background-image: url(../images/files/csharp.png); }
969 .icon-file.text-x-csharp { background-image: url(../images/files/csharp.png); }
970 .icon-file.text-x-java { background-image: url(../images/files/java.png); }
970 .icon-file.text-x-java { background-image: url(../images/files/java.png); }
971 .icon-file.text-x-javascript { background-image: url(../images/files/js.png); }
971 .icon-file.text-x-javascript { background-image: url(../images/files/js.png); }
972 .icon-file.text-x-php { background-image: url(../images/files/php.png); }
972 .icon-file.text-x-php { background-image: url(../images/files/php.png); }
973 .icon-file.text-x-ruby { background-image: url(../images/files/ruby.png); }
973 .icon-file.text-x-ruby { background-image: url(../images/files/ruby.png); }
974 .icon-file.text-xml { background-image: url(../images/files/xml.png); }
974 .icon-file.text-xml { background-image: url(../images/files/xml.png); }
975 .icon-file.text-css { background-image: url(../images/files/css.png); }
975 .icon-file.text-css { background-image: url(../images/files/css.png); }
976 .icon-file.text-html { background-image: url(../images/files/html.png); }
976 .icon-file.text-html { background-image: url(../images/files/html.png); }
977 .icon-file.image-gif { background-image: url(../images/files/image.png); }
977 .icon-file.image-gif { background-image: url(../images/files/image.png); }
978 .icon-file.image-jpeg { background-image: url(../images/files/image.png); }
978 .icon-file.image-jpeg { background-image: url(../images/files/image.png); }
979 .icon-file.image-png { background-image: url(../images/files/image.png); }
979 .icon-file.image-png { background-image: url(../images/files/image.png); }
980 .icon-file.image-tiff { background-image: url(../images/files/image.png); }
980 .icon-file.image-tiff { background-image: url(../images/files/image.png); }
981 .icon-file.application-pdf { background-image: url(../images/files/pdf.png); }
981 .icon-file.application-pdf { background-image: url(../images/files/pdf.png); }
982 .icon-file.application-zip { background-image: url(../images/files/zip.png); }
982 .icon-file.application-zip { background-image: url(../images/files/zip.png); }
983 .icon-file.application-x-gzip { background-image: url(../images/files/zip.png); }
983 .icon-file.application-x-gzip { background-image: url(../images/files/zip.png); }
984
984
985 img.gravatar {
985 img.gravatar {
986 padding: 2px;
986 padding: 2px;
987 border: solid 1px #d5d5d5;
987 border: solid 1px #d5d5d5;
988 background: #fff;
988 background: #fff;
989 vertical-align: middle;
989 vertical-align: middle;
990 }
990 }
991
991
992 div.issue img.gravatar {
992 div.issue img.gravatar {
993 float: left;
993 float: left;
994 margin: 0 6px 0 0;
994 margin: 0 6px 0 0;
995 padding: 5px;
995 padding: 5px;
996 }
996 }
997
997
998 div.issue table img.gravatar {
998 div.issue table img.gravatar {
999 height: 14px;
999 height: 14px;
1000 width: 14px;
1000 width: 14px;
1001 padding: 2px;
1001 padding: 2px;
1002 float: left;
1002 float: left;
1003 margin: 0 0.5em 0 0;
1003 margin: 0 0.5em 0 0;
1004 }
1004 }
1005
1005
1006 h2 img.gravatar {margin: -2px 4px -4px 0;}
1006 h2 img.gravatar {margin: -2px 4px -4px 0;}
1007 h3 img.gravatar {margin: -4px 4px -4px 0;}
1007 h3 img.gravatar {margin: -4px 4px -4px 0;}
1008 h4 img.gravatar {margin: -6px 4px -4px 0;}
1008 h4 img.gravatar {margin: -6px 4px -4px 0;}
1009 td.username img.gravatar {margin: 0 0.5em 0 0; vertical-align: top;}
1009 td.username img.gravatar {margin: 0 0.5em 0 0; vertical-align: top;}
1010 #activity dt img.gravatar {float: left; margin: 0 1em 1em 0;}
1010 #activity dt img.gravatar {float: left; margin: 0 1em 1em 0;}
1011 /* Used on 12px Gravatar img tags without the icon background */
1011 /* Used on 12px Gravatar img tags without the icon background */
1012 .icon-gravatar {float: left; margin-right: 4px;}
1012 .icon-gravatar {float: left; margin-right: 4px;}
1013
1013
1014 #activity dt, .journal {clear: left;}
1014 #activity dt, .journal {clear: left;}
1015
1015
1016 .journal-link {float: right;}
1016 .journal-link {float: right;}
1017
1017
1018 h2 img { vertical-align:middle; }
1018 h2 img { vertical-align:middle; }
1019
1019
1020 .hascontextmenu { cursor: context-menu; }
1020 .hascontextmenu { cursor: context-menu; }
1021
1021
1022 /************* CodeRay styles *************/
1022 /************* CodeRay styles *************/
1023 .syntaxhl div {display: inline;}
1023 .syntaxhl div {display: inline;}
1024 .syntaxhl .line-numbers {padding: 2px 4px 2px 4px; background-color: #eee; margin:0px 5px 0px 0px;}
1024 .syntaxhl .line-numbers {padding: 2px 4px 2px 4px; background-color: #eee; margin:0px 5px 0px 0px;}
1025 .syntaxhl .code pre { overflow: auto }
1025 .syntaxhl .code pre { overflow: auto }
1026 .syntaxhl .debug { color: white !important; background: blue !important; }
1026 .syntaxhl .debug { color: white !important; background: blue !important; }
1027
1027
1028 .syntaxhl .annotation { color:#007 }
1028 .syntaxhl .annotation { color:#007 }
1029 .syntaxhl .attribute-name { color:#b48 }
1029 .syntaxhl .attribute-name { color:#b48 }
1030 .syntaxhl .attribute-value { color:#700 }
1030 .syntaxhl .attribute-value { color:#700 }
1031 .syntaxhl .binary { color:#509 }
1031 .syntaxhl .binary { color:#509 }
1032 .syntaxhl .char .content { color:#D20 }
1032 .syntaxhl .char .content { color:#D20 }
1033 .syntaxhl .char .delimiter { color:#710 }
1033 .syntaxhl .char .delimiter { color:#710 }
1034 .syntaxhl .char { color:#D20 }
1034 .syntaxhl .char { color:#D20 }
1035 .syntaxhl .class { color:#258; font-weight:bold }
1035 .syntaxhl .class { color:#258; font-weight:bold }
1036 .syntaxhl .class-variable { color:#369 }
1036 .syntaxhl .class-variable { color:#369 }
1037 .syntaxhl .color { color:#0A0 }
1037 .syntaxhl .color { color:#0A0 }
1038 .syntaxhl .comment { color:#385 }
1038 .syntaxhl .comment { color:#385 }
1039 .syntaxhl .comment .char { color:#385 }
1039 .syntaxhl .comment .char { color:#385 }
1040 .syntaxhl .comment .delimiter { color:#385 }
1040 .syntaxhl .comment .delimiter { color:#385 }
1041 .syntaxhl .complex { color:#A08 }
1041 .syntaxhl .complex { color:#A08 }
1042 .syntaxhl .constant { color:#258; font-weight:bold }
1042 .syntaxhl .constant { color:#258; font-weight:bold }
1043 .syntaxhl .decorator { color:#B0B }
1043 .syntaxhl .decorator { color:#B0B }
1044 .syntaxhl .definition { color:#099; font-weight:bold }
1044 .syntaxhl .definition { color:#099; font-weight:bold }
1045 .syntaxhl .delimiter { color:black }
1045 .syntaxhl .delimiter { color:black }
1046 .syntaxhl .directive { color:#088; font-weight:bold }
1046 .syntaxhl .directive { color:#088; font-weight:bold }
1047 .syntaxhl .doc { color:#970 }
1047 .syntaxhl .doc { color:#970 }
1048 .syntaxhl .doc-string { color:#D42; font-weight:bold }
1048 .syntaxhl .doc-string { color:#D42; font-weight:bold }
1049 .syntaxhl .doctype { color:#34b }
1049 .syntaxhl .doctype { color:#34b }
1050 .syntaxhl .entity { color:#800; font-weight:bold }
1050 .syntaxhl .entity { color:#800; font-weight:bold }
1051 .syntaxhl .error { color:#F00; background-color:#FAA }
1051 .syntaxhl .error { color:#F00; background-color:#FAA }
1052 .syntaxhl .escape { color:#666 }
1052 .syntaxhl .escape { color:#666 }
1053 .syntaxhl .exception { color:#C00; font-weight:bold }
1053 .syntaxhl .exception { color:#C00; font-weight:bold }
1054 .syntaxhl .float { color:#06D }
1054 .syntaxhl .float { color:#06D }
1055 .syntaxhl .function { color:#06B; font-weight:bold }
1055 .syntaxhl .function { color:#06B; font-weight:bold }
1056 .syntaxhl .global-variable { color:#d70 }
1056 .syntaxhl .global-variable { color:#d70 }
1057 .syntaxhl .hex { color:#02b }
1057 .syntaxhl .hex { color:#02b }
1058 .syntaxhl .imaginary { color:#f00 }
1058 .syntaxhl .imaginary { color:#f00 }
1059 .syntaxhl .include { color:#B44; font-weight:bold }
1059 .syntaxhl .include { color:#B44; font-weight:bold }
1060 .syntaxhl .inline { background-color: hsla(0,0%,0%,0.07); color: black }
1060 .syntaxhl .inline { background-color: hsla(0,0%,0%,0.07); color: black }
1061 .syntaxhl .inline-delimiter { font-weight: bold; color: #666 }
1061 .syntaxhl .inline-delimiter { font-weight: bold; color: #666 }
1062 .syntaxhl .instance-variable { color:#33B }
1062 .syntaxhl .instance-variable { color:#33B }
1063 .syntaxhl .integer { color:#06D }
1063 .syntaxhl .integer { color:#06D }
1064 .syntaxhl .key .char { color: #60f }
1064 .syntaxhl .key .char { color: #60f }
1065 .syntaxhl .key .delimiter { color: #404 }
1065 .syntaxhl .key .delimiter { color: #404 }
1066 .syntaxhl .key { color: #606 }
1066 .syntaxhl .key { color: #606 }
1067 .syntaxhl .keyword { color:#939; font-weight:bold }
1067 .syntaxhl .keyword { color:#939; font-weight:bold }
1068 .syntaxhl .label { color:#970; font-weight:bold }
1068 .syntaxhl .label { color:#970; font-weight:bold }
1069 .syntaxhl .local-variable { color:#963 }
1069 .syntaxhl .local-variable { color:#963 }
1070 .syntaxhl .namespace { color:#707; font-weight:bold }
1070 .syntaxhl .namespace { color:#707; font-weight:bold }
1071 .syntaxhl .octal { color:#40E }
1071 .syntaxhl .octal { color:#40E }
1072 .syntaxhl .operator { }
1072 .syntaxhl .operator { }
1073 .syntaxhl .predefined { color:#369; font-weight:bold }
1073 .syntaxhl .predefined { color:#369; font-weight:bold }
1074 .syntaxhl .predefined-constant { color:#069 }
1074 .syntaxhl .predefined-constant { color:#069 }
1075 .syntaxhl .predefined-type { color:#0a5; font-weight:bold }
1075 .syntaxhl .predefined-type { color:#0a5; font-weight:bold }
1076 .syntaxhl .preprocessor { color:#579 }
1076 .syntaxhl .preprocessor { color:#579 }
1077 .syntaxhl .pseudo-class { color:#00C; font-weight:bold }
1077 .syntaxhl .pseudo-class { color:#00C; font-weight:bold }
1078 .syntaxhl .regexp .content { color:#808 }
1078 .syntaxhl .regexp .content { color:#808 }
1079 .syntaxhl .regexp .delimiter { color:#404 }
1079 .syntaxhl .regexp .delimiter { color:#404 }
1080 .syntaxhl .regexp .modifier { color:#C2C }
1080 .syntaxhl .regexp .modifier { color:#C2C }
1081 .syntaxhl .regexp { background-color:hsla(300,100%,50%,0.06); }
1081 .syntaxhl .regexp { background-color:hsla(300,100%,50%,0.06); }
1082 .syntaxhl .reserved { color:#080; font-weight:bold }
1082 .syntaxhl .reserved { color:#080; font-weight:bold }
1083 .syntaxhl .shell .content { color:#2B2 }
1083 .syntaxhl .shell .content { color:#2B2 }
1084 .syntaxhl .shell .delimiter { color:#161 }
1084 .syntaxhl .shell .delimiter { color:#161 }
1085 .syntaxhl .shell { background-color:hsla(120,100%,50%,0.06); }
1085 .syntaxhl .shell { background-color:hsla(120,100%,50%,0.06); }
1086 .syntaxhl .string .char { color: #46a }
1086 .syntaxhl .string .char { color: #46a }
1087 .syntaxhl .string .content { color: #46a }
1087 .syntaxhl .string .content { color: #46a }
1088 .syntaxhl .string .delimiter { color: #46a }
1088 .syntaxhl .string .delimiter { color: #46a }
1089 .syntaxhl .string .modifier { color: #46a }
1089 .syntaxhl .string .modifier { color: #46a }
1090 .syntaxhl .symbol .content { color:#d33 }
1090 .syntaxhl .symbol .content { color:#d33 }
1091 .syntaxhl .symbol .delimiter { color:#d33 }
1091 .syntaxhl .symbol .delimiter { color:#d33 }
1092 .syntaxhl .symbol { color:#d33 }
1092 .syntaxhl .symbol { color:#d33 }
1093 .syntaxhl .tag { color:#070 }
1093 .syntaxhl .tag { color:#070 }
1094 .syntaxhl .type { color:#339; font-weight:bold }
1094 .syntaxhl .type { color:#339; font-weight:bold }
1095 .syntaxhl .value { color: #088; }
1095 .syntaxhl .value { color: #088; }
1096 .syntaxhl .variable { color:#037 }
1096 .syntaxhl .variable { color:#037 }
1097
1097
1098 .syntaxhl .insert { background: hsla(120,100%,50%,0.12) }
1098 .syntaxhl .insert { background: hsla(120,100%,50%,0.12) }
1099 .syntaxhl .delete { background: hsla(0,100%,50%,0.12) }
1099 .syntaxhl .delete { background: hsla(0,100%,50%,0.12) }
1100 .syntaxhl .change { color: #bbf; background: #007; }
1100 .syntaxhl .change { color: #bbf; background: #007; }
1101 .syntaxhl .head { color: #f8f; background: #505 }
1101 .syntaxhl .head { color: #f8f; background: #505 }
1102 .syntaxhl .head .filename { color: white; }
1102 .syntaxhl .head .filename { color: white; }
1103
1103
1104 .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; }
1104 .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; }
1105 .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; }
1105 .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; }
1106
1106
1107 .syntaxhl .insert .insert { color: #0c0; background:transparent; font-weight:bold }
1107 .syntaxhl .insert .insert { color: #0c0; background:transparent; font-weight:bold }
1108 .syntaxhl .delete .delete { color: #c00; background:transparent; font-weight:bold }
1108 .syntaxhl .delete .delete { color: #c00; background:transparent; font-weight:bold }
1109 .syntaxhl .change .change { color: #88f }
1109 .syntaxhl .change .change { color: #88f }
1110 .syntaxhl .head .head { color: #f4f }
1110 .syntaxhl .head .head { color: #f4f }
1111
1111
1112 /***** Media print specific styles *****/
1112 /***** Media print specific styles *****/
1113 @media print {
1113 @media print {
1114 #top-menu, #header, #main-menu, #sidebar, #footer, .contextual, .other-formats { display:none; }
1114 #top-menu, #header, #main-menu, #sidebar, #footer, .contextual, .other-formats { display:none; }
1115 #main { background: #fff; }
1115 #main { background: #fff; }
1116 #content { width: 99%; margin: 0; padding: 0; border: 0; background: #fff; overflow: visible !important;}
1116 #content { width: 99%; margin: 0; padding: 0; border: 0; background: #fff; overflow: visible !important;}
1117 #wiki_add_attachment { display:none; }
1117 #wiki_add_attachment { display:none; }
1118 .hide-when-print { display: none; }
1118 .hide-when-print { display: none; }
1119 .autoscroll {overflow-x: visible;}
1119 .autoscroll {overflow-x: visible;}
1120 table.list {margin-top:0.5em;}
1120 table.list {margin-top:0.5em;}
1121 table.list th, table.list td {border: 1px solid #aaa;}
1121 table.list th, table.list td {border: 1px solid #aaa;}
1122 }
1122 }
1123
1123
1124 /* Accessibility specific styles */
1124 /* Accessibility specific styles */
1125 .hidden-for-sighted {
1125 .hidden-for-sighted {
1126 position:absolute;
1126 position:absolute;
1127 left:-10000px;
1127 left:-10000px;
1128 top:auto;
1128 top:auto;
1129 width:1px;
1129 width:1px;
1130 height:1px;
1130 height:1px;
1131 overflow:hidden;
1131 overflow:hidden;
1132 }
1132 }
General Comments 0
You need to be logged in to leave comments. Login now