mirror of
https://github.com/novnc/noVNC.git
synced 2026-05-27 07:29:41 +00:00
The following API changes may affect integrators:
- Settings have been moved out of the RFB.connect() call. Each
setting now has it's own setter function: setEncrypt, setBase64,
setTrueColor, setCursor.
- Encrypt and cursor settings now default to on.
- CSS changes:
- VNC_status_bar for input buttons switched to a element class.
- VNC_buttons split into VNC_buttons_right and
VNC_buttons_left
- New id styles for VNC_settings_menu and VNC_setting
Note: the encrypt, true_color and cursor, logging setting can all be
set on load using query string variables (in addition to host, port
and password).
Client cursor (cursor pseudo-encoding) support has been polished and
activated.
The RFB settings are now presented as radio button list items in
a drop-down "Settings" menu when using the default controls.
Also, in the settings menu is the ability to select between alternate
style-sheets.
Cookie and stylesheet selection support added to util.js.
95 lines
1.4 KiB
CSS
95 lines
1.4 KiB
CSS
#VNC_controls {
|
|
overflow: hidden;
|
|
}
|
|
#VNC_controls ul {
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
#VNC_controls li {
|
|
float: left;
|
|
margin-right: 15px;
|
|
}
|
|
|
|
#VNC_host {
|
|
width: 100;
|
|
}
|
|
#VNC_port {
|
|
width: 50;
|
|
}
|
|
#VNC_password {
|
|
width: 80;
|
|
}
|
|
#VNC_encrypt {
|
|
}
|
|
#VNC_connect_button {
|
|
width: 100px;
|
|
}
|
|
|
|
#VNC_status_bar td {
|
|
margin-top: 15px;
|
|
padding: 0px;
|
|
margin: 0px;
|
|
}
|
|
#VNC_status_bar div {
|
|
font-size: 12px;
|
|
margin: 0px;
|
|
padding: 0px;
|
|
}
|
|
.VNC_status_button {
|
|
font-size: 10px;
|
|
margin: 0px;
|
|
padding: 0px;
|
|
}
|
|
#VNC_status {
|
|
text-align: center;
|
|
}
|
|
#VNC_settings_menu {
|
|
display: none;
|
|
position: absolute;
|
|
width: 12em;
|
|
border: 1px solid #888;
|
|
background-color: #f0f2f6;
|
|
padding: 5px; margin: 3px;
|
|
z-index: 100; opacity: 1;
|
|
text-align: left; white-space: normal;
|
|
}
|
|
#VNC_settings_menu ul {
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.VNC_buttons_right {
|
|
text-align: right;
|
|
}
|
|
.VNC_buttons_left {
|
|
text-align: left;
|
|
}
|
|
.VNC_status_normal {
|
|
background: #eee;
|
|
}
|
|
.VNC_status_error {
|
|
background: #f44;
|
|
}
|
|
.VNC_status_warn {
|
|
background: #ff4;
|
|
}
|
|
|
|
/* Do not set width/height for VNC_screen or VNC_canvas or incorrect
|
|
* scaling will occur. Canvas resizes to remote VNC settings */
|
|
#VNC_screen {
|
|
text-align: center;
|
|
display: table;
|
|
}
|
|
#VNC_canvas {
|
|
background: #eee;
|
|
}
|
|
|
|
#VNC_clipboard_clear_button {
|
|
}
|
|
#VNC_clipboard_text {
|
|
font-size: 9;
|
|
}
|
|
|