Commit 6b17a2df authored by Côme Chilliet's avatar Côme Chilliet
Browse files

:ambulance: fix(management) CSS fixes

Showing with 13 additions and 9 deletions
+13 -9
...@@ -242,8 +242,10 @@ height:100%; ...@@ -242,8 +242,10 @@ height:100%;
width:100%; width:100%;
} }
table.listingTable > thead > tr > th > img, table.listingTable > thead > tr > th > input[type=image], table.listingTable > thead > tr > th > img,
table.listingTable > tbody > tr > td > img, table.listingTable > tbody > tr > td > input[type=image] { table.listingTable > thead > tr > th > input[type=image],
table.listingTable > tbody > tr > td > img,
table.listingTable > tbody > tr > td > input[type=image] {
vertical-align: middle; vertical-align: middle;
} }
......
...@@ -253,18 +253,21 @@ margin: 0; ...@@ -253,18 +253,21 @@ margin: 0;
padding: 3px; padding: 3px;
box-sizing: border-box; box-sizing: border-box;
} }
.filter div.contentboxb > label img, .filter div.contentboxb > label input[type=checkbox] { .filter div.contentboxb > label img,
.filter div.contentboxb > label input[type=checkbox] {
vertical-align: middle; vertical-align: middle;
padding:0; padding:0;
margin:0; margin:0;
} }
.filter div.contentboxb > label { .filter div.contentboxb > label {
padding:3px; display:block;
margin:5px;
} }
.filter div.contentboxb > hr { .filter div.contentboxb > hr {
margin-bottom: 3px; margin-bottom: 3px;
} }
div.contentboxb > img, div.contentboxb > input { div.contentboxb > img,
div.contentboxb > input {
display: inline-block; display: inline-block;
margin: 3px; margin: 3px;
} }
......
...@@ -704,8 +704,7 @@ color: #000; ...@@ -704,8 +704,7 @@ color: #000;
width: 100%; width: 100%;
border-spacing: 0; border-spacing: 0;
} }
table.framework #maincell table.framework #maincell {
{
padding-bottom: 55px; padding-bottom: 55px;
} }
} }
...@@ -91,10 +91,10 @@ class LockAction extends Action ...@@ -91,10 +91,10 @@ class LockAction extends Action
return '<img src="images/empty.png" alt=" " class="center optional"/>'; return '<img src="images/empty.png" alt=" " class="center optional"/>';
} elseif ($lockStatus) { } elseif ($lockStatus) {
// Render // Render
return '<input class="center" type="image" src="'.htmlentities($this->icon['lock'], ENT_COMPAT, 'UTF-8').'"'. return '<input type="image" src="'.htmlentities($this->icon['lock'], ENT_COMPAT, 'UTF-8').'"'.
' title="'.$this->label['unlock'].'" alt="'.$this->label['unlock'].'" name="listing_'.$this->name.'_unlock_'.$entry->row.'"/>'; ' title="'.$this->label['unlock'].'" alt="'.$this->label['unlock'].'" name="listing_'.$this->name.'_unlock_'.$entry->row.'"/>';
} else { } else {
return '<input class="center" type="image" src="'.htmlentities($this->icon['unlock'], ENT_COMPAT, 'UTF-8').'"'. return '<input type="image" src="'.htmlentities($this->icon['unlock'], ENT_COMPAT, 'UTF-8').'"'.
' title="'.$this->label['lock'].'" alt="'.$this->label['lock'].'" name="listing_'.$this->name.'_lock_'.$entry->row.'"/>'; ' title="'.$this->label['lock'].'" alt="'.$this->label['lock'].'" name="listing_'.$this->name.'_lock_'.$entry->row.'"/>';
} }
} }
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment