Improve layout of dictionaries in the host and service detail views
resolves #8474
This commit is contained in:
parent
9cd7765d9e
commit
6ba6cb7940
|
@ -38,7 +38,7 @@ class Zend_View_Helper_Customvar extends Zend_View_Helper_Abstract
|
|||
|
||||
protected function renderObject($object)
|
||||
{
|
||||
if (empty($object)) {
|
||||
if (0 === count((array) $object)) {
|
||||
return '{}';
|
||||
}
|
||||
$out = "{<ul>\n";
|
||||
|
|
|
@ -177,11 +177,14 @@ table.avp form.object-features div.header h4 {
|
|||
margin: 0;
|
||||
}
|
||||
|
||||
table.avp .customvar ul {
|
||||
table.avp .customvar ul,
|
||||
table.avp .customvar ul li {
|
||||
list-style-type: none;
|
||||
margin: 0;
|
||||
margin-top: -0.5em;
|
||||
margin-bottom: -0.5em;
|
||||
padding: 0;
|
||||
padding-left: 1.5em;
|
||||
padding-left: 0.5em;
|
||||
}
|
||||
|
||||
div.selection-info {
|
||||
|
|
Loading…
Reference in New Issue