diff options
Diffstat (limited to 'html')
-rw-r--r-- | html/display.html | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/html/display.html b/html/display.html index b9cf718..44b68e1 100644 --- a/html/display.html +++ b/html/display.html @@ -317,7 +317,7 @@ .fd-bottom { width: 100%; - height: 26px; + height: 56px; background-color: #b1b1b1; position: absolute; bottom: 0; @@ -360,6 +360,13 @@ border-radius: 0px; background-color: #c1c1c1; } + + select, + option { + background-color: rgba(0, 0, 0, 0); + border: none; + border-radius: 0; + } </style> <script> function compare(a, b) { @@ -898,9 +905,10 @@ } - + let fs_types; async function main() { fs = await req('src/fs.json') + fs_types = await req('src/fs-types.json') fd = await util.fd({ path: '/', filetype: '*' }) console.log(fd) document.getElementById("bar-menu").onclick = ((ev) => { |