added profile "inline" menus as a way of extending the user profile display

This commit is contained in:
Eric J. Bowersox
2003-05-23 08:06:52 +00:00
parent 470b7cc47e
commit f933e4f88c
16 changed files with 610 additions and 76 deletions

View File

@@ -93,3 +93,41 @@ html>body span.chdrsubtitle {
html>body td.errorhead, html>body td.errorbody {
font-size: medium;
}
## these are styles for inline menu lists
div.imenu {
padding: 5px;
border: 1px solid #000;
margin-bottom: 25px;
background-color: #6666cc;
}
div.imenu ul {
margin-left: 0;
padding-left: 0;
display: inline;
}
div.imenu ul li {
margin-left: 0;
margin-bottom: 0;
padding: 2px 15px 5px;
border: 1px solid #000;
list-style: none;
display: inline;
background-color: #9999ff;
}
div.imenu ul li.down {
border-bottom: 1px solid #fff;
list-style: none;
display: inline;
background-color: #ffffff;
}
div.imenu ul li.separator {
border: none;
list-style: none;
display: inline;
background-color: #6666cc;
}

View File

@@ -97,3 +97,8 @@ td.errorbody {
text-align: center;
font-size: 15px;
}
.selectedItem {
color: #3333aa;
font-weight: bold;
}