webui: restyle automember default group

Reviewed-By: Endi Sukma Dewata <edewata@redhat.com>
This commit is contained in:
Petr Vobornik 2014-04-17 16:44:36 +02:00
parent 9c1da611ea
commit 5499022782
2 changed files with 14 additions and 13 deletions

View File

@ -446,17 +446,19 @@ table.scrollable tbody {
/* --- Automember --- */
.automember-header .default_group {
padding-bottom: 5px;
.automember-header {
margin-bottom: 5px;
}
.automember-header .default_group h2 {
.automember-header-label {
display: inline-block;
margin: 0 15px 0 0;
font-weight: 600;
margin-right: 20px;
}
.automember-header .default_group label {
margin-right: 20px;
.automember-header-control {
display: inline-block;
width: 200px;
}
/* --- Stand alone forms --- */

View File

@ -678,17 +678,16 @@ IPA.automember.default_group_widget = function(spec) {
var title = that.get_title();
var default_group = $('<div />', {
'class': 'default_group'
}).appendTo(container);
that.header = $('<h2/>', {
that.header = $('<div/>', {
'class': 'automember-header-label',
name: 'header',
text: title,
title: title
}).appendTo(default_group);
}).appendTo(container);
that.group_select.create(default_group);
that.group_select_node = $('<div/>', { 'class': 'automember-header-control' });
that.group_select.create(that.group_select_node);
that.group_select_node.appendTo(container);
};
that.get_title = function() {