mirror of
https://github.com/ngoduykhanh/wireguard-ui.git
synced 2025-04-19 19:59:13 +03:00
Adjustment in the CSS to show/hide pause button
This commit is contained in:
parent
dbb85cb759
commit
43012a720c
2 changed files with 6 additions and 4 deletions
|
@ -166,7 +166,7 @@ func SetClientStatus() echo.HandlerFunc {
|
|||
|
||||
client.Enabled = status
|
||||
db.Write("clients", clientID, &client)
|
||||
log.Infof("Change client %s to status %b", client.ID, status)
|
||||
log.Infof("Changed client %s enabled status to %v", client.ID, status)
|
||||
|
||||
return c.JSON(http.StatusOK, jsonHTTPResponse{true, "ok"})
|
||||
}
|
||||
|
|
|
@ -7,6 +7,7 @@ Wireguard Clients
|
|||
.paused-client {
|
||||
transition: transform .2s;
|
||||
cursor: pointer;
|
||||
vertical-align: middle;
|
||||
}
|
||||
i[class^="paused-client"]:hover { transform: scale(1.5); }
|
||||
</style>
|
||||
|
@ -28,7 +29,8 @@ Wireguard Clients
|
|||
{{range .clientDataList}}
|
||||
<div class="col-sm-6">
|
||||
<div class="info-box">
|
||||
<div class="overlay" id="paused_{{.Client.ID}}" {{if eq .Client.Enabled true}}style="display: none;"{{end}}>
|
||||
<div class="overlay" id="paused_{{.Client.ID}}"
|
||||
{{if eq .Client.Enabled true}}style="visibility: hidden;" {{end}}>
|
||||
<i class="paused-client fas fa-3x fa-play" onclick="resumeClient('{{.Client.ID}}')"></i>
|
||||
</div>
|
||||
<img
|
||||
|
@ -140,13 +142,13 @@ Wireguard Clients
|
|||
function resumeClient(clientID) {
|
||||
setClientStatus(clientID, true);
|
||||
var divElement = document.getElementById("paused_" + clientID);
|
||||
divElement.style.display = "none";
|
||||
divElement.style.visibility = "hidden";
|
||||
}
|
||||
|
||||
function pauseClient(clientID) {
|
||||
setClientStatus(clientID, false);
|
||||
var divElement = document.getElementById("paused_" + clientID);
|
||||
divElement.style.display = "block";
|
||||
divElement.style.visibility = "visible";
|
||||
}
|
||||
</script>
|
||||
<script>
|
||||
|
|
Loading…
Add table
Reference in a new issue