add a vertical seperator between groups and contents

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@9715 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
xq2005 2011-05-31 07:04:40 +00:00
parent 6022165d8a
commit a156947be9
2 changed files with 15 additions and 5 deletions

View File

@ -126,10 +126,13 @@ body {
/*--------------- Groups ---------------*/
#groups {
width: 150px;
min-height:570px;
vertical-align: top;
float: left;
position: relative;
margin: 15px 0px 15px 15px;
padding: 0px 10px 0px 0px;
border-right: medium solid #E6E6F2;
}
#groups ul {
@ -160,10 +163,14 @@ body {
/*--------------- Nodes section ---------------*/
#nodes {
width: 700px;
margin: 20px;
padding: 15px 0px 0px 10px;
display: inline-table;
}
.ui-widget-header{
border-color: #4297D7 #4297D7 #7BB642;
border-width: 1px 1px 4px;
}
/*--------------- Info/warning bar ---------------*/
span.ui-icon-info {
float: left;
@ -280,7 +287,7 @@ legend {
.tab li {
list-style: none;
padding: 5px;
margin: 0;
margin: 1;
}
.tab textarea {

View File

@ -127,7 +127,8 @@ function loadGroups(data) {
"theme" : "default",
"dots" : false, // No dots
"icons" : false // No icons
}
},
cookies : { "auto_save" : false}
});
// Load nodes onclick
@ -220,7 +221,8 @@ function loadGroups(data) {
}
});
/*
// Get subgroups within selected group
// only when this is the parent group and not a subgroup
if (data.rslt.obj.attr('id').indexOf('Subgroup') < 0) {
@ -237,12 +239,13 @@ function loadGroups(data) {
success : loadSubgroups
});
}
*/
} // End of if (thisGroup)
});
// Make a link to add nodes
$('#groups').append(mkAddNodeLink());
//$('#groups').append(mkAddNodeLink());
}
/**