##// END OF EJS Templates
Slight visual changes on the issue form....
Jean-Philippe Lang -
r2267:00ce28f8d718
parent child
Show More
@@ -1,61 +1,63
1 <% if @issue.new_record? %>
1 <% if @issue.new_record? %>
2 <p><%= f.select :tracker_id, @project.trackers.collect {|t| [t.name, t.id]}, :required => true %></p>
2 <p><%= f.select :tracker_id, @project.trackers.collect {|t| [t.name, t.id]}, :required => true %></p>
3 <%= observe_field :issue_tracker_id, :url => { :action => :new },
3 <%= observe_field :issue_tracker_id, :url => { :action => :new },
4 :update => :content,
4 :update => :content,
5 :with => "Form.serialize('issue-form')" %>
5 :with => "Form.serialize('issue-form')" %>
6 <hr />
6 <hr />
7 <% end %>
7 <% end %>
8
8
9 <div id="issue_descr_fields" <%= 'style="display:none"' unless @issue.new_record? || @issue.errors.any? %>>
9 <div id="issue_descr_fields" <%= 'style="display:none"' unless @issue.new_record? || @issue.errors.any? %>>
10 <p><%= f.text_field :subject, :size => 80, :required => true %></p>
10 <p><%= f.text_field :subject, :size => 80, :required => true %></p>
11 <p><%= f.text_area :description,
11 <p><%= f.text_area :description,
12 :cols => 60,
12 :cols => 60,
13 :rows => (@issue.description.blank? ? 10 : [[10, @issue.description.length / 50].max, 100].min),
13 :rows => (@issue.description.blank? ? 10 : [[10, @issue.description.length / 50].max, 100].min),
14 :accesskey => accesskey(:edit),
14 :accesskey => accesskey(:edit),
15 :class => 'wiki-edit' %></p>
15 :class => 'wiki-edit' %></p>
16 </div>
16 </div>
17
17
18 <div class="attributes">
18 <div class="splitcontentleft">
19 <div class="splitcontentleft">
19 <% if @issue.new_record? || @allowed_statuses.any? %>
20 <% if @issue.new_record? || @allowed_statuses.any? %>
20 <p><%= f.select :status_id, (@allowed_statuses.collect {|p| [p.name, p.id]}), :required => true %></p>
21 <p><%= f.select :status_id, (@allowed_statuses.collect {|p| [p.name, p.id]}), :required => true %></p>
21 <% else %>
22 <% else %>
22 <p><label><%= l(:field_status) %></label> <%= @issue.status.name %></p>
23 <p><label><%= l(:field_status) %></label> <%= @issue.status.name %></p>
23 <% end %>
24 <% end %>
24
25
25 <p><%= f.select :priority_id, (@priorities.collect {|p| [p.name, p.id]}), :required => true %></p>
26 <p><%= f.select :priority_id, (@priorities.collect {|p| [p.name, p.id]}), :required => true %></p>
26 <p><%= f.select :assigned_to_id, (@issue.assignable_users.collect {|m| [m.name, m.id]}), :include_blank => true %></p>
27 <p><%= f.select :assigned_to_id, (@issue.assignable_users.collect {|m| [m.name, m.id]}), :include_blank => true %></p>
27 <p><%= f.select :category_id, (@project.issue_categories.collect {|c| [c.name, c.id]}), :include_blank => true %>
28 <p><%= f.select :category_id, (@project.issue_categories.collect {|c| [c.name, c.id]}), :include_blank => true %>
28 <%= prompt_to_remote(l(:label_issue_category_new),
29 <%= prompt_to_remote(l(:label_issue_category_new),
29 l(:label_issue_category_new), 'category[name]',
30 l(:label_issue_category_new), 'category[name]',
30 {:controller => 'projects', :action => 'add_issue_category', :id => @project},
31 {:controller => 'projects', :action => 'add_issue_category', :id => @project},
31 :class => 'small', :tabindex => 199) if authorize_for('projects', 'add_issue_category') %></p>
32 :class => 'small', :tabindex => 199) if authorize_for('projects', 'add_issue_category') %></p>
32 <%= content_tag('p', f.select(:fixed_version_id,
33 <%= content_tag('p', f.select(:fixed_version_id,
33 (@project.versions.sort.collect {|v| [v.name, v.id]}),
34 (@project.versions.sort.collect {|v| [v.name, v.id]}),
34 { :include_blank => true })) unless @project.versions.empty? %>
35 { :include_blank => true })) unless @project.versions.empty? %>
35 </div>
36 </div>
36
37
37 <div class="splitcontentright">
38 <div class="splitcontentright">
38 <p><%= f.text_field :start_date, :size => 10 %><%= calendar_for('issue_start_date') %></p>
39 <p><%= f.text_field :start_date, :size => 10 %><%= calendar_for('issue_start_date') %></p>
39 <p><%= f.text_field :due_date, :size => 10 %><%= calendar_for('issue_due_date') %></p>
40 <p><%= f.text_field :due_date, :size => 10 %><%= calendar_for('issue_due_date') %></p>
40 <p><%= f.text_field :estimated_hours, :size => 3 %> <%= l(:field_hours) %></p>
41 <p><%= f.text_field :estimated_hours, :size => 3 %> <%= l(:field_hours) %></p>
41 <p><%= f.select :done_ratio, ((0..10).to_a.collect {|r| ["#{r*10} %", r*10] }) %></p>
42 <p><%= f.select :done_ratio, ((0..10).to_a.collect {|r| ["#{r*10} %", r*10] }) %></p>
42 </div>
43 </div>
43
44
44 <div style="clear:both;"> </div>
45 <div style="clear:both;"> </div>
45 <%= render :partial => 'form_custom_fields' %>
46 <%= render :partial => 'form_custom_fields' %>
47 </div>
46
48
47 <% if @issue.new_record? %>
49 <% if @issue.new_record? %>
48 <p><label><%=l(:label_attachment_plural)%></label><%= render :partial => 'attachments/form' %></p>
50 <p><label><%=l(:label_attachment_plural)%></label><%= render :partial => 'attachments/form' %></p>
49 <% end %>
51 <% end %>
50
52
51 <% if @issue.new_record? && User.current.allowed_to?(:add_issue_watchers, @project) -%>
53 <% if @issue.new_record? && User.current.allowed_to?(:add_issue_watchers, @project) -%>
52 <p><label><%= l(:label_issue_watchers) %></label>
54 <p><label><%= l(:label_issue_watchers) %></label>
53 <% @issue.project.users.sort.each do |user| -%>
55 <% @issue.project.users.sort.each do |user| -%>
54 <label class="floating"><%= check_box_tag 'issue[watcher_user_ids][]', user.id, @issue.watcher_user_ids.include?(user.id) %> <%=h user %></label>
56 <label class="floating"><%= check_box_tag 'issue[watcher_user_ids][]', user.id, @issue.watcher_user_ids.include?(user.id) %> <%=h user %></label>
55 <% end -%>
57 <% end -%>
56 </p>
58 </p>
57 <% end %>
59 <% end %>
58
60
59 <%= call_hook(:view_issues_form_details_bottom, { :issue => @issue, :form => f }) %>
61 <%= call_hook(:view_issues_form_details_bottom, { :issue => @issue, :form => f }) %>
60
62
61 <%= wikitoolbar_for 'issue_description' %>
63 <%= wikitoolbar_for 'issue_description' %>
@@ -1,10 +1,12
1 <div class="attributes">
1 <div class="splitcontentleft">
2 <div class="splitcontentleft">
2 <p><%= f.select :status_id, (@allowed_statuses.collect {|p| [p.name, p.id]}), :required => true %></p>
3 <p><%= f.select :status_id, (@allowed_statuses.collect {|p| [p.name, p.id]}), :required => true %></p>
3 <p><%= f.select :assigned_to_id, (@issue.assignable_users.collect {|m| [m.name, m.id]}), :include_blank => true %></p>
4 <p><%= f.select :assigned_to_id, (@issue.assignable_users.collect {|m| [m.name, m.id]}), :include_blank => true %></p>
4 </div>
5 </div>
5 <div class="splitcontentright">
6 <div class="splitcontentright">
6 <p><%= f.select :done_ratio, ((0..10).to_a.collect {|r| ["#{r*10} %", r*10] }) %></p>
7 <p><%= f.select :done_ratio, ((0..10).to_a.collect {|r| ["#{r*10} %", r*10] }) %></p>
7 <%= content_tag('p', f.select(:fixed_version_id,
8 <%= content_tag('p', f.select(:fixed_version_id,
8 (@project.versions.sort.collect {|v| [v.name, v.id]}),
9 (@project.versions.sort.collect {|v| [v.name, v.id]}),
9 { :include_blank => true })) unless @project.versions.empty? %>
10 { :include_blank => true })) unless @project.versions.empty? %>
10 </div>
11 </div>
12 </div>
@@ -1,685 +1,689
1 body { font-family: Verdana, sans-serif; font-size: 12px; color:#484848; margin: 0; padding: 0; min-width: 900px; }
1 body { font-family: Verdana, sans-serif; font-size: 12px; color:#484848; margin: 0; padding: 0; min-width: 900px; }
2
2
3 h1, h2, h3, h4 { font-family: "Trebuchet MS", Verdana, sans-serif;}
3 h1, h2, h3, h4 { font-family: "Trebuchet MS", Verdana, sans-serif;}
4 h1 {margin:0; padding:0; font-size: 24px;}
4 h1 {margin:0; padding:0; font-size: 24px;}
5 h2, .wiki h1 {font-size: 20px;padding: 2px 10px 1px 0px;margin: 0 0 10px 0; border-bottom: 1px solid #bbbbbb; color: #444;}
5 h2, .wiki h1 {font-size: 20px;padding: 2px 10px 1px 0px;margin: 0 0 10px 0; border-bottom: 1px solid #bbbbbb; color: #444;}
6 h3, .wiki h2 {font-size: 16px;padding: 2px 10px 1px 0px;margin: 0 0 10px 0; border-bottom: 1px solid #bbbbbb; color: #444;}
6 h3, .wiki h2 {font-size: 16px;padding: 2px 10px 1px 0px;margin: 0 0 10px 0; border-bottom: 1px solid #bbbbbb; color: #444;}
7 h4, .wiki h3 {font-size: 13px;padding: 2px 10px 1px 0px;margin-bottom: 5px; border-bottom: 1px dotted #bbbbbb; color: #444;}
7 h4, .wiki h3 {font-size: 13px;padding: 2px 10px 1px 0px;margin-bottom: 5px; border-bottom: 1px dotted #bbbbbb; color: #444;}
8
8
9 /***** Layout *****/
9 /***** Layout *****/
10 #wrapper {background: white;}
10 #wrapper {background: white;}
11
11
12 #top-menu {background: #2C4056; color: #fff; height:1.8em; font-size: 0.8em; padding: 2px 2px 0px 6px;}
12 #top-menu {background: #2C4056; color: #fff; height:1.8em; font-size: 0.8em; padding: 2px 2px 0px 6px;}
13 #top-menu ul {margin: 0; padding: 0;}
13 #top-menu ul {margin: 0; padding: 0;}
14 #top-menu li {
14 #top-menu li {
15 float:left;
15 float:left;
16 list-style-type:none;
16 list-style-type:none;
17 margin: 0px 0px 0px 0px;
17 margin: 0px 0px 0px 0px;
18 padding: 0px 0px 0px 0px;
18 padding: 0px 0px 0px 0px;
19 white-space:nowrap;
19 white-space:nowrap;
20 }
20 }
21 #top-menu a {color: #fff; margin-right: 8px; font-weight: bold;}
21 #top-menu a {color: #fff; margin-right: 8px; font-weight: bold;}
22 #top-menu #loggedas { float: right; margin-right: 0.5em; color: #fff; }
22 #top-menu #loggedas { float: right; margin-right: 0.5em; color: #fff; }
23
23
24 #account {float:right;}
24 #account {float:right;}
25
25
26 #header {height:5.3em;margin:0;background-color:#507AAA;color:#f8f8f8; padding: 4px 8px 0px 6px; position:relative;}
26 #header {height:5.3em;margin:0;background-color:#507AAA;color:#f8f8f8; padding: 4px 8px 0px 6px; position:relative;}
27 #header a {color:#f8f8f8;}
27 #header a {color:#f8f8f8;}
28 #quick-search {float:right;}
28 #quick-search {float:right;}
29
29
30 #main-menu {position: absolute; bottom: 0px; left:6px; margin-right: -500px;}
30 #main-menu {position: absolute; bottom: 0px; left:6px; margin-right: -500px;}
31 #main-menu ul {margin: 0; padding: 0;}
31 #main-menu ul {margin: 0; padding: 0;}
32 #main-menu li {
32 #main-menu li {
33 float:left;
33 float:left;
34 list-style-type:none;
34 list-style-type:none;
35 margin: 0px 2px 0px 0px;
35 margin: 0px 2px 0px 0px;
36 padding: 0px 0px 0px 0px;
36 padding: 0px 0px 0px 0px;
37 white-space:nowrap;
37 white-space:nowrap;
38 }
38 }
39 #main-menu li a {
39 #main-menu li a {
40 display: block;
40 display: block;
41 color: #fff;
41 color: #fff;
42 text-decoration: none;
42 text-decoration: none;
43 font-weight: bold;
43 font-weight: bold;
44 margin: 0;
44 margin: 0;
45 padding: 4px 10px 4px 10px;
45 padding: 4px 10px 4px 10px;
46 }
46 }
47 #main-menu li a:hover {background:#759FCF; color:#fff;}
47 #main-menu li a:hover {background:#759FCF; color:#fff;}
48 #main-menu li a.selected, #main-menu li a.selected:hover {background:#fff; color:#555;}
48 #main-menu li a.selected, #main-menu li a.selected:hover {background:#fff; color:#555;}
49
49
50 #main {background-color:#EEEEEE;}
50 #main {background-color:#EEEEEE;}
51
51
52 #sidebar{ float: right; width: 17%; position: relative; z-index: 9; min-height: 600px; padding: 0; margin: 0;}
52 #sidebar{ float: right; width: 17%; position: relative; z-index: 9; min-height: 600px; padding: 0; margin: 0;}
53 * html #sidebar{ width: 17%; }
53 * html #sidebar{ width: 17%; }
54 #sidebar h3{ font-size: 14px; margin-top:14px; color: #666; }
54 #sidebar h3{ font-size: 14px; margin-top:14px; color: #666; }
55 #sidebar hr{ width: 100%; margin: 0 auto; height: 1px; background: #ccc; border: 0; }
55 #sidebar hr{ width: 100%; margin: 0 auto; height: 1px; background: #ccc; border: 0; }
56 * html #sidebar hr{ width: 95%; position: relative; left: -6px; color: #ccc; }
56 * html #sidebar hr{ width: 95%; position: relative; left: -6px; color: #ccc; }
57
57
58 #content { width: 80%; background-color: #fff; margin: 0px; border-right: 1px solid #ddd; padding: 6px 10px 10px 10px; z-index: 10; }
58 #content { width: 80%; background-color: #fff; margin: 0px; border-right: 1px solid #ddd; padding: 6px 10px 10px 10px; z-index: 10; }
59 * html #content{ width: 80%; padding-left: 0; margin-top: 0px; padding: 6px 10px 10px 10px;}
59 * html #content{ width: 80%; padding-left: 0; margin-top: 0px; padding: 6px 10px 10px 10px;}
60 html>body #content { min-height: 600px; }
60 html>body #content { min-height: 600px; }
61 * html body #content { height: 600px; } /* IE */
61 * html body #content { height: 600px; } /* IE */
62
62
63 #main.nosidebar #sidebar{ display: none; }
63 #main.nosidebar #sidebar{ display: none; }
64 #main.nosidebar #content{ width: auto; border-right: 0; }
64 #main.nosidebar #content{ width: auto; border-right: 0; }
65
65
66 #footer {clear: both; border-top: 1px solid #bbb; font-size: 0.9em; color: #aaa; padding: 5px; text-align:center; background:#fff;}
66 #footer {clear: both; border-top: 1px solid #bbb; font-size: 0.9em; color: #aaa; padding: 5px; text-align:center; background:#fff;}
67
67
68 #login-form table {margin-top:5em; padding:1em; margin-left: auto; margin-right: auto; border: 2px solid #FDBF3B; background-color:#FFEBC1; }
68 #login-form table {margin-top:5em; padding:1em; margin-left: auto; margin-right: auto; border: 2px solid #FDBF3B; background-color:#FFEBC1; }
69 #login-form table td {padding: 6px;}
69 #login-form table td {padding: 6px;}
70 #login-form label {font-weight: bold;}
70 #login-form label {font-weight: bold;}
71
71
72 .clear:after{ content: "."; display: block; height: 0; clear: both; visibility: hidden; }
72 .clear:after{ content: "."; display: block; height: 0; clear: both; visibility: hidden; }
73
73
74 /***** Links *****/
74 /***** Links *****/
75 a, a:link, a:visited{ color: #2A5685; text-decoration: none; }
75 a, a:link, a:visited{ color: #2A5685; text-decoration: none; }
76 a:hover, a:active{ color: #c61a1a; text-decoration: underline;}
76 a:hover, a:active{ color: #c61a1a; text-decoration: underline;}
77 a img{ border: 0; }
77 a img{ border: 0; }
78
78
79 a.issue.closed { text-decoration: line-through; }
79 a.issue.closed { text-decoration: line-through; }
80
80
81 /***** Tables *****/
81 /***** Tables *****/
82 table.list { border: 1px solid #e4e4e4; border-collapse: collapse; width: 100%; margin-bottom: 4px; }
82 table.list { border: 1px solid #e4e4e4; border-collapse: collapse; width: 100%; margin-bottom: 4px; }
83 table.list th { background-color:#EEEEEE; padding: 4px; white-space:nowrap; }
83 table.list th { background-color:#EEEEEE; padding: 4px; white-space:nowrap; }
84 table.list td { vertical-align: top; }
84 table.list td { vertical-align: top; }
85 table.list td.id { width: 2%; text-align: center;}
85 table.list td.id { width: 2%; text-align: center;}
86 table.list td.checkbox { width: 15px; padding: 0px;}
86 table.list td.checkbox { width: 15px; padding: 0px;}
87
87
88 tr.issue { text-align: center; white-space: nowrap; }
88 tr.issue { text-align: center; white-space: nowrap; }
89 tr.issue td.subject, tr.issue td.category, td.assigned_to { white-space: normal; }
89 tr.issue td.subject, tr.issue td.category, td.assigned_to { white-space: normal; }
90 tr.issue td.subject { text-align: left; }
90 tr.issue td.subject { text-align: left; }
91 tr.issue td.done_ratio table.progress { margin-left:auto; margin-right: auto;}
91 tr.issue td.done_ratio table.progress { margin-left:auto; margin-right: auto;}
92
92
93 tr.entry { border: 1px solid #f8f8f8; }
93 tr.entry { border: 1px solid #f8f8f8; }
94 tr.entry td { white-space: nowrap; }
94 tr.entry td { white-space: nowrap; }
95 tr.entry td.filename { width: 30%; }
95 tr.entry td.filename { width: 30%; }
96 tr.entry td.size { text-align: right; font-size: 90%; }
96 tr.entry td.size { text-align: right; font-size: 90%; }
97 tr.entry td.revision, tr.entry td.author { text-align: center; }
97 tr.entry td.revision, tr.entry td.author { text-align: center; }
98 tr.entry td.age { text-align: right; }
98 tr.entry td.age { text-align: right; }
99
99
100 tr.entry span.expander {background-image: url(../images/bullet_toggle_plus.png); padding-left: 8px; margin-left: 0; cursor: pointer;}
100 tr.entry span.expander {background-image: url(../images/bullet_toggle_plus.png); padding-left: 8px; margin-left: 0; cursor: pointer;}
101 tr.entry.open span.expander {background-image: url(../images/bullet_toggle_minus.png);}
101 tr.entry.open span.expander {background-image: url(../images/bullet_toggle_minus.png);}
102 tr.entry.file td.filename a { margin-left: 16px; }
102 tr.entry.file td.filename a { margin-left: 16px; }
103
103
104 tr.changeset td.author { text-align: center; width: 15%; }
104 tr.changeset td.author { text-align: center; width: 15%; }
105 tr.changeset td.committed_on { text-align: center; width: 15%; }
105 tr.changeset td.committed_on { text-align: center; width: 15%; }
106
106
107 tr.message { height: 2.6em; }
107 tr.message { height: 2.6em; }
108 tr.message td.last_message { font-size: 80%; }
108 tr.message td.last_message { font-size: 80%; }
109 tr.message.locked td.subject a { background-image: url(../images/locked.png); }
109 tr.message.locked td.subject a { background-image: url(../images/locked.png); }
110 tr.message.sticky td.subject a { background-image: url(../images/sticky.png); font-weight: bold; }
110 tr.message.sticky td.subject a { background-image: url(../images/sticky.png); font-weight: bold; }
111
111
112 tr.user td { width:13%; }
112 tr.user td { width:13%; }
113 tr.user td.email { width:18%; }
113 tr.user td.email { width:18%; }
114 tr.user td { white-space: nowrap; }
114 tr.user td { white-space: nowrap; }
115 tr.user.locked, tr.user.registered { color: #aaa; }
115 tr.user.locked, tr.user.registered { color: #aaa; }
116 tr.user.locked a, tr.user.registered a { color: #aaa; }
116 tr.user.locked a, tr.user.registered a { color: #aaa; }
117
117
118 tr.time-entry { text-align: center; white-space: nowrap; }
118 tr.time-entry { text-align: center; white-space: nowrap; }
119 tr.time-entry td.subject, tr.time-entry td.comments { text-align: left; white-space: normal; }
119 tr.time-entry td.subject, tr.time-entry td.comments { text-align: left; white-space: normal; }
120 td.hours { text-align: right; font-weight: bold; padding-right: 0.5em; }
120 td.hours { text-align: right; font-weight: bold; padding-right: 0.5em; }
121 td.hours .hours-dec { font-size: 0.9em; }
121 td.hours .hours-dec { font-size: 0.9em; }
122
122
123 table.plugins td { vertical-align: middle; }
123 table.plugins td { vertical-align: middle; }
124 table.plugins td.configure { text-align: right; padding-right: 1em; }
124 table.plugins td.configure { text-align: right; padding-right: 1em; }
125 table.plugins span.name { font-weight: bold; display: block; margin-bottom: 6px; }
125 table.plugins span.name { font-weight: bold; display: block; margin-bottom: 6px; }
126 table.plugins span.description { display: block; font-size: 0.9em; }
126 table.plugins span.description { display: block; font-size: 0.9em; }
127 table.plugins span.url { display: block; font-size: 0.9em; }
127 table.plugins span.url { display: block; font-size: 0.9em; }
128
128
129 table.list tbody tr:hover { background-color:#ffffdd; }
129 table.list tbody tr:hover { background-color:#ffffdd; }
130 table td {padding:2px;}
130 table td {padding:2px;}
131 table p {margin:0;}
131 table p {margin:0;}
132 .odd {background-color:#f6f7f8;}
132 .odd {background-color:#f6f7f8;}
133 .even {background-color: #fff;}
133 .even {background-color: #fff;}
134
134
135 .highlight { background-color: #FCFD8D;}
135 .highlight { background-color: #FCFD8D;}
136 .highlight.token-1 { background-color: #faa;}
136 .highlight.token-1 { background-color: #faa;}
137 .highlight.token-2 { background-color: #afa;}
137 .highlight.token-2 { background-color: #afa;}
138 .highlight.token-3 { background-color: #aaf;}
138 .highlight.token-3 { background-color: #aaf;}
139
139
140 .box{
140 .box{
141 padding:6px;
141 padding:6px;
142 margin-bottom: 10px;
142 margin-bottom: 10px;
143 background-color:#f6f6f6;
143 background-color:#f6f6f6;
144 color:#505050;
144 color:#505050;
145 line-height:1.5em;
145 line-height:1.5em;
146 border: 1px solid #e4e4e4;
146 border: 1px solid #e4e4e4;
147 }
147 }
148
148
149 div.square {
149 div.square {
150 border: 1px solid #999;
150 border: 1px solid #999;
151 float: left;
151 float: left;
152 margin: .3em .4em 0 .4em;
152 margin: .3em .4em 0 .4em;
153 overflow: hidden;
153 overflow: hidden;
154 width: .6em; height: .6em;
154 width: .6em; height: .6em;
155 }
155 }
156 .contextual {float:right; white-space: nowrap; line-height:1.4em;margin-top:5px; padding-left: 10px; font-size:0.9em;}
156 .contextual {float:right; white-space: nowrap; line-height:1.4em;margin-top:5px; padding-left: 10px; font-size:0.9em;}
157 .contextual input {font-size:0.9em;}
157 .contextual input {font-size:0.9em;}
158
158
159 .splitcontentleft{float:left; width:49%;}
159 .splitcontentleft{float:left; width:49%;}
160 .splitcontentright{float:right; width:49%;}
160 .splitcontentright{float:right; width:49%;}
161 form {display: inline;}
161 form {display: inline;}
162 input, select {vertical-align: middle; margin-top: 1px; margin-bottom: 1px;}
162 input, select {vertical-align: middle; margin-top: 1px; margin-bottom: 1px;}
163 fieldset {border: 1px solid #e4e4e4; margin:0;}
163 fieldset {border: 1px solid #e4e4e4; margin:0;}
164 legend {color: #484848;}
164 legend {color: #484848;}
165 hr { width: 100%; height: 1px; background: #ccc; border: 0;}
165 hr { width: 100%; height: 1px; background: #ccc; border: 0;}
166 blockquote { font-style: italic; border-left: 3px solid #e0e0e0; padding-left: 0.6em; margin-left: 2.4em;}
166 blockquote { font-style: italic; border-left: 3px solid #e0e0e0; padding-left: 0.6em; margin-left: 2.4em;}
167 blockquote blockquote { margin-left: 0;}
167 blockquote blockquote { margin-left: 0;}
168 textarea.wiki-edit { width: 99%; }
168 textarea.wiki-edit { width: 99%; }
169 li p {margin-top: 0;}
169 li p {margin-top: 0;}
170 div.issue {background:#ffffdd; padding:6px; margin-bottom:6px;border: 1px solid #d7d7d7;}
170 div.issue {background:#ffffdd; padding:6px; margin-bottom:6px;border: 1px solid #d7d7d7;}
171 p.breadcrumb { font-size: 0.9em; margin: 4px 0 4px 0;}
171 p.breadcrumb { font-size: 0.9em; margin: 4px 0 4px 0;}
172 p.subtitle { font-size: 0.9em; margin: -6px 0 12px 0; font-style: italic; }
172 p.subtitle { font-size: 0.9em; margin: -6px 0 12px 0; font-style: italic; }
173 p.footnote { font-size: 0.9em; margin-top: 0px; margin-bottom: 0px; }
173 p.footnote { font-size: 0.9em; margin-top: 0px; margin-bottom: 0px; }
174
174
175 fieldset#filters, fieldset#date-range { padding: 0.7em; margin-bottom: 8px; }
175 fieldset#filters, fieldset#date-range { padding: 0.7em; margin-bottom: 8px; }
176 fieldset#filters p { margin: 1.2em 0 0.8em 2px; }
176 fieldset#filters p { margin: 1.2em 0 0.8em 2px; }
177 fieldset#filters table { border-collapse: collapse; }
177 fieldset#filters table { border-collapse: collapse; }
178 fieldset#filters table td { padding: 0; vertical-align: middle; }
178 fieldset#filters table td { padding: 0; vertical-align: middle; }
179 fieldset#filters tr.filter { height: 2em; }
179 fieldset#filters tr.filter { height: 2em; }
180 fieldset#filters td.add-filter { text-align: right; vertical-align: top; }
180 fieldset#filters td.add-filter { text-align: right; vertical-align: top; }
181 .buttons { font-size: 0.9em; }
181 .buttons { font-size: 0.9em; }
182
182
183 div#issue-changesets {float:right; width:45%; margin-left: 1em; margin-bottom: 1em; background: #fff; padding-left: 1em; font-size: 90%;}
183 div#issue-changesets {float:right; width:45%; margin-left: 1em; margin-bottom: 1em; background: #fff; padding-left: 1em; font-size: 90%;}
184 div#issue-changesets .changeset { padding: 4px;}
184 div#issue-changesets .changeset { padding: 4px;}
185 div#issue-changesets .changeset { border-bottom: 1px solid #ddd; }
185 div#issue-changesets .changeset { border-bottom: 1px solid #ddd; }
186 div#issue-changesets p { margin-top: 0; margin-bottom: 1em;}
186 div#issue-changesets p { margin-top: 0; margin-bottom: 1em;}
187
187
188 div#activity dl, #search-results { margin-left: 2em; }
188 div#activity dl, #search-results { margin-left: 2em; }
189 div#activity dd, #search-results dd { margin-bottom: 1em; padding-left: 18px; font-size: 0.9em; }
189 div#activity dd, #search-results dd { margin-bottom: 1em; padding-left: 18px; font-size: 0.9em; }
190 div#activity dt, #search-results dt { margin-bottom: 0px; padding-left: 20px; line-height: 18px; background-position: 0 50%; background-repeat: no-repeat; }
190 div#activity dt, #search-results dt { margin-bottom: 0px; padding-left: 20px; line-height: 18px; background-position: 0 50%; background-repeat: no-repeat; }
191 div#activity dt.me .time { border-bottom: 1px solid #999; }
191 div#activity dt.me .time { border-bottom: 1px solid #999; }
192 div#activity dt .time { color: #777; font-size: 80%; }
192 div#activity dt .time { color: #777; font-size: 80%; }
193 div#activity dd .description, #search-results dd .description { font-style: italic; }
193 div#activity dd .description, #search-results dd .description { font-style: italic; }
194 div#activity span.project:after, #search-results span.project:after { content: " -"; }
194 div#activity span.project:after, #search-results span.project:after { content: " -"; }
195 div#activity dd span.description, #search-results dd span.description { display:block; }
195 div#activity dd span.description, #search-results dd span.description { display:block; }
196
196
197 #search-results dd { margin-bottom: 1em; padding-left: 20px; margin-left:0px; }
197 #search-results dd { margin-bottom: 1em; padding-left: 20px; margin-left:0px; }
198
198
199 div#search-results-counts {float:right;}
199 div#search-results-counts {float:right;}
200 div#search-results-counts ul { margin-top: 0.5em; }
200 div#search-results-counts ul { margin-top: 0.5em; }
201 div#search-results-counts li { list-style-type:none; float: left; margin-left: 1em; }
201 div#search-results-counts li { list-style-type:none; float: left; margin-left: 1em; }
202
202
203 dt.issue { background-image: url(../images/ticket.png); }
203 dt.issue { background-image: url(../images/ticket.png); }
204 dt.issue-edit { background-image: url(../images/ticket_edit.png); }
204 dt.issue-edit { background-image: url(../images/ticket_edit.png); }
205 dt.issue-closed { background-image: url(../images/ticket_checked.png); }
205 dt.issue-closed { background-image: url(../images/ticket_checked.png); }
206 dt.issue-note { background-image: url(../images/ticket_note.png); }
206 dt.issue-note { background-image: url(../images/ticket_note.png); }
207 dt.changeset { background-image: url(../images/changeset.png); }
207 dt.changeset { background-image: url(../images/changeset.png); }
208 dt.news { background-image: url(../images/news.png); }
208 dt.news { background-image: url(../images/news.png); }
209 dt.message { background-image: url(../images/message.png); }
209 dt.message { background-image: url(../images/message.png); }
210 dt.reply { background-image: url(../images/comments.png); }
210 dt.reply { background-image: url(../images/comments.png); }
211 dt.wiki-page { background-image: url(../images/wiki_edit.png); }
211 dt.wiki-page { background-image: url(../images/wiki_edit.png); }
212 dt.attachment { background-image: url(../images/attachment.png); }
212 dt.attachment { background-image: url(../images/attachment.png); }
213 dt.document { background-image: url(../images/document.png); }
213 dt.document { background-image: url(../images/document.png); }
214 dt.project { background-image: url(../images/projects.png); }
214 dt.project { background-image: url(../images/projects.png); }
215
215
216 #search-results dt.issue.closed { background-image: url(../images/ticket_checked.png); }
216 #search-results dt.issue.closed { background-image: url(../images/ticket_checked.png); }
217
217
218 div#roadmap fieldset.related-issues { margin-bottom: 1em; }
218 div#roadmap fieldset.related-issues { margin-bottom: 1em; }
219 div#roadmap fieldset.related-issues ul { margin-top: 0.3em; margin-bottom: 0.3em; }
219 div#roadmap fieldset.related-issues ul { margin-top: 0.3em; margin-bottom: 0.3em; }
220 div#roadmap .wiki h1:first-child { display: none; }
220 div#roadmap .wiki h1:first-child { display: none; }
221 div#roadmap .wiki h1 { font-size: 120%; }
221 div#roadmap .wiki h1 { font-size: 120%; }
222 div#roadmap .wiki h2 { font-size: 110%; }
222 div#roadmap .wiki h2 { font-size: 110%; }
223
223
224 div#version-summary { float:right; width:380px; margin-left: 16px; margin-bottom: 16px; background-color: #fff; }
224 div#version-summary { float:right; width:380px; margin-left: 16px; margin-bottom: 16px; background-color: #fff; }
225 div#version-summary fieldset { margin-bottom: 1em; }
225 div#version-summary fieldset { margin-bottom: 1em; }
226 div#version-summary .total-hours { text-align: right; }
226 div#version-summary .total-hours { text-align: right; }
227
227
228 table#time-report td.hours, table#time-report th.period, table#time-report th.total { text-align: right; padding-right: 0.5em; }
228 table#time-report td.hours, table#time-report th.period, table#time-report th.total { text-align: right; padding-right: 0.5em; }
229 table#time-report tbody tr { font-style: italic; color: #777; }
229 table#time-report tbody tr { font-style: italic; color: #777; }
230 table#time-report tbody tr.last-level { font-style: normal; color: #555; }
230 table#time-report tbody tr.last-level { font-style: normal; color: #555; }
231 table#time-report tbody tr.total { font-style: normal; font-weight: bold; color: #555; background-color:#EEEEEE; }
231 table#time-report tbody tr.total { font-style: normal; font-weight: bold; color: #555; background-color:#EEEEEE; }
232 table#time-report .hours-dec { font-size: 0.9em; }
232 table#time-report .hours-dec { font-size: 0.9em; }
233
233
234 form#issue-form .attributes { margin-bottom: 8px; }
235 form#issue-form .attributes p { padding-top: 1px; padding-bottom: 2px; }
236 form#issue-form .attributes select { min-width: 30%; }
237
234 ul.properties {padding:0; font-size: 0.9em; color: #777;}
238 ul.properties {padding:0; font-size: 0.9em; color: #777;}
235 ul.properties li {list-style-type:none;}
239 ul.properties li {list-style-type:none;}
236 ul.properties li span {font-style:italic;}
240 ul.properties li span {font-style:italic;}
237
241
238 .total-hours { font-size: 110%; font-weight: bold; }
242 .total-hours { font-size: 110%; font-weight: bold; }
239 .total-hours span.hours-int { font-size: 120%; }
243 .total-hours span.hours-int { font-size: 120%; }
240
244
241 .autoscroll {overflow-x: auto; padding:1px; margin-bottom: 1.2em;}
245 .autoscroll {overflow-x: auto; padding:1px; margin-bottom: 1.2em;}
242 #user_firstname, #user_lastname, #user_mail, #my_account_form select { width: 90%; }
246 #user_firstname, #user_lastname, #user_mail, #my_account_form select { width: 90%; }
243
247
244 .pagination {font-size: 90%}
248 .pagination {font-size: 90%}
245 p.pagination {margin-top:8px;}
249 p.pagination {margin-top:8px;}
246
250
247 /***** Tabular forms ******/
251 /***** Tabular forms ******/
248 .tabular p{
252 .tabular p{
249 margin: 0;
253 margin: 0;
250 padding: 5px 0 8px 0;
254 padding: 5px 0 8px 0;
251 padding-left: 180px; /*width of left column containing the label elements*/
255 padding-left: 180px; /*width of left column containing the label elements*/
252 height: 1%;
256 height: 1%;
253 clear:left;
257 clear:left;
254 }
258 }
255
259
256 html>body .tabular p {overflow:hidden;}
260 html>body .tabular p {overflow:hidden;}
257
261
258 .tabular label{
262 .tabular label{
259 font-weight: bold;
263 font-weight: bold;
260 float: left;
264 float: left;
261 text-align: right;
265 text-align: right;
262 margin-left: -180px; /*width of left column*/
266 margin-left: -180px; /*width of left column*/
263 width: 175px; /*width of labels. Should be smaller than left column to create some right
267 width: 175px; /*width of labels. Should be smaller than left column to create some right
264 margin*/
268 margin*/
265 }
269 }
266
270
267 .tabular label.floating{
271 .tabular label.floating{
268 font-weight: normal;
272 font-weight: normal;
269 margin-left: 0px;
273 margin-left: 0px;
270 text-align: left;
274 text-align: left;
271 width: 270px;
275 width: 270px;
272 }
276 }
273
277
274 input#time_entry_comments { width: 90%;}
278 input#time_entry_comments { width: 90%;}
275
279
276 #preview fieldset {margin-top: 1em; background: url(../images/draft.png)}
280 #preview fieldset {margin-top: 1em; background: url(../images/draft.png)}
277
281
278 .tabular.settings p{ padding-left: 300px; }
282 .tabular.settings p{ padding-left: 300px; }
279 .tabular.settings label{ margin-left: -300px; width: 295px; }
283 .tabular.settings label{ margin-left: -300px; width: 295px; }
280
284
281 .required {color: #bb0000;}
285 .required {color: #bb0000;}
282 .summary {font-style: italic;}
286 .summary {font-style: italic;}
283
287
284 #attachments_fields input[type=text] {margin-left: 8px; }
288 #attachments_fields input[type=text] {margin-left: 8px; }
285
289
286 div.attachments { margin-top: 12px; }
290 div.attachments { margin-top: 12px; }
287 div.attachments p { margin:4px 0 2px 0; }
291 div.attachments p { margin:4px 0 2px 0; }
288 div.attachments img { vertical-align: middle; }
292 div.attachments img { vertical-align: middle; }
289 div.attachments span.author { font-size: 0.9em; color: #888; }
293 div.attachments span.author { font-size: 0.9em; color: #888; }
290
294
291 p.other-formats { text-align: right; font-size:0.9em; color: #666; }
295 p.other-formats { text-align: right; font-size:0.9em; color: #666; }
292 .other-formats span + span:before { content: "| "; }
296 .other-formats span + span:before { content: "| "; }
293
297
294 a.feed { background: url(../images/feed.png) no-repeat 1px 50%; padding: 2px 0px 3px 16px; }
298 a.feed { background: url(../images/feed.png) no-repeat 1px 50%; padding: 2px 0px 3px 16px; }
295
299
296 /***** Flash & error messages ****/
300 /***** Flash & error messages ****/
297 #errorExplanation, div.flash, .nodata, .warning {
301 #errorExplanation, div.flash, .nodata, .warning {
298 padding: 4px 4px 4px 30px;
302 padding: 4px 4px 4px 30px;
299 margin-bottom: 12px;
303 margin-bottom: 12px;
300 font-size: 1.1em;
304 font-size: 1.1em;
301 border: 2px solid;
305 border: 2px solid;
302 }
306 }
303
307
304 div.flash {margin-top: 8px;}
308 div.flash {margin-top: 8px;}
305
309
306 div.flash.error, #errorExplanation {
310 div.flash.error, #errorExplanation {
307 background: url(../images/false.png) 8px 5px no-repeat;
311 background: url(../images/false.png) 8px 5px no-repeat;
308 background-color: #ffe3e3;
312 background-color: #ffe3e3;
309 border-color: #dd0000;
313 border-color: #dd0000;
310 color: #550000;
314 color: #550000;
311 }
315 }
312
316
313 div.flash.notice {
317 div.flash.notice {
314 background: url(../images/true.png) 8px 5px no-repeat;
318 background: url(../images/true.png) 8px 5px no-repeat;
315 background-color: #dfffdf;
319 background-color: #dfffdf;
316 border-color: #9fcf9f;
320 border-color: #9fcf9f;
317 color: #005f00;
321 color: #005f00;
318 }
322 }
319
323
320 div.flash.warning {
324 div.flash.warning {
321 background: url(../images/warning.png) 8px 5px no-repeat;
325 background: url(../images/warning.png) 8px 5px no-repeat;
322 background-color: #FFEBC1;
326 background-color: #FFEBC1;
323 border-color: #FDBF3B;
327 border-color: #FDBF3B;
324 color: #A6750C;
328 color: #A6750C;
325 text-align: left;
329 text-align: left;
326 }
330 }
327
331
328 .nodata, .warning {
332 .nodata, .warning {
329 text-align: center;
333 text-align: center;
330 background-color: #FFEBC1;
334 background-color: #FFEBC1;
331 border-color: #FDBF3B;
335 border-color: #FDBF3B;
332 color: #A6750C;
336 color: #A6750C;
333 }
337 }
334
338
335 #errorExplanation ul { font-size: 0.9em;}
339 #errorExplanation ul { font-size: 0.9em;}
336
340
337 /***** Ajax indicator ******/
341 /***** Ajax indicator ******/
338 #ajax-indicator {
342 #ajax-indicator {
339 position: absolute; /* fixed not supported by IE */
343 position: absolute; /* fixed not supported by IE */
340 background-color:#eee;
344 background-color:#eee;
341 border: 1px solid #bbb;
345 border: 1px solid #bbb;
342 top:35%;
346 top:35%;
343 left:40%;
347 left:40%;
344 width:20%;
348 width:20%;
345 font-weight:bold;
349 font-weight:bold;
346 text-align:center;
350 text-align:center;
347 padding:0.6em;
351 padding:0.6em;
348 z-index:100;
352 z-index:100;
349 filter:alpha(opacity=50);
353 filter:alpha(opacity=50);
350 opacity: 0.5;
354 opacity: 0.5;
351 }
355 }
352
356
353 html>body #ajax-indicator { position: fixed; }
357 html>body #ajax-indicator { position: fixed; }
354
358
355 #ajax-indicator span {
359 #ajax-indicator span {
356 background-position: 0% 40%;
360 background-position: 0% 40%;
357 background-repeat: no-repeat;
361 background-repeat: no-repeat;
358 background-image: url(../images/loading.gif);
362 background-image: url(../images/loading.gif);
359 padding-left: 26px;
363 padding-left: 26px;
360 vertical-align: bottom;
364 vertical-align: bottom;
361 }
365 }
362
366
363 /***** Calendar *****/
367 /***** Calendar *****/
364 table.cal {border-collapse: collapse; width: 100%; margin: 0px 0 6px 0;border: 1px solid #d7d7d7;}
368 table.cal {border-collapse: collapse; width: 100%; margin: 0px 0 6px 0;border: 1px solid #d7d7d7;}
365 table.cal thead th {width: 14%;}
369 table.cal thead th {width: 14%;}
366 table.cal tbody tr {height: 100px;}
370 table.cal tbody tr {height: 100px;}
367 table.cal th { background-color:#EEEEEE; padding: 4px; }
371 table.cal th { background-color:#EEEEEE; padding: 4px; }
368 table.cal td {border: 1px solid #d7d7d7; vertical-align: top; font-size: 0.9em;}
372 table.cal td {border: 1px solid #d7d7d7; vertical-align: top; font-size: 0.9em;}
369 table.cal td p.day-num {font-size: 1.1em; text-align:right;}
373 table.cal td p.day-num {font-size: 1.1em; text-align:right;}
370 table.cal td.odd p.day-num {color: #bbb;}
374 table.cal td.odd p.day-num {color: #bbb;}
371 table.cal td.today {background:#ffffdd;}
375 table.cal td.today {background:#ffffdd;}
372 table.cal td.today p.day-num {font-weight: bold;}
376 table.cal td.today p.day-num {font-weight: bold;}
373
377
374 /***** Tooltips ******/
378 /***** Tooltips ******/
375 .tooltip{position:relative;z-index:24;}
379 .tooltip{position:relative;z-index:24;}
376 .tooltip:hover{z-index:25;color:#000;}
380 .tooltip:hover{z-index:25;color:#000;}
377 .tooltip span.tip{display: none; text-align:left;}
381 .tooltip span.tip{display: none; text-align:left;}
378
382
379 div.tooltip:hover span.tip{
383 div.tooltip:hover span.tip{
380 display:block;
384 display:block;
381 position:absolute;
385 position:absolute;
382 top:12px; left:24px; width:270px;
386 top:12px; left:24px; width:270px;
383 border:1px solid #555;
387 border:1px solid #555;
384 background-color:#fff;
388 background-color:#fff;
385 padding: 4px;
389 padding: 4px;
386 font-size: 0.8em;
390 font-size: 0.8em;
387 color:#505050;
391 color:#505050;
388 }
392 }
389
393
390 /***** Progress bar *****/
394 /***** Progress bar *****/
391 table.progress {
395 table.progress {
392 border: 1px solid #D7D7D7;
396 border: 1px solid #D7D7D7;
393 border-collapse: collapse;
397 border-collapse: collapse;
394 border-spacing: 0pt;
398 border-spacing: 0pt;
395 empty-cells: show;
399 empty-cells: show;
396 text-align: center;
400 text-align: center;
397 float:left;
401 float:left;
398 margin: 1px 6px 1px 0px;
402 margin: 1px 6px 1px 0px;
399 }
403 }
400
404
401 table.progress td { height: 0.9em; }
405 table.progress td { height: 0.9em; }
402 table.progress td.closed { background: #BAE0BA none repeat scroll 0%; }
406 table.progress td.closed { background: #BAE0BA none repeat scroll 0%; }
403 table.progress td.done { background: #DEF0DE none repeat scroll 0%; }
407 table.progress td.done { background: #DEF0DE none repeat scroll 0%; }
404 table.progress td.open { background: #FFF none repeat scroll 0%; }
408 table.progress td.open { background: #FFF none repeat scroll 0%; }
405 p.pourcent {font-size: 80%;}
409 p.pourcent {font-size: 80%;}
406 p.progress-info {clear: left; font-style: italic; font-size: 80%;}
410 p.progress-info {clear: left; font-style: italic; font-size: 80%;}
407
411
408 /***** Tabs *****/
412 /***** Tabs *****/
409 #content .tabs {height: 2.6em; border-bottom: 1px solid #bbbbbb; margin-bottom:1.2em; position:relative;}
413 #content .tabs {height: 2.6em; border-bottom: 1px solid #bbbbbb; margin-bottom:1.2em; position:relative;}
410 #content .tabs ul {margin:0; position:absolute; bottom:-2px; padding-left:1em;}
414 #content .tabs ul {margin:0; position:absolute; bottom:-2px; padding-left:1em;}
411 #content .tabs>ul { bottom:-1px; } /* others */
415 #content .tabs>ul { bottom:-1px; } /* others */
412 #content .tabs ul li {
416 #content .tabs ul li {
413 float:left;
417 float:left;
414 list-style-type:none;
418 list-style-type:none;
415 white-space:nowrap;
419 white-space:nowrap;
416 margin-right:8px;
420 margin-right:8px;
417 background:#fff;
421 background:#fff;
418 }
422 }
419 #content .tabs ul li a{
423 #content .tabs ul li a{
420 display:block;
424 display:block;
421 font-size: 0.9em;
425 font-size: 0.9em;
422 text-decoration:none;
426 text-decoration:none;
423 line-height:1.3em;
427 line-height:1.3em;
424 padding:4px 6px 4px 6px;
428 padding:4px 6px 4px 6px;
425 border: 1px solid #ccc;
429 border: 1px solid #ccc;
426 border-bottom: 1px solid #bbbbbb;
430 border-bottom: 1px solid #bbbbbb;
427 background-color: #eeeeee;
431 background-color: #eeeeee;
428 color:#777;
432 color:#777;
429 font-weight:bold;
433 font-weight:bold;
430 }
434 }
431
435
432 #content .tabs ul li a:hover {
436 #content .tabs ul li a:hover {
433 background-color: #ffffdd;
437 background-color: #ffffdd;
434 text-decoration:none;
438 text-decoration:none;
435 }
439 }
436
440
437 #content .tabs ul li a.selected {
441 #content .tabs ul li a.selected {
438 background-color: #fff;
442 background-color: #fff;
439 border: 1px solid #bbbbbb;
443 border: 1px solid #bbbbbb;
440 border-bottom: 1px solid #fff;
444 border-bottom: 1px solid #fff;
441 }
445 }
442
446
443 #content .tabs ul li a.selected:hover {
447 #content .tabs ul li a.selected:hover {
444 background-color: #fff;
448 background-color: #fff;
445 }
449 }
446
450
447 /***** Diff *****/
451 /***** Diff *****/
448 .diff_out { background: #fcc; }
452 .diff_out { background: #fcc; }
449 .diff_in { background: #cfc; }
453 .diff_in { background: #cfc; }
450
454
451 /***** Wiki *****/
455 /***** Wiki *****/
452 div.wiki table {
456 div.wiki table {
453 border: 1px solid #505050;
457 border: 1px solid #505050;
454 border-collapse: collapse;
458 border-collapse: collapse;
455 margin-bottom: 1em;
459 margin-bottom: 1em;
456 }
460 }
457
461
458 div.wiki table, div.wiki td, div.wiki th {
462 div.wiki table, div.wiki td, div.wiki th {
459 border: 1px solid #bbb;
463 border: 1px solid #bbb;
460 padding: 4px;
464 padding: 4px;
461 }
465 }
462
466
463 div.wiki .external {
467 div.wiki .external {
464 background-position: 0% 60%;
468 background-position: 0% 60%;
465 background-repeat: no-repeat;
469 background-repeat: no-repeat;
466 padding-left: 12px;
470 padding-left: 12px;
467 background-image: url(../images/external.png);
471 background-image: url(../images/external.png);
468 }
472 }
469
473
470 div.wiki a.new {
474 div.wiki a.new {
471 color: #b73535;
475 color: #b73535;
472 }
476 }
473
477
474 div.wiki pre {
478 div.wiki pre {
475 margin: 1em 1em 1em 1.6em;
479 margin: 1em 1em 1em 1.6em;
476 padding: 2px;
480 padding: 2px;
477 background-color: #fafafa;
481 background-color: #fafafa;
478 border: 1px solid #dadada;
482 border: 1px solid #dadada;
479 width:95%;
483 width:95%;
480 overflow-x: auto;
484 overflow-x: auto;
481 }
485 }
482
486
483 div.wiki ul.toc {
487 div.wiki ul.toc {
484 background-color: #ffffdd;
488 background-color: #ffffdd;
485 border: 1px solid #e4e4e4;
489 border: 1px solid #e4e4e4;
486 padding: 4px;
490 padding: 4px;
487 line-height: 1.2em;
491 line-height: 1.2em;
488 margin-bottom: 12px;
492 margin-bottom: 12px;
489 margin-right: 12px;
493 margin-right: 12px;
490 margin-left: 0;
494 margin-left: 0;
491 display: table
495 display: table
492 }
496 }
493 * html div.wiki ul.toc { width: 50%; } /* IE6 doesn't autosize div */
497 * html div.wiki ul.toc { width: 50%; } /* IE6 doesn't autosize div */
494
498
495 div.wiki ul.toc.right { float: right; margin-left: 12px; margin-right: 0; width: auto; }
499 div.wiki ul.toc.right { float: right; margin-left: 12px; margin-right: 0; width: auto; }
496 div.wiki ul.toc.left { float: left; margin-right: 12px; margin-left: 0; width: auto; }
500 div.wiki ul.toc.left { float: left; margin-right: 12px; margin-left: 0; width: auto; }
497 div.wiki ul.toc li { list-style-type:none;}
501 div.wiki ul.toc li { list-style-type:none;}
498 div.wiki ul.toc li.heading2 { margin-left: 6px; }
502 div.wiki ul.toc li.heading2 { margin-left: 6px; }
499 div.wiki ul.toc li.heading3 { margin-left: 12px; font-size: 0.8em; }
503 div.wiki ul.toc li.heading3 { margin-left: 12px; font-size: 0.8em; }
500
504
501 div.wiki ul.toc a {
505 div.wiki ul.toc a {
502 font-size: 0.9em;
506 font-size: 0.9em;
503 font-weight: normal;
507 font-weight: normal;
504 text-decoration: none;
508 text-decoration: none;
505 color: #606060;
509 color: #606060;
506 }
510 }
507 div.wiki ul.toc a:hover { color: #c61a1a; text-decoration: underline;}
511 div.wiki ul.toc a:hover { color: #c61a1a; text-decoration: underline;}
508
512
509 a.wiki-anchor { display: none; margin-left: 6px; text-decoration: none; }
513 a.wiki-anchor { display: none; margin-left: 6px; text-decoration: none; }
510 a.wiki-anchor:hover { color: #aaa !important; text-decoration: none; }
514 a.wiki-anchor:hover { color: #aaa !important; text-decoration: none; }
511 h1:hover a.wiki-anchor, h2:hover a.wiki-anchor, h3:hover a.wiki-anchor { display: inline; color: #ddd; }
515 h1:hover a.wiki-anchor, h2:hover a.wiki-anchor, h3:hover a.wiki-anchor { display: inline; color: #ddd; }
512
516
513 /***** My page layout *****/
517 /***** My page layout *****/
514 .block-receiver {
518 .block-receiver {
515 border:1px dashed #c0c0c0;
519 border:1px dashed #c0c0c0;
516 margin-bottom: 20px;
520 margin-bottom: 20px;
517 padding: 15px 0 15px 0;
521 padding: 15px 0 15px 0;
518 }
522 }
519
523
520 .mypage-box {
524 .mypage-box {
521 margin:0 0 20px 0;
525 margin:0 0 20px 0;
522 color:#505050;
526 color:#505050;
523 line-height:1.5em;
527 line-height:1.5em;
524 }
528 }
525
529
526 .handle {
530 .handle {
527 cursor: move;
531 cursor: move;
528 }
532 }
529
533
530 a.close-icon {
534 a.close-icon {
531 display:block;
535 display:block;
532 margin-top:3px;
536 margin-top:3px;
533 overflow:hidden;
537 overflow:hidden;
534 width:12px;
538 width:12px;
535 height:12px;
539 height:12px;
536 background-repeat: no-repeat;
540 background-repeat: no-repeat;
537 cursor:pointer;
541 cursor:pointer;
538 background-image:url('../images/close.png');
542 background-image:url('../images/close.png');
539 }
543 }
540
544
541 a.close-icon:hover {
545 a.close-icon:hover {
542 background-image:url('../images/close_hl.png');
546 background-image:url('../images/close_hl.png');
543 }
547 }
544
548
545 /***** Gantt chart *****/
549 /***** Gantt chart *****/
546 .gantt_hdr {
550 .gantt_hdr {
547 position:absolute;
551 position:absolute;
548 top:0;
552 top:0;
549 height:16px;
553 height:16px;
550 border-top: 1px solid #c0c0c0;
554 border-top: 1px solid #c0c0c0;
551 border-bottom: 1px solid #c0c0c0;
555 border-bottom: 1px solid #c0c0c0;
552 border-right: 1px solid #c0c0c0;
556 border-right: 1px solid #c0c0c0;
553 text-align: center;
557 text-align: center;
554 overflow: hidden;
558 overflow: hidden;
555 }
559 }
556
560
557 .task {
561 .task {
558 position: absolute;
562 position: absolute;
559 height:8px;
563 height:8px;
560 font-size:0.8em;
564 font-size:0.8em;
561 color:#888;
565 color:#888;
562 padding:0;
566 padding:0;
563 margin:0;
567 margin:0;
564 line-height:0.8em;
568 line-height:0.8em;
565 }
569 }
566
570
567 .task_late { background:#f66 url(../images/task_late.png); border: 1px solid #f66; }
571 .task_late { background:#f66 url(../images/task_late.png); border: 1px solid #f66; }
568 .task_done { background:#66f url(../images/task_done.png); border: 1px solid #66f; }
572 .task_done { background:#66f url(../images/task_done.png); border: 1px solid #66f; }
569 .task_todo { background:#aaa url(../images/task_todo.png); border: 1px solid #aaa; }
573 .task_todo { background:#aaa url(../images/task_todo.png); border: 1px solid #aaa; }
570 .milestone { background-image:url(../images/milestone.png); background-repeat: no-repeat; border: 0; }
574 .milestone { background-image:url(../images/milestone.png); background-repeat: no-repeat; border: 0; }
571
575
572 /***** Icons *****/
576 /***** Icons *****/
573 .icon {
577 .icon {
574 background-position: 0% 40%;
578 background-position: 0% 40%;
575 background-repeat: no-repeat;
579 background-repeat: no-repeat;
576 padding-left: 20px;
580 padding-left: 20px;
577 padding-top: 2px;
581 padding-top: 2px;
578 padding-bottom: 3px;
582 padding-bottom: 3px;
579 }
583 }
580
584
581 .icon22 {
585 .icon22 {
582 background-position: 0% 40%;
586 background-position: 0% 40%;
583 background-repeat: no-repeat;
587 background-repeat: no-repeat;
584 padding-left: 26px;
588 padding-left: 26px;
585 line-height: 22px;
589 line-height: 22px;
586 vertical-align: middle;
590 vertical-align: middle;
587 }
591 }
588
592
589 .icon-add { background-image: url(../images/add.png); }
593 .icon-add { background-image: url(../images/add.png); }
590 .icon-edit { background-image: url(../images/edit.png); }
594 .icon-edit { background-image: url(../images/edit.png); }
591 .icon-copy { background-image: url(../images/copy.png); }
595 .icon-copy { background-image: url(../images/copy.png); }
592 .icon-del { background-image: url(../images/delete.png); }
596 .icon-del { background-image: url(../images/delete.png); }
593 .icon-move { background-image: url(../images/move.png); }
597 .icon-move { background-image: url(../images/move.png); }
594 .icon-save { background-image: url(../images/save.png); }
598 .icon-save { background-image: url(../images/save.png); }
595 .icon-cancel { background-image: url(../images/cancel.png); }
599 .icon-cancel { background-image: url(../images/cancel.png); }
596 .icon-file { background-image: url(../images/file.png); }
600 .icon-file { background-image: url(../images/file.png); }
597 .icon-folder { background-image: url(../images/folder.png); }
601 .icon-folder { background-image: url(../images/folder.png); }
598 .open .icon-folder { background-image: url(../images/folder_open.png); }
602 .open .icon-folder { background-image: url(../images/folder_open.png); }
599 .icon-package { background-image: url(../images/package.png); }
603 .icon-package { background-image: url(../images/package.png); }
600 .icon-home { background-image: url(../images/home.png); }
604 .icon-home { background-image: url(../images/home.png); }
601 .icon-user { background-image: url(../images/user.png); }
605 .icon-user { background-image: url(../images/user.png); }
602 .icon-mypage { background-image: url(../images/user_page.png); }
606 .icon-mypage { background-image: url(../images/user_page.png); }
603 .icon-admin { background-image: url(../images/admin.png); }
607 .icon-admin { background-image: url(../images/admin.png); }
604 .icon-projects { background-image: url(../images/projects.png); }
608 .icon-projects { background-image: url(../images/projects.png); }
605 .icon-help { background-image: url(../images/help.png); }
609 .icon-help { background-image: url(../images/help.png); }
606 .icon-attachment { background-image: url(../images/attachment.png); }
610 .icon-attachment { background-image: url(../images/attachment.png); }
607 .icon-index { background-image: url(../images/index.png); }
611 .icon-index { background-image: url(../images/index.png); }
608 .icon-history { background-image: url(../images/history.png); }
612 .icon-history { background-image: url(../images/history.png); }
609 .icon-time { background-image: url(../images/time.png); }
613 .icon-time { background-image: url(../images/time.png); }
610 .icon-stats { background-image: url(../images/stats.png); }
614 .icon-stats { background-image: url(../images/stats.png); }
611 .icon-warning { background-image: url(../images/warning.png); }
615 .icon-warning { background-image: url(../images/warning.png); }
612 .icon-fav { background-image: url(../images/fav.png); }
616 .icon-fav { background-image: url(../images/fav.png); }
613 .icon-fav-off { background-image: url(../images/fav_off.png); }
617 .icon-fav-off { background-image: url(../images/fav_off.png); }
614 .icon-reload { background-image: url(../images/reload.png); }
618 .icon-reload { background-image: url(../images/reload.png); }
615 .icon-lock { background-image: url(../images/locked.png); }
619 .icon-lock { background-image: url(../images/locked.png); }
616 .icon-unlock { background-image: url(../images/unlock.png); }
620 .icon-unlock { background-image: url(../images/unlock.png); }
617 .icon-checked { background-image: url(../images/true.png); }
621 .icon-checked { background-image: url(../images/true.png); }
618 .icon-details { background-image: url(../images/zoom_in.png); }
622 .icon-details { background-image: url(../images/zoom_in.png); }
619 .icon-report { background-image: url(../images/report.png); }
623 .icon-report { background-image: url(../images/report.png); }
620 .icon-comment { background-image: url(../images/comment.png); }
624 .icon-comment { background-image: url(../images/comment.png); }
621
625
622 .icon22-projects { background-image: url(../images/22x22/projects.png); }
626 .icon22-projects { background-image: url(../images/22x22/projects.png); }
623 .icon22-users { background-image: url(../images/22x22/users.png); }
627 .icon22-users { background-image: url(../images/22x22/users.png); }
624 .icon22-tracker { background-image: url(../images/22x22/tracker.png); }
628 .icon22-tracker { background-image: url(../images/22x22/tracker.png); }
625 .icon22-role { background-image: url(../images/22x22/role.png); }
629 .icon22-role { background-image: url(../images/22x22/role.png); }
626 .icon22-workflow { background-image: url(../images/22x22/workflow.png); }
630 .icon22-workflow { background-image: url(../images/22x22/workflow.png); }
627 .icon22-options { background-image: url(../images/22x22/options.png); }
631 .icon22-options { background-image: url(../images/22x22/options.png); }
628 .icon22-notifications { background-image: url(../images/22x22/notifications.png); }
632 .icon22-notifications { background-image: url(../images/22x22/notifications.png); }
629 .icon22-authent { background-image: url(../images/22x22/authent.png); }
633 .icon22-authent { background-image: url(../images/22x22/authent.png); }
630 .icon22-info { background-image: url(../images/22x22/info.png); }
634 .icon22-info { background-image: url(../images/22x22/info.png); }
631 .icon22-comment { background-image: url(../images/22x22/comment.png); }
635 .icon22-comment { background-image: url(../images/22x22/comment.png); }
632 .icon22-package { background-image: url(../images/22x22/package.png); }
636 .icon22-package { background-image: url(../images/22x22/package.png); }
633 .icon22-settings { background-image: url(../images/22x22/settings.png); }
637 .icon22-settings { background-image: url(../images/22x22/settings.png); }
634 .icon22-plugin { background-image: url(../images/22x22/plugin.png); }
638 .icon22-plugin { background-image: url(../images/22x22/plugin.png); }
635
639
636 img.gravatar {
640 img.gravatar {
637 padding: 2px;
641 padding: 2px;
638 border: solid 1px #d5d5d5;
642 border: solid 1px #d5d5d5;
639 background: #fff;
643 background: #fff;
640 }
644 }
641
645
642 div.issue img.gravatar {
646 div.issue img.gravatar {
643 float: right;
647 float: right;
644 margin: 0 0 0 1em;
648 margin: 0 0 0 1em;
645 padding: 5px;
649 padding: 5px;
646 }
650 }
647
651
648 div.issue table img.gravatar {
652 div.issue table img.gravatar {
649 height: 14px;
653 height: 14px;
650 width: 14px;
654 width: 14px;
651 padding: 2px;
655 padding: 2px;
652 float: left;
656 float: left;
653 margin: 0 0.5em 0 0;
657 margin: 0 0.5em 0 0;
654 }
658 }
655
659
656 #history img.gravatar {
660 #history img.gravatar {
657 padding: 3px;
661 padding: 3px;
658 margin: 0 1.5em 1em 0;
662 margin: 0 1.5em 1em 0;
659 float: left;
663 float: left;
660 }
664 }
661
665
662 td.username img.gravatar {
666 td.username img.gravatar {
663 float: left;
667 float: left;
664 margin: 0 1em 0 0;
668 margin: 0 1em 0 0;
665 }
669 }
666
670
667 #activity dt img.gravatar {
671 #activity dt img.gravatar {
668 float: left;
672 float: left;
669 margin: 0 1em 1em 0;
673 margin: 0 1em 1em 0;
670 }
674 }
671
675
672 #activity dt,
676 #activity dt,
673 .journal {
677 .journal {
674 clear: left;
678 clear: left;
675 }
679 }
676
680
677 h2 img { vertical-align:middle; }
681 h2 img { vertical-align:middle; }
678
682
679
683
680 /***** Media print specific styles *****/
684 /***** Media print specific styles *****/
681 @media print {
685 @media print {
682 #top-menu, #header, #main-menu, #sidebar, #footer, .contextual, .other-formats { display:none; }
686 #top-menu, #header, #main-menu, #sidebar, #footer, .contextual, .other-formats { display:none; }
683 #main { background: #fff; }
687 #main { background: #fff; }
684 #content { width: 99%; margin: 0; padding: 0; border: 0; background: #fff; overflow: visible !important;}
688 #content { width: 99%; margin: 0; padding: 0; border: 0; background: #fff; overflow: visible !important;}
685 }
689 }
General Comments 0
You need to be logged in to leave comments. Login now