Index: trunk/extensions/MobileFrontend/javascripts/beta_opensearch.js |
— | — | @@ -121,11 +121,13 @@ |
122 | 122 | u( search ).bind( 'blur', performSearch ); // for opera mini etc |
123 | 123 | |
124 | 124 | function searchApi( term ) { |
| 125 | + u( search ).addClass( 'searching' ); |
125 | 126 | url = apiUrl + '?action=opensearch&limit=' + numResults + '&namespace=0&format=xml&search=' + term; |
126 | 127 | u.ajax( { url: url, |
127 | 128 | success: function(xml) { |
128 | 129 | if( u( document.body ).hasClass( 'full-screen-search' ) ) { |
129 | 130 | writeResults( createObjectArray( xml ) ); |
| 131 | + u( search ).removeClass( 'searching' ); |
130 | 132 | } |
131 | 133 | } |
132 | 134 | } ); |
Index: trunk/extensions/MobileFrontend/stylesheets/beta_common.css |
— | — | @@ -155,6 +155,10 @@ |
156 | 156 | -webkit-appearance: none; |
157 | 157 | } |
158 | 158 | |
| 159 | +#search.searching { |
| 160 | + opacity: 0.2; |
| 161 | +} |
| 162 | + |
159 | 163 | .divclearable { |
160 | 164 | display: block; |
161 | 165 | zoom: 1; |
— | — | @@ -936,7 +940,7 @@ |
937 | 941 | #footer .links li { |
938 | 942 | display: block; |
939 | 943 | width: 25%; |
940 | | - font-size: 0.8em; |
| 944 | + font-size: 0.7em; |
941 | 945 | float: left; |
942 | 946 | text-align: center; |
943 | 947 | } |