##// END OF EJS Templates
Fixed: Update issue form: comment field from log time end out of screen (#1227)....
Jean-Philippe Lang -
r1412:75d25b7e61c1
parent child
Show More
@@ -1,50 +1,50
1 <% labelled_tabular_form_for :issue, @issue,
1 <% labelled_tabular_form_for :issue, @issue,
2 :url => {:action => 'edit', :id => @issue},
2 :url => {:action => 'edit', :id => @issue},
3 :html => {:id => 'issue-form',
3 :html => {:id => 'issue-form',
4 :class => nil,
4 :class => nil,
5 :multipart => true} do |f| %>
5 :multipart => true} do |f| %>
6 <%= error_messages_for 'issue' %>
6 <%= error_messages_for 'issue' %>
7 <div class="box">
7 <div class="box">
8 <% if @edit_allowed || !@allowed_statuses.empty? %>
8 <% if @edit_allowed || !@allowed_statuses.empty? %>
9 <fieldset class="tabular"><legend><%= l(:label_change_properties) %>
9 <fieldset class="tabular"><legend><%= l(:label_change_properties) %>
10 <% if !@issue.new_record? && !@issue.errors.any? && @edit_allowed %>
10 <% if !@issue.new_record? && !@issue.errors.any? && @edit_allowed %>
11 <small>(<%= link_to l(:label_more), {}, :onclick => 'Effect.toggle("issue_descr_fields", "appear", {duration:0.3}); return false;' %>)</small>
11 <small>(<%= link_to l(:label_more), {}, :onclick => 'Effect.toggle("issue_descr_fields", "appear", {duration:0.3}); return false;' %>)</small>
12 <% end %>
12 <% end %>
13 </legend>
13 </legend>
14 <%= render :partial => (@edit_allowed ? 'form' : 'form_update'), :locals => {:f => f} %>
14 <%= render :partial => (@edit_allowed ? 'form' : 'form_update'), :locals => {:f => f} %>
15 </fieldset>
15 </fieldset>
16 <% end %>
16 <% end %>
17 <% if authorize_for('timelog', 'edit') %>
17 <% if authorize_for('timelog', 'edit') %>
18 <fieldset class="tabular"><legend><%= l(:button_log_time) %></legend>
18 <fieldset class="tabular"><legend><%= l(:button_log_time) %></legend>
19 <% fields_for :time_entry, @time_entry, { :builder => TabularFormBuilder, :lang => current_language} do |time_entry| %>
19 <% fields_for :time_entry, @time_entry, { :builder => TabularFormBuilder, :lang => current_language} do |time_entry| %>
20 <div class="splitcontentleft">
20 <div class="splitcontentleft">
21 <p><%= time_entry.text_field :hours, :size => 6, :label => :label_spent_time %> <%= l(:field_hours) %></p>
21 <p><%= time_entry.text_field :hours, :size => 6, :label => :label_spent_time %> <%= l(:field_hours) %></p>
22 </div>
22 </div>
23 <div class="splitcontentright">
23 <div class="splitcontentright">
24 <p><%= time_entry.text_field :comments, :size => 40 %></p>
25 <p><%= time_entry.select :activity_id, (@activities.collect {|p| [p.name, p.id]}) %></p>
24 <p><%= time_entry.select :activity_id, (@activities.collect {|p| [p.name, p.id]}) %></p>
26 </div>
25 </div>
26 <p><%= time_entry.text_field :comments, :size => 60 %></p>
27 <% end %>
27 <% end %>
28 </fieldset>
28 </fieldset>
29 <% end %>
29 <% end %>
30
30
31 <fieldset><legend><%= l(:field_notes) %></legend>
31 <fieldset><legend><%= l(:field_notes) %></legend>
32 <%= text_area_tag 'notes', @notes, :cols => 60, :rows => 10, :class => 'wiki-edit' %>
32 <%= text_area_tag 'notes', @notes, :cols => 60, :rows => 10, :class => 'wiki-edit' %>
33 <%= wikitoolbar_for 'notes' %>
33 <%= wikitoolbar_for 'notes' %>
34
34
35 <p><%=l(:label_attachment_plural)%><br /><%= render :partial => 'attachments/form' %></p>
35 <p><%=l(:label_attachment_plural)%><br /><%= render :partial => 'attachments/form' %></p>
36 </fieldset>
36 </fieldset>
37 </div>
37 </div>
38
38
39 <%= f.hidden_field :lock_version %>
39 <%= f.hidden_field :lock_version %>
40 <%= submit_tag l(:button_submit) %>
40 <%= submit_tag l(:button_submit) %>
41 <%= link_to_remote l(:label_preview),
41 <%= link_to_remote l(:label_preview),
42 { :url => { :controller => 'issues', :action => 'preview', :project_id => @project, :id => @issue },
42 { :url => { :controller => 'issues', :action => 'preview', :project_id => @project, :id => @issue },
43 :method => 'post',
43 :method => 'post',
44 :update => 'preview',
44 :update => 'preview',
45 :with => 'Form.serialize("issue-form")',
45 :with => 'Form.serialize("issue-form")',
46 :complete => "Element.scrollTo('preview')"
46 :complete => "Element.scrollTo('preview')"
47 }, :accesskey => accesskey(:preview) %>
47 }, :accesskey => accesskey(:preview) %>
48 <% end %>
48 <% end %>
49
49
50 <div id="preview" class="wiki"></div>
50 <div id="preview" class="wiki"></div>
@@ -1,596 +1,598
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; padding-right: 8px; font-weight: bold;}
21 #top-menu a {color: #fff; padding-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; height:600px; min-height: 600px;}
58 #content { width: 80%; background-color: #fff; margin: 0px; border-right: 1px solid #ddd; padding: 6px 10px 10px 10px; z-index: 10; height:600px; min-height: 600px;}
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 { height: auto; min-height: 600px; overflow: auto; }
60 html>body #content { height: auto; min-height: 600px; overflow: auto; }
61
61
62 #main.nosidebar #sidebar{ display: none; }
62 #main.nosidebar #sidebar{ display: none; }
63 #main.nosidebar #content{ width: auto; border-right: 0; }
63 #main.nosidebar #content{ width: auto; border-right: 0; }
64
64
65 #footer {clear: both; border-top: 1px solid #bbb; font-size: 0.9em; color: #aaa; padding: 5px; text-align:center; background:#fff;}
65 #footer {clear: both; border-top: 1px solid #bbb; font-size: 0.9em; color: #aaa; padding: 5px; text-align:center; background:#fff;}
66
66
67 #login-form table {margin-top:5em; padding:1em; margin-left: auto; margin-right: auto; border: 2px solid #FDBF3B; background-color:#FFEBC1; }
67 #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 td {padding: 6px;}
68 #login-form table td {padding: 6px;}
69 #login-form label {font-weight: bold;}
69 #login-form label {font-weight: bold;}
70
70
71 .clear:after{ content: "."; display: block; height: 0; clear: both; visibility: hidden; }
71 .clear:after{ content: "."; display: block; height: 0; clear: both; visibility: hidden; }
72
72
73 /***** Links *****/
73 /***** Links *****/
74 a, a:link, a:visited{ color: #2A5685; text-decoration: none; }
74 a, a:link, a:visited{ color: #2A5685; text-decoration: none; }
75 a:hover, a:active{ color: #c61a1a; text-decoration: underline;}
75 a:hover, a:active{ color: #c61a1a; text-decoration: underline;}
76 a img{ border: 0; }
76 a img{ border: 0; }
77
77
78 a.issue.closed, .issue.closed a { text-decoration: line-through; }
78 a.issue.closed, .issue.closed a { text-decoration: line-through; }
79
79
80 /***** Tables *****/
80 /***** Tables *****/
81 table.list { border: 1px solid #e4e4e4; border-collapse: collapse; width: 100%; margin-bottom: 4px; }
81 table.list { border: 1px solid #e4e4e4; border-collapse: collapse; width: 100%; margin-bottom: 4px; }
82 table.list th { background-color:#EEEEEE; padding: 4px; white-space:nowrap; }
82 table.list th { background-color:#EEEEEE; padding: 4px; white-space:nowrap; }
83 table.list td { overflow: hidden; vertical-align: top;}
83 table.list td { overflow: hidden; vertical-align: top;}
84 table.list td.id { width: 2%; text-align: center;}
84 table.list td.id { width: 2%; text-align: center;}
85 table.list td.checkbox { width: 15px; padding: 0px;}
85 table.list td.checkbox { width: 15px; padding: 0px;}
86
86
87 table.list.issues { margin-top: 10px; }
87 table.list.issues { margin-top: 10px; }
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 { white-space: normal; }
89 tr.issue td.subject, tr.issue td.category { 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.changeset td.author { text-align: center; width: 15%; }
100 tr.changeset td.author { text-align: center; width: 15%; }
101 tr.changeset td.committed_on { text-align: center; width: 15%; }
101 tr.changeset td.committed_on { text-align: center; width: 15%; }
102
102
103 tr.message { height: 2.6em; }
103 tr.message { height: 2.6em; }
104 tr.message td.last_message { font-size: 80%; }
104 tr.message td.last_message { font-size: 80%; }
105 tr.message.locked td.subject a { background-image: url(../images/locked.png); }
105 tr.message.locked td.subject a { background-image: url(../images/locked.png); }
106 tr.message.sticky td.subject a { background-image: url(../images/sticky.png); font-weight: bold; }
106 tr.message.sticky td.subject a { background-image: url(../images/sticky.png); font-weight: bold; }
107
107
108 tr.user td { width:13%; }
108 tr.user td { width:13%; }
109 tr.user td.email { width:18%; }
109 tr.user td.email { width:18%; }
110 tr.user td { white-space: nowrap; }
110 tr.user td { white-space: nowrap; }
111 tr.user.locked, tr.user.registered { color: #aaa; }
111 tr.user.locked, tr.user.registered { color: #aaa; }
112 tr.user.locked a, tr.user.registered a { color: #aaa; }
112 tr.user.locked a, tr.user.registered a { color: #aaa; }
113
113
114 tr.time-entry { text-align: center; white-space: nowrap; }
114 tr.time-entry { text-align: center; white-space: nowrap; }
115 tr.time-entry td.subject, tr.time-entry td.comments { text-align: left; white-space: normal; }
115 tr.time-entry td.subject, tr.time-entry td.comments { text-align: left; white-space: normal; }
116 td.hours { text-align: right; font-weight: bold; padding-right: 0.5em; }
116 td.hours { text-align: right; font-weight: bold; padding-right: 0.5em; }
117 td.hours .hours-dec { font-size: 0.9em; }
117 td.hours .hours-dec { font-size: 0.9em; }
118
118
119 table.list tbody tr:hover { background-color:#ffffdd; }
119 table.list tbody tr:hover { background-color:#ffffdd; }
120 table td {padding:2px;}
120 table td {padding:2px;}
121 table p {margin:0;}
121 table p {margin:0;}
122 .odd {background-color:#f6f7f8;}
122 .odd {background-color:#f6f7f8;}
123 .even {background-color: #fff;}
123 .even {background-color: #fff;}
124
124
125 .highlight { background-color: #FCFD8D;}
125 .highlight { background-color: #FCFD8D;}
126 .highlight.token-1 { background-color: #faa;}
126 .highlight.token-1 { background-color: #faa;}
127 .highlight.token-2 { background-color: #afa;}
127 .highlight.token-2 { background-color: #afa;}
128 .highlight.token-3 { background-color: #aaf;}
128 .highlight.token-3 { background-color: #aaf;}
129
129
130 .box{
130 .box{
131 padding:6px;
131 padding:6px;
132 margin-bottom: 10px;
132 margin-bottom: 10px;
133 background-color:#f6f6f6;
133 background-color:#f6f6f6;
134 color:#505050;
134 color:#505050;
135 line-height:1.5em;
135 line-height:1.5em;
136 border: 1px solid #e4e4e4;
136 border: 1px solid #e4e4e4;
137 }
137 }
138
138
139 div.square {
139 div.square {
140 border: 1px solid #999;
140 border: 1px solid #999;
141 float: left;
141 float: left;
142 margin: .3em .4em 0 .4em;
142 margin: .3em .4em 0 .4em;
143 overflow: hidden;
143 overflow: hidden;
144 width: .6em; height: .6em;
144 width: .6em; height: .6em;
145 }
145 }
146 .contextual {float:right; white-space: nowrap; line-height:1.4em;margin-top:5px; padding-left: 10px; font-size:0.9em;}
146 .contextual {float:right; white-space: nowrap; line-height:1.4em;margin-top:5px; padding-left: 10px; font-size:0.9em;}
147 .contextual input {font-size:0.9em;}
147 .contextual input {font-size:0.9em;}
148
148
149 .splitcontentleft{float:left; width:49%;}
149 .splitcontentleft{float:left; width:49%;}
150 .splitcontentright{float:right; width:49%;}
150 .splitcontentright{float:right; width:49%;}
151 form {display: inline;}
151 form {display: inline;}
152 input, select {vertical-align: middle; margin-top: 1px; margin-bottom: 1px;}
152 input, select {vertical-align: middle; margin-top: 1px; margin-bottom: 1px;}
153 fieldset {border: 1px solid #e4e4e4; margin:0;}
153 fieldset {border: 1px solid #e4e4e4; margin:0;}
154 legend {color: #484848;}
154 legend {color: #484848;}
155 hr { width: 100%; height: 1px; background: #ccc; border: 0;}
155 hr { width: 100%; height: 1px; background: #ccc; border: 0;}
156 textarea.wiki-edit { width: 99%; }
156 textarea.wiki-edit { width: 99%; }
157 li p {margin-top: 0;}
157 li p {margin-top: 0;}
158 div.issue {background:#ffffdd; padding:6px; margin-bottom:6px;border: 1px solid #d7d7d7;}
158 div.issue {background:#ffffdd; padding:6px; margin-bottom:6px;border: 1px solid #d7d7d7;}
159 p.breadcrumb { font-size: 0.9em; margin: 4px 0 4px 0;}
159 p.breadcrumb { font-size: 0.9em; margin: 4px 0 4px 0;}
160 p.subtitle { font-size: 0.9em; margin: -6px 0 12px 0; font-style: italic; }
160 p.subtitle { font-size: 0.9em; margin: -6px 0 12px 0; font-style: italic; }
161
161
162 fieldset#filters { padding: 0.7em; }
162 fieldset#filters { padding: 0.7em; }
163 fieldset#filters p { margin: 1.2em 0 0.8em 2px; }
163 fieldset#filters p { margin: 1.2em 0 0.8em 2px; }
164 fieldset#filters .buttons { font-size: 0.9em; }
164 fieldset#filters .buttons { font-size: 0.9em; }
165 fieldset#filters table { border-collapse: collapse; }
165 fieldset#filters table { border-collapse: collapse; }
166 fieldset#filters table td { padding: 0; vertical-align: middle; }
166 fieldset#filters table td { padding: 0; vertical-align: middle; }
167 fieldset#filters tr.filter { height: 2em; }
167 fieldset#filters tr.filter { height: 2em; }
168 fieldset#filters td.add-filter { text-align: right; vertical-align: top; }
168 fieldset#filters td.add-filter { text-align: right; vertical-align: top; }
169
169
170 div#issue-changesets {float:right; width:45%; margin-left: 1em; margin-bottom: 1em; background: #fff; padding-left: 1em; font-size: 90%;}
170 div#issue-changesets {float:right; width:45%; margin-left: 1em; margin-bottom: 1em; background: #fff; padding-left: 1em; font-size: 90%;}
171 div#issue-changesets .changeset { padding: 4px;}
171 div#issue-changesets .changeset { padding: 4px;}
172 div#issue-changesets .changeset { border-bottom: 1px solid #ddd; }
172 div#issue-changesets .changeset { border-bottom: 1px solid #ddd; }
173 div#issue-changesets p { margin-top: 0; margin-bottom: 1em;}
173 div#issue-changesets p { margin-top: 0; margin-bottom: 1em;}
174
174
175 div#activity dl { margin-left: 2em; }
175 div#activity dl { margin-left: 2em; }
176 div#activity dd { margin-bottom: 1em; padding-left: 18px; }
176 div#activity dd { margin-bottom: 1em; padding-left: 18px; }
177 div#activity dt { margin-bottom: 1px; padding-left: 20px; line-height: 18px; background-position: 0 50%; background-repeat: no-repeat; }
177 div#activity dt { margin-bottom: 1px; padding-left: 20px; line-height: 18px; background-position: 0 50%; background-repeat: no-repeat; }
178 div#activity dt .time { color: #777; font-size: 80%; }
178 div#activity dt .time { color: #777; font-size: 80%; }
179 div#activity dd .description { font-style: italic; }
179 div#activity dd .description { font-style: italic; }
180 div#activity span.project:after { content: " -"; }
180 div#activity span.project:after { content: " -"; }
181 div#activity dt.issue { background-image: url(../images/ticket.png); }
181 div#activity dt.issue { background-image: url(../images/ticket.png); }
182 div#activity dt.issue-edit { background-image: url(../images/ticket_edit.png); }
182 div#activity dt.issue-edit { background-image: url(../images/ticket_edit.png); }
183 div#activity dt.issue-closed { background-image: url(../images/ticket_checked.png); }
183 div#activity dt.issue-closed { background-image: url(../images/ticket_checked.png); }
184 div#activity dt.changeset { background-image: url(../images/changeset.png); }
184 div#activity dt.changeset { background-image: url(../images/changeset.png); }
185 div#activity dt.news { background-image: url(../images/news.png); }
185 div#activity dt.news { background-image: url(../images/news.png); }
186 div#activity dt.message { background-image: url(../images/message.png); }
186 div#activity dt.message { background-image: url(../images/message.png); }
187 div#activity dt.reply { background-image: url(../images/comments.png); }
187 div#activity dt.reply { background-image: url(../images/comments.png); }
188 div#activity dt.wiki-page { background-image: url(../images/wiki_edit.png); }
188 div#activity dt.wiki-page { background-image: url(../images/wiki_edit.png); }
189 div#activity dt.attachment { background-image: url(../images/attachment.png); }
189 div#activity dt.attachment { background-image: url(../images/attachment.png); }
190 div#activity dt.document { background-image: url(../images/document.png); }
190 div#activity dt.document { background-image: url(../images/document.png); }
191
191
192 div#roadmap fieldset.related-issues { margin-bottom: 1em; }
192 div#roadmap fieldset.related-issues { margin-bottom: 1em; }
193 div#roadmap fieldset.related-issues ul { margin-top: 0.3em; margin-bottom: 0.3em; }
193 div#roadmap fieldset.related-issues ul { margin-top: 0.3em; margin-bottom: 0.3em; }
194 div#roadmap .wiki h1:first-child { display: none; }
194 div#roadmap .wiki h1:first-child { display: none; }
195 div#roadmap .wiki h1 { font-size: 120%; }
195 div#roadmap .wiki h1 { font-size: 120%; }
196 div#roadmap .wiki h2 { font-size: 110%; }
196 div#roadmap .wiki h2 { font-size: 110%; }
197
197
198 div#version-summary { float:right; width:380px; margin-left: 16px; margin-bottom: 16px; background-color: #fff; }
198 div#version-summary { float:right; width:380px; margin-left: 16px; margin-bottom: 16px; background-color: #fff; }
199 div#version-summary fieldset { margin-bottom: 1em; }
199 div#version-summary fieldset { margin-bottom: 1em; }
200 div#version-summary .total-hours { text-align: right; }
200 div#version-summary .total-hours { text-align: right; }
201
201
202 table#time-report td.hours, table#time-report th.period, table#time-report th.total { text-align: right; padding-right: 0.5em; }
202 table#time-report td.hours, table#time-report th.period, table#time-report th.total { text-align: right; padding-right: 0.5em; }
203 table#time-report tbody tr { font-style: italic; color: #777; }
203 table#time-report tbody tr { font-style: italic; color: #777; }
204 table#time-report tbody tr.last-level { font-style: normal; color: #555; }
204 table#time-report tbody tr.last-level { font-style: normal; color: #555; }
205 table#time-report tbody tr.total { font-style: normal; font-weight: bold; color: #555; background-color:#EEEEEE; }
205 table#time-report tbody tr.total { font-style: normal; font-weight: bold; color: #555; background-color:#EEEEEE; }
206 table#time-report .hours-dec { font-size: 0.9em; }
206 table#time-report .hours-dec { font-size: 0.9em; }
207
207
208 .total-hours { font-size: 110%; font-weight: bold; }
208 .total-hours { font-size: 110%; font-weight: bold; }
209 .total-hours span.hours-int { font-size: 120%; }
209 .total-hours span.hours-int { font-size: 120%; }
210
210
211 .autoscroll {overflow-x: auto; padding:1px; margin-bottom: 1.2em;}
211 .autoscroll {overflow-x: auto; padding:1px; margin-bottom: 1.2em;}
212 #user_firstname, #user_lastname, #user_mail, #my_account_form select { width: 90%; }
212 #user_firstname, #user_lastname, #user_mail, #my_account_form select { width: 90%; }
213
213
214 .pagination {font-size: 90%}
214 .pagination {font-size: 90%}
215 p.pagination {margin-top:8px;}
215 p.pagination {margin-top:8px;}
216
216
217 /***** Tabular forms ******/
217 /***** Tabular forms ******/
218 .tabular p{
218 .tabular p{
219 margin: 0;
219 margin: 0;
220 padding: 5px 0 8px 0;
220 padding: 5px 0 8px 0;
221 padding-left: 180px; /*width of left column containing the label elements*/
221 padding-left: 180px; /*width of left column containing the label elements*/
222 height: 1%;
222 height: 1%;
223 clear:left;
223 clear:left;
224 }
224 }
225
225
226 html>body .tabular p {overflow:auto;}
226 html>body .tabular p {overflow:auto;}
227
227
228 .tabular label{
228 .tabular label{
229 font-weight: bold;
229 font-weight: bold;
230 float: left;
230 float: left;
231 text-align: right;
231 text-align: right;
232 margin-left: -180px; /*width of left column*/
232 margin-left: -180px; /*width of left column*/
233 width: 175px; /*width of labels. Should be smaller than left column to create some right
233 width: 175px; /*width of labels. Should be smaller than left column to create some right
234 margin*/
234 margin*/
235 }
235 }
236
236
237 .tabular label.floating{
237 .tabular label.floating{
238 font-weight: normal;
238 font-weight: normal;
239 margin-left: 0px;
239 margin-left: 0px;
240 text-align: left;
240 text-align: left;
241 width: 200px;
241 width: 200px;
242 }
242 }
243
243
244 input#time_entry_comments { width: 90%;}
245
244 #preview fieldset {margin-top: 1em; background: url(../images/draft.png)}
246 #preview fieldset {margin-top: 1em; background: url(../images/draft.png)}
245
247
246 .tabular.settings p{ padding-left: 300px; }
248 .tabular.settings p{ padding-left: 300px; }
247 .tabular.settings label{ margin-left: -300px; width: 295px; }
249 .tabular.settings label{ margin-left: -300px; width: 295px; }
248
250
249 .required {color: #bb0000;}
251 .required {color: #bb0000;}
250 .summary {font-style: italic;}
252 .summary {font-style: italic;}
251
253
252 #attachments_fields input[type=text] {margin-left: 8px; }
254 #attachments_fields input[type=text] {margin-left: 8px; }
253
255
254 div.attachments p { margin:4px 0 2px 0; }
256 div.attachments p { margin:4px 0 2px 0; }
255 div.attachments img { vertical-align: middle; }
257 div.attachments img { vertical-align: middle; }
256 div.attachments span.author { font-size: 0.9em; color: #888; }
258 div.attachments span.author { font-size: 0.9em; color: #888; }
257
259
258 p.other-formats { text-align: right; font-size:0.9em; color: #666; }
260 p.other-formats { text-align: right; font-size:0.9em; color: #666; }
259 .other-formats span + span:before { content: "| "; }
261 .other-formats span + span:before { content: "| "; }
260
262
261 a.feed { background: url(../images/feed.png) no-repeat 1px 50%; padding: 2px 0px 3px 16px; }
263 a.feed { background: url(../images/feed.png) no-repeat 1px 50%; padding: 2px 0px 3px 16px; }
262
264
263 /***** Flash & error messages ****/
265 /***** Flash & error messages ****/
264 #errorExplanation, div.flash, .nodata, .warning {
266 #errorExplanation, div.flash, .nodata, .warning {
265 padding: 4px 4px 4px 30px;
267 padding: 4px 4px 4px 30px;
266 margin-bottom: 12px;
268 margin-bottom: 12px;
267 font-size: 1.1em;
269 font-size: 1.1em;
268 border: 2px solid;
270 border: 2px solid;
269 }
271 }
270
272
271 div.flash {margin-top: 8px;}
273 div.flash {margin-top: 8px;}
272
274
273 div.flash.error, #errorExplanation {
275 div.flash.error, #errorExplanation {
274 background: url(../images/false.png) 8px 5px no-repeat;
276 background: url(../images/false.png) 8px 5px no-repeat;
275 background-color: #ffe3e3;
277 background-color: #ffe3e3;
276 border-color: #dd0000;
278 border-color: #dd0000;
277 color: #550000;
279 color: #550000;
278 }
280 }
279
281
280 div.flash.notice {
282 div.flash.notice {
281 background: url(../images/true.png) 8px 5px no-repeat;
283 background: url(../images/true.png) 8px 5px no-repeat;
282 background-color: #dfffdf;
284 background-color: #dfffdf;
283 border-color: #9fcf9f;
285 border-color: #9fcf9f;
284 color: #005f00;
286 color: #005f00;
285 }
287 }
286
288
287 .nodata, .warning {
289 .nodata, .warning {
288 text-align: center;
290 text-align: center;
289 background-color: #FFEBC1;
291 background-color: #FFEBC1;
290 border-color: #FDBF3B;
292 border-color: #FDBF3B;
291 color: #A6750C;
293 color: #A6750C;
292 }
294 }
293
295
294 #errorExplanation ul { font-size: 0.9em;}
296 #errorExplanation ul { font-size: 0.9em;}
295
297
296 /***** Ajax indicator ******/
298 /***** Ajax indicator ******/
297 #ajax-indicator {
299 #ajax-indicator {
298 position: absolute; /* fixed not supported by IE */
300 position: absolute; /* fixed not supported by IE */
299 background-color:#eee;
301 background-color:#eee;
300 border: 1px solid #bbb;
302 border: 1px solid #bbb;
301 top:35%;
303 top:35%;
302 left:40%;
304 left:40%;
303 width:20%;
305 width:20%;
304 font-weight:bold;
306 font-weight:bold;
305 text-align:center;
307 text-align:center;
306 padding:0.6em;
308 padding:0.6em;
307 z-index:100;
309 z-index:100;
308 filter:alpha(opacity=50);
310 filter:alpha(opacity=50);
309 opacity: 0.5;
311 opacity: 0.5;
310 }
312 }
311
313
312 html>body #ajax-indicator { position: fixed; }
314 html>body #ajax-indicator { position: fixed; }
313
315
314 #ajax-indicator span {
316 #ajax-indicator span {
315 background-position: 0% 40%;
317 background-position: 0% 40%;
316 background-repeat: no-repeat;
318 background-repeat: no-repeat;
317 background-image: url(../images/loading.gif);
319 background-image: url(../images/loading.gif);
318 padding-left: 26px;
320 padding-left: 26px;
319 vertical-align: bottom;
321 vertical-align: bottom;
320 }
322 }
321
323
322 /***** Calendar *****/
324 /***** Calendar *****/
323 table.cal {border-collapse: collapse; width: 100%; margin: 8px 0 6px 0;border: 1px solid #d7d7d7;}
325 table.cal {border-collapse: collapse; width: 100%; margin: 8px 0 6px 0;border: 1px solid #d7d7d7;}
324 table.cal thead th {width: 14%;}
326 table.cal thead th {width: 14%;}
325 table.cal tbody tr {height: 100px;}
327 table.cal tbody tr {height: 100px;}
326 table.cal th { background-color:#EEEEEE; padding: 4px; }
328 table.cal th { background-color:#EEEEEE; padding: 4px; }
327 table.cal td {border: 1px solid #d7d7d7; vertical-align: top; font-size: 0.9em;}
329 table.cal td {border: 1px solid #d7d7d7; vertical-align: top; font-size: 0.9em;}
328 table.cal td p.day-num {font-size: 1.1em; text-align:right;}
330 table.cal td p.day-num {font-size: 1.1em; text-align:right;}
329 table.cal td.odd p.day-num {color: #bbb;}
331 table.cal td.odd p.day-num {color: #bbb;}
330 table.cal td.today {background:#ffffdd;}
332 table.cal td.today {background:#ffffdd;}
331 table.cal td.today p.day-num {font-weight: bold;}
333 table.cal td.today p.day-num {font-weight: bold;}
332
334
333 /***** Tooltips ******/
335 /***** Tooltips ******/
334 .tooltip{position:relative;z-index:24;}
336 .tooltip{position:relative;z-index:24;}
335 .tooltip:hover{z-index:25;color:#000;}
337 .tooltip:hover{z-index:25;color:#000;}
336 .tooltip span.tip{display: none; text-align:left;}
338 .tooltip span.tip{display: none; text-align:left;}
337
339
338 div.tooltip:hover span.tip{
340 div.tooltip:hover span.tip{
339 display:block;
341 display:block;
340 position:absolute;
342 position:absolute;
341 top:12px; left:24px; width:270px;
343 top:12px; left:24px; width:270px;
342 border:1px solid #555;
344 border:1px solid #555;
343 background-color:#fff;
345 background-color:#fff;
344 padding: 4px;
346 padding: 4px;
345 font-size: 0.8em;
347 font-size: 0.8em;
346 color:#505050;
348 color:#505050;
347 }
349 }
348
350
349 /***** Progress bar *****/
351 /***** Progress bar *****/
350 table.progress {
352 table.progress {
351 border: 1px solid #D7D7D7;
353 border: 1px solid #D7D7D7;
352 border-collapse: collapse;
354 border-collapse: collapse;
353 border-spacing: 0pt;
355 border-spacing: 0pt;
354 empty-cells: show;
356 empty-cells: show;
355 text-align: center;
357 text-align: center;
356 float:left;
358 float:left;
357 margin: 1px 6px 1px 0px;
359 margin: 1px 6px 1px 0px;
358 }
360 }
359
361
360 table.progress td { height: 0.9em; }
362 table.progress td { height: 0.9em; }
361 table.progress td.closed { background: #BAE0BA none repeat scroll 0%; }
363 table.progress td.closed { background: #BAE0BA none repeat scroll 0%; }
362 table.progress td.done { background: #DEF0DE none repeat scroll 0%; }
364 table.progress td.done { background: #DEF0DE none repeat scroll 0%; }
363 table.progress td.open { background: #FFF none repeat scroll 0%; }
365 table.progress td.open { background: #FFF none repeat scroll 0%; }
364 p.pourcent {font-size: 80%;}
366 p.pourcent {font-size: 80%;}
365 p.progress-info {clear: left; font-style: italic; font-size: 80%;}
367 p.progress-info {clear: left; font-style: italic; font-size: 80%;}
366
368
367 /***** Tabs *****/
369 /***** Tabs *****/
368 #content .tabs {height: 2.6em; border-bottom: 1px solid #bbbbbb; margin-bottom:1.2em; position:relative;}
370 #content .tabs {height: 2.6em; border-bottom: 1px solid #bbbbbb; margin-bottom:1.2em; position:relative;}
369 #content .tabs ul {margin:0; position:absolute; bottom:-2px; padding-left:1em;}
371 #content .tabs ul {margin:0; position:absolute; bottom:-2px; padding-left:1em;}
370 #content .tabs>ul { bottom:-1px; } /* others */
372 #content .tabs>ul { bottom:-1px; } /* others */
371 #content .tabs ul li {
373 #content .tabs ul li {
372 float:left;
374 float:left;
373 list-style-type:none;
375 list-style-type:none;
374 white-space:nowrap;
376 white-space:nowrap;
375 margin-right:8px;
377 margin-right:8px;
376 background:#fff;
378 background:#fff;
377 }
379 }
378 #content .tabs ul li a{
380 #content .tabs ul li a{
379 display:block;
381 display:block;
380 font-size: 0.9em;
382 font-size: 0.9em;
381 text-decoration:none;
383 text-decoration:none;
382 line-height:1.3em;
384 line-height:1.3em;
383 padding:4px 6px 4px 6px;
385 padding:4px 6px 4px 6px;
384 border: 1px solid #ccc;
386 border: 1px solid #ccc;
385 border-bottom: 1px solid #bbbbbb;
387 border-bottom: 1px solid #bbbbbb;
386 background-color: #eeeeee;
388 background-color: #eeeeee;
387 color:#777;
389 color:#777;
388 font-weight:bold;
390 font-weight:bold;
389 }
391 }
390
392
391 #content .tabs ul li a:hover {
393 #content .tabs ul li a:hover {
392 background-color: #ffffdd;
394 background-color: #ffffdd;
393 text-decoration:none;
395 text-decoration:none;
394 }
396 }
395
397
396 #content .tabs ul li a.selected {
398 #content .tabs ul li a.selected {
397 background-color: #fff;
399 background-color: #fff;
398 border: 1px solid #bbbbbb;
400 border: 1px solid #bbbbbb;
399 border-bottom: 1px solid #fff;
401 border-bottom: 1px solid #fff;
400 }
402 }
401
403
402 #content .tabs ul li a.selected:hover {
404 #content .tabs ul li a.selected:hover {
403 background-color: #fff;
405 background-color: #fff;
404 }
406 }
405
407
406 /***** Diff *****/
408 /***** Diff *****/
407 .diff_out { background: #fcc; }
409 .diff_out { background: #fcc; }
408 .diff_in { background: #cfc; }
410 .diff_in { background: #cfc; }
409
411
410 /***** Wiki *****/
412 /***** Wiki *****/
411 div.wiki table {
413 div.wiki table {
412 border: 1px solid #505050;
414 border: 1px solid #505050;
413 border-collapse: collapse;
415 border-collapse: collapse;
414 margin-bottom: 1em;
416 margin-bottom: 1em;
415 }
417 }
416
418
417 div.wiki table, div.wiki td, div.wiki th {
419 div.wiki table, div.wiki td, div.wiki th {
418 border: 1px solid #bbb;
420 border: 1px solid #bbb;
419 padding: 4px;
421 padding: 4px;
420 }
422 }
421
423
422 div.wiki .external {
424 div.wiki .external {
423 background-position: 0% 60%;
425 background-position: 0% 60%;
424 background-repeat: no-repeat;
426 background-repeat: no-repeat;
425 padding-left: 12px;
427 padding-left: 12px;
426 background-image: url(../images/external.png);
428 background-image: url(../images/external.png);
427 }
429 }
428
430
429 div.wiki a.new {
431 div.wiki a.new {
430 color: #b73535;
432 color: #b73535;
431 }
433 }
432
434
433 div.wiki pre {
435 div.wiki pre {
434 margin: 1em 1em 1em 1.6em;
436 margin: 1em 1em 1em 1.6em;
435 padding: 2px;
437 padding: 2px;
436 background-color: #fafafa;
438 background-color: #fafafa;
437 border: 1px solid #dadada;
439 border: 1px solid #dadada;
438 width:95%;
440 width:95%;
439 overflow-x: auto;
441 overflow-x: auto;
440 }
442 }
441
443
442 div.wiki div.toc {
444 div.wiki div.toc {
443 background-color: #ffffdd;
445 background-color: #ffffdd;
444 border: 1px solid #e4e4e4;
446 border: 1px solid #e4e4e4;
445 padding: 4px;
447 padding: 4px;
446 line-height: 1.2em;
448 line-height: 1.2em;
447 margin-bottom: 12px;
449 margin-bottom: 12px;
448 margin-right: 12px;
450 margin-right: 12px;
449 display: table
451 display: table
450 }
452 }
451 * html div.wiki div.toc { width: 50%; } /* IE6 doesn't autosize div */
453 * html div.wiki div.toc { width: 50%; } /* IE6 doesn't autosize div */
452
454
453 div.wiki div.toc.right { float: right; margin-left: 12px; margin-right: 0; width: auto; }
455 div.wiki div.toc.right { float: right; margin-left: 12px; margin-right: 0; width: auto; }
454 div.wiki div.toc.left { float: left; margin-right: 12px; margin-left: 0; width: auto; }
456 div.wiki div.toc.left { float: left; margin-right: 12px; margin-left: 0; width: auto; }
455
457
456 div.wiki div.toc a {
458 div.wiki div.toc a {
457 display: block;
459 display: block;
458 font-size: 0.9em;
460 font-size: 0.9em;
459 font-weight: normal;
461 font-weight: normal;
460 text-decoration: none;
462 text-decoration: none;
461 color: #606060;
463 color: #606060;
462 }
464 }
463 div.wiki div.toc a:hover { color: #c61a1a; text-decoration: underline;}
465 div.wiki div.toc a:hover { color: #c61a1a; text-decoration: underline;}
464
466
465 div.wiki div.toc a.heading2 { margin-left: 6px; }
467 div.wiki div.toc a.heading2 { margin-left: 6px; }
466 div.wiki div.toc a.heading3 { margin-left: 12px; font-size: 0.8em; }
468 div.wiki div.toc a.heading3 { margin-left: 12px; font-size: 0.8em; }
467
469
468 /***** My page layout *****/
470 /***** My page layout *****/
469 .block-receiver {
471 .block-receiver {
470 border:1px dashed #c0c0c0;
472 border:1px dashed #c0c0c0;
471 margin-bottom: 20px;
473 margin-bottom: 20px;
472 padding: 15px 0 15px 0;
474 padding: 15px 0 15px 0;
473 }
475 }
474
476
475 .mypage-box {
477 .mypage-box {
476 margin:0 0 20px 0;
478 margin:0 0 20px 0;
477 color:#505050;
479 color:#505050;
478 line-height:1.5em;
480 line-height:1.5em;
479 }
481 }
480
482
481 .handle {
483 .handle {
482 cursor: move;
484 cursor: move;
483 }
485 }
484
486
485 a.close-icon {
487 a.close-icon {
486 display:block;
488 display:block;
487 margin-top:3px;
489 margin-top:3px;
488 overflow:hidden;
490 overflow:hidden;
489 width:12px;
491 width:12px;
490 height:12px;
492 height:12px;
491 background-repeat: no-repeat;
493 background-repeat: no-repeat;
492 cursor:pointer;
494 cursor:pointer;
493 background-image:url('../images/close.png');
495 background-image:url('../images/close.png');
494 }
496 }
495
497
496 a.close-icon:hover {
498 a.close-icon:hover {
497 background-image:url('../images/close_hl.png');
499 background-image:url('../images/close_hl.png');
498 }
500 }
499
501
500 /***** Gantt chart *****/
502 /***** Gantt chart *****/
501 .gantt_hdr {
503 .gantt_hdr {
502 position:absolute;
504 position:absolute;
503 top:0;
505 top:0;
504 height:16px;
506 height:16px;
505 border-top: 1px solid #c0c0c0;
507 border-top: 1px solid #c0c0c0;
506 border-bottom: 1px solid #c0c0c0;
508 border-bottom: 1px solid #c0c0c0;
507 border-right: 1px solid #c0c0c0;
509 border-right: 1px solid #c0c0c0;
508 text-align: center;
510 text-align: center;
509 overflow: hidden;
511 overflow: hidden;
510 }
512 }
511
513
512 .task {
514 .task {
513 position: absolute;
515 position: absolute;
514 height:8px;
516 height:8px;
515 font-size:0.8em;
517 font-size:0.8em;
516 color:#888;
518 color:#888;
517 padding:0;
519 padding:0;
518 margin:0;
520 margin:0;
519 line-height:0.8em;
521 line-height:0.8em;
520 }
522 }
521
523
522 .task_late { background:#f66 url(../images/task_late.png); border: 1px solid #f66; }
524 .task_late { background:#f66 url(../images/task_late.png); border: 1px solid #f66; }
523 .task_done { background:#66f url(../images/task_done.png); border: 1px solid #66f; }
525 .task_done { background:#66f url(../images/task_done.png); border: 1px solid #66f; }
524 .task_todo { background:#aaa url(../images/task_todo.png); border: 1px solid #aaa; }
526 .task_todo { background:#aaa url(../images/task_todo.png); border: 1px solid #aaa; }
525 .milestone { background-image:url(../images/milestone.png); background-repeat: no-repeat; border: 0; }
527 .milestone { background-image:url(../images/milestone.png); background-repeat: no-repeat; border: 0; }
526
528
527 /***** Icons *****/
529 /***** Icons *****/
528 .icon {
530 .icon {
529 background-position: 0% 40%;
531 background-position: 0% 40%;
530 background-repeat: no-repeat;
532 background-repeat: no-repeat;
531 padding-left: 20px;
533 padding-left: 20px;
532 padding-top: 2px;
534 padding-top: 2px;
533 padding-bottom: 3px;
535 padding-bottom: 3px;
534 }
536 }
535
537
536 .icon22 {
538 .icon22 {
537 background-position: 0% 40%;
539 background-position: 0% 40%;
538 background-repeat: no-repeat;
540 background-repeat: no-repeat;
539 padding-left: 26px;
541 padding-left: 26px;
540 line-height: 22px;
542 line-height: 22px;
541 vertical-align: middle;
543 vertical-align: middle;
542 }
544 }
543
545
544 .icon-add { background-image: url(../images/add.png); }
546 .icon-add { background-image: url(../images/add.png); }
545 .icon-edit { background-image: url(../images/edit.png); }
547 .icon-edit { background-image: url(../images/edit.png); }
546 .icon-copy { background-image: url(../images/copy.png); }
548 .icon-copy { background-image: url(../images/copy.png); }
547 .icon-del { background-image: url(../images/delete.png); }
549 .icon-del { background-image: url(../images/delete.png); }
548 .icon-move { background-image: url(../images/move.png); }
550 .icon-move { background-image: url(../images/move.png); }
549 .icon-save { background-image: url(../images/save.png); }
551 .icon-save { background-image: url(../images/save.png); }
550 .icon-cancel { background-image: url(../images/cancel.png); }
552 .icon-cancel { background-image: url(../images/cancel.png); }
551 .icon-file { background-image: url(../images/file.png); }
553 .icon-file { background-image: url(../images/file.png); }
552 .icon-folder { background-image: url(../images/folder.png); }
554 .icon-folder { background-image: url(../images/folder.png); }
553 .open .icon-folder { background-image: url(../images/folder_open.png); }
555 .open .icon-folder { background-image: url(../images/folder_open.png); }
554 .icon-package { background-image: url(../images/package.png); }
556 .icon-package { background-image: url(../images/package.png); }
555 .icon-home { background-image: url(../images/home.png); }
557 .icon-home { background-image: url(../images/home.png); }
556 .icon-user { background-image: url(../images/user.png); }
558 .icon-user { background-image: url(../images/user.png); }
557 .icon-mypage { background-image: url(../images/user_page.png); }
559 .icon-mypage { background-image: url(../images/user_page.png); }
558 .icon-admin { background-image: url(../images/admin.png); }
560 .icon-admin { background-image: url(../images/admin.png); }
559 .icon-projects { background-image: url(../images/projects.png); }
561 .icon-projects { background-image: url(../images/projects.png); }
560 .icon-logout { background-image: url(../images/logout.png); }
562 .icon-logout { background-image: url(../images/logout.png); }
561 .icon-help { background-image: url(../images/help.png); }
563 .icon-help { background-image: url(../images/help.png); }
562 .icon-attachment { background-image: url(../images/attachment.png); }
564 .icon-attachment { background-image: url(../images/attachment.png); }
563 .icon-index { background-image: url(../images/index.png); }
565 .icon-index { background-image: url(../images/index.png); }
564 .icon-history { background-image: url(../images/history.png); }
566 .icon-history { background-image: url(../images/history.png); }
565 .icon-time { background-image: url(../images/time.png); }
567 .icon-time { background-image: url(../images/time.png); }
566 .icon-stats { background-image: url(../images/stats.png); }
568 .icon-stats { background-image: url(../images/stats.png); }
567 .icon-warning { background-image: url(../images/warning.png); }
569 .icon-warning { background-image: url(../images/warning.png); }
568 .icon-fav { background-image: url(../images/fav.png); }
570 .icon-fav { background-image: url(../images/fav.png); }
569 .icon-fav-off { background-image: url(../images/fav_off.png); }
571 .icon-fav-off { background-image: url(../images/fav_off.png); }
570 .icon-reload { background-image: url(../images/reload.png); }
572 .icon-reload { background-image: url(../images/reload.png); }
571 .icon-lock { background-image: url(../images/locked.png); }
573 .icon-lock { background-image: url(../images/locked.png); }
572 .icon-unlock { background-image: url(../images/unlock.png); }
574 .icon-unlock { background-image: url(../images/unlock.png); }
573 .icon-checked { background-image: url(../images/true.png); }
575 .icon-checked { background-image: url(../images/true.png); }
574 .icon-details { background-image: url(../images/zoom_in.png); }
576 .icon-details { background-image: url(../images/zoom_in.png); }
575 .icon-report { background-image: url(../images/report.png); }
577 .icon-report { background-image: url(../images/report.png); }
576
578
577 .icon22-projects { background-image: url(../images/22x22/projects.png); }
579 .icon22-projects { background-image: url(../images/22x22/projects.png); }
578 .icon22-users { background-image: url(../images/22x22/users.png); }
580 .icon22-users { background-image: url(../images/22x22/users.png); }
579 .icon22-tracker { background-image: url(../images/22x22/tracker.png); }
581 .icon22-tracker { background-image: url(../images/22x22/tracker.png); }
580 .icon22-role { background-image: url(../images/22x22/role.png); }
582 .icon22-role { background-image: url(../images/22x22/role.png); }
581 .icon22-workflow { background-image: url(../images/22x22/workflow.png); }
583 .icon22-workflow { background-image: url(../images/22x22/workflow.png); }
582 .icon22-options { background-image: url(../images/22x22/options.png); }
584 .icon22-options { background-image: url(../images/22x22/options.png); }
583 .icon22-notifications { background-image: url(../images/22x22/notifications.png); }
585 .icon22-notifications { background-image: url(../images/22x22/notifications.png); }
584 .icon22-authent { background-image: url(../images/22x22/authent.png); }
586 .icon22-authent { background-image: url(../images/22x22/authent.png); }
585 .icon22-info { background-image: url(../images/22x22/info.png); }
587 .icon22-info { background-image: url(../images/22x22/info.png); }
586 .icon22-comment { background-image: url(../images/22x22/comment.png); }
588 .icon22-comment { background-image: url(../images/22x22/comment.png); }
587 .icon22-package { background-image: url(../images/22x22/package.png); }
589 .icon22-package { background-image: url(../images/22x22/package.png); }
588 .icon22-settings { background-image: url(../images/22x22/settings.png); }
590 .icon22-settings { background-image: url(../images/22x22/settings.png); }
589 .icon22-plugin { background-image: url(../images/22x22/plugin.png); }
591 .icon22-plugin { background-image: url(../images/22x22/plugin.png); }
590
592
591 /***** Media print specific styles *****/
593 /***** Media print specific styles *****/
592 @media print {
594 @media print {
593 #top-menu, #header, #main-menu, #sidebar, #footer, .contextual, .other-formats { display:none; }
595 #top-menu, #header, #main-menu, #sidebar, #footer, .contextual, .other-formats { display:none; }
594 #main { background: #fff; }
596 #main { background: #fff; }
595 #content { width: 99%; margin: 0; padding: 0; border: 0; background: #fff; }
597 #content { width: 99%; margin: 0; padding: 0; border: 0; background: #fff; }
596 }
598 }
General Comments 0
You need to be logged in to leave comments. Login now