make helpers and history lists look better

This commit is contained in:
Doug Bell 2010-08-19 12:16:38 -05:00
parent ca2a91f2d4
commit de06822125

View file

@ -99,6 +99,9 @@
cursor: pointer;
color: blue;
}
.clickable:hover {
text-decoration: underline;
}
img.icon {
vertical-align: baseline;
@ -162,3 +165,18 @@ a:link {
text-decoration: none;
color: black;
}
#helper_list, #history_list {
list-style-type: none;
margin: 0 0 0 1.5em;
padding: 0;
}
#helper_list li, #history_list li {
color: black;
}
#helper_list li.clickable:hover, #history_list li.clickable:hover {
text-decoration: underline;
color: blue;
}