mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-07 05:31:22 +00:00
126 lines
3.0 KiB
CSS
126 lines
3.0 KiB
CSS
/*
|
|
* Copyright (C) 2014 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.
|
|
*/
|
|
|
|
.text-input {
|
|
width: 100%;
|
|
background: #222;
|
|
color: white;
|
|
}
|
|
|
|
.text-input .text-input-field,
|
|
.text-input .text-input-buttons {
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.text-input .text-input-field {
|
|
width: 30%;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.text-input .text-input-buttons {
|
|
width: 70%;
|
|
text-align: right;
|
|
}
|
|
|
|
.text-input .target {
|
|
|
|
border: none;
|
|
border-radius: 0;
|
|
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
color: white;
|
|
font-size: 12pt;
|
|
width: 100%;
|
|
height: auto;
|
|
resize: none;
|
|
outline: none;
|
|
|
|
margin: 0;
|
|
padding: 0.25em;
|
|
padding-left: 0;
|
|
background: transparent;
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
.text-input.open {
|
|
display: block;
|
|
}
|
|
|
|
.text-input .sent-history {
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
padding: 0.25em;
|
|
padding-right: 0;
|
|
}
|
|
|
|
.text-input .sent-history .sent-text {
|
|
display: inline-block;
|
|
vertical-align: baseline;
|
|
white-space: pre;
|
|
font-size: 12pt;
|
|
|
|
animation: fadeout 1s linear;
|
|
-webkit-animation: fadeout 1s linear;
|
|
opacity: 0;
|
|
}
|
|
|
|
.text-input .text-input-buttons button {
|
|
|
|
box-shadow: none;
|
|
padding: 0.25em;
|
|
max-width: 20%;
|
|
margin: 0.1em;
|
|
min-width: 3em;
|
|
|
|
background: #444;
|
|
|
|
border: 0.125em solid #666;
|
|
-moz-border-radius: 0.25em;
|
|
-webkit-border-radius: 0.25em;
|
|
-khtml-border-radius: 0.25em;
|
|
border-radius: 0.25em;
|
|
|
|
color: white;
|
|
font-weight: lighter;
|
|
text-align: center;
|
|
|
|
text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.25),
|
|
1px -1px 0 rgba(0, 0, 0, 0.25),
|
|
-1px 1px 0 rgba(0, 0, 0, 0.25),
|
|
-1px -1px 0 rgba(0, 0, 0, 0.25);
|
|
|
|
}
|
|
|
|
.text-input .text-input-buttons button:active {
|
|
background: #822;
|
|
border-color: #D44;
|
|
}
|
|
|
|
.text-input .text-input-buttons button.pressed {
|
|
background: #882;
|
|
border-color: #DD4;
|
|
}
|