Index: trunk/extensions/MobileFrontend/stylesheets/common.css |
— | — | @@ -128,6 +128,11 @@ |
129 | 129 | position: relative; |
130 | 130 | } |
131 | 131 | |
| 132 | +#userloginForm table, #userloginForm .user-login tr, #userloginForm .user-login th, #userloginForm .user-login td { |
| 133 | + width: 200px; |
| 134 | + border: 0px; |
| 135 | +} |
| 136 | + |
132 | 137 | table { |
133 | 138 | border-spacing: 0 !important; |
134 | 139 | width: 100%; |
Index: trunk/extensions/MobileFrontend/stylesheets/beta_common.css |
— | — | @@ -0,0 +1,255 @@ |
| 2 | +.clearlink { |
| 3 | + background: url(images/close-button.png) no-repeat scroll 0 0 transparent; |
| 4 | + background-position: center center; |
| 5 | + cursor: pointer; |
| 6 | + zoom: 1; |
| 7 | + position: absolute; |
| 8 | + right: 0.25em; |
| 9 | + top: 10%; |
| 10 | + margin: 1px; |
| 11 | + height: 42px; |
| 12 | + width: 42px; |
| 13 | + margin-top: -6px; |
| 14 | + z-index: 99; |
| 15 | + border: 0px solid; |
| 16 | + display: none; |
| 17 | +} |
| 18 | + |
| 19 | +.suggestions-results { |
| 20 | + font-size: 1.4em; |
| 21 | + cursor: pointer; |
| 22 | + margin: 0; |
| 23 | + padding: 0; |
| 24 | +} |
| 25 | + |
| 26 | +.suggestions-results hr { |
| 27 | + margin: 0; |
| 28 | +} |
| 29 | + |
| 30 | +.suggestions-result { |
| 31 | + color: black; |
| 32 | + margin: 0; |
| 33 | + line-height: 2.6em; |
| 34 | + padding: 0.01em 0.25em; |
| 35 | + text-align: left; |
| 36 | + postion: relative; |
| 37 | +} |
| 38 | + |
| 39 | +.suggestions-result a { |
| 40 | + text-decoration: none; |
| 41 | + color: #666; |
| 42 | +} |
| 43 | +.suggestions-result a:link { |
| 44 | + text-decoration: none; |
| 45 | + color:#666; |
| 46 | +} |
| 47 | +.suggestions-result a:visited { |
| 48 | + text-decoration: none; |
| 49 | + color:#666; |
| 50 | +} |
| 51 | +.suggestions-result a:hover { |
| 52 | + text-decoration: none; |
| 53 | + color:#666; |
| 54 | +} |
| 55 | +.suggestions-result a:active { |
| 56 | + text-decoration: none; |
| 57 | + color:#666; |
| 58 | +} |
| 59 | +.suggestions-result:hover { |
| 60 | + background-color: #ACD1E9; |
| 61 | +} |
| 62 | +a.sq-val-update { |
| 63 | + font-size: 1.3em; |
| 64 | + display: block; |
| 65 | + font-weight: normal; |
| 66 | + text-decoration: none; |
| 67 | + color: #666; |
| 68 | + position: absolute; |
| 69 | + right: 0; |
| 70 | + width: 1.5em; |
| 71 | + text-align: center; |
| 72 | +} |
| 73 | +a.sq-val-update:link { |
| 74 | + text-decoration: none; |
| 75 | +} |
| 76 | +a.sq-val-update:visited { |
| 77 | + text-decoration: none; |
| 78 | +} |
| 79 | +a.sq-val-update:hover { |
| 80 | + text-decoration: none; |
| 81 | +} |
| 82 | +a.sq-val-update:active { |
| 83 | + text-decoration: none; |
| 84 | +} |
| 85 | + |
| 86 | +a.search-result-item { |
| 87 | + display: block; |
| 88 | + margin-right: 2em; |
| 89 | +} |
| 90 | + |
| 91 | +#results { |
| 92 | + display: none; |
| 93 | + background-color: #ffffff; |
| 94 | + border-top: none; |
| 95 | + border-left: 1px solid #888; |
| 96 | + border-right: 1px solid #888; |
| 97 | + border-bottom: 1px solid #888; |
| 98 | + z-index: 2; |
| 99 | + position: absolute; |
| 100 | +} |
| 101 | + |
| 102 | +#remove-results { |
| 103 | + position: absolute; |
| 104 | + display: block; |
| 105 | + width: 40px; |
| 106 | + height: 40px; |
| 107 | + text-align: center; |
| 108 | + line-height: 40px; |
| 109 | +} |
| 110 | + |
| 111 | +#search { |
| 112 | + -webkit-appearance: none; |
| 113 | + border-top-width: 0px; |
| 114 | + border-right-width: 0px; |
| 115 | + border-bottom-width: 0px; |
| 116 | + border-left-width: 0px; |
| 117 | + outline-style: none; |
| 118 | + outline-width: initial; |
| 119 | + outline-color: initial; |
| 120 | + height: 1.4em; |
| 121 | +} |
| 122 | + |
| 123 | +ul#footer-info { |
| 124 | + list-style: none; |
| 125 | + list-style-image: none; |
| 126 | + list-style-type: none; |
| 127 | + margin: 0; |
| 128 | + padding: 0; |
| 129 | +} |
| 130 | + |
| 131 | +#left-arrow { |
| 132 | + background: url(images/arrow-left.png) no-repeat scroll 0 0 transparent; |
| 133 | + background-position: center center; |
| 134 | + cursor: pointer; |
| 135 | + zoom: 1; |
| 136 | + position: absolute; |
| 137 | + right: 0.25em; |
| 138 | + top: 20%; |
| 139 | + margin: 1px; |
| 140 | + height: 40px; |
| 141 | + width: 40px; |
| 142 | + margin-top: -6px; |
| 143 | + z-index: 99; |
| 144 | + border: 0px solid; |
| 145 | +} |
| 146 | + |
| 147 | +#sq { |
| 148 | +/* background-color: #ff0000;*/ |
| 149 | +} |
| 150 | + |
| 151 | +#sq.animate { |
| 152 | + -webkit-transition: all .3s ease-in 100ms; |
| 153 | +/* background-color: #0000ff;*/ |
| 154 | +} |
| 155 | + |
| 156 | +#searchbox { |
| 157 | +/* background-color: #00ff00;*/ |
| 158 | +} |
| 159 | + |
| 160 | +.divclearable { |
| 161 | + border: 1px solid #888; |
| 162 | + display: -moz-inline-stack; |
| 163 | + display: inline-block; |
| 164 | + zoom: 1; |
| 165 | + *display: inline; |
| 166 | + vertical-align: middle; |
| 167 | + height: 1.5em; |
| 168 | + position: relative; |
| 169 | +} |
| 170 | + |
| 171 | +#userloginForm table, #userloginForm .user-login tr, #userloginForm .user-login th, #userloginForm .user-login td { |
| 172 | + width: 200px; |
| 173 | + border: 0px; |
| 174 | +} |
| 175 | + |
| 176 | +table { |
| 177 | + border-spacing: 0 !important; |
| 178 | + width: 100%; |
| 179 | + border-collapse: collapse !important; |
| 180 | + border: 1px solid #cccccc; |
| 181 | + padding: 3px; |
| 182 | + margin-bottom: 15px; |
| 183 | +} |
| 184 | + |
| 185 | +table.gallery .thumb[style] { |
| 186 | + border: 0; |
| 187 | + padding: 0 !important; |
| 188 | + width: auto !important; |
| 189 | + margin: 0 auto; |
| 190 | +} |
| 191 | + |
| 192 | +table.geography[style] td[style*="text-align"], table.geography[style] td[colspan="2"] { |
| 193 | + text-align: left !important; |
| 194 | + margin-left: 0 !important; |
| 195 | + margin-right: 0 !important; |
| 196 | +} |
| 197 | + |
| 198 | +table.toc h2 { |
| 199 | + border: 0; |
| 200 | + padding: 0; |
| 201 | + margin-top: 5px; |
| 202 | +} |
| 203 | + |
| 204 | +table.gallery th, table.gallery td { |
| 205 | + display: block; |
| 206 | + border: 0; |
| 207 | + border-bottom: 1px solid #cccccc; |
| 208 | +} |
| 209 | + |
| 210 | +table[style] { |
| 211 | + width: 100% !important; |
| 212 | + float: none !important; |
| 213 | + margin-left: 0 !important; |
| 214 | +} |
| 215 | + |
| 216 | +table.navbox td.navbox-group { |
| 217 | + background: #ddddff; |
| 218 | + width: 25%; |
| 219 | + padding: 3px; |
| 220 | +} |
| 221 | + |
| 222 | +table.gallery { |
| 223 | + background: #f9f9f9; |
| 224 | + border-bottom: 0; |
| 225 | +} |
| 226 | + |
| 227 | +table.navbox { |
| 228 | + font-size: 0.9em; |
| 229 | + width: 100% !important; |
| 230 | +} |
| 231 | + |
| 232 | +table.gallery .gallerytext { |
| 233 | + margin-top: -12px; |
| 234 | + text-align: center; |
| 235 | +} |
| 236 | + |
| 237 | +table.navbox th.navbox-title { |
| 238 | + background: #ccccff; |
| 239 | + padding: 5px; |
| 240 | +} |
| 241 | + |
| 242 | +table.navbox div[style*="padding"] { |
| 243 | + padding-left: 0 !important; |
| 244 | + padding-right: 0 !important; |
| 245 | +} |
| 246 | + |
| 247 | +table.gallery .gallerybox[style] { |
| 248 | + width: auto !important; |
| 249 | + margin-bottom: -16px; |
| 250 | +} |
| 251 | + |
| 252 | +table td, table th { |
| 253 | + border: 1px solid #cccccc; |
| 254 | + padding: 3px; |
| 255 | +} |
| 256 | + |
Property changes on: trunk/extensions/MobileFrontend/stylesheets/beta_common.css |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 257 | + native |