mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-10 23:21:21 +00:00
108 lines
3.0 KiB
CSS
108 lines
3.0 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.
|
|
*/
|
|
|
|
a.button {
|
|
cursor: default;
|
|
display: inline-block;
|
|
}
|
|
|
|
input[type="submit"], button, a.button {
|
|
|
|
-webkit-appearance: none;
|
|
text-decoration: none;
|
|
|
|
background-color: #3C3C3C;
|
|
border: 1px solid rgba(0, 0, 0, 0.4);
|
|
|
|
color: white;
|
|
text-shadow: -1px -1px rgba(0, 0, 0, 0.3);
|
|
font-size: 1em;
|
|
font-weight: bold;
|
|
font-family: Carlito, FreeSans, Helvetica, Arial, sans-serif;
|
|
|
|
padding: 0.35em 1em;
|
|
min-width: 5em;
|
|
margin: 0.25em;
|
|
|
|
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
|
|
|
|
}
|
|
|
|
input[type="submit"]:hover, button:hover, a.button:hover {
|
|
background-color: #5A5A5A;
|
|
}
|
|
|
|
input[type="submit"]:active, button:active, a.button:active {
|
|
|
|
background-color: #2C2C2C;
|
|
|
|
box-shadow:
|
|
inset 1px 1px 0.25em rgba(0, 0, 0, 0.25),
|
|
-1px -1px 0.25em rgba(0, 0, 0, 0.25),
|
|
1px 1px 0.25em rgba(255, 255, 255, 0.25);
|
|
}
|
|
|
|
button.danger, a.button.danger {
|
|
background: #A43;
|
|
}
|
|
|
|
button.danger:hover, a.button.danger:hover {
|
|
background: #C54;
|
|
}
|
|
|
|
button.danger:active, a.button.danger:active {
|
|
background: #932;
|
|
}
|
|
|
|
input[type="submit"]:disabled, button:disabled, button.danger:disabled {
|
|
background-color: #3C3C3C;
|
|
color: rgba(255, 255, 255, 0.5);
|
|
opacity: 0.75;
|
|
}
|
|
|
|
.button.logout, .button.manage, .button.back, .button.home, .button.change-password {
|
|
background-repeat: no-repeat;
|
|
background-size: 1em;
|
|
background-position: 0.5em 0.45em;
|
|
padding-left: 1.8em;
|
|
}
|
|
|
|
.button.logout {
|
|
background-image: url('images/action-icons/guac-logout.png');
|
|
}
|
|
|
|
.button.manage {
|
|
background-image: url('images/action-icons/guac-config.png');
|
|
}
|
|
|
|
.button.back {
|
|
background-image: url('images/action-icons/guac-back.png');
|
|
}
|
|
|
|
.button.home {
|
|
background-image: url('images/action-icons/guac-home.png');
|
|
}
|
|
|
|
.button.change-password {
|
|
background-image: url('images/action-icons/guac-key.png');
|
|
}
|