plain.css 1.47 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
#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 {
}
25 26 27
#VNC_connectTimeout {
    width: 30;
}
28
#VNC_connect_button {
29
    width: 110px;
30 31
}

32
#VNC_status_bar td {
33
    margin-top: 15px;
34 35 36 37 38 39 40 41
    padding: 0px;
    margin: 0px;
}
#VNC_status_bar div {
    font-size: 12px;
    margin: 0px;
    padding: 0px;
}
42
.VNC_status_button {
43 44 45 46 47
    font-size: 10px;
    margin: 0px;
    padding: 0px;
}
#VNC_status {
48
    text-align: center;
49
}
50 51 52 53 54 55 56 57 58 59 60 61 62 63
#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;
64 65
}

66 67 68 69 70 71
.VNC_buttons_right {
    text-align: right;
}
.VNC_buttons_left {
    text-align: left;
}
72
.VNC_status_normal {
73 74
    background: #eee;
}
75 76 77 78 79 80
.VNC_status_error {
    background: #f44;
}
.VNC_status_warn {
    background: #ff4;
}
81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97

/* 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;
}