mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-08 06:01:22 +00:00
200 lines
3.4 KiB
CSS
200 lines
3.4 KiB
CSS
|
|
/*
|
|
* Guacamole - Clientless Remote Desktop
|
|
* Copyright (C) 2010 Michael Jumper
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
body {
|
|
background: black;
|
|
font-family: FreeSans, Helvetica, Arial, sans-serif;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
img {
|
|
border: none;
|
|
}
|
|
|
|
.software-cursor {
|
|
cursor: url('../images/mouse/dot.gif'),url('../images/mouse/blank.cur'),default;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.guac-error .software-cursor {
|
|
cursor: default;
|
|
}
|
|
|
|
* {
|
|
-webkit-tap-highlight-color: rgba(0,0,0,0);
|
|
}
|
|
|
|
#eventTarget {
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 100%;
|
|
opacity: 0;
|
|
}
|
|
|
|
/* Dialogs */
|
|
|
|
div.dialogOuter {
|
|
display: table;
|
|
height: 100%;
|
|
width: 100%;
|
|
position: fixed;
|
|
left: 0;
|
|
top: 0;
|
|
|
|
visibility: hidden;
|
|
}
|
|
|
|
div.dialogMiddle {
|
|
width: 100%;
|
|
text-align: center;
|
|
display: table-cell;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
div.dialog {
|
|
padding: 1em;
|
|
|
|
max-width: 75%;
|
|
text-align: left;
|
|
|
|
display: inline-block;
|
|
visibility: visible;
|
|
}
|
|
|
|
div.dialog h1 {
|
|
margin: 0;
|
|
margin-bottom: 0.25em;
|
|
text-align: center;
|
|
}
|
|
|
|
div.dialog div.buttons {
|
|
margin: 0;
|
|
margin-top: 0.5em;
|
|
text-align: center;
|
|
}
|
|
|
|
button {
|
|
|
|
border-style: solid;
|
|
border-width: 1px;
|
|
|
|
padding: 0.25em;
|
|
padding-right: 1em;
|
|
padding-left: 1em;
|
|
|
|
}
|
|
|
|
button:active {
|
|
|
|
padding-top: 0.35em;
|
|
padding-left: 1.1em;
|
|
|
|
padding-bottom: 0.15em;
|
|
padding-right: 0.9em;
|
|
|
|
}
|
|
|
|
button#reconnect {
|
|
display: none;
|
|
}
|
|
|
|
.guac-error button#reconnect {
|
|
display: inline;
|
|
|
|
background: #200;
|
|
border-color: #822;
|
|
color: #944;
|
|
}
|
|
|
|
.guac-error button#reconnect:hover {
|
|
background: #822;
|
|
border-color: #B33;
|
|
color: black;
|
|
}
|
|
|
|
|
|
div.dialog p {
|
|
margin: 0;
|
|
}
|
|
|
|
#statusText {
|
|
text-shadow: 0 0 0.25em black, 0 0 0.25em black, 0 0 0.25em black, 0 0 0.25em black;
|
|
font-size: xx-large;
|
|
color: white;
|
|
}
|
|
|
|
.guac-error #statusText {
|
|
text-shadow: 0 0 0.25em black, 0 0 0.25em black, 0 0 0.25em black, 0 0 0.25em black;
|
|
color: #D44;
|
|
}
|
|
|
|
div.displayOuter {
|
|
height: 100%;
|
|
width: 100%;
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
display: table;
|
|
}
|
|
|
|
div.displayMiddle {
|
|
width: 100%;
|
|
display: table-cell;
|
|
vertical-align: middle;
|
|
text-align: center;
|
|
}
|
|
|
|
div#display * {
|
|
position: relative;
|
|
}
|
|
|
|
div#display > * {
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
div#magnifier {
|
|
|
|
display: none;
|
|
position: absolute;
|
|
left: 0;
|
|
right: 0;
|
|
z-index: 1;
|
|
|
|
box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.75);
|
|
width: 50%;
|
|
height: 50%;
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
/* Viewport Clone */
|
|
|
|
div#viewportClone {
|
|
display: table;
|
|
height: 100%;
|
|
width: 100%;
|
|
position: fixed;
|
|
left: 0;
|
|
top: 0;
|
|
|
|
visibility: hidden;
|
|
}
|