diff --git a/copyparty/web/browser.css b/copyparty/web/browser.css index 62c7c715..fba198b0 100644 --- a/copyparty/web/browser.css +++ b/copyparty/web/browser.css @@ -1453,6 +1453,7 @@ html.y #widget.open { font-size: 1em; padding: 0; opacity: .4; + cursor: pointer; } #pctl .btn.on { opacity: 1; @@ -2817,6 +2818,9 @@ html.y #bbox-overlay figcaption a { #u2c3t { margin: 1em 0; } +#op_up2k { + display: block; +} #op_up2k.srch #u2btn { border-color: var(--u2-sbtn-b1); } @@ -3626,6 +3630,7 @@ html.d #treepar { #widget.anim, #tree, #u2tabw, + #up_quick, .dropdesc, .dropdesc b, .dropdesc>div>div { diff --git a/copyparty/web/browser.js b/copyparty/web/browser.js index 598a0f0f..475d9419 100644 --- a/copyparty/web/browser.js +++ b/copyparty/web/browser.js @@ -120,6 +120,9 @@ if (1) "logout": "Logout ", "login": "Login", "access": " access", + "options": "options", + "more_options": "more options", + "bup": "basic uploader", "ot_close": "close submenu", "ot_search": "`search for files by attributes, path / name, music tags, or any combination of those$N$N`foo bar` = must contain both «foo» and «bar»,$N`foo -bar` = must contain «foo» but not «bar»,$N`^yana .opus$` = start with «yana» and be an «opus» file$N`"try unite"` = contain exactly «try unite»$N$Nthe date format is iso-8601, like$N`2009-12-31` or `2020-09-12 23:30:00`", "ot_unpost": "unpost: delete your recent uploads, or abort unfinished ones", @@ -899,12 +902,11 @@ ebi('widget').innerHTML = ( '' ); -var more = ebi('up_quick_more'); ebi('up_quick').onclick = function(){ var btn = ebi('up_quick_btn'); clmod(btn, 'on', 't'); var isOff = clgot(btn, 'on'); // button has inverted display logic - clmod(more, 'vis', !isOff) + clmod(ebi('up_quick_more'), 'vis', !isOff) } ebi('uq_nd').onclick = function(){ mktemp(true); @@ -919,7 +921,7 @@ ebi('op_up2k').innerHTML = ( '
\n' + '
' + - '
options' + + '
' + L.options + '' + '
' + ' \n' + @@ -978,7 +980,7 @@ ebi('op_up2k').innerHTML = ( ' \n' + ' \n' + '
\n' + @@ -1007,7 +1009,7 @@ ebi('op_up2k').innerHTML = ( ' ' + '' + - '
basic uploader
' + '
' + L.bup +'
' );