backoffice listing: little interface improvements

This commit is contained in:
Thomas NOËL 2012-09-21 20:33:31 +02:00
parent 5967adc192
commit a33d025556
2 changed files with 14 additions and 1 deletions

View File

@ -229,8 +229,9 @@ class FormPage(Directory):
'<li><input type="checkbox" name="%s"' % field.id
if field.id in [x.id for x in fields]:
' checked="checked"'
' id="fields-filter-%s"' % field.id
'/>'
'<label for="%s">%s</label>' % (field.id, field.label)
'<label for="fields-filter-%s">%s</label>' % (field.id, field.label)
'</li>'
'</ul>'
'<input type="submit" value="%s"/>' % _('Refresh')

View File

@ -507,6 +507,10 @@ div#sidebar {
color: #666;
}
div#sidebar select {
width: 100%;
}
ul#main-actions {
position: absolute;
right: 0px;
@ -667,6 +671,14 @@ div#page-links {
ul#fields-filter {
overflow: auto;
max-height: 350px;
list-style-type: none;
padding-left: 0;
margin-left: 0;
}
ul#fields-filter li {
padding-left: 0;
margin-left: 0;
}
/* Styling for workflow graphs */