/usr/share/olad/www/custombutton.css is in ola 0.10.5.nojsmin-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 | /*
* Copyright 2009 The Closure Library Authors. All Rights Reserved.
*
* Use of this source code is governed by an Apache 2.0 License.
* See the COPYING file for details.
*/
/*
* Styling for custom buttons rendered by goog.ui.CustomButtonRenderer.
*
* @author attila@google.com (Attila Bodis)
*/
.goog-custom-button {
margin: 2px;
border: 0;
padding: 0;
font-family: Arial, sans-serif;
color: #000;
/* Client apps may override the URL at which they serve the image. */
background: #ddd url(/button-bg.png) repeat-x top left;
text-decoration: none;
list-style: none;
vertical-align: middle;
cursor: default;
outline: none;
}
/* Pseudo-rounded corners. */
.goog-custom-button-outer-box,
.goog-custom-button-inner-box {
border-style: solid;
border-color: #aaa;
vertical-align: top;
}
.goog-custom-button-outer-box {
margin: 0;
border-width: 1px 0;
padding: 0;
}
.goog-custom-button-inner-box {
/* By default in FF2, block elements inside a moz-inline-box are stacked
* horizontally next to each other. This stops that weird behavior. */
-moz-box-orient: vertical;
margin: 0 -1px;
border-width: 0 1px;
padding: 3px 4px;
white-space: nowrap; /* Prevents buttons from line breaking on android. */
}
/* Pre-IE7 IE hack; ignored by IE7 and all non-IE browsers. */
* html .goog-custom-button-inner-box {
/* IE6 needs to have the box shifted to make the borders line up. */
left: -1px;
}
/* Pre-IE7 BiDi fixes. */
* html .goog-custom-button-rtl .goog-custom-button-outer-box {
/* @noflip */ left: -1px;
}
* html .goog-custom-button-rtl .goog-custom-button-inner-box {
/* @noflip */ right: auto;
}
/* IE7-only hack; ignored by all other browsers. */
*:first-child+html .goog-custom-button-inner-box {
/* IE7 needs to have the box shifted to make the borders line up. */
left: -1px;
}
/* IE7 BiDi fix. */
*:first-child+html .goog-custom-button-rtl .goog-custom-button-inner-box {
/* @noflip */ left: 1px;
}
/* Safari-only hacks. */
::root .goog-custom-button,
::root .goog-custom-button-outer-box {
/* Required to make pseudo-rounded corners work on Safari. */
line-height: 0;
}
::root .goog-custom-button-inner-box {
/* Required to make pseudo-rounded corners work on Safari. */
line-height: normal;
}
/* State: disabled. */
.goog-custom-button-disabled {
background-image: none !important;
opacity: 0.3;
-moz-opacity: 0.3;
filter: alpha(opacity=30);
}
.goog-custom-button-disabled .goog-custom-button-outer-box,
.goog-custom-button-disabled .goog-custom-button-inner-box {
color: #333 !important;
border-color: #999 !important;
}
/* Pre-IE7 IE hack; ignored by IE7 and all non-IE browsers. */
* html .goog-custom-button-disabled {
margin: 2px 1px !important;
padding: 0 1px !important;
}
/* IE7-only hack; ignored by all other browsers. */
*:first-child+html .goog-custom-button-disabled {
margin: 2px 1px !important;
padding: 0 1px !important;
}
/* State: hover. */
.goog-custom-button-hover .goog-custom-button-outer-box,
.goog-custom-button-hover .goog-custom-button-inner-box {
border-color: #9cf #69e #69e #7af !important; /* Hover border wins. */
}
/* State: active, checked. */
.goog-custom-button-active,
.goog-custom-button-checked {
background-color: #bbb;
background-position: bottom left;
}
/* State: focused. */
.goog-custom-button-focused .goog-custom-button-outer-box,
.goog-custom-button-focused .goog-custom-button-inner-box {
border-color: orange;
}
/* Pill (collapsed border) styles. */
.goog-custom-button-collapse-right,
.goog-custom-button-collapse-right .goog-custom-button-outer-box,
.goog-custom-button-collapse-right .goog-custom-button-inner-box {
margin-right: 0;
}
.goog-custom-button-collapse-left,
.goog-custom-button-collapse-left .goog-custom-button-outer-box,
.goog-custom-button-collapse-left .goog-custom-button-inner-box {
margin-left: 0;
}
.goog-custom-button-collapse-left .goog-custom-button-inner-box {
border-left: 1px solid #fff;
}
.goog-custom-button-collapse-left.goog-custom-button-checked
.goog-custom-button-inner-box {
border-left: 1px solid #ddd;
}
/* Pre-IE7 IE hack; ignored by IE7 and all non-IE browsers. */
* html .goog-custom-button-collapse-left .goog-custom-button-inner-box {
left: 0;
}
/* IE7-only hack; ignored by all other browsers. */
*:first-child+html .goog-custom-button-collapse-left
.goog-custom-button-inner-box {
left: 0;
}
|