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