Merge pull request #72 from AshtonHarding/master

Update style.css
This commit is contained in:
Michael Walker 2016-08-23 20:43:58 +01:00 committed by GitHub
commit 7c27823868

View File

@ -1872,3 +1872,23 @@ table.fileboard .intro a {
#rules-popup .rules-popup-form-input {
width: 100px;
}
/* dropdown for boardlist. */
.dropdown {
position: relative;
display: inline-block;
}
/* Alter details as needed, I'm not a designer. */
.dropdown-content {
display: none;
position: absolute;
background-color: #666666;
min-width: 130px;
padding: 2px 6px;
color: #DCA1F5;
}
.dropdown:hover .dropdown-content {
display: block;
}