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