diff --git a/stylesheets/style.css b/stylesheets/style.css index f101845f..0d713b79 100644 --- a/stylesheets/style.css +++ b/stylesheets/style.css @@ -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; +}