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