@@ -4,34 +4,34 | |||
|
4 | 4 | <%= back_url_hidden_field_tag %> |
|
5 | 5 | <table> |
|
6 | 6 | <tr> |
|
7 |
<td |
|
|
8 |
<td |
|
|
7 | <td style="text-align:right;"><label for="username"><%=l(:field_login)%>:</label></td> | |
|
8 | <td style="text-align:left;"><%= text_field_tag 'username', params[:username], :tabindex => '1' %></td> | |
|
9 | 9 | </tr> |
|
10 | 10 | <tr> |
|
11 |
<td |
|
|
12 |
<td |
|
|
11 | <td style="text-align:right;"><label for="password"><%=l(:field_password)%>:</label></td> | |
|
12 | <td style="text-align:left;"><%= password_field_tag 'password', nil, :tabindex => '2' %></td> | |
|
13 | 13 | </tr> |
|
14 | 14 | <% if Setting.openid? %> |
|
15 | 15 | <tr> |
|
16 |
<td |
|
|
17 |
<td |
|
|
16 | <td style="text-align:right;"><label for="openid_url"><%=l(:field_identity_url)%></label></td> | |
|
17 | <td style="text-align:left;"><%= text_field_tag "openid_url", nil, :tabindex => '3' %></td> | |
|
18 | 18 | </tr> |
|
19 | 19 | <% end %> |
|
20 | 20 | <tr> |
|
21 | 21 | <td></td> |
|
22 |
<td |
|
|
22 | <td style="text-align:left;"> | |
|
23 | 23 | <% if Setting.autologin? %> |
|
24 | 24 | <label for="autologin"><%= check_box_tag 'autologin', 1, false, :tabindex => 4 %> <%= l(:label_stay_logged_in) %></label> |
|
25 | 25 | <% end %> |
|
26 | 26 | </td> |
|
27 | 27 | </tr> |
|
28 | 28 | <tr> |
|
29 |
<td |
|
|
29 | <td style="text-align:left;"> | |
|
30 | 30 | <% if Setting.lost_password? %> |
|
31 | 31 | <%= link_to l(:label_password_lost), lost_password_path %> |
|
32 | 32 | <% end %> |
|
33 | 33 | </td> |
|
34 |
<td |
|
|
34 | <td style="text-align:right;"> | |
|
35 | 35 | <input type="submit" name="login" value="<%=l(:button_login)%> »" tabindex="5"/> |
|
36 | 36 | </td> |
|
37 | 37 | </tr> |
@@ -5,8 +5,8 | |||
|
5 | 5 | <table class="list"> |
|
6 | 6 | <% @checklist.each do |label, result| %> |
|
7 | 7 | <tr class="<%= cycle 'odd', 'even' %>"> |
|
8 | <td><%= l(label) %></td> | |
|
9 |
<td |
|
|
8 | <td class="name"><%= l(label) %></td> | |
|
9 | <td class="tick"><%= image_tag((result ? 'true.png' : 'exclamation.png'), | |
|
10 | 10 | :style => "vertical-align:bottom;") %></td> |
|
11 | 11 | </tr> |
|
12 | 12 | <% end %> |
@@ -4,7 +4,7 | |||
|
4 | 4 | <table class="list plugins"> |
|
5 | 5 | <% @plugins.each do |plugin| %> |
|
6 | 6 | <tr id="plugin-<%= plugin.id %>" class="<%= cycle('odd', 'even') %>"> |
|
7 | <td><span class="name"><%=h plugin.name %></span> | |
|
7 | <td class="name"><span class="name"><%=h plugin.name %></span> | |
|
8 | 8 | <%= content_tag('span', h(plugin.description), :class => 'description') unless plugin.description.blank? %> |
|
9 | 9 | <%= content_tag('span', link_to(h(plugin.url), plugin.url), :class => 'url') unless plugin.url.blank? %> |
|
10 | 10 | </td> |
@@ -28,8 +28,8 | |||
|
28 | 28 | <% project_tree(@projects) do |project, level| %> |
|
29 | 29 | <tr class="<%= cycle("odd", "even") %> <%= project.css_classes %> <%= level > 0 ? "idnt idnt-#{level}" : nil %>"> |
|
30 | 30 | <td class="name"><span><%= link_to_project_settings(project, {}, :title => project.short_description) %></span></td> |
|
31 |
<td |
|
|
32 |
<td |
|
|
31 | <td><%= checked_image project.is_public? %></td> | |
|
32 | <td><%= format_date(project.created_on) %></td> | |
|
33 | 33 | <td class="buttons"> |
|
34 | 34 | <%= link_to(l(:button_archive), { :controller => 'projects', :action => 'archive', :id => project, :status => params[:status] }, :data => {:confirm => l(:text_are_you_sure)}, :method => :post, :class => 'icon icon-lock') unless project.archived? %> |
|
35 | 35 | <%= link_to(l(:button_unarchive), { :controller => 'projects', :action => 'unarchive', :id => project, :status => params[:status] }, :method => :post, :class => 'icon icon-unlock') if project.archived? && (project.parent.nil? || !project.parent.archived?) %> |
@@ -15,10 +15,10 | |||
|
15 | 15 | <tbody> |
|
16 | 16 | <% for source in @auth_sources %> |
|
17 | 17 | <tr id="auth-source-<%= source.id %>" class="<%= cycle("odd", "even") %>"> |
|
18 | <td><%= link_to(h(source.name), :action => 'edit', :id => source)%></td> | |
|
19 |
<td |
|
|
20 |
<td |
|
|
21 |
<td |
|
|
18 | <td class="name"><%= link_to(h(source.name), :action => 'edit', :id => source)%></td> | |
|
19 | <td><%= h source.auth_method_name %></td> | |
|
20 | <td><%= h source.host %></td> | |
|
21 | <td><%= h source.users.count %></td> | |
|
22 | 22 | <td class="buttons"> |
|
23 | 23 | <%= link_to l(:button_test), try_connection_auth_source_path(source), :class => 'icon icon-test' %> |
|
24 | 24 | <%= delete_link auth_source_path(source) %> |
@@ -10,7 +10,7 | |||
|
10 | 10 | <tbody> |
|
11 | 11 | <% Board.board_tree(@boards) do |board, level| %> |
|
12 | 12 | <tr class="<%= cycle 'odd', 'even' %>"> |
|
13 | <td style="padding-left: <%= level * 18 %>px;"> | |
|
13 | <td class="name" style="padding-left: <%= level * 18 %>px;"> | |
|
14 | 14 | <%= link_to h(board.name), project_board_path(board.project, board), :class => "board" %><br /> |
|
15 | 15 | <%=h board.description %> |
|
16 | 16 | </td> |
@@ -1,6 +1,6 | |||
|
1 | 1 | <table class="list"> |
|
2 | 2 | <thead><tr> |
|
3 |
<th |
|
|
3 | <th><%=l(:field_name)%></th> | |
|
4 | 4 | <th><%=l(:field_field_format)%></th> |
|
5 | 5 | <th><%=l(:field_is_required)%></th> |
|
6 | 6 | <% if tab[:name] == 'IssueCustomField' %> |
@@ -8,19 +8,19 | |||
|
8 | 8 | <th><%=l(:label_used_by)%></th> |
|
9 | 9 | <% end %> |
|
10 | 10 | <th><%=l(:button_sort)%></th> |
|
11 |
<th |
|
|
11 | <th></th> | |
|
12 | 12 | </tr></thead> |
|
13 | 13 | <tbody> |
|
14 | 14 | <% (@custom_fields_by_type[tab[:name]] || []).sort.each do |custom_field| -%> |
|
15 | 15 | <tr class="<%= cycle("odd", "even") %>"> |
|
16 | <td><%= link_to h(custom_field.name), edit_custom_field_path(custom_field) %></td> | |
|
17 |
<td |
|
|
18 |
<td |
|
|
16 | <td class="name"><%= link_to h(custom_field.name), edit_custom_field_path(custom_field) %></td> | |
|
17 | <td><%= l(Redmine::CustomFieldFormat.label_for(custom_field.field_format)) %></td> | |
|
18 | <td><%= checked_image custom_field.is_required? %></td> | |
|
19 | 19 | <% if tab[:name] == 'IssueCustomField' %> |
|
20 |
<td |
|
|
21 |
<td |
|
|
20 | <td><%= checked_image custom_field.is_for_all? %></td> | |
|
21 | <td><%= l(:label_x_projects, :count => custom_field.projects.count) if custom_field.is_a? IssueCustomField and !custom_field.is_for_all? %></td> | |
|
22 | 22 | <% end %> |
|
23 |
<td |
|
|
23 | <td class="reorder"><%= reorder_links('custom_field', {:action => 'update', :id => custom_field}, :put) %></td> | |
|
24 | 24 | <td class="buttons"> |
|
25 | 25 | <%= delete_link custom_field_path(custom_field) %> |
|
26 | 26 | </td> |
@@ -8,20 +8,18 | |||
|
8 | 8 | <table class="list"><thead> |
|
9 | 9 | <tr> |
|
10 | 10 | <th><%= l(:field_name) %></th> |
|
11 |
<th |
|
|
12 |
<th |
|
|
13 |
<th |
|
|
14 | <th align="center" style="width:10%;"> </th> | |
|
11 | <th><%= l(:field_is_default) %></th> | |
|
12 | <th><%= l(:field_active) %></th> | |
|
13 | <th><%=l(:button_sort)%></th> | |
|
14 | <th></th> | |
|
15 | 15 | </tr></thead> |
|
16 | 16 | <% enumerations.each do |enumeration| %> |
|
17 | 17 | <tr class="<%= cycle('odd', 'even') %>"> |
|
18 | <td><%= link_to h(enumeration), edit_enumeration_path(enumeration) %></td> | |
|
19 |
<td class=" |
|
|
20 |
<td class=" |
|
|
21 |
<td |
|
|
22 | <td class="buttons"> | |
|
23 | <%= delete_link enumeration_path(enumeration) %> | |
|
24 | </td> | |
|
18 | <td class="name"><%= link_to h(enumeration), edit_enumeration_path(enumeration) %></td> | |
|
19 | <td class="tick"><%= checked_image enumeration.is_default? %></td> | |
|
20 | <td class="tick"><%= checked_image enumeration.active? %></td> | |
|
21 | <td class="reorder"><%= reorder_links('enumeration', {:action => 'update', :id => enumeration}, :put) %></td> | |
|
22 | <td class="buttons"><%= delete_link enumeration_path(enumeration) %></td> | |
|
25 | 23 | </tr> |
|
26 | 24 | <% end %> |
|
27 | 25 | </table> |
@@ -20,7 +20,7 | |||
|
20 | 20 | <% next if container.attachments.empty? -%> |
|
21 | 21 | <% if container.is_a?(Version) -%> |
|
22 | 22 | <tr> |
|
23 |
<th colspan="6" |
|
|
23 | <th colspan="6"> | |
|
24 | 24 | <%= link_to(h(container), {:controller => 'versions', :action => 'show', :id => container}, :class => "icon icon-package") %> |
|
25 | 25 | </th> |
|
26 | 26 | </tr> |
@@ -32,7 +32,7 | |||
|
32 | 32 | <td class="filesize"><%= number_to_human_size(file.filesize) %></td> |
|
33 | 33 | <td class="downloads"><%= file.downloads %></td> |
|
34 | 34 | <td class="digest"><%= file.digest %></td> |
|
35 | <td align="center"> | |
|
35 | <td class="buttons"> | |
|
36 | 36 | <%= link_to(image_tag('delete.png'), attachment_path(file), |
|
37 | 37 | :data => {:confirm => l(:text_are_you_sure)}, :method => :delete) if delete_allowed %> |
|
38 | 38 | </td> |
@@ -293,11 +293,11 | |||
|
293 | 293 | |
|
294 | 294 | <table style="width:100%"> |
|
295 | 295 | <tr> |
|
296 |
<td |
|
|
296 | <td style="text-align:left;"> | |
|
297 | 297 | <%= link_to_content_update("\xc2\xab " + l(:label_previous), |
|
298 | 298 | params.merge(@gantt.params_previous)) %> |
|
299 | 299 | </td> |
|
300 |
<td |
|
|
300 | <td style="text-align:right;"> | |
|
301 | 301 | <%= link_to_content_update(l(:label_next) + " \xc2\xbb", |
|
302 | 302 | params.merge(@gantt.params_next)) %> |
|
303 | 303 | </td> |
@@ -14,8 +14,8 | |||
|
14 | 14 | <tbody> |
|
15 | 15 | <% @groups.each do |group| %> |
|
16 | 16 | <tr class="<%= cycle 'odd', 'even' %>"> |
|
17 | <td><%= link_to h(group), edit_group_path(group) %></td> | |
|
18 |
<td |
|
|
17 | <td class="name"><%= link_to h(group), edit_group_path(group) %></td> | |
|
18 | <td><%= group.users.size %></td> | |
|
19 | 19 | <td class="buttons"><%= delete_link group %></td> |
|
20 | 20 | </tr> |
|
21 | 21 | <% end %> |
@@ -19,13 +19,13 | |||
|
19 | 19 | <tbody> |
|
20 | 20 | <% for status in @issue_statuses %> |
|
21 | 21 | <tr class="<%= cycle("odd", "even") %>"> |
|
22 | <td><%= link_to h(status.name), edit_issue_status_path(status) %></td> | |
|
22 | <td class="name"><%= link_to h(status.name), edit_issue_status_path(status) %></td> | |
|
23 | 23 | <% if Issue.use_status_for_done_ratio? %> |
|
24 |
<td |
|
|
24 | <td><%= h status.default_done_ratio %></td> | |
|
25 | 25 | <% end %> |
|
26 |
<td |
|
|
27 |
<td |
|
|
28 |
<td |
|
|
26 | <td><%= checked_image status.is_default? %></td> | |
|
27 | <td><%= checked_image status.is_closed? %></td> | |
|
28 | <td class="reorder"><%= reorder_links('issue_status', {:action => 'update', :id => status}, :put) %></td> | |
|
29 | 29 | <td class="buttons"> |
|
30 | 30 | <%= delete_link issue_status_path(status) %> |
|
31 | 31 | </td> |
@@ -34,7 +34,7 entries_by_day = entries.group_by(&:spent_on) | |||
|
34 | 34 | <td class="subject"><%=h entry.project %> <%= h(' - ') + link_to_issue(entry.issue, :truncate => 50) if entry.issue %></td> |
|
35 | 35 | <td class="comments"><%=h entry.comments %></td> |
|
36 | 36 | <td class="hours"><%= html_hours("%.2f" % entry.hours) %></td> |
|
37 | <td align="center"> | |
|
37 | <td class="buttons"> | |
|
38 | 38 | <% if entry.editable_by?(@user) -%> |
|
39 | 39 | <%= link_to image_tag('edit.png'), {:controller => 'timelog', :action => 'edit', :id => entry}, |
|
40 | 40 | :title => l(:button_edit) %> |
@@ -7,23 +7,23 | |||
|
7 | 7 | <% TimeEntryActivity.new.available_custom_fields.each do |value| %> |
|
8 | 8 | <th><%= h value.name %></th> |
|
9 | 9 | <% end %> |
|
10 |
<th |
|
|
10 | <th><%= l(:field_active) %></th> | |
|
11 | 11 | </tr></thead> |
|
12 | 12 | |
|
13 | 13 | <% @project.activities(true).each do |enumeration| %> |
|
14 | 14 | <%= fields_for "enumerations[#{enumeration.id}]", enumeration do |ff| %> |
|
15 | 15 | <tr class="<%= cycle('odd', 'even') %>"> |
|
16 | <td> | |
|
16 | <td class="name"> | |
|
17 | 17 | <%= ff.hidden_field :parent_id, :value => enumeration.id unless enumeration.project %> |
|
18 | 18 | <%= h(enumeration) %> |
|
19 | 19 | </td> |
|
20 |
<td |
|
|
20 | <td class="tick"><%= checked_image !enumeration.project %></td> | |
|
21 | 21 | <% enumeration.custom_field_values.each do |value| %> |
|
22 | <td align="center"> | |
|
22 | <td> | |
|
23 | 23 | <%= custom_field_tag "enumerations[#{enumeration.id}]", value %> |
|
24 | 24 | </td> |
|
25 | 25 | <% end %> |
|
26 | <td align="center" style="width:15%;"> | |
|
26 | <td> | |
|
27 | 27 | <%= ff.check_box :active %> |
|
28 | 28 | </td> |
|
29 | 29 | </tr> |
@@ -10,9 +10,9 | |||
|
10 | 10 | <% Board.board_tree(@project.boards) do |board, level| |
|
11 | 11 | next if board.new_record? %> |
|
12 | 12 | <tr class="<%= cycle 'odd', 'even' %>"> |
|
13 | <td style="padding-left: <%= level * 18 %>px;"><%= link_to board.name, project_board_path(@project, board) %></td> | |
|
14 | <td><%=h board.description %></td> | |
|
15 |
<td |
|
|
13 | <td class="name" style="padding-left: <%= level * 18 %>px;"><%= link_to board.name, project_board_path(@project, board) %></td> | |
|
14 | <td class="description"><%=h board.description %></td> | |
|
15 | <td class="reorder"> | |
|
16 | 16 | <% if authorize_for("boards", "edit") %> |
|
17 | 17 | <%= reorder_links('board', {:controller => 'boards', :action => 'update', :project_id => @project, :id => board}, :put) %> |
|
18 | 18 | <% end %> |
@@ -9,7 +9,7 | |||
|
9 | 9 | <% for category in @project.issue_categories %> |
|
10 | 10 | <% unless category.new_record? %> |
|
11 | 11 | <tr class="<%= cycle 'odd', 'even' %>"> |
|
12 | <td><%=h(category.name) %></td> | |
|
12 | <td class="name"><%=h(category.name) %></td> | |
|
13 | 13 | <td><%=h(category.assigned_to.name) if category.assigned_to %></td> |
|
14 | 14 | <td class="buttons"> |
|
15 | 15 | <% if User.current.allowed_to?(:manage_categories, @project) %> |
@@ -15,7 +15,7 | |||
|
15 | 15 | <% members.each do |member| %> |
|
16 | 16 | <% next if member.new_record? %> |
|
17 | 17 | <tr id="member-<%= member.id %>" class="<%= cycle 'odd', 'even' %> member"> |
|
18 | <td class="<%= member.principal.class.name.downcase %>"><%= link_to_user member.principal %></td> | |
|
18 | <td class="name <%= member.principal.class.name.downcase %>"><%= link_to_user member.principal %></td> | |
|
19 | 19 | <td class="roles"> |
|
20 | 20 | <span id="member-<%= member.id %>-roles"><%= member.roles.sort.collect(&:to_s).join(', ') %></span> |
|
21 | 21 | <%= form_for(member, |
@@ -12,11 +12,11 | |||
|
12 | 12 | <tbody> |
|
13 | 13 | <% @project.repositories.sort.each do |repository| %> |
|
14 | 14 | <tr class="<%= cycle 'odd', 'even' %>"> |
|
15 | <td> | |
|
15 | <td class="name"> | |
|
16 | 16 | <%= link_to repository.identifier, |
|
17 | 17 | {:controller => 'repositories', :action => 'show',:id => @project, :repository_id => repository.identifier_param} if repository.identifier.present? %> |
|
18 | 18 | </td> |
|
19 |
<td |
|
|
19 | <td><%= checked_image repository.is_default? %></td> | |
|
20 | 20 | <td><%=h repository.scm_name %></td> |
|
21 | 21 | <td><%=h repository.url %></td> |
|
22 | 22 | <td class="buttons"> |
@@ -10,15 +10,13 | |||
|
10 | 10 | <table class="list"> |
|
11 | 11 | <% @queries.each do |query| %> |
|
12 | 12 | <tr class="<%= cycle('odd', 'even') %>"> |
|
13 | <td> | |
|
13 | <td class="name"> | |
|
14 | 14 | <%= link_to h(query.name), :controller => 'issues', :action => 'index', :project_id => @project, :query_id => query %> |
|
15 | 15 | </td> |
|
16 |
<td |
|
|
17 | <small> | |
|
16 | <td class="buttons"> | |
|
18 | 17 | <% if query.editable_by?(User.current) %> |
|
19 | 18 | <%= link_to l(:button_edit), edit_query_path(query), :class => 'icon icon-edit' %> |
|
20 | 19 | <%= delete_link query_path(query) %> |
|
21 | </small> | |
|
22 | 20 | <% end %> |
|
23 | 21 | </td> |
|
24 | 22 | </tr> |
@@ -1,27 +1,26 | |||
|
1 | 1 | <% if @statuses.empty? or rows.empty? %> |
|
2 | 2 | <p><i><%=l(:label_no_data)%></i></p> |
|
3 | 3 | <% else %> |
|
4 | <% col_width = 70 / (@statuses.length+3) %> | |
|
5 | <table class="list"> | |
|
4 | <table class="list issue-report"> | |
|
6 | 5 | <thead><tr> |
|
7 | <th style="width:25%"></th> | |
|
6 | <th></th> | |
|
8 | 7 | <% for status in @statuses %> |
|
9 |
<th |
|
|
8 | <th><%=h status.name %></th> | |
|
10 | 9 | <% end %> |
|
11 |
<th |
|
|
12 |
<th |
|
|
13 |
<th |
|
|
10 | <th><strong><%=l(:label_open_issues_plural)%></strong></th> | |
|
11 | <th><strong><%=l(:label_closed_issues_plural)%></strong></th> | |
|
12 | <th><strong><%=l(:label_total)%></strong></th> | |
|
14 | 13 | </tr></thead> |
|
15 | 14 | <tbody> |
|
16 | 15 | <% for row in rows %> |
|
17 | 16 | <tr class="<%= cycle("odd", "even") %>"> |
|
18 | <td><%= link_to h(row.name), aggregate_path(@project, field_name, row) %></td> | |
|
17 | <td class="name"><%= link_to h(row.name), aggregate_path(@project, field_name, row) %></td> | |
|
19 | 18 | <% for status in @statuses %> |
|
20 |
<td |
|
|
19 | <td><%= aggregate_link data, { field_name => row.id, "status_id" => status.id }, aggregate_path(@project, field_name, row, :status_id => status.id) %></td> | |
|
21 | 20 | <% end %> |
|
22 |
<td |
|
|
23 |
<td |
|
|
24 |
<td |
|
|
21 | <td><%= aggregate_link data, { field_name => row.id, "closed" => 0 }, aggregate_path(@project, field_name, row, :status_id => "o") %></td> | |
|
22 | <td><%= aggregate_link data, { field_name => row.id, "closed" => 1 }, aggregate_path(@project, field_name, row, :status_id => "c") %></td> | |
|
23 | <td><%= aggregate_link data, { field_name => row.id }, aggregate_path(@project, field_name, row, :status_id => "*") %></td> | |
|
25 | 24 | </tr> |
|
26 | 25 | <% end %> |
|
27 | 26 | </tbody> |
@@ -1,20 +1,20 | |||
|
1 | 1 | <% if @statuses.empty? or rows.empty? %> |
|
2 | 2 | <p><i><%=l(:label_no_data)%></i></p> |
|
3 | 3 | <% else %> |
|
4 | <table class="list"> | |
|
4 | <table class="list issue-report"> | |
|
5 | 5 | <thead><tr> |
|
6 | <th style="width:25%"></th> | |
|
7 |
<th |
|
|
8 |
<th |
|
|
9 |
<th |
|
|
6 | <th></th> | |
|
7 | <th><%=l(:label_open_issues_plural)%></th> | |
|
8 | <th><%=l(:label_closed_issues_plural)%></th> | |
|
9 | <th><%=l(:label_total)%></th> | |
|
10 | 10 | </tr></thead> |
|
11 | 11 | <tbody> |
|
12 | 12 | <% for row in rows %> |
|
13 | 13 | <tr class="<%= cycle("odd", "even") %>"> |
|
14 | <td><%= link_to h(row.name), aggregate_path(@project, field_name, row) %></td> | |
|
15 |
<td |
|
|
16 |
<td |
|
|
17 |
<td |
|
|
14 | <td class="name"><%= link_to h(row.name), aggregate_path(@project, field_name, row) %></td> | |
|
15 | <td><%= aggregate_link data, { field_name => row.id, "closed" => 0 }, aggregate_path(@project, field_name, row, :status_id => "o") %></td> | |
|
16 | <td><%= aggregate_link data, { field_name => row.id, "closed" => 1 }, aggregate_path(@project, field_name, row, :status_id => "c") %></td> | |
|
17 | <td><%= aggregate_link data, { field_name => row.id }, aggregate_path(@project, field_name, row, :status_id => "*") %></td> | |
|
18 | 18 | </tr> |
|
19 | 19 | <% end %> |
|
20 | 20 | </tbody> |
@@ -14,8 +14,8 | |||
|
14 | 14 | <tbody> |
|
15 | 15 | <% for role in @roles %> |
|
16 | 16 | <tr class="<%= cycle("odd", "even") %>"> |
|
17 | <td><%= content_tag(role.builtin? ? 'em' : 'span', link_to(h(role.name), edit_role_path(role))) %></td> | |
|
18 | <td align="center" style="width:15%;"> | |
|
17 | <td class="name"><%= content_tag(role.builtin? ? 'em' : 'span', link_to(h(role.name), edit_role_path(role))) %></td> | |
|
18 | <td class="reorder"> | |
|
19 | 19 | <% unless role.builtin? %> |
|
20 | 20 | <%= reorder_links('role', {:action => 'update', :id => role}, :put) %> |
|
21 | 21 | <% end %> |
@@ -32,13 +32,13 | |||
|
32 | 32 | <% end %> |
|
33 | 33 | <% perms_by_module[mod].each do |permission| %> |
|
34 | 34 | <tr class="<%= cycle('odd', 'even') %> permission-<%= permission.name %>"> |
|
35 | <td> | |
|
35 | <td class="name"> | |
|
36 | 36 | <%= link_to_function(image_tag('toggle_check.png'), "toggleCheckboxesBySelector('.permission-#{permission.name} input')", |
|
37 | 37 | :title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}") %> |
|
38 | 38 | <%= l_or_humanize(permission.name, :prefix => 'permission_') %> |
|
39 | 39 | </td> |
|
40 | 40 | <% @roles.each do |role| %> |
|
41 |
<td |
|
|
41 | <td> | |
|
42 | 42 | <% if role.setable_permissions.include? permission %> |
|
43 | 43 | <%= check_box_tag "permissions[#{role.id}][]", permission.name, (role.permissions.include? permission.name), :id => nil, :class => "role-#{role.id}" %> |
|
44 | 44 | <% end %> |
@@ -21,7 +21,7 | |||
|
21 | 21 | <tr class="time-entry <%= cycle("odd", "even") %> hascontextmenu"> |
|
22 | 22 | <td class="checkbox hide-when-print"><%= check_box_tag("ids[]", entry.id, false, :id => nil) %></td> |
|
23 | 23 | <%= raw @query.inline_columns.map {|column| "<td class=\"#{column.css_classes}\">#{column_content(column, entry)}</td>"}.join %> |
|
24 | <td align="center"> | |
|
24 | <td class="buttons"> | |
|
25 | 25 | <% if entry.editable_by?(User.current) -%> |
|
26 | 26 | <%= link_to image_tag('edit.png'), edit_time_entry_path(entry), |
|
27 | 27 | :title => l(:button_edit) %> |
@@ -3,7 +3,7 | |||
|
3 | 3 | <% next if hours_for_value.empty? -%> |
|
4 | 4 | <tr class="<%= cycle('odd', 'even') %> <%= criterias.length > level+1 ? 'subtotal' : 'last-level' %>"> |
|
5 | 5 | <%= ("<td></td>" * level).html_safe %> |
|
6 | <td><%= h(format_criteria_value(@report.available_criteria[criterias[level]], value)) %></td> | |
|
6 | <td class="name"><%= h(format_criteria_value(@report.available_criteria[criterias[level]], value)) %></td> | |
|
7 | 7 | <%= ("<td></td>" * (criterias.length - level - 1)).html_safe -%> |
|
8 | 8 | <% total = 0 -%> |
|
9 | 9 | <% @report.periods.each do |period| -%> |
@@ -43,9 +43,9 | |||
|
43 | 43 | <% end %> |
|
44 | 44 | <% columns_width = (40 / (@report.periods.length+1)).to_i %> |
|
45 | 45 | <% @report.periods.each do |period| %> |
|
46 |
<th class="period" |
|
|
46 | <th class="period" style="width:<%= columns_width %>%;"><%= period %></th> | |
|
47 | 47 | <% end %> |
|
48 |
<th class="total" |
|
|
48 | <th class="total" style="width:<%= columns_width %>%;"><%= l(:label_total_time) %></th> | |
|
49 | 49 | </tr> |
|
50 | 50 | </thead> |
|
51 | 51 | <tbody> |
@@ -25,13 +25,13 | |||
|
25 | 25 | </tr> |
|
26 | 26 | <% Tracker::CORE_FIELDS.each do |field| %> |
|
27 | 27 | <tr class="<%= cycle("odd", "even") %>"> |
|
28 | <td> | |
|
28 | <td class="name"> | |
|
29 | 29 | <%= link_to_function(image_tag('toggle_check.png'), "toggleCheckboxesBySelector('input.core-field-#{field}')", |
|
30 | 30 | :title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}") %> |
|
31 | 31 | <%= l("field_#{field}".sub(/_id$/, '')) %> |
|
32 | 32 | </td> |
|
33 | 33 | <% @trackers.each do |tracker| %> |
|
34 |
<td |
|
|
34 | <td> | |
|
35 | 35 | <%= check_box_tag "trackers[#{tracker.id}][core_fields][]", field, tracker.core_fields.include?(field), |
|
36 | 36 | :class => "tracker-#{tracker.id} core-field-#{field}" %> |
|
37 | 37 | </td> |
@@ -47,13 +47,13 | |||
|
47 | 47 | </tr> |
|
48 | 48 | <% @custom_fields.each do |field| %> |
|
49 | 49 | <tr class="<%= cycle("odd", "even") %>"> |
|
50 | <td> | |
|
50 | <td class="name"> | |
|
51 | 51 | <%= link_to_function(image_tag('toggle_check.png'), "toggleCheckboxesBySelector('input.custom-field-#{field.id}')", |
|
52 | 52 | :title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}") %> |
|
53 | 53 | <%= field.name %> |
|
54 | 54 | </td> |
|
55 | 55 | <% @trackers.each do |tracker| %> |
|
56 |
<td |
|
|
56 | <td> | |
|
57 | 57 | <%= check_box_tag "trackers[#{tracker.id}][custom_field_ids][]", field.id, tracker.custom_fields.include?(field), |
|
58 | 58 | :class => "tracker-#{tracker.id} custom-field-#{field.id}" %> |
|
59 | 59 | </td> |
@@ -15,15 +15,15 | |||
|
15 | 15 | <tbody> |
|
16 | 16 | <% for tracker in @trackers %> |
|
17 | 17 | <tr class="<%= cycle("odd", "even") %>"> |
|
18 | <td><%= link_to h(tracker.name), edit_tracker_path(tracker) %></td> | |
|
19 | <td align="center"> | |
|
18 | <td class="name"><%= link_to h(tracker.name), edit_tracker_path(tracker) %></td> | |
|
19 | <td> | |
|
20 | 20 | <% unless tracker.workflow_rules.count > 0 %> |
|
21 | 21 | <span class="icon icon-warning"> |
|
22 | 22 | <%= l(:text_tracker_no_workflow) %> (<%= link_to l(:button_edit), workflows_edit_path(:tracker_id => tracker) %>) |
|
23 | 23 | </span> |
|
24 | 24 | <% end %> |
|
25 | 25 | </td> |
|
26 | <td align="center" style="width:15%;"> | |
|
26 | <td class="reorder"> | |
|
27 | 27 | <%= reorder_links('tracker', {:action => 'update', :id => tracker}, :put) %> |
|
28 | 28 | </td> |
|
29 | 29 | <td class="buttons"> |
@@ -41,9 +41,9 | |||
|
41 | 41 | <td class="firstname"><%= h(user.firstname) %></td> |
|
42 | 42 | <td class="lastname"><%= h(user.lastname) %></td> |
|
43 | 43 | <td class="email"><%= mail_to(h(user.mail)) %></td> |
|
44 |
<td |
|
|
45 |
<td class="created_on" |
|
|
46 |
<td class="last_login_on" |
|
|
44 | <td class="tick"><%= checked_image user.admin? %></td> | |
|
45 | <td class="created_on"><%= format_time(user.created_on) %></td> | |
|
46 | <td class="last_login_on"><%= format_time(user.last_login_on) unless user.last_login_on.nil? %></td> | |
|
47 | 47 | <td class="buttons"> |
|
48 | 48 | <%= change_status_link(user) %> |
|
49 | 49 | <%= delete_link user_path(user, :back_url => users_path(params)) unless User.current == user %> |
@@ -13,14 +13,14 | |||
|
13 | 13 | <table> |
|
14 | 14 | <% counts.each do |count| %> |
|
15 | 15 | <tr> |
|
16 |
<td |
|
|
16 | <td style="width:130px; text-align:right;"> | |
|
17 | 17 | <% if count[:group] -%> |
|
18 | 18 | <%= link_to(h(count[:group]), project_issues_path(version.project, :set_filter => 1, :status_id => '*', :fixed_version_id => version, "#{criteria}_id" => count[:group])) %> |
|
19 | 19 | <% else -%> |
|
20 | 20 | <%= link_to(l(:label_none), project_issues_path(version.project, :set_filter => 1, :status_id => '*', :fixed_version_id => version, "#{criteria}_id" => "!*")) %> |
|
21 | 21 | <% end %> |
|
22 | 22 | </td> |
|
23 |
<td |
|
|
23 | <td style="width:240px;"> | |
|
24 | 24 | <%= progress_bar((count[:closed].to_f / count[:total])*100, |
|
25 | 25 | :legend => "#{count[:closed]}/#{count[:total]}", |
|
26 | 26 | :width => "#{(count[:total].to_f / max * 200).floor}px;") %> |
@@ -21,7 +21,7 | |||
|
21 | 21 | <% issues.each do |issue| -%> |
|
22 | 22 | <tr class="hascontextmenu"> |
|
23 | 23 | <td class="checkbox"><%= check_box_tag 'ids[]', issue.id, false, :id => nil %></td> |
|
24 | <td><%= link_to_issue(issue, :project => (@project != issue.project)) %></td> | |
|
24 | <td class="subject"><%= link_to_issue(issue, :project => (@project != issue.project)) %></td> | |
|
25 | 25 | </tr> |
|
26 | 26 | <% end -%> |
|
27 | 27 | </table> |
@@ -1,17 +1,17 | |||
|
1 | 1 | <table class="list transitions transitions-<%= name %>"> |
|
2 | 2 | <thead> |
|
3 | 3 | <tr> |
|
4 | <th align="left"> | |
|
4 | <th> | |
|
5 | 5 | <%= link_to_function(image_tag('toggle_check.png'), "toggleCheckboxesBySelector('table.transitions-#{name} input')", |
|
6 | 6 | :title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}") %> |
|
7 | 7 | <%=l(:label_current_status)%> |
|
8 | 8 | </th> |
|
9 |
<th |
|
|
9 | <th colspan="<%= @statuses.length %>"><%=l(:label_new_statuses_allowed)%></th> | |
|
10 | 10 | </tr> |
|
11 | 11 | <tr> |
|
12 | 12 | <td></td> |
|
13 | 13 | <% for new_status in @statuses %> |
|
14 |
<td |
|
|
14 | <td style="width:<%= 75 / @statuses.size %>%;"> | |
|
15 | 15 | <%= link_to_function(image_tag('toggle_check.png'), "toggleCheckboxesBySelector('table.transitions-#{name} input.new-status-#{new_status.id}')", |
|
16 | 16 | :title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}") %> |
|
17 | 17 | <%=h new_status.name %> |
@@ -22,7 +22,7 | |||
|
22 | 22 | <tbody> |
|
23 | 23 | <% for old_status in @statuses %> |
|
24 | 24 | <tr class="<%= cycle("odd", "even") %>"> |
|
25 | <td> | |
|
25 | <td class="name"> | |
|
26 | 26 | <%= link_to_function(image_tag('toggle_check.png'), "toggleCheckboxesBySelector('table.transitions-#{name} input.old-status-#{old_status.id}')", |
|
27 | 27 | :title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}") %> |
|
28 | 28 | |
@@ -30,7 +30,7 | |||
|
30 | 30 | </td> |
|
31 | 31 | <% for new_status in @statuses -%> |
|
32 | 32 | <% checked = workflows.detect {|w| w.old_status_id == old_status.id && w.new_status_id == new_status.id} %> |
|
33 |
<td |
|
|
33 | <td class="<%= checked ? 'enabled' : '' %>"> | |
|
34 | 34 | <%= check_box_tag "issue_status[#{ old_status.id }][#{new_status.id}][]", name, checked, |
|
35 | 35 | :class => "old-status-#{old_status.id} new-status-#{new_status.id}" %> |
|
36 | 36 | </td> |
@@ -19,9 +19,9 | |||
|
19 | 19 | <tbody> |
|
20 | 20 | <% @workflow_counts.each do |tracker, roles| -%> |
|
21 | 21 | <tr class="<%= cycle('odd', 'even') %>"> |
|
22 | <td><%= h tracker %></td> | |
|
22 | <td class="name"><%= h tracker %></td> | |
|
23 | 23 | <% roles.each do |role, count| -%> |
|
24 | <td align="center"> | |
|
24 | <td> | |
|
25 | 25 | <%= link_to((count > 0 ? count : image_tag('false.png')), {:action => 'edit', :role_id => role, :tracker_id => tracker}, :title => l(:button_edit)) %> |
|
26 | 26 | </td> |
|
27 | 27 | <% end -%> |
@@ -35,14 +35,14 | |||
|
35 | 35 | <table class="list fields_permissions"> |
|
36 | 36 | <thead> |
|
37 | 37 | <tr> |
|
38 |
<th |
|
|
38 | <th> | |
|
39 | 39 | </th> |
|
40 |
<th |
|
|
40 | <th colspan="<%= @statuses.length %>"><%=l(:label_issue_status)%></th> | |
|
41 | 41 | </tr> |
|
42 | 42 | <tr> |
|
43 | 43 | <td></td> |
|
44 | 44 | <% for status in @statuses %> |
|
45 |
<td |
|
|
45 | <td style="width:<%= 75 / @statuses.size %>%;"> | |
|
46 | 46 | <%=h status.name %> |
|
47 | 47 | </td> |
|
48 | 48 | <% end %> |
@@ -57,11 +57,11 | |||
|
57 | 57 | </tr> |
|
58 | 58 | <% @fields.each do |field, name| %> |
|
59 | 59 | <tr class="<%= cycle("odd", "even") %>"> |
|
60 | <td> | |
|
60 | <td class="name"> | |
|
61 | 61 | <%=h name %> <%= content_tag('span', '*', :class => 'required') if field_required?(field) %> |
|
62 | 62 | </td> |
|
63 | 63 | <% for status in @statuses -%> |
|
64 |
<td |
|
|
64 | <td class="<%= @permissions[status.id][field] %>"> | |
|
65 | 65 | <%= field_permission_tag(@permissions, status, field, @role) %> |
|
66 | 66 | <% unless status == @statuses.last %><a href="#" class="repeat-value">»</a><% end %> |
|
67 | 67 | </td> |
@@ -77,11 +77,11 | |||
|
77 | 77 | </tr> |
|
78 | 78 | <% @custom_fields.each do |field| %> |
|
79 | 79 | <tr class="<%= cycle("odd", "even") %>"> |
|
80 | <td> | |
|
80 | <td class="name"> | |
|
81 | 81 | <%=h field.name %> <%= content_tag('span', '*', :class => 'required') if field_required?(field) %> |
|
82 | 82 | </td> |
|
83 | 83 | <% for status in @statuses -%> |
|
84 |
<td |
|
|
84 | <td class="<%= @permissions[status.id][field.id.to_s] %>"> | |
|
85 | 85 | <%= field_permission_tag(@permissions, status, field, @role) %> |
|
86 | 86 | <% unless status == @statuses.last %><a href="#" class="repeat-value">»</a><% end %> |
|
87 | 87 | </td> |
@@ -22,7 +22,7 table td h3 { font-size: 1.2em; text-align: left; } | |||
|
22 | 22 | |
|
23 | 23 | <table style="width:100%"> |
|
24 | 24 | <tr><th colspan="3">Font Styles</th></tr> |
|
25 |
<tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td |
|
|
25 | <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr> | |
|
26 | 26 | <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr> |
|
27 | 27 | <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr> |
|
28 | 28 | <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr> |
@@ -22,7 +22,7 table td h3 { font-size: 1.2em; text-align: left; } | |||
|
22 | 22 | |
|
23 | 23 | <table style="width:100%"> |
|
24 | 24 | <tr><th colspan="3">Font Styles</th></tr> |
|
25 |
<tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td |
|
|
25 | <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr> | |
|
26 | 26 | <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr> |
|
27 | 27 | <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr> |
|
28 | 28 | <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr> |
@@ -22,7 +22,7 table td h3 { font-size: 1.2em; text-align: left; } | |||
|
22 | 22 | |
|
23 | 23 | <table style="width:100%"> |
|
24 | 24 | <tr><th colspan="3">Font Styles</th></tr> |
|
25 |
<tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td |
|
|
25 | <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr> | |
|
26 | 26 | <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr> |
|
27 | 27 | <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr> |
|
28 | 28 | <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr> |
@@ -22,7 +22,7 table td h3 { font-size: 1.2em; text-align: left; } | |||
|
22 | 22 | |
|
23 | 23 | <table style="width:100%"> |
|
24 | 24 | <tr><th colspan="3">Font Styles</th></tr> |
|
25 |
<tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td |
|
|
25 | <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr> | |
|
26 | 26 | <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr> |
|
27 | 27 | <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr> |
|
28 | 28 | <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr> |
@@ -22,7 +22,7 table td h3 { font-size: 1.2em; text-align: left; } | |||
|
22 | 22 | |
|
23 | 23 | <table style="width:100%"> |
|
24 | 24 | <tr><th colspan="3">Font Styles</th></tr> |
|
25 |
<tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td |
|
|
25 | <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr> | |
|
26 | 26 | <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr> |
|
27 | 27 | <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr> |
|
28 | 28 | <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr> |
@@ -22,7 +22,7 table td h3 { font-size: 1.2em; text-align: left; } | |||
|
22 | 22 | |
|
23 | 23 | <table style="width:100%"> |
|
24 | 24 | <tr><th colspan="3">Font Styles</th></tr> |
|
25 |
<tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td |
|
|
25 | <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr> | |
|
26 | 26 | <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr> |
|
27 | 27 | <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr> |
|
28 | 28 | <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr> |
@@ -22,7 +22,7 table td h3 { font-size: 1.2em; text-align: left; } | |||
|
22 | 22 | |
|
23 | 23 | <table style="width:100%"> |
|
24 | 24 | <tr><th colspan="3">Font Styles</th></tr> |
|
25 |
<tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td |
|
|
25 | <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr> | |
|
26 | 26 | <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr> |
|
27 | 27 | <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr> |
|
28 | 28 | <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr> |
@@ -22,7 +22,7 table td h3 { font-size: 1.2em; text-align: left; } | |||
|
22 | 22 | |
|
23 | 23 | <table style="width:100%"> |
|
24 | 24 | <tr><th colspan="3">Schriftarten</th></tr> |
|
25 |
<tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Fett" /></th><td |
|
|
25 | <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Fett" /></th><td style="width:50%;">*Fett*</td><td style="width:50%;"><strong>Fett</strong></td></tr> | |
|
26 | 26 | <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Kursiv" /></th><td>_Kursiv_</td><td><em>Kursiv</em></td></tr> |
|
27 | 27 | <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Unterstrichen" /></th><td>+Unterstrichen+</td><td><ins>Unterstrichen</ins></td></tr> |
|
28 | 28 | <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Durchgestrichen" /></th><td>-Durchgestrichen-</td><td><del>Durchgestrichen</del></td></tr> |
@@ -22,7 +22,7 table td h3 { font-size: 1.2em; text-align: left; } | |||
|
22 | 22 | |
|
23 | 23 | <table style="width:100%"> |
|
24 | 24 | <tr><th colspan="3">Font Styles</th></tr> |
|
25 |
<tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td |
|
|
25 | <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr> | |
|
26 | 26 | <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr> |
|
27 | 27 | <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr> |
|
28 | 28 | <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr> |
@@ -22,7 +22,7 table td h3 { font-size: 1.2em; text-align: left; } | |||
|
22 | 22 | |
|
23 | 23 | <table style="width:100%"> |
|
24 | 24 | <tr><th colspan="3">Font Styles</th></tr> |
|
25 |
<tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td |
|
|
25 | <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr> | |
|
26 | 26 | <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr> |
|
27 | 27 | <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr> |
|
28 | 28 | <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr> |
@@ -22,7 +22,7 table td h3 { font-size: 1.2em; text-align: left; } | |||
|
22 | 22 | |
|
23 | 23 | <table style="width:100%"> |
|
24 | 24 | <tr><th colspan="3">Font Styles</th></tr> |
|
25 |
<tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td |
|
|
25 | <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr> | |
|
26 | 26 | <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr> |
|
27 | 27 | <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr> |
|
28 | 28 | <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr> |
@@ -22,7 +22,7 table td h3 { font-size: 1.2em; text-align: left; } | |||
|
22 | 22 | |
|
23 | 23 | <table style="width:100%"> |
|
24 | 24 | <tr><th colspan="3">Font Styles</th></tr> |
|
25 |
<tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td |
|
|
25 | <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr> | |
|
26 | 26 | <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr> |
|
27 | 27 | <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr> |
|
28 | 28 | <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr> |
@@ -22,7 +22,7 table td h3 { font-size: 1.2em; text-align: left; } | |||
|
22 | 22 | |
|
23 | 23 | <table style="width:100%"> |
|
24 | 24 | <tr><th colspan="3">Font Styles</th></tr> |
|
25 |
<tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td |
|
|
25 | <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr> | |
|
26 | 26 | <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr> |
|
27 | 27 | <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr> |
|
28 | 28 | <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr> |
@@ -22,7 +22,7 table td h3 { font-size: 1.2em; text-align: left; } | |||
|
22 | 22 | |
|
23 | 23 | <table style="width:100%"> |
|
24 | 24 | <tr><th colspan="3">Font Styles</th></tr> |
|
25 |
<tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td |
|
|
25 | <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr> | |
|
26 | 26 | <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr> |
|
27 | 27 | <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr> |
|
28 | 28 | <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr> |
@@ -22,7 +22,7 table td h3 { font-size: 1.2em; text-align: left; } | |||
|
22 | 22 | |
|
23 | 23 | <table style="width:100%"> |
|
24 | 24 | <tr><th colspan="3">Font Styles</th></tr> |
|
25 |
<tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td |
|
|
25 | <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr> | |
|
26 | 26 | <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr> |
|
27 | 27 | <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr> |
|
28 | 28 | <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr> |
@@ -22,7 +22,7 table td h3 { font-size: 1.2em; text-align: left; } | |||
|
22 | 22 | |
|
23 | 23 | <table style="width:100%"> |
|
24 | 24 | <tr><th colspan="3">Font Styles</th></tr> |
|
25 |
<tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td |
|
|
25 | <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr> | |
|
26 | 26 | <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr> |
|
27 | 27 | <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr> |
|
28 | 28 | <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr> |
@@ -22,7 +22,7 table td h3 { font-size: 1.2em; text-align: left; } | |||
|
22 | 22 | |
|
23 | 23 | <table style="width:100%"> |
|
24 | 24 | <tr><th colspan="3">Font Styles</th></tr> |
|
25 |
<tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td |
|
|
25 | <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Gras*</td><td style="width:50%;"><strong>Gras</strong></td></tr> | |
|
26 | 26 | <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italique_</td><td><em>Italique</em></td></tr> |
|
27 | 27 | <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Sous-ligné+</td><td><ins>Sous-ligné</ins></td></tr> |
|
28 | 28 | <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Barré-</td><td><del>Barré</del></td></tr> |
@@ -22,7 +22,7 table td h3 { font-size: 1.2em; text-align: left; } | |||
|
22 | 22 | |
|
23 | 23 | <table style="width:100%"> |
|
24 | 24 | <tr><th colspan="3">Font Styles</th></tr> |
|
25 |
<tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td |
|
|
25 | <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr> | |
|
26 | 26 | <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr> |
|
27 | 27 | <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr> |
|
28 | 28 | <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr> |
@@ -22,7 +22,7 table td h3 { font-size: 1.2em; text-align: left; } | |||
|
22 | 22 | |
|
23 | 23 | <table style="width:100%"> |
|
24 | 24 | <tr><th colspan="3">Font Styles</th></tr> |
|
25 |
<tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td |
|
|
25 | <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr> | |
|
26 | 26 | <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr> |
|
27 | 27 | <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr> |
|
28 | 28 | <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr> |
@@ -22,7 +22,7 table td h3 { font-size: 1.2em; text-align: left; } | |||
|
22 | 22 | |
|
23 | 23 | <table style="width:100%"> |
|
24 | 24 | <tr><th colspan="3">Font Styles</th></tr> |
|
25 |
<tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td |
|
|
25 | <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr> | |
|
26 | 26 | <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr> |
|
27 | 27 | <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr> |
|
28 | 28 | <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr> |
@@ -22,7 +22,7 table td h3 { font-size: 1.2em; text-align: left; } | |||
|
22 | 22 | |
|
23 | 23 | <table style="width:100%"> |
|
24 | 24 | <tr><th colspan="3">Font Styles</th></tr> |
|
25 |
<tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td |
|
|
25 | <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr> | |
|
26 | 26 | <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr> |
|
27 | 27 | <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr> |
|
28 | 28 | <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr> |
@@ -22,7 +22,7 table td h3 { font-size: 1.2em; text-align: left; } | |||
|
22 | 22 | |
|
23 | 23 | <table style="width:100%"> |
|
24 | 24 | <tr><th colspan="3">Font Styles</th></tr> |
|
25 |
<tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td |
|
|
25 | <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr> | |
|
26 | 26 | <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr> |
|
27 | 27 | <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr> |
|
28 | 28 | <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr> |
@@ -22,7 +22,7 table td h3 { font-size: 1.2em; text-align: left; } | |||
|
22 | 22 | |
|
23 | 23 | <table style="width:100%"> |
|
24 | 24 | <tr><th colspan="3">Font Styles</th></tr> |
|
25 |
<tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td |
|
|
25 | <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr> | |
|
26 | 26 | <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr> |
|
27 | 27 | <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr> |
|
28 | 28 | <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr> |
@@ -22,7 +22,7 table td h3 { font-size: 1.2em; text-align: left; } | |||
|
22 | 22 | |
|
23 | 23 | <table style="width:100%"> |
|
24 | 24 | <tr><th colspan="3">フォントスタイル</th></tr> |
|
25 |
<tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="太字" /></th><td |
|
|
25 | <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="太字" /></th><td style="width:50%;">*太字*</td><td style="width:50%;"><strong>太字</strong></td></tr> | |
|
26 | 26 | <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="斜体" /></th><td>_斜体_</td><td><em>斜体</em></td></tr> |
|
27 | 27 | <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="下線" /></th><td>+下線+</td><td><ins>下線</ins></td></tr> |
|
28 | 28 | <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="取り消し線" /></th><td>-取り消し線-</td><td><del>取り消し線</del></td></tr> |
@@ -22,7 +22,7 table td h3 { font-size: 1.2em; text-align: left; } | |||
|
22 | 22 | |
|
23 | 23 | <table style="width:100%"> |
|
24 | 24 | <tr><th colspan="3">Font Styles</th></tr> |
|
25 |
<tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td |
|
|
25 | <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr> | |
|
26 | 26 | <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr> |
|
27 | 27 | <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr> |
|
28 | 28 | <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr> |
@@ -22,7 +22,7 table td h3 { font-size: 1.2em; text-align: left; } | |||
|
22 | 22 | |
|
23 | 23 | <table style="width:100%"> |
|
24 | 24 | <tr><th colspan="3">Font Styles</th></tr> |
|
25 |
<tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td |
|
|
25 | <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr> | |
|
26 | 26 | <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr> |
|
27 | 27 | <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr> |
|
28 | 28 | <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr> |
@@ -22,7 +22,7 table td h3 { font-size: 1.2em; text-align: left; } | |||
|
22 | 22 | |
|
23 | 23 | <table style="width:100%"> |
|
24 | 24 | <tr><th colspan="3">Font Styles</th></tr> |
|
25 |
<tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td |
|
|
25 | <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr> | |
|
26 | 26 | <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr> |
|
27 | 27 | <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr> |
|
28 | 28 | <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr> |
@@ -22,7 +22,7 table td h3 { font-size: 1.2em; text-align: left; } | |||
|
22 | 22 | |
|
23 | 23 | <table style="width:100%"> |
|
24 | 24 | <tr><th colspan="3">Font Styles</th></tr> |
|
25 |
<tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td |
|
|
25 | <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr> | |
|
26 | 26 | <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr> |
|
27 | 27 | <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr> |
|
28 | 28 | <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr> |
@@ -22,7 +22,7 table td h3 { font-size: 1.2em; text-align: left; } | |||
|
22 | 22 | |
|
23 | 23 | <table style="width:100%"> |
|
24 | 24 | <tr><th colspan="3">Font Styles</th></tr> |
|
25 |
<tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td |
|
|
25 | <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr> | |
|
26 | 26 | <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr> |
|
27 | 27 | <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr> |
|
28 | 28 | <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr> |
@@ -22,7 +22,7 table td h3 { font-size: 1.2em; text-align: left; } | |||
|
22 | 22 | |
|
23 | 23 | <table style="width:100%"> |
|
24 | 24 | <tr><th colspan="3">Font Styles</th></tr> |
|
25 |
<tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td |
|
|
25 | <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr> | |
|
26 | 26 | <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr> |
|
27 | 27 | <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr> |
|
28 | 28 | <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr> |
@@ -22,7 +22,7 table td h3 { font-size: 1.2em; text-align: left; } | |||
|
22 | 22 | |
|
23 | 23 | <table style="width:100%"> |
|
24 | 24 | <tr><th colspan="3">Font Styles</th></tr> |
|
25 |
<tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td |
|
|
25 | <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr> | |
|
26 | 26 | <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr> |
|
27 | 27 | <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr> |
|
28 | 28 | <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr> |
@@ -22,7 +22,7 table td h3 { font-size: 1.2em; text-align: left; } | |||
|
22 | 22 | |
|
23 | 23 | <table style="width:100%"> |
|
24 | 24 | <tr><th colspan="3">Font Styles</th></tr> |
|
25 |
<tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td |
|
|
25 | <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr> | |
|
26 | 26 | <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr> |
|
27 | 27 | <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr> |
|
28 | 28 | <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr> |
@@ -22,7 +22,7 table td h3 { font-size: 1.2em; text-align: left; } | |||
|
22 | 22 | |
|
23 | 23 | <table style="width:100%"> |
|
24 | 24 | <tr><th colspan="3">Font Styles</th></tr> |
|
25 |
<tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td |
|
|
25 | <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr> | |
|
26 | 26 | <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr> |
|
27 | 27 | <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr> |
|
28 | 28 | <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr> |
@@ -22,7 +22,7 table td h3 { font-size: 1.2em; text-align: left; } | |||
|
22 | 22 | |
|
23 | 23 | <table style="width:100%"> |
|
24 | 24 | <tr><th colspan="3">Font Styles</th></tr> |
|
25 |
<tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td |
|
|
25 | <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr> | |
|
26 | 26 | <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr> |
|
27 | 27 | <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr> |
|
28 | 28 | <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr> |
@@ -22,7 +22,7 table td h3 { font-size: 1.2em; text-align: left; } | |||
|
22 | 22 | |
|
23 | 23 | <table style="width:100%"> |
|
24 | 24 | <tr><th colspan="3">Font Styles</th></tr> |
|
25 |
<tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td |
|
|
25 | <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr> | |
|
26 | 26 | <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr> |
|
27 | 27 | <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr> |
|
28 | 28 | <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr> |
@@ -22,7 +22,7 table td h3 { font-size: 1.2em; text-align: left; } | |||
|
22 | 22 | |
|
23 | 23 | <table style="width:100%"> |
|
24 | 24 | <tr><th colspan="3">Font Styles</th></tr> |
|
25 |
<tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td |
|
|
25 | <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr> | |
|
26 | 26 | <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr> |
|
27 | 27 | <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr> |
|
28 | 28 | <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr> |
@@ -22,7 +22,7 table td h3 { font-size: 1.2em; text-align: left; } | |||
|
22 | 22 | |
|
23 | 23 | <table style="width:100%"> |
|
24 | 24 | <tr><th colspan="3">Font Styles</th></tr> |
|
25 |
<tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td |
|
|
25 | <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr> | |
|
26 | 26 | <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr> |
|
27 | 27 | <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr> |
|
28 | 28 | <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr> |
@@ -22,7 +22,7 table td h3 { font-size: 1.2em; text-align: left; } | |||
|
22 | 22 | |
|
23 | 23 | <table style="width:100%"> |
|
24 | 24 | <tr><th colspan="3">Font Styles</th></tr> |
|
25 |
<tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td |
|
|
25 | <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr> | |
|
26 | 26 | <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr> |
|
27 | 27 | <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr> |
|
28 | 28 | <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr> |
@@ -22,7 +22,7 table td h3 { font-size: 1.2em; text-align: left; } | |||
|
22 | 22 | |
|
23 | 23 | <table style="width:100%"> |
|
24 | 24 | <tr><th colspan="3">Font Styles</th></tr> |
|
25 |
<tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td |
|
|
25 | <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr> | |
|
26 | 26 | <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr> |
|
27 | 27 | <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr> |
|
28 | 28 | <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr> |
@@ -22,7 +22,7 table td h3 { font-size: 1.2em; text-align: left; } | |||
|
22 | 22 | |
|
23 | 23 | <table style="width:100%"> |
|
24 | 24 | <tr><th colspan="3">Font Styles</th></tr> |
|
25 |
<tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td |
|
|
25 | <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr> | |
|
26 | 26 | <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr> |
|
27 | 27 | <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr> |
|
28 | 28 | <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr> |
@@ -22,7 +22,7 table td h3 { font-size: 1.2em; text-align: left; } | |||
|
22 | 22 | |
|
23 | 23 | <table style="width:100%"> |
|
24 | 24 | <tr><th colspan="3">Font Styles</th></tr> |
|
25 |
<tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td |
|
|
25 | <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr> | |
|
26 | 26 | <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr> |
|
27 | 27 | <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr> |
|
28 | 28 | <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr> |
@@ -22,7 +22,7 table td h3 { font-size: 1.2em; text-align: left; } | |||
|
22 | 22 | |
|
23 | 23 | <table style="width:100%"> |
|
24 | 24 | <tr><th colspan="3">Font Styles</th></tr> |
|
25 |
<tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td |
|
|
25 | <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr> | |
|
26 | 26 | <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr> |
|
27 | 27 | <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr> |
|
28 | 28 | <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr> |
@@ -22,7 +22,7 table td h3 { font-size: 1.2em; text-align: left; } | |||
|
22 | 22 | |
|
23 | 23 | <table style="width:100%"> |
|
24 | 24 | <tr><th colspan="3">Font Styles</th></tr> |
|
25 |
<tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td |
|
|
25 | <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr> | |
|
26 | 26 | <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr> |
|
27 | 27 | <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr> |
|
28 | 28 | <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr> |
@@ -22,7 +22,7 table td h3 { font-size: 1.2em; text-align: left; } | |||
|
22 | 22 | |
|
23 | 23 | <table style="width:100%"> |
|
24 | 24 | <tr><th colspan="3">Font Styles</th></tr> |
|
25 |
<tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td |
|
|
25 | <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr> | |
|
26 | 26 | <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr> |
|
27 | 27 | <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr> |
|
28 | 28 | <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr> |
@@ -22,7 +22,7 table td h3 { font-size: 1.2em; text-align: left; } | |||
|
22 | 22 | |
|
23 | 23 | <table style="width:100%"> |
|
24 | 24 | <tr><th colspan="3">Font Styles</th></tr> |
|
25 |
<tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td |
|
|
25 | <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr> | |
|
26 | 26 | <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr> |
|
27 | 27 | <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr> |
|
28 | 28 | <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr> |
@@ -22,7 +22,7 table td h3 { font-size: 1.2em; text-align: left; } | |||
|
22 | 22 | |
|
23 | 23 | <table style="width:100%"> |
|
24 | 24 | <tr><th colspan="3">Font Styles</th></tr> |
|
25 |
<tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td |
|
|
25 | <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr> | |
|
26 | 26 | <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr> |
|
27 | 27 | <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr> |
|
28 | 28 | <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr> |
@@ -22,7 +22,7 table td h3 { font-size: 1.2em; text-align: left; } | |||
|
22 | 22 | |
|
23 | 23 | <table style="width:100%"> |
|
24 | 24 | <tr><th colspan="3">字型樣式</th></tr> |
|
25 |
<tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="粗體(加強語氣)" /></th><td |
|
|
25 | <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="粗體(加強語氣)" /></th><td style="width:50%;">*粗體(加強語氣)*</td><td style="width:50%;"><strong>粗體(加強語氣)</strong></td></tr> | |
|
26 | 26 | <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="斜體" /></th><td>_斜體_</td><td><em>斜體</em></td></tr> |
|
27 | 27 | <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="底線" /></th><td>+底線+</td><td><ins>底線</ins></td></tr> |
|
28 | 28 | <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="刪除線" /></th><td>-刪除線-</td><td><del>刪除線</del></td></tr> |
@@ -22,7 +22,7 table td h3 { font-size: 1.2em; text-align: left; } | |||
|
22 | 22 | |
|
23 | 23 | <table style="width:100%"> |
|
24 | 24 | <tr><th colspan="3">Font Styles</th></tr> |
|
25 |
<tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td |
|
|
25 | <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr> | |
|
26 | 26 | <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr> |
|
27 | 27 | <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr> |
|
28 | 28 | <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr> |
@@ -123,12 +123,15 a#toggle-completed-versions {color:#999;} | |||
|
123 | 123 | /***** Tables *****/ |
|
124 | 124 | table.list { border: 1px solid #e4e4e4; border-collapse: collapse; width: 100%; margin-bottom: 4px; } |
|
125 | 125 | table.list th { background-color:#EEEEEE; padding: 4px; white-space:nowrap; } |
|
126 |
table.list td { vertical-align: |
|
|
126 | table.list td {text-align:center; vertical-align:top; padding-right:10px;} | |
|
127 | 127 | table.list td.id { width: 2%; text-align: center;} |
|
128 | table.list td.name, table.list td.description, table.list td.subject, table.list td.comments {text-align: left;} | |
|
129 | table.list td.tick {width:15%} | |
|
128 | 130 | table.list td.checkbox { width: 15px; padding: 2px 0 0 0; } |
|
129 | 131 | table.list td.checkbox input {padding:0px;} |
|
130 | 132 | table.list td.buttons { width: 15%; white-space:nowrap; text-align: right; } |
|
131 | 133 | table.list td.buttons a { padding-right: 0.6em; } |
|
134 | table.list td.reorder {width:15%; white-space:nowrap; text-align:center; } | |
|
132 | 135 | table.list caption { text-align: left; padding: 0.5em 0.5em 0.5em 0; } |
|
133 | 136 | |
|
134 | 137 | tr.project td.name a { white-space:nowrap; } |
@@ -148,7 +151,7 tr.project.idnt-9 td.name {padding-left: 12.5em;} | |||
|
148 | 151 | |
|
149 | 152 | tr.issue { text-align: center; white-space: nowrap; } |
|
150 | 153 | tr.issue td.subject, tr.issue td.category, td.assigned_to, tr.issue td.string, tr.issue td.text, tr.issue td.relations { white-space: normal; } |
|
151 |
|
|
|
154 | tr.issue td.relations { text-align: left; } | |
|
152 | 155 | tr.issue td.done_ratio table.progress { margin-left:auto; margin-right: auto;} |
|
153 | 156 | tr.issue td.relations span {white-space: nowrap;} |
|
154 | 157 | table.issues td.description {color:#777; font-size:90%; padding:4px 4px 4px 24px; text-align:left; white-space:normal;} |
@@ -165,10 +168,12 tr.issue.idnt-7 td.subject {padding-left: 9.5em;} | |||
|
165 | 168 | tr.issue.idnt-8 td.subject {padding-left: 11em;} |
|
166 | 169 | tr.issue.idnt-9 td.subject {padding-left: 12.5em;} |
|
167 | 170 | |
|
171 | table.issue-report {table-layout:fixed;} | |
|
172 | ||
|
168 | 173 | tr.entry { border: 1px solid #f8f8f8; } |
|
169 | 174 | tr.entry td { white-space: nowrap; } |
|
170 |
tr.entry td.filename { |
|
|
171 |
tr.entry td.filename_no_report { |
|
|
175 | tr.entry td.filename {width:30%; text-align:left;} | |
|
176 | tr.entry td.filename_no_report {width:70%; text-align:left;} | |
|
172 | 177 | tr.entry td.size { text-align: right; font-size: 90%; } |
|
173 | 178 | tr.entry td.revision, tr.entry td.author { text-align: center; } |
|
174 | 179 | tr.entry td.age { text-align: right; } |
@@ -184,7 +189,7 tr.changeset td.revision_graph { width: 15%; background-color: #fffffb; } | |||
|
184 | 189 | tr.changeset td.author { text-align: center; width: 15%; white-space:nowrap;} |
|
185 | 190 | tr.changeset td.committed_on { text-align: center; width: 15%; white-space:nowrap;} |
|
186 | 191 | |
|
187 |
table.files t |
|
|
192 | table.files tbody th {text-align:left;} | |
|
188 | 193 | table.files tr.file td.filename { text-align: left; padding-left: 24px; } |
|
189 | 194 | table.files tr.file td.digest { font-size: 80%; } |
|
190 | 195 | |
@@ -202,9 +207,9 tr.version td.name { padding-left: 20px; } | |||
|
202 | 207 | tr.version.shared td.name { background: url(../images/link.png) no-repeat 0% 70%; } |
|
203 | 208 | tr.version td.date, tr.version td.status, tr.version td.sharing { text-align: center; white-space:nowrap; } |
|
204 | 209 | |
|
205 |
tr.user td { |
|
|
210 | tr.user td {width:13%;white-space: nowrap;} | |
|
211 | tr.user td.username, tr.user td.firstname, tr.user td.lastname, tr.user td.email {text-align:left;} | |
|
206 | 212 | tr.user td.email { width:18%; } |
|
207 | tr.user td { white-space: nowrap; } | |
|
208 | 213 | tr.user.locked, tr.user.registered { color: #aaa; } |
|
209 | 214 | tr.user.locked a, tr.user.registered a { color: #aaa; } |
|
210 | 215 | |
@@ -223,7 +228,7 table.plugins span.name { font-weight: bold; display: block; margin-bottom: 6px; | |||
|
223 | 228 | table.plugins span.description { display: block; font-size: 0.9em; } |
|
224 | 229 | table.plugins span.url { display: block; font-size: 0.9em; } |
|
225 | 230 | |
|
226 | table.list tbody tr.group td { padding: 0.8em 0 0.5em 0.3em; font-weight: bold; border-bottom: 1px solid #ccc; } | |
|
231 | table.list tbody tr.group td { padding: 0.8em 0 0.5em 0.3em; font-weight: bold; border-bottom: 1px solid #ccc; text-align:left; } | |
|
227 | 232 | table.list tbody tr.group span.count {position:relative; top:-1px; color:#fff; font-size:10px; background:#9DB9D5; padding:0px 6px 1px 6px; border-radius:3px; margin-left:4px;} |
|
228 | 233 | tr.group a.toggle-all { color: #aaa; font-size: 80%; font-weight: normal; display:none;} |
|
229 | 234 | tr.group:hover a.toggle-all { display:inline;} |
@@ -245,10 +250,9 table.attributes th { vertical-align: top; text-align: left; } | |||
|
245 | 250 | table.attributes td { vertical-align: top; } |
|
246 | 251 | |
|
247 | 252 | table.boards a.board, h3.comments { background: url(../images/comment.png) no-repeat 0% 50%; padding-left: 20px; } |
|
248 |
table.boards td. |
|
|
249 | table.boards td.last-message {font-size:80%;} | |
|
253 | table.boards td.last-message {text-align:left;font-size:80%;} | |
|
250 | 254 | |
|
251 | table.messages td.author, table.messages td.created_on, table.messages td.reply-count {text-align:center;} | |
|
255 | table.messages td.last_message {text-align:left;} | |
|
252 | 256 | |
|
253 | 257 | table.query-columns { |
|
254 | 258 | border-collapse: collapse; |
General Comments 0
You need to be logged in to leave comments.
Login now