mirror of
https://github.com/Break27/kvmd.git
synced 2026-02-06 10:26:38 +08:00
58 lines
1.2 KiB
CSS
58 lines
1.2 KiB
CSS
div.host[state='online'] button.remote-action[action='WAKE'],
|
|
div.host[state='offline'] button.remote-action[action='SHUTDOWN'],
|
|
div.host[state='unknown'] button.remote-action {
|
|
display: none;
|
|
}
|
|
|
|
div.host[state='unknown'] div.remote-actions::before {
|
|
content: "⏳";
|
|
}
|
|
|
|
/********************************************/
|
|
|
|
button.remote-action[action='WAKE']::before {
|
|
content: "☀️"
|
|
}
|
|
|
|
button.remote-action[action='SHUTDOWN']::before {
|
|
content: "🌙"
|
|
}
|
|
|
|
button.remote-action[action='RESTART']::before {
|
|
content: "🔄"
|
|
}
|
|
|
|
/********************************************/
|
|
|
|
div.remote-actions {
|
|
display: inline-flex;
|
|
flex: 1;
|
|
justify-content: flex-end;
|
|
align-items: center;
|
|
font-size: 20px;
|
|
}
|
|
|
|
button.remote-action {
|
|
border: var(--border-key-thin);
|
|
border-radius: 6px;
|
|
box-shadow: var(--shadow-micro);
|
|
width: 40px;
|
|
height: 40px;
|
|
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
margin-left: 10px;
|
|
background-color: var(--cs-control-default-bg);
|
|
}
|
|
|
|
button.remote-action:hover {
|
|
border-color: var(--cs-corner-bg);
|
|
}
|
|
|
|
button.remote-action:active {
|
|
background-color: var(--cs-control-pressed-bg);
|
|
}
|
|
|