##// END OF EJS Templates
Adds specific css class for information in forms....
Jean-Philippe Lang -
r8634:e4ef0b04efab
parent child
Show More
@@ -1,15 +1,15
1 1 <h2><%=l(:label_password_lost)%></h2>
2 2
3 3 <%= error_messages_for 'user' %>
4 4
5 5 <% form_tag({:token => @token.value}) do %>
6 6 <div class="box tabular">
7 7 <p><label for="new_password"><%=l(:field_new_password)%> <span class="required">*</span></label>
8 <%= password_field_tag 'new_password', nil, :size => 25 %><br />
9 <em><%= l(:text_caracters_minimum, :count => Setting.password_min_length) %></em></p>
8 <%= password_field_tag 'new_password', nil, :size => 25 %>
9 <em class="info"><%= l(:text_caracters_minimum, :count => Setting.password_min_length) %></em></p>
10 10
11 11 <p><label for="new_password_confirmation"><%=l(:field_password_confirmation)%> <span class="required">*</span></label>
12 12 <%= password_field_tag 'new_password_confirmation', nil, :size => 25 %></p>
13 13 </div>
14 14 <p><%= submit_tag l(:button_save) %></p>
15 15 <% end %>
@@ -1,31 +1,31
1 1 <h2><%=l(:label_register)%> <%=link_to l(:label_login_with_open_id_option), signin_url if Setting.openid? %></h2>
2 2
3 3 <% labelled_form_for @user, :url => {:action => 'register'} do |f| %>
4 4 <%= error_messages_for 'user' %>
5 5
6 6 <div class="box tabular">
7 7 <% if @user.auth_source_id.nil? %>
8 8 <p><%= f.text_field :login, :size => 25, :required => true %></p>
9 9
10 <p><%= f.password_field :password, :size => 25, :required => true %><br />
11 <em><%= l(:text_caracters_minimum, :count => Setting.password_min_length) %></em></p>
10 <p><%= f.password_field :password, :size => 25, :required => true %>
11 <em class="info"><%= l(:text_caracters_minimum, :count => Setting.password_min_length) %></em></p>
12 12
13 13 <p><%= f.password_field :password_confirmation, :size => 25, :required => true %></p>
14 14 <% end %>
15 15
16 16 <p><%= f.text_field :firstname, :required => true %></p>
17 17 <p><%= f.text_field :lastname, :required => true %></p>
18 18 <p><%= f.text_field :mail, :required => true %></p>
19 19 <p><%= f.select :language, lang_options_for_select %></p>
20 20
21 21 <% if Setting.openid? %>
22 22 <p><%= f.text_field :identity_url %></p>
23 23 <% end %>
24 24
25 25 <% @user.custom_field_values.select {|v| v.editable? || v.required?}.each do |value| %>
26 26 <p><%= custom_field_tag_with_label :user, value %></p>
27 27 <% end %>
28 28 </div>
29 29
30 30 <%= submit_tag l(:button_submit) %>
31 31 <% end %>
@@ -1,128 +1,128
1 1 <%= error_messages_for 'custom_field' %>
2 2
3 3 <script type="text/javascript">
4 4 //<![CDATA[
5 5 function toggle_custom_field_format() {
6 6 format = $("custom_field_field_format");
7 7 p_length = $("custom_field_min_length");
8 8 p_regexp = $("custom_field_regexp");
9 9 p_values = $("custom_field_possible_values");
10 10 p_searchable = $("custom_field_searchable");
11 11 p_default = $("custom_field_default_value");
12 12 p_multiple = $("custom_field_multiple");
13 13
14 14 p_default.setAttribute('type','text');
15 15 Element.show(p_default.parentNode);
16 16
17 17 switch (format.value) {
18 18 case "list":
19 19 Element.hide(p_length.parentNode);
20 20 Element.hide(p_regexp.parentNode);
21 21 if (p_searchable) Element.show(p_searchable.parentNode);
22 22 Element.show(p_values.parentNode);
23 23 Element.show(p_multiple.parentNode);
24 24 break;
25 25 case "bool":
26 26 p_default.setAttribute('type','checkbox');
27 27 Element.hide(p_length.parentNode);
28 28 Element.hide(p_regexp.parentNode);
29 29 if (p_searchable) Element.hide(p_searchable.parentNode);
30 30 Element.hide(p_values.parentNode);
31 31 Element.hide(p_multiple.parentNode);
32 32 break;
33 33 case "date":
34 34 Element.hide(p_length.parentNode);
35 35 Element.hide(p_regexp.parentNode);
36 36 if (p_searchable) Element.hide(p_searchable.parentNode);
37 37 Element.hide(p_values.parentNode);
38 38 Element.hide(p_multiple.parentNode);
39 39 break;
40 40 case "float":
41 41 case "int":
42 42 Element.show(p_length.parentNode);
43 43 Element.show(p_regexp.parentNode);
44 44 if (p_searchable) Element.hide(p_searchable.parentNode);
45 45 Element.hide(p_values.parentNode);
46 46 Element.hide(p_multiple.parentNode);
47 47 break;
48 48 case "user":
49 49 case "version":
50 50 Element.hide(p_length.parentNode);
51 51 Element.hide(p_regexp.parentNode);
52 52 if (p_searchable) Element.hide(p_searchable.parentNode);
53 53 Element.hide(p_values.parentNode);
54 54 Element.hide(p_default.parentNode);
55 55 Element.show(p_multiple.parentNode);
56 56 break;
57 57 default:
58 58 Element.show(p_length.parentNode);
59 59 Element.show(p_regexp.parentNode);
60 60 if (p_searchable) Element.show(p_searchable.parentNode);
61 61 Element.hide(p_values.parentNode);
62 62 Element.hide(p_multiple.parentNode);
63 63 break;
64 64 }
65 65 }
66 66
67 67 //]]>
68 68 </script>
69 69
70 70 <div class="box tabular">
71 71 <p><%= f.text_field :name, :required => true %></p>
72 72 <p><%= f.select :field_format, custom_field_formats_for_select(@custom_field), {}, :onchange => "toggle_custom_field_format();",
73 73 :disabled => !@custom_field.new_record? %></p>
74 74 <p><%= f.check_box :multiple, :disabled => @custom_field.multiple && !@custom_field.new_record? %></p>
75 75 <p><label for="custom_field_min_length"><%=l(:label_min_max_length)%></label>
76 76 <%= f.text_field :min_length, :size => 5, :no_label => true %> -
77 77 <%= f.text_field :max_length, :size => 5, :no_label => true %><br />(<%=l(:text_min_max_length_info)%>)</p>
78 78 <p><%= f.text_field :regexp, :size => 50 %><br />(<%=l(:text_regexp_info)%>)</p>
79 79 <p>
80 80 <%= f.text_area :possible_values, :value => @custom_field.possible_values.to_a.join("\n"), :rows => 15 %>
81 <br /><em><%= l(:text_custom_field_possible_values_info) %></em>
81 <em class="info"><%= l(:text_custom_field_possible_values_info) %></em>
82 82 </p>
83 83 <p><%= @custom_field.field_format == 'bool' ? f.check_box(:default_value) : f.text_field(:default_value) %></p>
84 84 <%= call_hook(:view_custom_fields_form_upper_box, :custom_field => @custom_field, :form => f) %>
85 85 </div>
86 86
87 87 <div class="box tabular">
88 88 <% case @custom_field.class.name
89 89 when "IssueCustomField" %>
90 90
91 91 <fieldset><legend><%=l(:label_tracker_plural)%></legend>
92 92 <% Tracker.all.each do |tracker| %>
93 93 <%= check_box_tag "custom_field[tracker_ids][]",
94 94 tracker.id,
95 95 (@custom_field.trackers.include? tracker),
96 96 :id => "custom_field_tracker_ids_#{tracker.id}" %>
97 97 <label class="no-css" for="custom_field_tracker_ids_<%=tracker.id%>">
98 98 <%= h(tracker.name) %>
99 99 </label>
100 100 <% end %>
101 101 <%= hidden_field_tag "custom_field[tracker_ids][]", '' %>
102 102 </fieldset>
103 103 &nbsp;
104 104 <p><%= f.check_box :is_required %></p>
105 105 <p><%= f.check_box :is_for_all %></p>
106 106 <p><%= f.check_box :is_filter %></p>
107 107 <p><%= f.check_box :searchable %></p>
108 108
109 109 <% when "UserCustomField" %>
110 110 <p><%= f.check_box :is_required %></p>
111 111 <p><%= f.check_box :visible %></p>
112 112 <p><%= f.check_box :editable %></p>
113 113
114 114 <% when "ProjectCustomField" %>
115 115 <p><%= f.check_box :is_required %></p>
116 116 <p><%= f.check_box :visible %></p>
117 117 <p><%= f.check_box :searchable %></p>
118 118
119 119 <% when "TimeEntryCustomField" %>
120 120 <p><%= f.check_box :is_required %></p>
121 121
122 122 <% else %>
123 123 <p><%= f.check_box :is_required %></p>
124 124
125 125 <% end %>
126 126 <%= call_hook(:"view_custom_fields_form_#{@custom_field.type.to_s.underscore}", :custom_field => @custom_field, :form => f) %>
127 127 </div>
128 128 <%= javascript_tag "toggle_custom_field_format();" %>
@@ -1,22 +1,22
1 1 <h2><%=l(:button_change_password)%></h2>
2 2
3 3 <%= error_messages_for 'user' %>
4 4
5 5 <% form_tag({}, :class => "tabular") do %>
6 6 <div class="box">
7 7 <p><label for="password"><%=l(:field_password)%> <span class="required">*</span></label>
8 8 <%= password_field_tag 'password', nil, :size => 25 %></p>
9 9
10 10 <p><label for="new_password"><%=l(:field_new_password)%> <span class="required">*</span></label>
11 <%= password_field_tag 'new_password', nil, :size => 25 %><br />
12 <em><%= l(:text_caracters_minimum, :count => Setting.password_min_length) %></em></p>
11 <%= password_field_tag 'new_password', nil, :size => 25 %>
12 <em class="info"><%= l(:text_caracters_minimum, :count => Setting.password_min_length) %></em></p>
13 13
14 14 <p><label for="new_password_confirmation"><%=l(:field_password_confirmation)%> <span class="required">*</span></label>
15 15 <%= password_field_tag 'new_password_confirmation', nil, :size => 25 %></p>
16 16 </div>
17 17 <%= submit_tag l(:button_apply) %>
18 18 <% end %>
19 19
20 20 <% content_for :sidebar do %>
21 21 <%= render :partial => 'sidebar' %>
22 22 <% end %>
@@ -1,64 +1,64
1 1 <%= error_messages_for 'project' %>
2 2
3 3 <div class="box tabular">
4 4 <!--[form:project]-->
5 5 <p><%= f.text_field :name, :required => true, :size => 60 %></p>
6 6
7 7 <% unless @project.allowed_parents.compact.empty? %>
8 8 <p><%= label(:project, :parent_id, l(:field_parent)) %><%= parent_project_select_tag(@project) %></p>
9 9 <% end %>
10 10
11 11 <p><%= f.text_area :description, :rows => 5, :class => 'wiki-edit' %></p>
12 12 <p><%= f.text_field :identifier, :required => true, :size => 60, :disabled => @project.identifier_frozen? %>
13 13 <% unless @project.identifier_frozen? %>
14 <br /><em><%= l(:text_length_between, :min => 1, :max => Project::IDENTIFIER_MAX_LENGTH) %> <%= l(:text_project_identifier_info).html_safe %></em>
14 <em class="info"><%= l(:text_length_between, :min => 1, :max => Project::IDENTIFIER_MAX_LENGTH) %> <%= l(:text_project_identifier_info).html_safe %></em>
15 15 <% end %></p>
16 16 <p><%= f.text_field :homepage, :size => 60 %></p>
17 17 <p><%= f.check_box :is_public %></p>
18 18 <%= wikitoolbar_for 'project_description' %>
19 19
20 20 <% @project.custom_field_values.each do |value| %>
21 21 <p><%= custom_field_tag_with_label :project, value %></p>
22 22 <% end %>
23 23 <%= call_hook(:view_projects_form, :project => @project, :form => f) %>
24 24 </div>
25 25
26 26 <% if @project.new_record? %>
27 27 <fieldset class="box tabular"><legend><%= l(:label_module_plural) %></legend>
28 28 <% Redmine::AccessControl.available_project_modules.each do |m| %>
29 29 <label class="floating">
30 30 <%= check_box_tag 'project[enabled_module_names][]', m, @project.module_enabled?(m), :id => "project_enabled_module_names_#{m}" %>
31 31 <%= l_or_humanize(m, :prefix => "project_module_") %>
32 32 </label>
33 33 <% end %>
34 34 <%= hidden_field_tag 'project[enabled_module_names][]', '' %>
35 35 <%= javascript_tag 'observeProjectModules()' %>
36 36 </fieldset>
37 37 <% end %>
38 38
39 39 <% if @project.new_record? || @project.module_enabled?('issue_tracking') %>
40 40 <% unless @trackers.empty? %>
41 41 <fieldset class="box tabular" id="project_trackers"><legend><%=l(:label_tracker_plural)%></legend>
42 42 <% @trackers.each do |tracker| %>
43 43 <label class="floating">
44 44 <%= check_box_tag 'project[tracker_ids][]', tracker.id, @project.trackers.include?(tracker) %>
45 45 <%=h tracker %>
46 46 </label>
47 47 <% end %>
48 48 <%= hidden_field_tag 'project[tracker_ids][]', '' %>
49 49 </fieldset>
50 50 <% end %>
51 51
52 52 <% unless @issue_custom_fields.empty? %>
53 53 <fieldset class="box tabular" id="project_issue_custom_fields"><legend><%=l(:label_custom_field_plural)%></legend>
54 54 <% @issue_custom_fields.each do |custom_field| %>
55 55 <label class="floating">
56 56 <%= check_box_tag 'project[issue_custom_field_ids][]', custom_field.id, (@project.all_issue_custom_fields.include? custom_field), (custom_field.is_for_all? ? {:disabled => "disabled"} : {}) %>
57 57 <%=h custom_field.name %>
58 58 </label>
59 59 <% end %>
60 60 <%= hidden_field_tag 'project[issue_custom_field_ids][]', '' %>
61 61 </fieldset>
62 62 <% end %>
63 63 <% end %>
64 64 <!--[eoform:project]-->
@@ -1,17 +1,17
1 1 <% labelled_remote_form_for :wiki, @wiki,
2 2 :url => { :controller => 'wikis', :action => 'edit', :id => @project } do |f| %>
3 3
4 4 <%= error_messages_for 'wiki' %>
5 5
6 6 <div class="box tabular">
7 <p><%= f.text_field :start_page, :size => 60, :required => true %><br />
8 <em><%= l(:text_unallowed_characters) %>: , . / ? ; : |</em></p>
7 <p><%= f.text_field :start_page, :size => 60, :required => true %>
8 <em class="info"><%= l(:text_unallowed_characters) %>: , . / ? ; : |</em></p>
9 9 </div>
10 10
11 11 <div class="contextual">
12 12 <%= link_to(l(:button_delete), {:controller => 'wikis', :action => 'destroy', :id => @project},
13 13 :class => 'icon icon-del') if @wiki && !@wiki.new_record? %>
14 14 </div>
15 15
16 16 <%= submit_tag((@wiki.nil? || @wiki.new_record?) ? l(:button_create) : l(:button_save)) %>
17 17 <% end %>
@@ -1,25 +1,24
1 1 <%= error_messages_for 'repository' %>
2 2
3 3 <div class="box tabular">
4 4 <p>
5 5 <%= label_tag('repository_scm', l(:label_scm)) %><%= scm_select_tag(@repository) %>
6 6 <% if @repository && ! @repository.class.scm_available %>
7 <br />
8 <em><%= content_tag 'span', l(:text_scm_command_not_available), :class => 'error' %></em>
7 <em class="info"><%= content_tag 'span', l(:text_scm_command_not_available), :class => 'error' %></em>
9 8 <% end %>
10 9 </p>
11 10
12 11 <p><%= f.check_box :is_default, :label => :field_repository_is_default %></p>
13 12 <p><%= f.text_field :identifier %></p>
14 13
15 14 <% button_disabled = true %>
16 15 <% if @repository %>
17 16 <% button_disabled = ! @repository.class.scm_available %>
18 17 <%= repository_field_tags(f, @repository)%>
19 18 <% end %>
20 19 </div>
21 20
22 21 <p>
23 22 <%= submit_tag(@repository.new_record? ? l(:button_create) : l(:button_save), :disabled => button_disabled) %>
24 23 <%= link_to l(:button_cancel), settings_project_path(@project, :tab => 'repositories') %>
25 24 </p>
@@ -1,40 +1,40
1 1 <% form_tag({:action => 'edit'}) do %>
2 2
3 3 <div class="box tabular settings">
4 4 <p><%= setting_text_field :app_title, :size => 30 %></p>
5 5
6 6 <p><%= setting_text_area :welcome_text, :cols => 60, :rows => 5, :class => 'wiki-edit' %></p>
7 7 <%= wikitoolbar_for 'settings_welcome_text' %>
8 8
9 9 <p><%= setting_text_field :attachment_max_size, :size => 6 %> <%= l(:"number.human.storage_units.units.kb") %></p>
10 10
11 <p><%= setting_text_field :per_page_options, :size => 20 %><br />
12 <em><%= l(:text_comma_separated) %></em></p>
11 <p><%= setting_text_field :per_page_options, :size => 20 %>
12 <em class="info"><%= l(:text_comma_separated) %></em></p>
13 13
14 14 <p><%= setting_text_field :activity_days_default, :size => 6 %> <%= l(:label_day_plural) %></p>
15 15
16 <p><%= setting_text_field :host_name, :size => 60 %><br />
17 <em><%= l(:label_example) %>: <%= @guessed_host_and_path %></em></p>
16 <p><%= setting_text_field :host_name, :size => 60 %>
17 <em class="info"><%= l(:label_example) %>: <%= @guessed_host_and_path %></em></p>
18 18
19 19 <p><%= setting_select :protocol, [['HTTP', 'http'], ['HTTPS', 'https']] %></p>
20 20
21 21 <p><%= setting_select :text_formatting, Redmine::WikiFormatting.format_names.collect{|name| [name, name.to_s]}, :blank => :label_none %></p>
22 22
23 23 <p><%= setting_check_box :cache_formatted_text %></p>
24 24
25 25 <p><%= setting_select :wiki_compression, [['Gzip', 'gzip']], :blank => :label_none %></p>
26 26
27 27 <p><%= setting_text_field :feeds_limit, :size => 6 %></p>
28 28
29 29 <p><%= setting_text_field :file_max_size_displayed, :size => 6 %> <%= l(:"number.human.storage_units.units.kb") %></p>
30 30
31 31 <p><%= setting_text_field :diff_max_lines_displayed, :size => 6 %></p>
32 32
33 <p><%= setting_text_field :repositories_encodings, :size => 60 %><br />
34 <em><%= l(:text_comma_separated) %></em></p>
33 <p><%= setting_text_field :repositories_encodings, :size => 60 %>
34 <em class="info"><%= l(:text_comma_separated) %></em></p>
35 35
36 36 <%= call_hook(:view_settings_general_form) %>
37 37 </div>
38 38
39 39 <%= submit_tag l(:button_save) %>
40 40 <% end %>
@@ -1,23 +1,23
1 1 <% form_tag({:action => 'edit', :tab => 'mail_handler'}) do %>
2 2
3 3 <div class="box tabular settings">
4 4 <p>
5 5 <%= setting_text_area :mail_handler_body_delimiters, :rows => 5 %>
6 <br /><em><%= l(:text_line_separated) %></em>
6 <em class="info"><%= l(:text_line_separated) %></em>
7 7 </p>
8 8 </div>
9 9
10 10 <div class="box tabular settings">
11 11 <p><%= setting_check_box :mail_handler_api_enabled,
12 12 :onclick => "if (this.checked) { Form.Element.enable('settings_mail_handler_api_key'); } else { Form.Element.disable('settings_mail_handler_api_key'); }"%></p>
13 13
14 14 <p><%= setting_text_field :mail_handler_api_key, :size => 30,
15 15 :id => 'settings_mail_handler_api_key',
16 16 :disabled => !Setting.mail_handler_api_enabled? %>
17 17 <%= link_to_function l(:label_generate_key), "if ($('settings_mail_handler_api_key').disabled == false) { $('settings_mail_handler_api_key').value = randomKey(20) }" %>
18 18 </p>
19 19 </div>
20 20
21 21 <%= submit_tag l(:button_save) %>
22 22
23 23 <% end %>
@@ -1,97 +1,97
1 1 <% form_tag({:action => 'edit', :tab => 'repositories'}) do %>
2 2
3 3 <fieldset class="box settings enabled_scm">
4 4 <%= hidden_field_tag 'settings[enabled_scm][]', '' %>
5 5 <legend><%= l(:setting_enabled_scm) %></legend>
6 6 <table>
7 7 <tr>
8 8 <th></th>
9 9 <th><%= l(:text_scm_command) %></th>
10 10 <th><%= l(:text_scm_command_version) %></th>
11 11 </tr>
12 12 <% Redmine::Scm::Base.all.collect do |choice| %>
13 13 <% scm_class = "Repository::#{choice}".constantize %>
14 14 <% text, value = (choice.is_a?(Array) ? choice : [choice, choice]) %>
15 15 <% setting = :enabled_scm %>
16 16 <% enabled = Setting.send(setting).include?(value) %>
17 17 <tr>
18 18 <td class="scm_name">
19 19 <%=
20 20 check_box_tag(
21 21 "settings[#{setting}][]",
22 22 value,
23 23 enabled)
24 24 %>
25 25 <%= text.to_s %>
26 26 </td>
27 27 <td>
28 28 <% if enabled %>
29 29 <%=
30 30 image_tag(
31 31 (scm_class.scm_available ? 'true.png' : 'exclamation.png'),
32 32 :style => "vertical-align:bottom;"
33 33 )
34 34 %>
35 35 <%= scm_class.scm_command %>
36 36 <% end %>
37 37 </td>
38 38 <td>
39 39 <%= scm_class.scm_version_string if enabled %>
40 40 </td>
41 41 </tr>
42 42 <% end %>
43 43 </table>
44 <p><em><%= l(:text_scm_config) %></em></p>
44 <p><em class="info"><%= l(:text_scm_config) %></em></p>
45 45 </fieldset>
46 46
47 47 <div class="box tabular settings">
48 48 <p><%= setting_check_box :autofetch_changesets %></p>
49 49
50 50 <p><%= setting_check_box :sys_api_enabled,
51 51 :onclick =>
52 52 "if (this.checked) { Form.Element.enable('settings_sys_api_key'); } else { Form.Element.disable('settings_sys_api_key'); }" %></p>
53 53
54 54 <p><%= setting_text_field :sys_api_key,
55 55 :size => 30,
56 56 :id => 'settings_sys_api_key',
57 57 :disabled => !Setting.sys_api_enabled?,
58 58 :label => :setting_mail_handler_api_key %>
59 59 <%= link_to_function l(:label_generate_key),
60 60 "if ($('settings_sys_api_key').disabled == false) { $('settings_sys_api_key').value = randomKey(20) }" %>
61 61 </p>
62 62
63 63 <p><%= setting_text_field :repository_log_display_limit, :size => 6 %></p>
64 64 </div>
65 65
66 66 <fieldset class="box tabular settings">
67 67 <legend><%= l(:text_issues_ref_in_commit_messages) %></legend>
68 <p><%= setting_text_field :commit_ref_keywords, :size => 30 %><br />
69 <em><%= l(:text_comma_separated) %></em></p>
68 <p><%= setting_text_field :commit_ref_keywords, :size => 30 %>
69 <em class="info"><%= l(:text_comma_separated) %></em></p>
70 70
71 71 <p><%= setting_text_field :commit_fix_keywords, :size => 30 %>
72 72 &nbsp;<%= l(:label_applied_status) %>: <%= setting_select :commit_fix_status_id,
73 73 [["", 0]] +
74 74 IssueStatus.find(:all).collect{
75 75 |status| [status.name, status.id.to_s]
76 76 },
77 77 :label => false %>
78 78 &nbsp;<%= l(:field_done_ratio) %>: <%= setting_select :commit_fix_done_ratio,
79 79 (0..10).to_a.collect {|r| ["#{r*10} %", "#{r*10}"] },
80 80 :blank => :label_no_change_option,
81 81 :label => false %>
82 <br /><em><%= l(:text_comma_separated) %></em></p>
82 <em class="info"><%= l(:text_comma_separated) %></em></p>
83 83
84 84 <p><%= setting_check_box :commit_cross_project_ref %></p>
85 85
86 86 <p><%= setting_check_box :commit_logtime_enabled,
87 87 :onclick =>
88 88 "if (this.checked) { Form.Element.enable('settings_commit_logtime_activity_id'); } else { Form.Element.disable('settings_commit_logtime_activity_id'); }"%></p>
89 89
90 90 <p><%= setting_select :commit_logtime_activity_id,
91 91 [[l(:label_default), 0]] +
92 92 TimeEntryActivity.shared.active.collect{|activity| [activity.name, activity.id.to_s]},
93 93 :disabled => !Setting.commit_logtime_enabled?%></p>
94 94 </fieldset>
95 95
96 96 <%= submit_tag l(:button_save) %>
97 97 <% end %>
@@ -1,51 +1,51
1 1 <%= error_messages_for 'user' %>
2 2
3 3 <div id="user_form">
4 4 <!--[form:user]-->
5 5 <div class="splitcontentleft">
6 6 <fieldset class="box tabular">
7 7 <legend><%=l(:label_information_plural)%></legend>
8 8 <p><%= f.text_field :login, :required => true, :size => 25 %></p>
9 9 <p><%= f.text_field :firstname, :required => true %></p>
10 10 <p><%= f.text_field :lastname, :required => true %></p>
11 11 <p><%= f.text_field :mail, :required => true %></p>
12 12 <p><%= f.select :language, lang_options_for_select %></p>
13 13 <% if Setting.openid? %>
14 14 <p><%= f.text_field :identity_url %></p>
15 15 <% end %>
16 16
17 17 <% @user.custom_field_values.each do |value| %>
18 18 <p><%= custom_field_tag_with_label :user, value %></p>
19 19 <% end %>
20 20
21 21 <p><%= f.check_box :admin, :disabled => (@user == User.current) %></p>
22 22 <%= call_hook(:view_users_form, :user => @user, :form => f) %>
23 23 </fieldset>
24 24
25 25 <fieldset class="box tabular">
26 26 <legend><%=l(:label_authentication)%></legend>
27 27 <% unless @auth_sources.empty? %>
28 28 <p><%= f.select :auth_source_id, ([[l(:label_internal), ""]] + @auth_sources.collect { |a| [a.name, a.id] }), {}, :onchange => "if (this.value=='') {Element.show('password_fields');} else {Element.hide('password_fields');}" %></p>
29 29 <% end %>
30 30 <div id="password_fields" style="<%= 'display:none;' if @user.auth_source %>">
31 <p><%= f.password_field :password, :required => true, :size => 25 %><br />
32 <em><%= l(:text_caracters_minimum, :count => Setting.password_min_length) %></em></p>
31 <p><%= f.password_field :password, :required => true, :size => 25 %>
32 <em class="info"><%= l(:text_caracters_minimum, :count => Setting.password_min_length) %></em></p>
33 33 <p><%= f.password_field :password_confirmation, :required => true, :size => 25 %></p>
34 34 </div>
35 35 </fieldset>
36 36 </div>
37 37
38 38 <div class="splitcontentright">
39 39 <fieldset class="box">
40 40 <legend><%=l(:field_mail_notification)%></legend>
41 41 <%= render :partial => 'users/mail_notifications' %>
42 42 </fieldset>
43 43
44 44 <fieldset class="box tabular">
45 45 <legend><%=l(:label_preferences)%></legend>
46 46 <%= render :partial => 'users/preferences' %>
47 47 </fieldset>
48 48 </div>
49 49 </div>
50 50 <div style="clear:left;"></div>
51 51 <!--[eoform:user]-->
@@ -1,13 +1,13
1 1 <p>
2 2 <%= label_tag "user_mail_notification", l(:description_user_mail_notification), :class => "hidden-for-sighted" %>
3 3 <%= select_tag 'user[mail_notification]', options_for_select(user_mail_notification_options(@user), @user.mail_notification),
4 4 :onchange => 'if (this.value == "selected") {Element.show("notified-projects")} else {Element.hide("notified-projects")}' %>
5 5 </p>
6 6 <% content_tag 'div', :id => 'notified-projects', :style => (@user.mail_notification == 'selected' ? '' : 'display:none;') do %>
7 7 <p><% @user.projects.each do |project| %>
8 8 <label><%= check_box_tag 'notified_project_ids[]', project.id, @user.notified_projects_ids.include?(project.id) %> <%=h project.name %></label><br />
9 9 <% end %></p>
10 <p><em><%= l(:text_user_mail_option) %></em></p>
10 <p><em class="info"><%= l(:text_user_mail_option) %></em></p>
11 11 <% end %>
12 12 <p><label><%= l(:label_user_mail_no_self_notified) %><%= check_box_tag 'no_self_notified', 1, @user.pref[:no_self_notified] %></label></p>
13 13
@@ -1,1048 +1,1050
1 1 html {overflow-y:scroll;}
2 2 body { font-family: Verdana, sans-serif; font-size: 12px; color:#484848; margin: 0; padding: 0; min-width: 900px; }
3 3
4 4 h1, h2, h3, h4 { font-family: "Trebuchet MS", Verdana, sans-serif;}
5 5 h1 {margin:0; padding:0; font-size: 24px;}
6 6 h2, .wiki h1 {font-size: 20px;padding: 2px 10px 1px 0px;margin: 0 0 10px 0; border-bottom: 1px solid #bbbbbb; color: #444;}
7 7 h3, .wiki h2 {font-size: 16px;padding: 2px 10px 1px 0px;margin: 0 0 10px 0; border-bottom: 1px solid #bbbbbb; color: #444;}
8 8 h4, .wiki h3 {font-size: 13px;padding: 2px 10px 1px 0px;margin-bottom: 5px; border-bottom: 1px dotted #bbbbbb; color: #444;}
9 9
10 10 /***** Layout *****/
11 11 #wrapper {background: white;}
12 12
13 13 #top-menu {background: #2C4056; color: #fff; height:1.8em; font-size: 0.8em; padding: 2px 2px 0px 6px;}
14 14 #top-menu ul {margin: 0; padding: 0;}
15 15 #top-menu li {
16 16 float:left;
17 17 list-style-type:none;
18 18 margin: 0px 0px 0px 0px;
19 19 padding: 0px 0px 0px 0px;
20 20 white-space:nowrap;
21 21 }
22 22 #top-menu a {color: #fff; margin-right: 8px; font-weight: bold;}
23 23 #top-menu #loggedas { float: right; margin-right: 0.5em; color: #fff; }
24 24
25 25 #account {float:right;}
26 26
27 27 #header {height:5.3em;margin:0;background-color:#507AAA;color:#f8f8f8; padding: 4px 8px 0px 6px; position:relative;}
28 28 #header a {color:#f8f8f8;}
29 29 #header h1 a.ancestor { font-size: 80%; }
30 30 #quick-search {float:right;}
31 31
32 32 #main-menu {position: absolute; bottom: 0px; left:6px; margin-right: -500px;}
33 33 #main-menu ul {margin: 0; padding: 0;}
34 34 #main-menu li {
35 35 float:left;
36 36 list-style-type:none;
37 37 margin: 0px 2px 0px 0px;
38 38 padding: 0px 0px 0px 0px;
39 39 white-space:nowrap;
40 40 }
41 41 #main-menu li a {
42 42 display: block;
43 43 color: #fff;
44 44 text-decoration: none;
45 45 font-weight: bold;
46 46 margin: 0;
47 47 padding: 4px 10px 4px 10px;
48 48 }
49 49 #main-menu li a:hover {background:#759FCF; color:#fff;}
50 50 #main-menu li a.selected, #main-menu li a.selected:hover {background:#fff; color:#555;}
51 51
52 52 #admin-menu ul {margin: 0; padding: 0;}
53 53 #admin-menu li {margin: 0; padding: 0 0 6px 0; list-style-type:none;}
54 54
55 55 #admin-menu a { background-position: 0% 40%; background-repeat: no-repeat; padding-left: 20px; padding-top: 2px; padding-bottom: 3px;}
56 56 #admin-menu a.projects { background-image: url(../images/projects.png); }
57 57 #admin-menu a.users { background-image: url(../images/user.png); }
58 58 #admin-menu a.groups { background-image: url(../images/group.png); }
59 59 #admin-menu a.roles { background-image: url(../images/database_key.png); }
60 60 #admin-menu a.trackers { background-image: url(../images/ticket.png); }
61 61 #admin-menu a.issue_statuses { background-image: url(../images/ticket_edit.png); }
62 62 #admin-menu a.workflows { background-image: url(../images/ticket_go.png); }
63 63 #admin-menu a.custom_fields { background-image: url(../images/textfield.png); }
64 64 #admin-menu a.enumerations { background-image: url(../images/text_list_bullets.png); }
65 65 #admin-menu a.settings { background-image: url(../images/changeset.png); }
66 66 #admin-menu a.plugins { background-image: url(../images/plugin.png); }
67 67 #admin-menu a.info { background-image: url(../images/help.png); }
68 68 #admin-menu a.server_authentication { background-image: url(../images/server_key.png); }
69 69
70 70 #main {background-color:#EEEEEE;}
71 71
72 72 #sidebar{ float: right; width: 22%; position: relative; z-index: 9; padding: 0; margin: 0;}
73 73 * html #sidebar{ width: 22%; }
74 74 #sidebar h3{ font-size: 14px; margin-top:14px; color: #666; }
75 75 #sidebar hr{ width: 100%; margin: 0 auto; height: 1px; background: #ccc; border: 0; }
76 76 * html #sidebar hr{ width: 95%; position: relative; left: -6px; color: #ccc; }
77 77 #sidebar .contextual { margin-right: 1em; }
78 78
79 79 #content { width: 75%; background-color: #fff; margin: 0px; border-right: 1px solid #ddd; padding: 6px 10px 10px 10px; z-index: 10; }
80 80 * html #content{ width: 75%; padding-left: 0; margin-top: 0px; padding: 6px 10px 10px 10px;}
81 81 html>body #content { min-height: 600px; }
82 82 * html body #content { height: 600px; } /* IE */
83 83
84 84 #main.nosidebar #sidebar{ display: none; }
85 85 #main.nosidebar #content{ width: auto; border-right: 0; }
86 86
87 87 #footer {clear: both; border-top: 1px solid #bbb; font-size: 0.9em; color: #aaa; padding: 5px; text-align:center; background:#fff;}
88 88
89 89 #login-form table {margin-top:5em; padding:1em; margin-left: auto; margin-right: auto; border: 2px solid #FDBF3B; background-color:#FFEBC1; }
90 90 #login-form table td {padding: 6px;}
91 91 #login-form label {font-weight: bold;}
92 92 #login-form input#username, #login-form input#password { width: 300px; }
93 93
94 94 #modalbg {position:absolute; top:0; left:0; width:100%; height:100%; background:#ccc; z-index:49; opacity:0.5;}
95 95 html>body #modalbg {position:fixed;}
96 96 div.modal { border-radius:5px; position:absolute; top:25%; background:#fff; border:2px solid #759FCF; z-index:50; padding:0px; padding:8px;}
97 97 div.modal h3.title {background:#759FCF; color:#fff; border:0; padding-left:8px; margin:-8px; margin-bottom: 1em; border-top-left-radius:2px;border-top-right-radius:2px;}
98 98 div.modal p.buttons {text-align:right; margin-bottom:0;}
99 99 html>body div.modal {position:fixed;}
100 100
101 101 input#openid_url { background: url(../images/openid-bg.gif) no-repeat; background-color: #fff; background-position: 0 50%; padding-left: 18px; }
102 102
103 103 .clear:after{ content: "."; display: block; height: 0; clear: both; visibility: hidden; }
104 104
105 105 /***** Links *****/
106 106 a, a:link, a:visited{ color: #2A5685; text-decoration: none; }
107 107 a:hover, a:active{ color: #c61a1a; text-decoration: underline;}
108 108 a img{ border: 0; }
109 109
110 110 a.issue.closed, a.issue.closed:link, a.issue.closed:visited { color: #999; text-decoration: line-through; }
111 111
112 112 #sidebar a.selected {line-height:1.7em; padding:1px 3px 2px 2px; margin-left:-2px; background-color:#9DB9D5; color:#fff; border-radius:2px; -moz-border-radius:2px;}
113 113 #sidebar a.selected:hover {text-decoration:none;}
114 114 #admin-menu a {line-height:1.7em;}
115 115 #admin-menu a.selected {padding-left: 20px !important; background-position: 2px 40%;}
116 116
117 117 a.collapsible {padding-left: 12px; background: url(../images/arrow_expanded.png) no-repeat -3px 40%;}
118 118 a.collapsible.collapsed {background: url(../images/arrow_collapsed.png) no-repeat -5px 40%;}
119 119
120 120 a#toggle-completed-versions {color:#999;}
121 121 /***** Tables *****/
122 122 table.list { border: 1px solid #e4e4e4; border-collapse: collapse; width: 100%; margin-bottom: 4px; }
123 123 table.list th { background-color:#EEEEEE; padding: 4px; white-space:nowrap; }
124 124 table.list td { vertical-align: top; }
125 125 table.list td.id { width: 2%; text-align: center;}
126 126 table.list td.checkbox { width: 15px; padding: 2px 0 0 0; }
127 127 table.list td.checkbox input {padding:0px;}
128 128 table.list td.buttons { width: 15%; white-space:nowrap; text-align: right; }
129 129 table.list td.buttons a { padding-right: 0.6em; }
130 130 table.list caption { text-align: left; padding: 0.5em 0.5em 0.5em 0; }
131 131
132 132 tr.project td.name a { white-space:nowrap; }
133 133
134 134 tr.project.idnt td.name span {background: url(../images/bullet_arrow_right.png) no-repeat 0 50%; padding-left: 16px;}
135 135 tr.project.idnt-1 td.name {padding-left: 0.5em;}
136 136 tr.project.idnt-2 td.name {padding-left: 2em;}
137 137 tr.project.idnt-3 td.name {padding-left: 3.5em;}
138 138 tr.project.idnt-4 td.name {padding-left: 5em;}
139 139 tr.project.idnt-5 td.name {padding-left: 6.5em;}
140 140 tr.project.idnt-6 td.name {padding-left: 8em;}
141 141 tr.project.idnt-7 td.name {padding-left: 9.5em;}
142 142 tr.project.idnt-8 td.name {padding-left: 11em;}
143 143 tr.project.idnt-9 td.name {padding-left: 12.5em;}
144 144
145 145 tr.issue { text-align: center; white-space: nowrap; }
146 146 tr.issue td.subject, tr.issue td.category, td.assigned_to, tr.issue td.string, tr.issue td.text { white-space: normal; }
147 147 tr.issue td.subject { text-align: left; }
148 148 tr.issue td.done_ratio table.progress { margin-left:auto; margin-right: auto;}
149 149
150 150 tr.issue.idnt td.subject a {background: url(../images/bullet_arrow_right.png) no-repeat 0 50%; padding-left: 16px;}
151 151 tr.issue.idnt-1 td.subject {padding-left: 0.5em;}
152 152 tr.issue.idnt-2 td.subject {padding-left: 2em;}
153 153 tr.issue.idnt-3 td.subject {padding-left: 3.5em;}
154 154 tr.issue.idnt-4 td.subject {padding-left: 5em;}
155 155 tr.issue.idnt-5 td.subject {padding-left: 6.5em;}
156 156 tr.issue.idnt-6 td.subject {padding-left: 8em;}
157 157 tr.issue.idnt-7 td.subject {padding-left: 9.5em;}
158 158 tr.issue.idnt-8 td.subject {padding-left: 11em;}
159 159 tr.issue.idnt-9 td.subject {padding-left: 12.5em;}
160 160
161 161 tr.entry { border: 1px solid #f8f8f8; }
162 162 tr.entry td { white-space: nowrap; }
163 163 tr.entry td.filename { width: 30%; }
164 164 tr.entry td.filename_no_report { width: 70%; }
165 165 tr.entry td.size { text-align: right; font-size: 90%; }
166 166 tr.entry td.revision, tr.entry td.author { text-align: center; }
167 167 tr.entry td.age { text-align: right; }
168 168 tr.entry.file td.filename a { margin-left: 16px; }
169 169 tr.entry.file td.filename_no_report a { margin-left: 16px; }
170 170
171 171 tr span.expander {background-image: url(../images/bullet_toggle_plus.png); padding-left: 8px; margin-left: 0; cursor: pointer;}
172 172 tr.open span.expander {background-image: url(../images/bullet_toggle_minus.png);}
173 173
174 174 tr.changeset { height: 20px }
175 175 tr.changeset ul, ol { margin-top: 0px; margin-bottom: 0px; }
176 176 tr.changeset td.revision_graph { width: 15%; background-color: #fffffb; }
177 177 tr.changeset td.author { text-align: center; width: 15%; white-space:nowrap;}
178 178 tr.changeset td.committed_on { text-align: center; width: 15%; white-space:nowrap;}
179 179 tr.changeset td.comments_nowrap { width: 45%; white-space:nowrap;}
180 180
181 181 table.files tr.file td { text-align: center; }
182 182 table.files tr.file td.filename { text-align: left; padding-left: 24px; }
183 183 table.files tr.file td.digest { font-size: 80%; }
184 184
185 185 table.members td.roles, table.memberships td.roles { width: 45%; }
186 186
187 187 tr.message { height: 2.6em; }
188 188 tr.message td.subject { padding-left: 20px; }
189 189 tr.message td.created_on { white-space: nowrap; }
190 190 tr.message td.last_message { font-size: 80%; white-space: nowrap; }
191 191 tr.message.locked td.subject { background: url(../images/locked.png) no-repeat 0 1px; }
192 192 tr.message.sticky td.subject { background: url(../images/bullet_go.png) no-repeat 0 1px; font-weight: bold; }
193 193
194 194 tr.version.closed, tr.version.closed a { color: #999; }
195 195 tr.version td.name { padding-left: 20px; }
196 196 tr.version.shared td.name { background: url(../images/link.png) no-repeat 0% 70%; }
197 197 tr.version td.date, tr.version td.status, tr.version td.sharing { text-align: center; white-space:nowrap; }
198 198
199 199 tr.user td { width:13%; }
200 200 tr.user td.email { width:18%; }
201 201 tr.user td { white-space: nowrap; }
202 202 tr.user.locked, tr.user.registered { color: #aaa; }
203 203 tr.user.locked a, tr.user.registered a { color: #aaa; }
204 204
205 205 tr.wiki-page-version td.updated_on, tr.wiki-page-version td.author {text-align:center;}
206 206
207 207 tr.time-entry { text-align: center; white-space: nowrap; }
208 208 tr.time-entry td.subject, tr.time-entry td.comments { text-align: left; white-space: normal; }
209 209 td.hours { text-align: right; font-weight: bold; padding-right: 0.5em; }
210 210 td.hours .hours-dec { font-size: 0.9em; }
211 211
212 212 table.plugins td { vertical-align: middle; }
213 213 table.plugins td.configure { text-align: right; padding-right: 1em; }
214 214 table.plugins span.name { font-weight: bold; display: block; margin-bottom: 6px; }
215 215 table.plugins span.description { display: block; font-size: 0.9em; }
216 216 table.plugins span.url { display: block; font-size: 0.9em; }
217 217
218 218 table.list tbody tr.group td { padding: 0.8em 0 0.5em 0.3em; font-weight: bold; border-bottom: 1px solid #ccc; }
219 219 table.list tbody tr.group span.count { color: #aaa; font-size: 80%; }
220 220 tr.group a.toggle-all { color: #aaa; font-size: 80%; font-weight: normal; display:none;}
221 221 tr.group:hover a.toggle-all { display:inline;}
222 222 a.toggle-all:hover {text-decoration:none;}
223 223
224 224 table.list tbody tr:hover { background-color:#ffffdd; }
225 225 table.list tbody tr.group:hover { background-color:inherit; }
226 226 table td {padding:2px;}
227 227 table p {margin:0;}
228 228 .odd {background-color:#f6f7f8;}
229 229 .even {background-color: #fff;}
230 230
231 231 a.sort { padding-right: 16px; background-position: 100% 50%; background-repeat: no-repeat; }
232 232 a.sort.asc { background-image: url(../images/sort_asc.png); }
233 233 a.sort.desc { background-image: url(../images/sort_desc.png); }
234 234
235 235 table.attributes { width: 100% }
236 236 table.attributes th { vertical-align: top; text-align: left; }
237 237 table.attributes td { vertical-align: top; }
238 238
239 239 table.boards a.board, h3.comments { background: url(../images/comment.png) no-repeat 0% 50%; padding-left: 20px; }
240 240
241 241 td.center {text-align:center;}
242 242
243 243 h3.version { background: url(../images/package.png) no-repeat 0% 50%; padding-left: 20px; }
244 244
245 245 div.issues h3 { background: url(../images/ticket.png) no-repeat 0% 50%; padding-left: 20px; }
246 246 div.members h3 { background: url(../images/group.png) no-repeat 0% 50%; padding-left: 20px; }
247 247 div.news h3 { background: url(../images/news.png) no-repeat 0% 50%; padding-left: 20px; }
248 248 div.projects h3 { background: url(../images/projects.png) no-repeat 0% 50%; padding-left: 20px; }
249 249
250 250 #watchers ul {margin: 0; padding: 0;}
251 251 #watchers li {list-style-type:none;margin: 0px 2px 0px 0px; padding: 0px 0px 0px 0px;}
252 252 #watchers select {width: 95%; display: block;}
253 253 #watchers a.delete {opacity: 0.4;}
254 254 #watchers a.delete:hover {opacity: 1;}
255 255 #watchers img.gravatar {margin: 0 4px 2px 0;}
256 256
257 257 .highlight { background-color: #FCFD8D;}
258 258 .highlight.token-1 { background-color: #faa;}
259 259 .highlight.token-2 { background-color: #afa;}
260 260 .highlight.token-3 { background-color: #aaf;}
261 261
262 262 .box{
263 263 padding:6px;
264 264 margin-bottom: 10px;
265 265 background-color:#f6f6f6;
266 266 color:#505050;
267 267 line-height:1.5em;
268 268 border: 1px solid #e4e4e4;
269 269 }
270 270
271 271 div.square {
272 272 border: 1px solid #999;
273 273 float: left;
274 274 margin: .3em .4em 0 .4em;
275 275 overflow: hidden;
276 276 width: .6em; height: .6em;
277 277 }
278 278 .contextual {float:right; white-space: nowrap; line-height:1.4em;margin-top:5px; padding-left: 10px; font-size:0.9em;}
279 279 .contextual input, .contextual select {font-size:0.9em;}
280 280 .message .contextual { margin-top: 0; }
281 281
282 282 .splitcontentleft{float:left; width:49%;}
283 283 .splitcontentright{float:right; width:49%;}
284 284 form {display: inline;}
285 285 input, select {vertical-align: middle; margin-top: 1px; margin-bottom: 1px;}
286 286 fieldset {border: 1px solid #e4e4e4; margin:0;}
287 287 legend {color: #484848;}
288 288 hr { width: 100%; height: 1px; background: #ccc; border: 0;}
289 289 blockquote { font-style: italic; border-left: 3px solid #e0e0e0; padding-left: 0.6em; margin-left: 2.4em;}
290 290 blockquote blockquote { margin-left: 0;}
291 291 acronym { border-bottom: 1px dotted; cursor: help; }
292 292 textarea.wiki-edit { width: 99%; }
293 293 li p {margin-top: 0;}
294 294 div.issue {background:#ffffdd; padding:6px; margin-bottom:6px;border: 1px solid #d7d7d7;}
295 295 p.breadcrumb { font-size: 0.9em; margin: 4px 0 4px 0;}
296 296 p.subtitle { font-size: 0.9em; margin: -6px 0 12px 0; font-style: italic; }
297 297 p.footnote { font-size: 0.9em; margin-top: 0px; margin-bottom: 0px; }
298 298
299 299 div.issue div.subject div div { padding-left: 16px; }
300 300 div.issue div.subject p {margin: 0; margin-bottom: 0.1em; font-size: 90%; color: #999;}
301 301 div.issue div.subject>div>p { margin-top: 0.5em; }
302 302 div.issue div.subject h3 {margin: 0; margin-bottom: 0.1em;}
303 303 div.issue span.private { position:relative; bottom: 2px; text-transform: uppercase; background: #d22; color: #fff; font-weight:bold; padding: 0px 2px 0px 2px; font-size: 60%; margin-right: 2px; border-radius: 2px; -moz-border-radius: 2px;}
304 304 div.issue .next-prev-links {color:#999;}
305 305 div.issue table.attributes th {width:22%;}
306 306 div.issue table.attributes td {width:28%;}
307 307
308 308 #issue_tree table.issues, #relations table.issues { border: 0; }
309 309 #issue_tree td.checkbox, #relations td.checkbox {display:none;}
310 310 #relations td.buttons {padding:0;}
311 311
312 312 fieldset.collapsible { border-width: 1px 0 0 0; font-size: 0.9em; }
313 313 fieldset.collapsible legend { padding-left: 16px; background: url(../images/arrow_expanded.png) no-repeat 0% 40%; cursor:pointer; }
314 314 fieldset.collapsible.collapsed legend { background-image: url(../images/arrow_collapsed.png); }
315 315
316 316 fieldset#date-range p { margin: 2px 0 2px 0; }
317 317 fieldset#filters table { border-collapse: collapse; }
318 318 fieldset#filters table td { padding: 0; vertical-align: middle; }
319 319 fieldset#filters tr.filter { height: 2em; }
320 320 fieldset#filters td.field { width:200px; }
321 321 fieldset#filters td.operator { width:170px; }
322 322 fieldset#filters td.values { white-space:nowrap; }
323 323 fieldset#filters td.values select {min-width:130px;}
324 324 fieldset#filters td.values img { vertical-align: middle; margin-left:1px; }
325 325 fieldset#filters td.add-filter { text-align: right; vertical-align: top; }
326 326 .buttons { font-size: 0.9em; margin-bottom: 1.4em; margin-top: 1em; }
327 327
328 328 div#issue-changesets {float:right; width:45%; margin-left: 1em; margin-bottom: 1em; background: #fff; padding-left: 1em; font-size: 90%;}
329 329 div#issue-changesets div.changeset { padding: 4px;}
330 330 div#issue-changesets div.changeset { border-bottom: 1px solid #ddd; }
331 331 div#issue-changesets p { margin-top: 0; margin-bottom: 1em;}
332 332
333 333 div#activity dl, #search-results { margin-left: 2em; }
334 334 div#activity dd, #search-results dd { margin-bottom: 1em; padding-left: 18px; font-size: 0.9em; }
335 335 div#activity dt, #search-results dt { margin-bottom: 0px; padding-left: 20px; line-height: 18px; background-position: 0 50%; background-repeat: no-repeat; }
336 336 div#activity dt.me .time { border-bottom: 1px solid #999; }
337 337 div#activity dt .time { color: #777; font-size: 80%; }
338 338 div#activity dd .description, #search-results dd .description { font-style: italic; }
339 339 div#activity span.project:after, #search-results span.project:after { content: " -"; }
340 340 div#activity dd span.description, #search-results dd span.description { display:block; color: #808080; }
341 341
342 342 #search-results dd { margin-bottom: 1em; padding-left: 20px; margin-left:0px; }
343 343
344 344 div#search-results-counts {float:right;}
345 345 div#search-results-counts ul { margin-top: 0.5em; }
346 346 div#search-results-counts li { list-style-type:none; float: left; margin-left: 1em; }
347 347
348 348 dt.issue { background-image: url(../images/ticket.png); }
349 349 dt.issue-edit { background-image: url(../images/ticket_edit.png); }
350 350 dt.issue-closed { background-image: url(../images/ticket_checked.png); }
351 351 dt.issue-note { background-image: url(../images/ticket_note.png); }
352 352 dt.changeset { background-image: url(../images/changeset.png); }
353 353 dt.news { background-image: url(../images/news.png); }
354 354 dt.message { background-image: url(../images/message.png); }
355 355 dt.reply { background-image: url(../images/comments.png); }
356 356 dt.wiki-page { background-image: url(../images/wiki_edit.png); }
357 357 dt.attachment { background-image: url(../images/attachment.png); }
358 358 dt.document { background-image: url(../images/document.png); }
359 359 dt.project { background-image: url(../images/projects.png); }
360 360 dt.time-entry { background-image: url(../images/time.png); }
361 361
362 362 #search-results dt.issue.closed { background-image: url(../images/ticket_checked.png); }
363 363
364 364 div#roadmap .related-issues { margin-bottom: 1em; }
365 365 div#roadmap .related-issues td.checkbox { display: none; }
366 366 div#roadmap .wiki h1:first-child { display: none; }
367 367 div#roadmap .wiki h1 { font-size: 120%; }
368 368 div#roadmap .wiki h2 { font-size: 110%; }
369 369 body.controller-versions.action-show div#roadmap .related-issues {width:70%;}
370 370
371 371 div#version-summary { float:right; width:28%; margin-left: 16px; margin-bottom: 16px; background-color: #fff; }
372 372 div#version-summary fieldset { margin-bottom: 1em; }
373 373 div#version-summary fieldset.time-tracking table { width:100%; }
374 374 div#version-summary th, div#version-summary td.total-hours { text-align: right; }
375 375
376 376 table#time-report td.hours, table#time-report th.period, table#time-report th.total { text-align: right; padding-right: 0.5em; }
377 377 table#time-report tbody tr.subtotal { font-style: italic; color:#777;}
378 378 table#time-report tbody tr.subtotal td.hours { color:#b0b0b0; }
379 379 table#time-report tbody tr.total { font-weight: bold; background-color:#EEEEEE; border-top:1px solid #e4e4e4;}
380 380 table#time-report .hours-dec { font-size: 0.9em; }
381 381
382 382 div.wiki-page .contextual a {opacity: 0.4}
383 383 div.wiki-page .contextual a:hover {opacity: 1}
384 384
385 385 form .attributes select { width: 60%; }
386 386 input#issue_subject { width: 99%; }
387 387 select#issue_done_ratio { width: 95px; }
388 388
389 389 ul.projects { margin: 0; padding-left: 1em; }
390 390 ul.projects.root { margin: 0; padding: 0; }
391 391 ul.projects ul.projects { border-left: 3px solid #e0e0e0; }
392 392 ul.projects li.root { list-style-type:none; margin-bottom: 1em; }
393 393 ul.projects li.child { list-style-type:none; margin-top: 1em;}
394 394 ul.projects div.root a.project { font-family: "Trebuchet MS", Verdana, sans-serif; font-weight: bold; font-size: 16px; margin: 0 0 10px 0; }
395 395 .my-project { padding-left: 18px; background: url(../images/fav.png) no-repeat 0 50%; }
396 396
397 397 #tracker_project_ids ul { margin: 0; padding-left: 1em; }
398 398 #tracker_project_ids li { list-style-type:none; }
399 399
400 400 ul.properties {padding:0; font-size: 0.9em; color: #777;}
401 401 ul.properties li {list-style-type:none;}
402 402 ul.properties li span {font-style:italic;}
403 403
404 404 .total-hours { font-size: 110%; font-weight: bold; }
405 405 .total-hours span.hours-int { font-size: 120%; }
406 406
407 407 .autoscroll {overflow-x: auto; padding:1px; margin-bottom: 1.2em;}
408 408 #user_login, #user_firstname, #user_lastname, #user_mail, #my_account_form select, #user_form select, #user_identity_url { width: 90%; }
409 409
410 410 #workflow_copy_form select { width: 200px; }
411 411
412 412 textarea#custom_field_possible_values {width: 99%}
413 413 input#content_comments {width: 99%}
414 414
415 415 .pagination {font-size: 90%}
416 416 p.pagination {margin-top:8px;}
417 417
418 418 /***** Tabular forms ******/
419 419 .tabular p{
420 420 margin: 0;
421 421 padding: 3px 0 3px 0;
422 422 padding-left: 180px; /* width of left column containing the label elements */
423 423 min-height: 1.8em;
424 424 clear:left;
425 425 }
426 426
427 427 html>body .tabular p {overflow:hidden;}
428 428
429 429 .tabular label{
430 430 font-weight: bold;
431 431 float: left;
432 432 text-align: right;
433 433 /* width of left column */
434 434 margin-left: -180px;
435 435 /* width of labels. Should be smaller than left column to create some right margin */
436 436 width: 175px;
437 437 }
438 438
439 439 .tabular label.floating{
440 440 font-weight: normal;
441 441 margin-left: 0px;
442 442 text-align: left;
443 443 width: 270px;
444 444 }
445 445
446 446 .tabular label.block{
447 447 font-weight: normal;
448 448 margin-left: 0px !important;
449 449 text-align: left;
450 450 float: none;
451 451 display: block;
452 452 width: auto;
453 453 }
454 454
455 455 .tabular label.inline{
456 456 float:none;
457 457 margin-left: 5px !important;
458 458 width: auto;
459 459 }
460 460
461 461 label.no-css {
462 462 font-weight: inherit;
463 463 float:none;
464 464 text-align:left;
465 465 margin-left:0px;
466 466 width:auto;
467 467 }
468 468 input#time_entry_comments { width: 90%;}
469 469
470 470 #preview fieldset {margin-top: 1em; background: url(../images/draft.png)}
471 471
472 472 .tabular.settings p{ padding-left: 300px; }
473 473 .tabular.settings label{ margin-left: -300px; width: 295px; }
474 474 .tabular.settings textarea { width: 99%; }
475 475
476 476 .settings.enabled_scm table {width:100%}
477 477 .settings.enabled_scm td.scm_name{ font-weight: bold; }
478 478
479 479 fieldset.settings label { display: block; }
480 480 fieldset#notified_events .parent { padding-left: 20px; }
481 481
482 482 .required {color: #bb0000;}
483 483 .summary {font-style: italic;}
484 484
485 485 #attachments_fields input.description {margin-left: 8px; width:340px;}
486 486 #attachments_fields span {display:block; white-space:nowrap;}
487 487 #attachments_fields img {vertical-align: middle;}
488 488
489 489 div.attachments { margin-top: 12px; }
490 490 div.attachments p { margin:4px 0 2px 0; }
491 491 div.attachments img { vertical-align: middle; }
492 492 div.attachments span.author { font-size: 0.9em; color: #888; }
493 493
494 494 p.other-formats { text-align: right; font-size:0.9em; color: #666; }
495 495 .other-formats span + span:before { content: "| "; }
496 496
497 497 a.atom { background: url(../images/feed.png) no-repeat 1px 50%; padding: 2px 0px 3px 16px; }
498 498
499 em.info {font-style:normal;font-size:90%;color:#888;display:block;}
500
499 501 /* Project members tab */
500 502 div#tab-content-members .splitcontentleft, div#tab-content-memberships .splitcontentleft, div#tab-content-users .splitcontentleft { width: 64% }
501 503 div#tab-content-members .splitcontentright, div#tab-content-memberships .splitcontentright, div#tab-content-users .splitcontentright { width: 34% }
502 504 div#tab-content-members fieldset, div#tab-content-memberships fieldset, div#tab-content-users fieldset { padding:1em; margin-bottom: 1em; }
503 505 div#tab-content-members fieldset legend, div#tab-content-memberships fieldset legend, div#tab-content-users fieldset legend { font-weight: bold; }
504 506 div#tab-content-members fieldset label, div#tab-content-memberships fieldset label, div#tab-content-users fieldset label { display: block; }
505 507 div#tab-content-members fieldset div, div#tab-content-users fieldset div { max-height: 400px; overflow:auto; }
506 508
507 509 #users_for_watcher {height: 200px; overflow:auto;}
508 510 #users_for_watcher label {display: block;}
509 511
510 512 table.members td.group { padding-left: 20px; background: url(../images/group.png) no-repeat 0% 50%; }
511 513
512 514 input#principal_search, input#user_search {width:100%}
513 515
514 516 * html div#tab-content-members fieldset div { height: 450px; }
515 517
516 518 /***** Flash & error messages ****/
517 519 #errorExplanation, div.flash, .nodata, .warning {
518 520 padding: 4px 4px 4px 30px;
519 521 margin-bottom: 12px;
520 522 font-size: 1.1em;
521 523 border: 2px solid;
522 524 }
523 525
524 526 div.flash {margin-top: 8px;}
525 527
526 528 div.flash.error, #errorExplanation {
527 529 background: url(../images/exclamation.png) 8px 50% no-repeat;
528 530 background-color: #ffe3e3;
529 531 border-color: #dd0000;
530 532 color: #880000;
531 533 }
532 534
533 535 div.flash.notice {
534 536 background: url(../images/true.png) 8px 5px no-repeat;
535 537 background-color: #dfffdf;
536 538 border-color: #9fcf9f;
537 539 color: #005f00;
538 540 }
539 541
540 542 div.flash.warning {
541 543 background: url(../images/warning.png) 8px 5px no-repeat;
542 544 background-color: #FFEBC1;
543 545 border-color: #FDBF3B;
544 546 color: #A6750C;
545 547 text-align: left;
546 548 }
547 549
548 550 .nodata, .warning {
549 551 text-align: center;
550 552 background-color: #FFEBC1;
551 553 border-color: #FDBF3B;
552 554 color: #A6750C;
553 555 }
554 556
555 557 span.error {padding-left:20px; background:url(../images/exclamation.png) no-repeat 0 50%;}
556 558
557 559 #errorExplanation ul { font-size: 0.9em;}
558 560 #errorExplanation h2, #errorExplanation p { display: none; }
559 561
560 562 /***** Ajax indicator ******/
561 563 #ajax-indicator {
562 564 position: absolute; /* fixed not supported by IE */
563 565 background-color:#eee;
564 566 border: 1px solid #bbb;
565 567 top:35%;
566 568 left:40%;
567 569 width:20%;
568 570 font-weight:bold;
569 571 text-align:center;
570 572 padding:0.6em;
571 573 z-index:100;
572 574 opacity: 0.5;
573 575 }
574 576
575 577 html>body #ajax-indicator { position: fixed; }
576 578
577 579 #ajax-indicator span {
578 580 background-position: 0% 40%;
579 581 background-repeat: no-repeat;
580 582 background-image: url(../images/loading.gif);
581 583 padding-left: 26px;
582 584 vertical-align: bottom;
583 585 }
584 586
585 587 /***** Calendar *****/
586 588 table.cal {border-collapse: collapse; width: 100%; margin: 0px 0 6px 0;border: 1px solid #d7d7d7;}
587 589 table.cal thead th {width: 14%; background-color:#EEEEEE; padding: 4px; }
588 590 table.cal thead th.week-number {width: auto;}
589 591 table.cal tbody tr {height: 100px;}
590 592 table.cal td {border: 1px solid #d7d7d7; vertical-align: top; font-size: 0.9em;}
591 593 table.cal td.week-number { background-color:#EEEEEE; padding: 4px; border:none; font-size: 1em;}
592 594 table.cal td p.day-num {font-size: 1.1em; text-align:right;}
593 595 table.cal td.odd p.day-num {color: #bbb;}
594 596 table.cal td.today {background:#ffffdd;}
595 597 table.cal td.today p.day-num {font-weight: bold;}
596 598 table.cal .starting a, p.cal.legend .starting {background: url(../images/bullet_go.png) no-repeat -1px -2px; padding-left:16px;}
597 599 table.cal .ending a, p.cal.legend .ending {background: url(../images/bullet_end.png) no-repeat -1px -2px; padding-left:16px;}
598 600 table.cal .starting.ending a, p.cal.legend .starting.ending {background: url(../images/bullet_diamond.png) no-repeat -1px -2px; padding-left:16px;}
599 601 p.cal.legend span {display:block;}
600 602
601 603 /***** Tooltips ******/
602 604 .tooltip{position:relative;z-index:24;}
603 605 .tooltip:hover{z-index:25;color:#000;}
604 606 .tooltip span.tip{display: none; text-align:left;}
605 607
606 608 div.tooltip:hover span.tip{
607 609 display:block;
608 610 position:absolute;
609 611 top:12px; left:24px; width:270px;
610 612 border:1px solid #555;
611 613 background-color:#fff;
612 614 padding: 4px;
613 615 font-size: 0.8em;
614 616 color:#505050;
615 617 }
616 618
617 619 /***** Progress bar *****/
618 620 table.progress {
619 621 border-collapse: collapse;
620 622 border-spacing: 0pt;
621 623 empty-cells: show;
622 624 text-align: center;
623 625 float:left;
624 626 margin: 1px 6px 1px 0px;
625 627 }
626 628
627 629 table.progress td { height: 1em; }
628 630 table.progress td.closed { background: #BAE0BA none repeat scroll 0%; }
629 631 table.progress td.done { background: #D3EDD3 none repeat scroll 0%; }
630 632 table.progress td.todo { background: #eee none repeat scroll 0%; }
631 633 p.pourcent {font-size: 80%;}
632 634 p.progress-info {clear: left; font-size: 80%; margin-top:-4px; color:#777;}
633 635
634 636 #roadmap table.progress td { height: 1.2em; }
635 637 /***** Tabs *****/
636 638 #content .tabs {height: 2.6em; margin-bottom:1.2em; position:relative; overflow:hidden;}
637 639 #content .tabs ul {margin:0; position:absolute; bottom:0; padding-left:0.5em; width: 2000px; border-bottom: 1px solid #bbbbbb;}
638 640 #content .tabs ul li {
639 641 float:left;
640 642 list-style-type:none;
641 643 white-space:nowrap;
642 644 margin-right:4px;
643 645 background:#fff;
644 646 position:relative;
645 647 margin-bottom:-1px;
646 648 }
647 649 #content .tabs ul li a{
648 650 display:block;
649 651 font-size: 0.9em;
650 652 text-decoration:none;
651 653 line-height:1.3em;
652 654 padding:4px 6px 4px 6px;
653 655 border: 1px solid #ccc;
654 656 border-bottom: 1px solid #bbbbbb;
655 657 background-color: #f6f6f6;
656 658 color:#999;
657 659 font-weight:bold;
658 660 border-top-left-radius:3px;
659 661 border-top-right-radius:3px;
660 662 }
661 663
662 664 #content .tabs ul li a:hover {
663 665 background-color: #ffffdd;
664 666 text-decoration:none;
665 667 }
666 668
667 669 #content .tabs ul li a.selected {
668 670 background-color: #fff;
669 671 border: 1px solid #bbbbbb;
670 672 border-bottom: 1px solid #fff;
671 673 color:#444;
672 674 }
673 675
674 676 #content .tabs ul li a.selected:hover {
675 677 background-color: #fff;
676 678 }
677 679
678 680 div.tabs-buttons { position:absolute; right: 0; width: 48px; height: 24px; background: white; bottom: 0; border-bottom: 1px solid #bbbbbb; }
679 681
680 682 button.tab-left, button.tab-right {
681 683 font-size: 0.9em;
682 684 cursor: pointer;
683 685 height:24px;
684 686 border: 1px solid #ccc;
685 687 border-bottom: 1px solid #bbbbbb;
686 688 position:absolute;
687 689 padding:4px;
688 690 width: 20px;
689 691 bottom: -1px;
690 692 }
691 693
692 694 button.tab-left {
693 695 right: 20px;
694 696 background: #eeeeee url(../images/bullet_arrow_left.png) no-repeat 50% 50%;
695 697 border-top-left-radius:3px;
696 698 }
697 699
698 700 button.tab-right {
699 701 right: 0;
700 702 background: #eeeeee url(../images/bullet_arrow_right.png) no-repeat 50% 50%;
701 703 border-top-right-radius:3px;
702 704 }
703 705
704 706 /***** Auto-complete *****/
705 707 div.autocomplete {
706 708 position:absolute;
707 709 width:400px;
708 710 margin:0;
709 711 padding:0;
710 712 }
711 713 div.autocomplete ul {
712 714 list-style-type:none;
713 715 margin:0;
714 716 padding:0;
715 717 }
716 718 div.autocomplete ul li {
717 719 list-style-type:none;
718 720 display:block;
719 721 margin:-1px 0 0 0;
720 722 padding:2px;
721 723 cursor:pointer;
722 724 font-size: 90%;
723 725 border: 1px solid #ccc;
724 726 border-left: 1px solid #ccc;
725 727 border-right: 1px solid #ccc;
726 728 background-color:white;
727 729 }
728 730 div.autocomplete ul li.selected { background-color: #ffb;}
729 731 div.autocomplete ul li span.informal {
730 732 font-size: 80%;
731 733 color: #aaa;
732 734 }
733 735
734 736 #parent_issue_candidates ul li {width: 500px;}
735 737 #related_issue_candidates ul li {width: 500px;}
736 738
737 739 /***** Diff *****/
738 740 .diff_out { background: #fcc; }
739 741 .diff_out span { background: #faa; }
740 742 .diff_in { background: #cfc; }
741 743 .diff_in span { background: #afa; }
742 744
743 745 .text-diff {
744 746 padding: 1em;
745 747 background-color:#f6f6f6;
746 748 color:#505050;
747 749 border: 1px solid #e4e4e4;
748 750 }
749 751
750 752 /***** Wiki *****/
751 753 div.wiki table {
752 754 border: 1px solid #505050;
753 755 border-collapse: collapse;
754 756 margin-bottom: 1em;
755 757 }
756 758
757 759 div.wiki table, div.wiki td, div.wiki th {
758 760 border: 1px solid #bbb;
759 761 padding: 4px;
760 762 }
761 763
762 764 div.wiki .external {
763 765 background-position: 0% 60%;
764 766 background-repeat: no-repeat;
765 767 padding-left: 12px;
766 768 background-image: url(../images/external.png);
767 769 }
768 770
769 771 div.wiki a.new {
770 772 color: #b73535;
771 773 }
772 774
773 775 div.wiki ul, div.wiki ol {margin-bottom:1em;}
774 776
775 777 div.wiki pre {
776 778 margin: 1em 1em 1em 1.6em;
777 779 padding: 2px 2px 2px 0;
778 780 background-color: #fafafa;
779 781 border: 1px solid #dadada;
780 782 width:auto;
781 783 overflow-x: auto;
782 784 overflow-y: hidden;
783 785 }
784 786
785 787 div.wiki ul.toc {
786 788 background-color: #ffffdd;
787 789 border: 1px solid #e4e4e4;
788 790 padding: 4px;
789 791 line-height: 1.2em;
790 792 margin-bottom: 12px;
791 793 margin-right: 12px;
792 794 margin-left: 0;
793 795 display: table
794 796 }
795 797 * html div.wiki ul.toc { width: 50%; } /* IE6 doesn't autosize div */
796 798
797 799 div.wiki ul.toc.right { float: right; margin-left: 12px; margin-right: 0; width: auto; }
798 800 div.wiki ul.toc.left { float: left; margin-right: 12px; margin-left: 0; width: auto; }
799 801 div.wiki ul.toc ul { margin: 0; padding: 0; }
800 802 div.wiki ul.toc li { list-style-type:none; margin: 0;}
801 803 div.wiki ul.toc li li { margin-left: 1.5em; }
802 804 div.wiki ul.toc li li li { font-size: 0.8em; }
803 805
804 806 div.wiki ul.toc a {
805 807 font-size: 0.9em;
806 808 font-weight: normal;
807 809 text-decoration: none;
808 810 color: #606060;
809 811 }
810 812 div.wiki ul.toc a:hover { color: #c61a1a; text-decoration: underline;}
811 813
812 814 a.wiki-anchor { display: none; margin-left: 6px; text-decoration: none; }
813 815 a.wiki-anchor:hover { color: #aaa !important; text-decoration: none; }
814 816 h1:hover a.wiki-anchor, h2:hover a.wiki-anchor, h3:hover a.wiki-anchor { display: inline; color: #ddd; }
815 817
816 818 div.wiki img { vertical-align: middle; }
817 819
818 820 /***** My page layout *****/
819 821 .block-receiver {
820 822 border:1px dashed #c0c0c0;
821 823 margin-bottom: 20px;
822 824 padding: 15px 0 15px 0;
823 825 }
824 826
825 827 .mypage-box {
826 828 margin:0 0 20px 0;
827 829 color:#505050;
828 830 line-height:1.5em;
829 831 }
830 832
831 833 .handle {
832 834 cursor: move;
833 835 }
834 836
835 837 a.close-icon {
836 838 display:block;
837 839 margin-top:3px;
838 840 overflow:hidden;
839 841 width:12px;
840 842 height:12px;
841 843 background-repeat: no-repeat;
842 844 cursor:pointer;
843 845 background-image:url('../images/close.png');
844 846 }
845 847
846 848 a.close-icon:hover {
847 849 background-image:url('../images/close_hl.png');
848 850 }
849 851
850 852 /***** Gantt chart *****/
851 853 .gantt_hdr {
852 854 position:absolute;
853 855 top:0;
854 856 height:16px;
855 857 border-top: 1px solid #c0c0c0;
856 858 border-bottom: 1px solid #c0c0c0;
857 859 border-right: 1px solid #c0c0c0;
858 860 text-align: center;
859 861 overflow: hidden;
860 862 }
861 863
862 864 .gantt_subjects { font-size: 0.8em; }
863 865 .gantt_subjects div { line-height:16px;height:16px;overflow:hidden;white-space:nowrap;text-overflow: ellipsis; }
864 866
865 867 .task {
866 868 position: absolute;
867 869 height:8px;
868 870 font-size:0.8em;
869 871 color:#888;
870 872 padding:0;
871 873 margin:0;
872 874 line-height:16px;
873 875 white-space:nowrap;
874 876 }
875 877
876 878 .task.label {width:100%;}
877 879 .task.label.project, .task.label.version { font-weight: bold; }
878 880
879 881 .task_late { background:#f66 url(../images/task_late.png); border: 1px solid #f66; }
880 882 .task_done { background:#00c600 url(../images/task_done.png); border: 1px solid #00c600; }
881 883 .task_todo { background:#aaa url(../images/task_todo.png); border: 1px solid #aaa; }
882 884
883 885 .task_todo.parent { background: #888; border: 1px solid #888; height: 3px;}
884 886 .task_late.parent, .task_done.parent { height: 3px;}
885 887 .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;}
886 888 .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;}
887 889
888 890 .version.task_late { background:#f66 url(../images/milestone_late.png); border: 1px solid #f66; height: 2px; margin-top: 3px;}
889 891 .version.task_done { background:#00c600 url(../images/milestone_done.png); border: 1px solid #00c600; height: 2px; margin-top: 3px;}
890 892 .version.task_todo { background:#fff url(../images/milestone_todo.png); border: 1px solid #fff; height: 2px; margin-top: 3px;}
891 893 .version.marker { background-image:url(../images/version_marker.png); background-repeat: no-repeat; border: 0; margin-left: -4px; margin-top: 1px; }
892 894
893 895 .project.task_late { background:#f66 url(../images/milestone_late.png); border: 1px solid #f66; height: 2px; margin-top: 3px;}
894 896 .project.task_done { background:#00c600 url(../images/milestone_done.png); border: 1px solid #00c600; height: 2px; margin-top: 3px;}
895 897 .project.task_todo { background:#fff url(../images/milestone_todo.png); border: 1px solid #fff; height: 2px; margin-top: 3px;}
896 898 .project.marker { background-image:url(../images/project_marker.png); background-repeat: no-repeat; border: 0; margin-left: -4px; margin-top: 1px; }
897 899
898 900 .version-behind-schedule a, .issue-behind-schedule a {color: #f66914;}
899 901 .version-overdue a, .issue-overdue a, .project-overdue a {color: #f00;}
900 902
901 903 /***** Icons *****/
902 904 .icon {
903 905 background-position: 0% 50%;
904 906 background-repeat: no-repeat;
905 907 padding-left: 20px;
906 908 padding-top: 2px;
907 909 padding-bottom: 3px;
908 910 }
909 911
910 912 .icon-add { background-image: url(../images/add.png); }
911 913 .icon-edit { background-image: url(../images/edit.png); }
912 914 .icon-copy { background-image: url(../images/copy.png); }
913 915 .icon-duplicate { background-image: url(../images/duplicate.png); }
914 916 .icon-del { background-image: url(../images/delete.png); }
915 917 .icon-move { background-image: url(../images/move.png); }
916 918 .icon-save { background-image: url(../images/save.png); }
917 919 .icon-cancel { background-image: url(../images/cancel.png); }
918 920 .icon-multiple { background-image: url(../images/table_multiple.png); }
919 921 .icon-folder { background-image: url(../images/folder.png); }
920 922 .open .icon-folder { background-image: url(../images/folder_open.png); }
921 923 .icon-package { background-image: url(../images/package.png); }
922 924 .icon-user { background-image: url(../images/user.png); }
923 925 .icon-projects { background-image: url(../images/projects.png); }
924 926 .icon-help { background-image: url(../images/help.png); }
925 927 .icon-attachment { background-image: url(../images/attachment.png); }
926 928 .icon-history { background-image: url(../images/history.png); }
927 929 .icon-time { background-image: url(../images/time.png); }
928 930 .icon-time-add { background-image: url(../images/time_add.png); }
929 931 .icon-stats { background-image: url(../images/stats.png); }
930 932 .icon-warning { background-image: url(../images/warning.png); }
931 933 .icon-fav { background-image: url(../images/fav.png); }
932 934 .icon-fav-off { background-image: url(../images/fav_off.png); }
933 935 .icon-reload { background-image: url(../images/reload.png); }
934 936 .icon-lock { background-image: url(../images/locked.png); }
935 937 .icon-unlock { background-image: url(../images/unlock.png); }
936 938 .icon-checked { background-image: url(../images/true.png); }
937 939 .icon-details { background-image: url(../images/zoom_in.png); }
938 940 .icon-report { background-image: url(../images/report.png); }
939 941 .icon-comment { background-image: url(../images/comment.png); }
940 942 .icon-summary { background-image: url(../images/lightning.png); }
941 943 .icon-server-authentication { background-image: url(../images/server_key.png); }
942 944 .icon-issue { background-image: url(../images/ticket.png); }
943 945 .icon-zoom-in { background-image: url(../images/zoom_in.png); }
944 946 .icon-zoom-out { background-image: url(../images/zoom_out.png); }
945 947 .icon-passwd { background-image: url(../images/textfield_key.png); }
946 948
947 949 .icon-file { background-image: url(../images/files/default.png); }
948 950 .icon-file.text-plain { background-image: url(../images/files/text.png); }
949 951 .icon-file.text-x-c { background-image: url(../images/files/c.png); }
950 952 .icon-file.text-x-csharp { background-image: url(../images/files/csharp.png); }
951 953 .icon-file.text-x-java { background-image: url(../images/files/java.png); }
952 954 .icon-file.text-x-javascript { background-image: url(../images/files/js.png); }
953 955 .icon-file.text-x-php { background-image: url(../images/files/php.png); }
954 956 .icon-file.text-x-ruby { background-image: url(../images/files/ruby.png); }
955 957 .icon-file.text-xml { background-image: url(../images/files/xml.png); }
956 958 .icon-file.text-css { background-image: url(../images/files/css.png); }
957 959 .icon-file.text-html { background-image: url(../images/files/html.png); }
958 960 .icon-file.image-gif { background-image: url(../images/files/image.png); }
959 961 .icon-file.image-jpeg { background-image: url(../images/files/image.png); }
960 962 .icon-file.image-png { background-image: url(../images/files/image.png); }
961 963 .icon-file.image-tiff { background-image: url(../images/files/image.png); }
962 964 .icon-file.application-pdf { background-image: url(../images/files/pdf.png); }
963 965 .icon-file.application-zip { background-image: url(../images/files/zip.png); }
964 966 .icon-file.application-x-gzip { background-image: url(../images/files/zip.png); }
965 967
966 968 img.gravatar {
967 969 padding: 2px;
968 970 border: solid 1px #d5d5d5;
969 971 background: #fff;
970 972 vertical-align: middle;
971 973 }
972 974
973 975 div.issue img.gravatar {
974 976 float: left;
975 977 margin: 0 6px 0 0;
976 978 padding: 5px;
977 979 }
978 980
979 981 div.issue table img.gravatar {
980 982 height: 14px;
981 983 width: 14px;
982 984 padding: 2px;
983 985 float: left;
984 986 margin: 0 0.5em 0 0;
985 987 }
986 988
987 989 h2 img.gravatar {
988 990 margin: -2px 4px -4px 0;
989 991 }
990 992
991 993 h3 img.gravatar {
992 994 margin: -4px 4px -4px 0;
993 995 }
994 996
995 997 h4 img.gravatar {
996 998 margin: -6px 4px -4px 0;
997 999 }
998 1000
999 1001 td.username img.gravatar {
1000 1002 margin: 0 0.5em 0 0;
1001 1003 vertical-align: top;
1002 1004 }
1003 1005
1004 1006 #activity dt img.gravatar {
1005 1007 float: left;
1006 1008 margin: 0 1em 1em 0;
1007 1009 }
1008 1010
1009 1011 /* Used on 12px Gravatar img tags without the icon background */
1010 1012 .icon-gravatar {
1011 1013 float: left;
1012 1014 margin-right: 4px;
1013 1015 }
1014 1016
1015 1017 #activity dt,
1016 1018 .journal {
1017 1019 clear: left;
1018 1020 }
1019 1021
1020 1022 .journal-link {
1021 1023 float: right;
1022 1024 }
1023 1025
1024 1026 h2 img { vertical-align:middle; }
1025 1027
1026 1028 .hascontextmenu { cursor: context-menu; }
1027 1029
1028 1030 /***** Media print specific styles *****/
1029 1031 @media print {
1030 1032 #top-menu, #header, #main-menu, #sidebar, #footer, .contextual, .other-formats { display:none; }
1031 1033 #main { background: #fff; }
1032 1034 #content { width: 99%; margin: 0; padding: 0; border: 0; background: #fff; overflow: visible !important;}
1033 1035 #wiki_add_attachment { display:none; }
1034 1036 .hide-when-print { display: none; }
1035 1037 .autoscroll {overflow-x: visible;}
1036 1038 table.list {margin-top:0.5em;}
1037 1039 table.list th, table.list td {border: 1px solid #aaa;}
1038 1040 }
1039 1041
1040 1042 /* Accessibility specific styles */
1041 1043 .hidden-for-sighted {
1042 1044 position:absolute;
1043 1045 left:-10000px;
1044 1046 top:auto;
1045 1047 width:1px;
1046 1048 height:1px;
1047 1049 overflow:hidden;
1048 1050 }
General Comments 0
You need to be logged in to leave comments. Login now