Commit f61c03a1d1fba181e6f8ed2f5c5973324fdecb82

Authored by Braulio Bhavamitra
1 parent 4e977f08

Add missing alt css

Showing 1 changed file with 49 additions and 0 deletions   Show diff stats
public/stylesheets/application.css
... ... @@ -5162,3 +5162,52 @@ h1.page-title.no-boxes small {
5162 5162 #advanced_search_link {
5163 5163 display: none;
5164 5164 }
  5165 +
  5166 +#alt-beautify {
  5167 + background-color:#EDEDED;
  5168 + border:1px solid #666666;
  5169 + margin:10px auto;
  5170 + padding:5px;
  5171 + position:relative;
  5172 + z-index: 99999;
  5173 + -moz-border-radius:5px;
  5174 + -o-border-radius:5px;
  5175 + -webkit-border-radius:5px;
  5176 + -khtml-border-radius:5px;
  5177 + border-radius:5px;
  5178 + -moz-box-shadow: 2px 2px 5px #555555;
  5179 + -webkit-box-shadow: 2px 2px 5px #555555;
  5180 + box-shadow: 2px 2px 5px #555555;
  5181 +}
  5182 +
  5183 +.alt-beautify-arrow-border {
  5184 + border-color: transparent transparent #666666 transparent;
  5185 + border-style: solid;
  5186 + border-width: 6px;
  5187 + height:0;
  5188 + width:0;
  5189 + position:absolute;
  5190 + top:-13px;
  5191 + left:20px;
  5192 +}
  5193 +
  5194 +.alt-beautify-arrow {
  5195 + border-color: transparent transparent #EDEDED transparent;
  5196 + border-style: solid;
  5197 + border-width: 6px;
  5198 + height:0;
  5199 + width:0;
  5200 + position:absolute;
  5201 + top:-12px;
  5202 + left:20px;
  5203 +}
  5204 +
  5205 +/* AutoComplete*/
  5206 +.formfield input.ui-autocomplete-loading { background: url('/images/loading-small.gif') right center no-repeat, url("../images/input-bg.gif") no-repeat left top; }
  5207 +
  5208 +.ui-autocomplete-category {
  5209 + font-weight: bold;
  5210 + padding: .2em .4em;
  5211 + margin: .8em 0 .2em;
  5212 + line-height: 1.5;
  5213 +}
... ...