fix unfun

This commit is contained in:
Til Schmitter 2026-05-09 14:30:21 +02:00
parent b006d96cd2
commit ce4e70308a
3 changed files with 8 additions and 5 deletions

View file

@ -840,7 +840,7 @@ html.y #path a:hover {
left: 2em; left: 2em;
padding-right: .5em; padding-right: .5em;
} }
#acessType, #accessType,
#acc_info, #acc_info,
#srv_info span, #srv_info span,
#srv_info2 span { #srv_info2 span {
@ -1612,6 +1612,9 @@ html:not(.e):not(.d) #up_quick .btn.on {
.unfun #ops a { .unfun #ops a {
font-size: 1.2em; font-size: 1.2em;
} }
.unfun #srchfolder_div {
left: 5.2em;
}
#opa_mkd { #opa_mkd {
display: none; display: none;
} }
@ -5078,7 +5081,7 @@ html.e #wtc {
#op_acc { #op_acc {
left: auto; left: auto;
} }
#acessType { #accessType {
font-size: small; font-size: small;
} }

View file

@ -41,7 +41,7 @@
<div id="acc_button" class="tgl btn on"> <div id="acc_button" class="tgl btn on">
<p id="acc_name"></p> <p id="acc_name"></p>
</div> </div>
<div id="acessType" style="display: block;"></div> <div id="accessType" style="display: block;"></div>
<a href="{{ r }}/?h" id="goh" style="display: block;">control-panel</a> <a href="{{ r }}/?h" id="goh" style="display: block;">control-panel</a>
<form id="flogout" style="display: block;" method="post" enctype="multipart/form-data"> <form id="flogout" style="display: block;" method="post" enctype="multipart/form-data">
<input type="hidden" name="act" value="logout" /> <input type="hidden" name="act" value="logout" />

View file

@ -842,7 +842,7 @@ if(!fun_tgl){
ebi('opa_bup').innerHTML = 'bup' ebi('opa_bup').innerHTML = 'bup'
ebi('opa_msg').innerHTML = 'message' ebi('opa_msg').innerHTML = 'message'
ebi('opa_cfg').innerHTML = 'settings' ebi('opa_cfg').innerHTML = 'settings'
ebi('opa_acc').innerHTML = 'account' ebi('acc_pfp').innerHTML = 'account'
clmod(ebi('acc_pfp'), 'pfp', false) clmod(ebi('acc_pfp'), 'pfp', false)
} }
@ -8891,7 +8891,7 @@ function apply_perms(res) {
if(acct != '*'){ if(acct != '*'){
ebi('acc_name').innerHTML = acct; ebi('acc_name').innerHTML = acct;
ebi('acc_pfp').innerHTML = acct.substring(0, 1); ebi('acc_pfp').innerHTML = acct.substring(0, 1);
ebi('acessType').innerHTML = '<span' + aclass + axs + L.access + '</span>'; ebi('accessType').innerHTML = '<span' + aclass + axs + L.access + '</span>';
ebi('blogout').value = L.logout; ebi('blogout').value = L.logout;
ebi('acc_button').onclick = function(){}; ebi('acc_button').onclick = function(){};
} }