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