3ds fixes

This commit is contained in:
Til Schmitter 2026-04-26 22:12:17 +02:00
parent 455b95e861
commit 97838a6e00
2 changed files with 4 additions and 17 deletions

View file

@ -3337,10 +3337,6 @@ summary:hover {
height: max-content; height: max-content;
margin-left: auto; margin-left: auto;
} }
#opa_acc {
position: relative;
margin-left: .3em;
}
#srchfolder_div { #srchfolder_div {
display: none; display: none;
position: absolute; position: absolute;
@ -4843,15 +4839,8 @@ html.e #wtc {
padding-bottom: .2em; padding-bottom: .2em;
} }
.popup.act,
.popup.show {
visibility: visible;
-webkit-animation: fadeIn 1s;
animation: fadeIn 1s;
}
.popup { .popup {
visibility: hidden; display: none;
width: fit-content; width: fit-content;
background: #000; background: #000;
background: var(--bg-u2); background: var(--bg-u2);
@ -4861,7 +4850,6 @@ html.e #wtc {
border-radius: var(--radius); border-radius: var(--radius);
padding: .5em; padding: .5em;
position: absolute; position: absolute;
display: block;
z-index: 6; z-index: 6;
bottom: 2.5em; bottom: 2.5em;
} }
@ -4880,10 +4868,9 @@ html.e #wtc {
font-size: small; font-size: small;
} }
.popup.act,
#srchfolder_div:focus-within .popup { #srchfolder_div:focus-within .popup {
visibility: visible; display: block;
-webkit-animation: fadeIn 1s;
animation: fadeIn 1s;
} }
.overlay_plus{ .overlay_plus{

View file

@ -814,7 +814,7 @@ ebi('ops').innerHTML = (
'<a href="#" id="opa_bup" data-perm="write" data-dest="bup" tt="' + L.ot_bup + '">🎈</a>' + '<a href="#" id="opa_bup" data-perm="write" data-dest="bup" tt="' + L.ot_bup + '">🎈</a>' +
'<a href="#" id="opa_msg" data-dest="msg" tt="' + L.ot_msg + '">📟</a>' + '<a href="#" id="opa_msg" data-dest="msg" tt="' + L.ot_msg + '">📟</a>' +
'<a href="#" id="opa_cfg" data-dest="cfg" tt="' + L.ot_cfg + '">⚙️</a>' + '<a href="#" id="opa_cfg" data-dest="cfg" tt="' + L.ot_cfg + '">⚙️</a>' +
'<a href="#" id="opa_acc" data-dest="acc" tt=""><div id="acc_pfp">👤</div></a>' + '<a href="#" id="opa_acc" data-dest="acc" tt=""><span id="acc_pfp">👤</span></a>' +
'<div id="opdesc"></div>' '<div id="opdesc"></div>'
); );