瀏覽代碼

Update style.css

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

https://jsfiddle.net/1n0azhz1/4/
pull/72/head
Kashire GitHub 7 年之前
父節點
當前提交
743c3c0230
共有 1 個檔案被更改,包括 20 行新增0 行删除
  1. +20
    -0
      stylesheets/style.css

+ 20
- 0
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;
}

Loading…
取消
儲存