mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-11 15:37:41 +00:00
129 lines
2.9 KiB
CSS
129 lines
2.9 KiB
CSS
/*
|
|
* Copyright (C) 2013 Glyptodon LLC
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in
|
|
* all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
* THE SOFTWARE.
|
|
*/
|
|
|
|
body.client {
|
|
background: black;
|
|
padding: 0;
|
|
margin: 0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
#preload {
|
|
visibility: hidden;
|
|
position: absolute;
|
|
left: 0;
|
|
right: 0;
|
|
width: 0;
|
|
height: 0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.client-view {
|
|
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
height: 100%;
|
|
|
|
font-size: 0px;
|
|
|
|
}
|
|
|
|
.client-view-content {
|
|
|
|
/* IE10 */
|
|
display: -ms-flexbox;
|
|
-ms-flex-align: stretch;
|
|
-ms-flex-direction: column;
|
|
-ms-flex-pack: end;
|
|
|
|
/* Ancient Mozilla */
|
|
display: -moz-box;
|
|
-moz-box-align: stretch;
|
|
-moz-box-orient: vertical;
|
|
-moz-box-pack: end;
|
|
|
|
/* Ancient WebKit */
|
|
display: -webkit-box;
|
|
-webkit-box-align: stretch;
|
|
-webkit-box-orient: vertical;
|
|
-webkit-box-pack: end;
|
|
|
|
/* Old WebKit */
|
|
display: -webkit-flex;
|
|
-webkit-align-items: stretch;
|
|
-webkit-flex-direction: column;
|
|
-webkit-flex-pack: end;
|
|
|
|
/* W3C */
|
|
display: flex;
|
|
align-items: stretch;
|
|
flex-direction: column;
|
|
flex-pack: end;
|
|
|
|
width: 100%;
|
|
height: 100%;
|
|
|
|
font-size: 12pt;
|
|
|
|
}
|
|
|
|
.client-view .client-body {
|
|
-ms-flex: 1 1 auto;
|
|
-moz-box-flex: 1;
|
|
-webkit-box-flex: 1;
|
|
-webkit-flex: 1 1 auto;
|
|
flex: 1 1 auto;
|
|
position: relative;
|
|
}
|
|
|
|
.client-view .client-bottom {
|
|
-ms-flex: 0 0 auto;
|
|
-moz-box-flex: 0;
|
|
-webkit-box-flex: 0;
|
|
-webkit-flex: 0 0 auto;
|
|
flex: 0 0 auto;
|
|
}
|
|
|
|
.client-view .client-body .main {
|
|
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
|
|
width: auto;
|
|
height: auto;
|
|
|
|
}
|
|
|
|
.client .user-menu .options li a.disconnect {
|
|
background-repeat: no-repeat;
|
|
background-size: 1em;
|
|
background-position: 0.75em center;
|
|
padding-left: 2.5em;
|
|
background-image: url('images/x.png');
|
|
}
|