From 743c3c02303ec07eb2cb05addd90b1c964339ec7 Mon Sep 17 00:00:00 2001 From: Kashire Date: Tue, 23 Aug 2016 14:42:04 -0500 Subject: [PATCH] Update style.css Added dropdown support. I'll put in an issue to make it look pretty. https://jsfiddle.net/1n0azhz1/4/ --- stylesheets/style.css | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/stylesheets/style.css b/stylesheets/style.css index 0dc6298d..84593d57 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; +}