Update style.css

Added dropdown support. I'll put in an issue to make it look pretty.

https://jsfiddle.net/1n0azhz1/4/
This commit is contained in:
Kashire 2016-08-23 14:42:04 -05:00 committed by GitHub
parent 60e849bad0
commit 743c3c0230

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;
}