mirror of
https://github.com/9001/copyparty.git
synced 2026-06-21 13:42:29 -06:00
fix acc popup
This commit is contained in:
parent
b66679eb70
commit
12a57c3458
|
|
@ -4347,28 +4347,23 @@ html.e #detree {
|
||||||
align-self: center;
|
align-self: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Toggle this class - hide and show the popup */
|
.popup.show {
|
||||||
.popup_button .show {
|
|
||||||
visibility: visible;
|
visibility: visible;
|
||||||
-webkit-animation: fadeIn 1s;
|
-webkit-animation: fadeIn 1s;
|
||||||
animation: fadeIn 1s;
|
animation: fadeIn 1s;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* The actual popup */
|
|
||||||
.popup {
|
.popup {
|
||||||
visibility: hidden;
|
visibility: hidden;
|
||||||
width: fit-content;
|
width: fit-content;
|
||||||
background-color: #555;
|
background-color: var(--bg-u6);
|
||||||
color: #fff;
|
|
||||||
text-align: center;
|
text-align: center;
|
||||||
border-radius: 6px;
|
border-radius: .3em;
|
||||||
padding: 8px;
|
padding: .5em;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
display: block;
|
display: block;
|
||||||
z-index: 3;
|
z-index: 3;
|
||||||
bottom: 125%;
|
bottom: 2.5em;
|
||||||
left: 0%;
|
|
||||||
cursor: default;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Popup arrow */
|
/* Popup arrow */
|
||||||
|
|
@ -4380,7 +4375,7 @@ html.e #detree {
|
||||||
margin-left: -5px;
|
margin-left: -5px;
|
||||||
border-width: 5px;
|
border-width: 5px;
|
||||||
border-style: solid;
|
border-style: solid;
|
||||||
border-color: #555 transparent transparent transparent;
|
border-color: var(--bg-u6) transparent transparent transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
.overlay_plus{
|
.overlay_plus{
|
||||||
|
|
|
||||||
|
|
@ -144,20 +144,19 @@
|
||||||
<div id="spaceUsed_bar" style="width: {{ space_used_percent }}%;"></div>
|
<div id="spaceUsed_bar" style="width: {{ space_used_percent }}%;"></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<span id="acc_popup" class="popup">
|
||||||
|
<div id="acessType" style="display: block;"></div>
|
||||||
|
<a href="{{ r }}/?h" id="goh" style="display: block;">control-panel</a>
|
||||||
|
<form id="flogout" style="display: block;" method="post" enctype="multipart/form-data">
|
||||||
|
<input type="hidden" name="act" value="logout" />
|
||||||
|
<input id="blogout" type="submit" />
|
||||||
|
</form>
|
||||||
|
</span>
|
||||||
<div id="acc_button" class="popup_button">
|
<div id="acc_button" class="popup_button">
|
||||||
<div id="acc_btnContent">
|
<div id="acc_btnContent">
|
||||||
<p id="acc_name"></p>
|
<p id="acc_name"></p>
|
||||||
<a id="acc_settings" href="#v=cfg" data-dest="cfg">⚙️</a>
|
<a id="acc_settings" href="#v=cfg" data-dest="cfg">⚙️</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<span id="acc_popup" class="popup">
|
|
||||||
<div id="acessType" style="display: block;"></div>
|
|
||||||
<a href="{{ r }}/?h" id="goh" style="display: block;">control-panel</a>
|
|
||||||
<form id="flogout" style="display: block;" method="post" enctype="multipart/form-data">
|
|
||||||
<input type="hidden" name="act" value="logout" />
|
|
||||||
<input id="blogout" type="submit" />
|
|
||||||
</form>
|
|
||||||
</span>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue