Fix some HTML validation issue.

This commit is contained in:
Tom Hughes 2007-06-30 12:09:28 +00:00
parent 48a3a317bc
commit b92e1b0584
6 changed files with 65 additions and 89 deletions

View file

@ -80,7 +80,7 @@ body {
font-size: 11px;
}
#left_menu {
.left_menu {
width: 150px;
min-width: 150px;
margin: 10px;
@ -93,63 +93,64 @@ body {
font-size: 14px;
font-weight: bold;
}
#left_menu td {
.left_menu td {
font-size: 12px;
padding-right: 4px;
}
#left_menu h1 {
.left_menu h1 {
font-style: normal;
font-size: 15px;
padding: 0 0 0 1em;
text-align: left;
}
#left_menu ul {
.left_menu ul {
/*list-style: none;*/
padding-left: 10px;
margin: 0;
}
#left_menu li {
.left_menu li {
margin:0;
padding:0;
}
#left_menu img {
.left_menu img {
margin: 2px 8px 0 0;
}
#left_menu a {
.left_menu a {
color: #000000;
text-decoration: none;
}
.left_menu a:visited {
color: #000000;
text-decoration: none;
}
.left_menu a:active {
color: #000000;
text-decoration: none;
}
.left_menu a:link {
color: #000000;
text-decoration: none;
}
.left_menu a:hover {
color: #000000;
text-decoration: underline;
}
#messages {
border: 1px solid #ccc;
}
#left_menu a:visited {
color: #000000;
text-decoration: none;
}
#left_menu a:active {
color: #000000;
text-decoration: none;
}
#left_menu a:link {
color: #000000;
text-decoration: none;
}
#left_menu a:hover {
color: #000000;
text-decoration: underline;
}
#content {
/* width: 700px; */
padding: 0;
@ -455,6 +456,10 @@ input {
width : 30em;
}
.nowrap {
white-space: nowrap;
}
/**
* This now just used to detect the width/height required for the popup.
*/
@ -489,33 +494,3 @@ input {
text-align: Left;
font-weight: normal;
}
#left_menu a {
color: #000000;
text-decoration: none;
}
#messages {
border: 1px solid #ccc;
}
#left_menu a:visited {
color: #000000;
text-decoration: underline;
}
#left_menu a:active {
color: #000000;
text-decoration: underline;
}
#left_menu a:link {
color: #000000;
text-decoration: underline;
}
#left_menu a:hover {
color: #000000;
text-decoration: underline;
}