mirror of
https://github.com/mofeng-git/One-KVM.git
synced 2026-01-31 01:51:53 +08:00
moved kvmd to the root
This commit is contained in:
57
web/css/windows.css
Normal file
57
web/css/windows.css
Normal file
@@ -0,0 +1,57 @@
|
||||
div.window {
|
||||
visibility: hidden;
|
||||
outline: none;
|
||||
overflow: hidden;
|
||||
position: fixed;
|
||||
border: var(--dark-border);
|
||||
border-radius: 8px;
|
||||
box-sizing: border-box;
|
||||
box-shadow: var(--big-shadow);
|
||||
white-space: nowrap;
|
||||
background-color: var(--bg-color-light);
|
||||
padding: 30px 9px 9px 9px;
|
||||
}
|
||||
div.window:focus {
|
||||
border: var(--intensive-border) !important;
|
||||
}
|
||||
|
||||
div.window-header {
|
||||
overflow: hidden;
|
||||
top: 0;
|
||||
left: 0;
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
padding: 0;
|
||||
height: 20px;
|
||||
font-size: 0.8em;
|
||||
color: var(--fg-color-dark);
|
||||
border-bottom: var(--normal-border);
|
||||
}
|
||||
|
||||
div.window-grab {
|
||||
overflow: hidden;
|
||||
top: 0;
|
||||
left: 0;
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 20px;
|
||||
cursor: move;
|
||||
padding: 3px 0 2px 20px;
|
||||
}
|
||||
|
||||
div.window-header-grabbed {
|
||||
color: var(--fg-color-intensive);
|
||||
background-color: var(--bg-color-intensive);
|
||||
border-bottom: var(--thin-intensive-border);
|
||||
}
|
||||
|
||||
button.window-button-close {
|
||||
position: absolute;
|
||||
top: -2px;
|
||||
right: -6px;
|
||||
width: 44px;
|
||||
height: 24px;
|
||||
padding-left: 0;
|
||||
color: var(--fg-color-inactive);
|
||||
display: inline-block;
|
||||
}
|
||||
Reference in New Issue
Block a user