/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ #guac-menu .content { padding: 0; margin: 0; /* IE10 */ display: -ms-flexbox; -ms-flex-align: stretch; -ms-flex-direction: column; /* Ancient Mozilla */ display: -moz-box; -moz-box-align: stretch; -moz-box-orient: vertical; /* Ancient WebKit */ display: -webkit-box; -webkit-box-align: stretch; -webkit-box-orient: vertical; /* Old WebKit */ display: -webkit-flex; -webkit-align-items: stretch; -webkit-flex-direction: column; /* W3C */ display: flex; align-items: stretch; flex-direction: column; } #guac-menu .content > * { margin: 0; -ms-flex: 0 0 auto; -moz-box-flex: 0; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; flex: 0 0 auto; } #guac-menu .content > * + * { margin-top: 1em; } #guac-menu #clipboard-settings textarea { width: 100%; border: 1px solid #AAA; -moz-border-radius: 0.25em; -webkit-border-radius: 0.25em; -khtml-border-radius: 0.25em; border-radius: 0.25em; white-space: pre; display: block; font-size: 1em; } #guac-menu #mouse-settings .choice { text-align: center; } #guac-menu #mouse-settings .choice .figure { display: inline-block; vertical-align: middle; width: 75%; max-width: 320px; } #guac-menu #keyboard-settings .caption { font-size: 0.9em; margin-left: 2em; margin-right: 2em; } #guac-menu #mouse-settings .figure .caption { text-align: center; font-size: 0.9em; } #guac-menu #mouse-settings .figure img { display: block; width: 100%; max-width: 320px; margin: 1em auto; } #guac-menu #keyboard-settings .figure { float: right; max-width: 30%; margin: 1em; } #guac-menu #keyboard-settings .figure img { max-width: 100%; } #guac-menu #zoom-settings { text-align: center; } #guac-menu #zoom-out, #guac-menu #zoom-in, #guac-menu #zoom-state { display: inline-block; vertical-align: middle; } #guac-menu #zoom-out, #guac-menu #zoom-in { max-width: 3em; border: 1px solid rgba(0, 0, 0, 0.5); background: rgba(0, 0, 0, 0.1); border-radius: 2em; margin: 0.5em; cursor: pointer; } #guac-menu #zoom-out img, #guac-menu #zoom-in img { max-width: 100%; opacity: 0.5; } #guac-menu #zoom-out:hover, #guac-menu #zoom-in:hover { border: 1px solid rgba(0, 0, 0, 1); background: #CDA; } #guac-menu #zoom-out:hover img, #guac-menu #zoom-in:hover img { opacity: 1; } #guac-menu #zoom-state { font-size: 2em; } #guac-menu #devices .device { padding: 1em; border: 1px solid rgba(0, 0, 0, 0.125); background: rgba(0, 0, 0, 0.04); padding-left: 3.5em; background-size: 1.5em 1.5em; -moz-background-size: 1.5em 1.5em; -webkit-background-size: 1.5em 1.5em; -khtml-background-size: 1.5em 1.5em; background-repeat: no-repeat; background-position: 1em center; } #guac-menu #devices .device:hover { cursor: pointer; border-color: black; } #guac-menu #devices .device.filesystem { background-image: url('images/drive.png'); }