CSS: Style role form
This commit is contained in:
parent
83c386ea15
commit
3c48daf022
|
@ -37,6 +37,8 @@ class RoleForm extends RepositoryForm
|
|||
|
||||
public function init()
|
||||
{
|
||||
$this->setAttrib('class', self::DEFAULT_CLASSES . ' role-form');
|
||||
|
||||
$helper = new Zend_Form_Element('bogus');
|
||||
$view = $this->getView();
|
||||
|
||||
|
|
|
@ -50,7 +50,7 @@ form.icinga-form {
|
|||
border-bottom: none;
|
||||
}
|
||||
|
||||
.collapsible-control:before {
|
||||
.collapsible-control:after {
|
||||
content: "\f103";
|
||||
display: inline-block;
|
||||
font-family: 'ifont';
|
||||
|
@ -59,10 +59,12 @@ form.icinga-form {
|
|||
margin-right: .25em;
|
||||
width: 1em;
|
||||
opacity: .6;
|
||||
float: right;
|
||||
}
|
||||
|
||||
&.collapsed .collapsible-control:before {
|
||||
content: "\e87b";
|
||||
&.collapsed .collapsible-control:after {
|
||||
/*content: "\e87b";*/
|
||||
content: "\e87a";
|
||||
}
|
||||
|
||||
.permission-heading {
|
||||
|
|
|
@ -218,6 +218,17 @@ table.multiselect tr[href] td {
|
|||
}
|
||||
}
|
||||
|
||||
form.role-form {
|
||||
&.icinga-form .control-label-group {
|
||||
width: 20em;
|
||||
}
|
||||
|
||||
.control-label-group em {
|
||||
color: @text-color-light;
|
||||
font-style: normal;
|
||||
}
|
||||
}
|
||||
|
||||
ul.tree select:first-of-type { /* ?? */
|
||||
margin-bottom: 0.3em;
|
||||
margin-left: 2em;
|
||||
|
|
Loading…
Reference in New Issue