forked from xe5700/kvmd-armbian
-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathweb.css
21 lines (21 loc) · 1.01 KB
/
web.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* Here you can customize the Web UI */
div.stream-box-mouse-dot { /* required for kvmd 3.305+ */
cursor: crosshair !important; /* crosshair instead of blue blob */
}
div.stream-box-mouse-enabled {
cursor: crosshair !important; /* crosshair instead of blue blob */
}
div#stream-box {
border: 0px !important; /* fix video pixel-imperfection */
}
div.window:fullscreen {
border: 0px !important; /* fix video pixel-imperfection */
border-radius: 0px !important; /* fix full-screen focus-loss rounded corner cutoff */
}
/* other customizations */
div.window.window-full-tab {
border: 0px !important; /* removes window-full-tab border by adding !important to override priority, the border cause jiggling again due to window-full-tab getting overrided by window-active border styling */
}
div#stream-window.window-active:fullscreen div#stream-box div#stream-fullscreen-active {
box-shadow: none; /* removes fullscreen ~2px border */
}