##// END OF EJS Templates
Added label tags on role form permission checkboxes....
Jean-Philippe Lang -
r795:df8945177abf
parent child
Show More
@@ -1,25 +1,25
1 1 <%= error_messages_for 'role' %>
2 2
3 3 <% unless @role.builtin? %>
4 4 <div class="box">
5 5 <p><%= f.text_field :name, :required => true %></p>
6 6 <p><%= f.check_box :assignable %></p>
7 7 </div>
8 8 <% end %>
9 9
10 10 <h3><%= l(:label_permissions) %></h3>
11 11 <div class="box">
12 12 <% perms_by_module = @permissions.group_by {|p| p.project_module.to_s} %>
13 13 <% perms_by_module.keys.sort.each do |mod| %>
14 14 <fieldset><legend><%= mod.blank? ? l(:label_project) : mod.humanize %></legend>
15 15 <% perms_by_module[mod].each do |permission| %>
16 <div style="width:220px;float:left;">
16 <label class="floating">
17 17 <%= check_box_tag 'role[permissions][]', permission.name, (@role.permissions.include? permission.name) %>
18 18 <%= permission.name.to_s.humanize %>
19 </div>
19 </label>
20 20 <% end %>
21 21 </fieldset>
22 22 <% end %>
23 23 <br /><%= check_all_links 'role_form' %>
24 24 <%= hidden_field_tag 'role[permissions][]', '' %>
25 25 </div>
@@ -1,457 +1,464
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: 12px;padding: 2px 10px 1px 0px;margin-bottom: 5px; border-bottom: 1px dotted #bbbbbb; color: #444;}
8 8
9 9 /***** Layout *****/
10 10 #top-menu {background: #2C4056;color: #fff;height:1.5em; padding: 2px 6px 0px 6px;}
11 11 #top-menu a {color: #fff; padding-right: 4px;}
12 12 #account {float:right;}
13 13
14 14 #header {height:5.3em;margin:0;background-color:#507AAA;color:#f8f8f8; padding: 4px 8px 0px 6px;}
15 15 #header a {color:#f8f8f8;}
16 16 #quick-search {float:right;}
17 17
18 18 #main-menu {position: absolute; top: 5.5em; left:6px;}
19 19 #main-menu ul {margin: 0; padding: 0;}
20 20 #main-menu li {
21 21 float:left;
22 22 list-style-type:none;
23 23 margin: 0px 10px 0px 0px;
24 24 padding: 0px 0px 0px 0px;
25 25 white-space:nowrap;
26 26 }
27 27 #main-menu li a {
28 28 display: block;
29 29 color: #fff;
30 30 text-decoration: none;
31 31 margin: 0;
32 32 padding: 4px 4px 4px 4px;
33 33 background: #2C4056;
34 34 }
35 35 #main-menu li a:hover {background:#759FCF;}
36 36
37 37 #main {background: url(../images/mainbg.png) repeat-x; background-color:#EEEEEE;}
38 38
39 39 #sidebar{ float: right; width: 17%; position: relative; z-index: 9; min-height: 600px; padding: 0; margin: 0;}
40 40 * html #sidebar{ width: 17%; }
41 41 #sidebar h3{ font-size: 14px; margin-top:14px; color: #666; }
42 42 #sidebar hr{ width: 100%; margin: 0 auto; height: 1px; background: #ccc; border: 0; }
43 43 * html #sidebar hr{ width: 95%; position: relative; left: -6px; color: #ccc; }
44 44
45 45 #content { width: 80%; background: url(../images/contentbg.png) repeat-x; background-color: #fff; margin: 0px; border-right: 1px solid #ddd; padding: 6px 10px 10px 10px; position: relative; z-index: 10; height:600px; min-height: 600px;}
46 46 * html #content{ width: 80%; padding-left: 0; margin-top: 0px; padding: 6px 10px 10px 10px;}
47 47 html>body #content {
48 48 height: auto;
49 49 min-height: 600px;
50 50 }
51 51
52 52 #main.nosidebar #sidebar{ display: none; }
53 53 #main.nosidebar #content{ width: auto; border-right: 0; }
54 54
55 55 #footer {clear: both; border-top: 1px solid #bbb; font-size: 0.9em; color: #aaa; padding: 5px; text-align:center; background:#fff;}
56 56
57 57 #login-form table {margin-top:5em; padding:1em; margin-left: auto; margin-right: auto; border: 2px solid #FDBF3B; background-color:#FFEBC1; }
58 58 #login-form table td {padding: 6px;}
59 59 #login-form label {font-weight: bold;}
60 60
61 61 .clear:after{ content: "."; display: block; height: 0; clear: both; visibility: hidden; }
62 62
63 63 /***** Links *****/
64 64 a, a:link, a:visited{ color: #2A5685; text-decoration: none; }
65 65 a:hover, a:active{ color: #c61a1a; text-decoration: underline;}
66 66 a img{ border: 0; }
67 67
68 68 /***** Tables *****/
69 69 table.list { border: 1px solid #e4e4e4; border-collapse: collapse; width: 100%; margin-bottom: 4px; }
70 70 table.list th { background-color:#EEEEEE; padding: 4px; white-space:nowrap; }
71 71 table.list tbody th { padding: 0px; }
72 72 table.list td { overflow: hidden; text-overflow: ellipsis; vertical-align: top;}
73 73 table.list tbody tr:hover { background-color:#ffffdd; }
74 74 table td {padding:2px;}
75 75 table p {margin:0;}
76 76 .odd {background-color:#f6f7f8;}
77 77 .even {background-color: #fff;}
78 78
79 79 .highlight { background-color: #FCFD8D;}
80 80
81 81 .box{
82 82 padding:6px;
83 83 margin-bottom: 10px;
84 84 background-color:#f6f6f6;
85 85 color:#505050;
86 86 line-height:1.5em;
87 87 border: 1px solid #e4e4e4;
88 88 }
89 89
90 90 div.square {
91 91 border: 1px solid #999;
92 92 float: left;
93 93 margin: .3em .4em 0 .4em;
94 94 overflow: hidden;
95 95 width: .6em; height: .6em;
96 96 }
97 97
98 98 .contextual {float:right; white-space: nowrap; line-height:1.4em;margin-top:5px;font-size:0.9em;}
99 99 .splitcontentleft{float:left; width:49%;}
100 100 .splitcontentright{float:right; width:49%;}
101 101 form {display: inline;}
102 102 input, select {vertical-align: middle; margin-top: 1px; margin-bottom: 1px;}
103 103 fieldset {border: 1px solid #e4e4e4; margin:0;}
104 104 hr { width: 100%; height: 1px; background: #ccc; border: 0;}
105 105 textarea.wiki-edit { width: 99%; }
106 106 li p {margin-top: 0;}
107 107 div.issue {background:#ffffdd; padding:6px; margin-bottom:6px;border: 1px solid #d7d7d7;}
108 108 .autoscroll {overflow-x: auto; padding:1px; width:100%;}
109 109
110 110 /***** Tabular forms ******/
111 111 .tabular p{
112 112 margin: 0;
113 113 padding: 5px 0 8px 0;
114 114 padding-left: 180px; /*width of left column containing the label elements*/
115 115 height: 1%;
116 116 clear:left;
117 117 }
118 118
119 119 .tabular label{
120 120 font-weight: bold;
121 121 float: left;
122 122 text-align: right;
123 123 margin-left: -180px; /*width of left column*/
124 124 width: 175px; /*width of labels. Should be smaller than left column to create some right
125 125 margin*/
126 126 }
127 127
128 .tabular label.floating{
129 font-weight: normal;
130 margin-left: 0px;
131 text-align: left;
132 width: 200px;
133 }
134
128 135 #settings .tabular p{ padding-left: 300px; }
129 136 #settings .tabular label{ margin-left: -300px; width: 295px; }
130 137
131 138 .required {color: #bb0000;}
132 139 .summary {font-style: italic;}
133 140
134 141 div.attachments p { margin:4px 0 2px 0; }
135 142
136 143 /***** Issue list ****/
137 144 tr.issue { text-align: center; white-space: nowrap; }
138 145 tr.issue th.checkbox { width: 15px; }
139 146 tr.issue td.subject, tr.issue td.category { white-space: normal; }
140 147 tr.issue td.subject { text-align: left; }
141 148
142 149 /***** Flash & error messages ****/
143 150 #flash div, #errorExplanation, .nodata {
144 151 padding: 4px 4px 4px 30px;
145 152 margin-bottom: 12px;
146 153 font-size: 1.1em;
147 154 border: 2px solid;
148 155 }
149 156
150 157 #flash div {margin-top: 6px;}
151 158
152 159 #flash div.error, #errorExplanation {
153 160 background: url(../images/false.png) 8px 5px no-repeat;
154 161 background-color: #ffe3e3;
155 162 border-color: #dd0000;
156 163 color: #550000;
157 164 }
158 165
159 166 #flash div.notice {
160 167 background: url(../images/true.png) 8px 5px no-repeat;
161 168 background-color: #dfffdf;
162 169 border-color: #9fcf9f;
163 170 color: #005f00;
164 171 }
165 172
166 173 .nodata {
167 174 text-align: center;
168 175 background-color: #FFEBC1;
169 176 border-color: #FDBF3B;
170 177 color: #A6750C;
171 178 }
172 179
173 180 #errorExplanation ul { font-size: 0.9em;}
174 181
175 182 /***** Ajax indicator ******/
176 183 #ajax-indicator {
177 184 position: absolute; /* fixed not supported by IE */
178 185 background-color:#eee;
179 186 border: 1px solid #bbb;
180 187 top:35%;
181 188 left:40%;
182 189 width:20%;
183 190 font-weight:bold;
184 191 text-align:center;
185 192 padding:0.6em;
186 193 z-index:100;
187 194 filter:alpha(opacity=50);
188 195 -moz-opacity:0.5;
189 196 opacity: 0.5;
190 197 -khtml-opacity: 0.5;
191 198 }
192 199
193 200 html>body #ajax-indicator { position: fixed; }
194 201
195 202 #ajax-indicator span {
196 203 background-position: 0% 40%;
197 204 background-repeat: no-repeat;
198 205 background-image: url(../images/loading.gif);
199 206 padding-left: 26px;
200 207 vertical-align: bottom;
201 208 }
202 209
203 210 /***** Calendar *****/
204 211 table.cal {border-collapse: collapse; width: 100%; margin: 8px 0 6px 0;border: 1px solid #d7d7d7;}
205 212 table.cal th { background-color:#EEEEEE; padding: 4px; }
206 213 table.cal td {border: 1px solid #d7d7d7;}
207 214 table.cal td.today {background:#ffffdd;}
208 215
209 216 /***** Tooltips ******/
210 217 .tooltip{position:relative;z-index:24;}
211 218 .tooltip:hover{z-index:25;color:#000;}
212 219 .tooltip span.tip{display: none; text-align:left;}
213 220
214 221 div.tooltip:hover span.tip{
215 222 display:block;
216 223 position:absolute;
217 224 top:12px; left:24px; width:270px;
218 225 border:1px solid #555;
219 226 background-color:#fff;
220 227 padding: 4px;
221 228 font-size: 0.8em;
222 229 color:#505050;
223 230 }
224 231
225 232 /***** Progress bar *****/
226 233 .progress {
227 234 border: 1px solid #D7D7D7;
228 235 border-collapse: collapse;
229 236 border-spacing: 0pt;
230 237 empty-cells: show;
231 238 padding: 3px;
232 239 width: 40em;
233 240 text-align: center;
234 241 }
235 242
236 243 .progress td { height: 1em; }
237 244 .progress .closed { background: #BAE0BA none repeat scroll 0%; }
238 245 .progress .open { background: #FFF none repeat scroll 0%; }
239 246
240 247 /***** Tabs *****/
241 248 #content .tabs{height: 2.6em;}
242 249 #content .tabs ul{margin:0;}
243 250 #content .tabs ul li{
244 251 float:left;
245 252 list-style-type:none;
246 253 white-space:nowrap;
247 254 margin-right:8px;
248 255 background:#fff;
249 256 }
250 257 #content .tabs ul li a{
251 258 display:block;
252 259 font-size: 0.9em;
253 260 text-decoration:none;
254 261 line-height:1em;
255 262 padding:4px;
256 263 border: 1px solid #c0c0c0;
257 264 }
258 265
259 266 #content .tabs ul li a.selected, #content .tabs ul li a:hover{
260 267 background-color: #507AAA;
261 268 border: 1px solid #507AAA;
262 269 color: #fff;
263 270 text-decoration:none;
264 271 }
265 272
266 273 /***** Diff *****/
267 274 .diff_out { background: #fcc; }
268 275 .diff_in { background: #cfc; }
269 276
270 277 /***** Wiki *****/
271 278 div.wiki table {
272 279 border: 1px solid #505050;
273 280 border-collapse: collapse;
274 281 }
275 282
276 283 div.wiki table, div.wiki td, div.wiki th {
277 284 border: 1px solid #bbb;
278 285 padding: 4px;
279 286 }
280 287
281 288 div.wiki .external {
282 289 background-position: 0% 60%;
283 290 background-repeat: no-repeat;
284 291 padding-left: 12px;
285 292 background-image: url(../images/external.png);
286 293 }
287 294
288 295 div.wiki a.new {
289 296 color: #b73535;
290 297 }
291 298
292 299 div.wiki pre {
293 300 margin: 1em 1em 1em 1.6em;
294 301 padding: 2px;
295 302 background-color: #fafafa;
296 303 border: 1px solid #dadada;
297 304 width:95%;
298 305 overflow-x: auto;
299 306 }
300 307
301 308 div.wiki div.toc {
302 309 background-color: #ffffdd;
303 310 border: 1px solid #e4e4e4;
304 311 padding: 4px;
305 312 line-height: 1.2em;
306 313 margin-bottom: 12px;
307 314 margin-right: 12px;
308 315 display: table
309 316 }
310 317 * html div.wiki div.toc { width: 50%; } /* IE6 doesn't autosize div */
311 318
312 319 div.wiki div.toc.right { float: right; margin-left: 12px; margin-right: 0; width: auto; }
313 320 div.wiki div.toc.left { float: left; margin-right: 12px; margin-left: 0; width: auto; }
314 321
315 322 div.wiki div.toc a {
316 323 display: block;
317 324 font-size: 0.9em;
318 325 font-weight: normal;
319 326 text-decoration: none;
320 327 color: #606060;
321 328 }
322 329 div.wiki div.toc a:hover { color: #c61a1a; text-decoration: underline;}
323 330
324 331 div.wiki div.toc a.heading2 { margin-left: 6px; }
325 332 div.wiki div.toc a.heading3 { margin-left: 12px; font-size: 0.8em; }
326 333
327 334 /***** My page layout *****/
328 335 .block-receiver {
329 336 border:1px dashed #c0c0c0;
330 337 margin-bottom: 20px;
331 338 padding: 15px 0 15px 0;
332 339 }
333 340
334 341 .mypage-box {
335 342 margin:0 0 20px 0;
336 343 color:#505050;
337 344 line-height:1.5em;
338 345 }
339 346
340 347 .handle {
341 348 cursor: move;
342 349 }
343 350
344 351 a.close-icon {
345 352 display:block;
346 353 margin-top:3px;
347 354 overflow:hidden;
348 355 width:12px;
349 356 height:12px;
350 357 background-repeat: no-repeat;
351 358 cursor:pointer;
352 359 background-image:url('../images/close.png');
353 360 }
354 361
355 362 a.close-icon:hover {
356 363 background-image:url('../images/close_hl.png');
357 364 }
358 365
359 366 /***** Gantt chart *****/
360 367 .gantt_hdr {
361 368 position:absolute;
362 369 top:0;
363 370 height:16px;
364 371 border-top: 1px solid #c0c0c0;
365 372 border-bottom: 1px solid #c0c0c0;
366 373 border-right: 1px solid #c0c0c0;
367 374 text-align: center;
368 375 overflow: hidden;
369 376 }
370 377
371 378 .task {
372 379 position: absolute;
373 380 height:8px;
374 381 font-size:0.8em;
375 382 color:#888;
376 383 padding:0;
377 384 margin:0;
378 385 line-height:0.8em;
379 386 }
380 387
381 388 .task_late { background:#f66 url(../images/task_late.png); border: 1px solid #f66; }
382 389 .task_done { background:#66f url(../images/task_done.png); border: 1px solid #66f; }
383 390 .task_todo { background:#aaa url(../images/task_todo.png); border: 1px solid #aaa; }
384 391 .milestone { background-image:url(../images/milestone.png); background-repeat: no-repeat; border: 0; }
385 392
386 393 /***** Icons *****/
387 394 .icon {
388 395 background-position: 0% 40%;
389 396 background-repeat: no-repeat;
390 397 padding-left: 20px;
391 398 padding-top: 2px;
392 399 padding-bottom: 3px;
393 400 }
394 401
395 402 .icon22 {
396 403 background-position: 0% 40%;
397 404 background-repeat: no-repeat;
398 405 padding-left: 26px;
399 406 line-height: 22px;
400 407 vertical-align: middle;
401 408 }
402 409
403 410 .icon-add { background-image: url(../images/add.png); }
404 411 .icon-edit { background-image: url(../images/edit.png); }
405 412 .icon-del { background-image: url(../images/delete.png); }
406 413 .icon-move { background-image: url(../images/move.png); }
407 414 .icon-save { background-image: url(../images/save.png); }
408 415 .icon-cancel { background-image: url(../images/cancel.png); }
409 416 .icon-pdf { background-image: url(../images/pdf.png); }
410 417 .icon-csv { background-image: url(../images/csv.png); }
411 418 .icon-html { background-image: url(../images/html.png); }
412 419 .icon-image { background-image: url(../images/image.png); }
413 420 .icon-txt { background-image: url(../images/txt.png); }
414 421 .icon-file { background-image: url(../images/file.png); }
415 422 .icon-folder { background-image: url(../images/folder.png); }
416 423 .icon-package { background-image: url(../images/package.png); }
417 424 .icon-home { background-image: url(../images/home.png); }
418 425 .icon-user { background-image: url(../images/user.png); }
419 426 .icon-mypage { background-image: url(../images/user_page.png); }
420 427 .icon-admin { background-image: url(../images/admin.png); }
421 428 .icon-projects { background-image: url(../images/projects.png); }
422 429 .icon-logout { background-image: url(../images/logout.png); }
423 430 .icon-help { background-image: url(../images/help.png); }
424 431 .icon-attachment { background-image: url(../images/attachment.png); }
425 432 .icon-index { background-image: url(../images/index.png); }
426 433 .icon-history { background-image: url(../images/history.png); }
427 434 .icon-feed { background-image: url(../images/feed.png); }
428 435 .icon-time { background-image: url(../images/time.png); }
429 436 .icon-stats { background-image: url(../images/stats.png); }
430 437 .icon-warning { background-image: url(../images/warning.png); }
431 438 .icon-fav { background-image: url(../images/fav.png); }
432 439 .icon-fav-off { background-image: url(../images/fav_off.png); }
433 440 .icon-reload { background-image: url(../images/reload.png); }
434 441 .icon-lock { background-image: url(../images/locked.png); }
435 442 .icon-unlock { background-image: url(../images/unlock.png); }
436 443 .icon-note { background-image: url(../images/note.png); }
437 444
438 445 .icon22-projects { background-image: url(../images/22x22/projects.png); }
439 446 .icon22-users { background-image: url(../images/22x22/users.png); }
440 447 .icon22-tracker { background-image: url(../images/22x22/tracker.png); }
441 448 .icon22-role { background-image: url(../images/22x22/role.png); }
442 449 .icon22-workflow { background-image: url(../images/22x22/workflow.png); }
443 450 .icon22-options { background-image: url(../images/22x22/options.png); }
444 451 .icon22-notifications { background-image: url(../images/22x22/notifications.png); }
445 452 .icon22-authent { background-image: url(../images/22x22/authent.png); }
446 453 .icon22-info { background-image: url(../images/22x22/info.png); }
447 454 .icon22-comment { background-image: url(../images/22x22/comment.png); }
448 455 .icon22-package { background-image: url(../images/22x22/package.png); }
449 456 .icon22-settings { background-image: url(../images/22x22/settings.png); }
450 457 .icon22-plugin { background-image: url(../images/22x22/plugin.png); }
451 458
452 459 /***** Media print specific styles *****/
453 460 @media print {
454 461 #top-menu, #header, #main-menu, #sidebar, #footer, .contextual { display:none; }
455 462 #main { background: #fff; }
456 463 #content { width: 99%; margin: 0; padding: 0; border: 0; background: #fff; }
457 464 }
General Comments 0
You need to be logged in to leave comments. Login now