Commit 11d5cc49ddd1ab074a144f6a64a1b4e090698044
1 parent
4293c0a5
Exists in
master
and in
5 other branches
updating theme
Showing
1 changed file
with
99 additions
and
0 deletions
Show diff stats
style.css
| ... | ... | @@ -2245,6 +2245,105 @@ input.button.with-text { |
| 2245 | 2245 | /* Fim Bloco Estatistica */ |
| 2246 | 2246 | |
| 2247 | 2247 | |
| 2248 | +/*Pairwise*/ | |
| 2249 | + | |
| 2250 | +#pairwise_main { | |
| 2251 | + text-align: center; | |
| 2252 | +} | |
| 2253 | + | |
| 2254 | +#pairwise_main p { | |
| 2255 | + background-color: white; | |
| 2256 | + color: #131313; | |
| 2257 | +} | |
| 2258 | + | |
| 2259 | +#pairwise_main p.right { | |
| 2260 | + text-align: right; | |
| 2261 | + display: block; | |
| 2262 | + padding: 14px; | |
| 2263 | +} | |
| 2264 | + | |
| 2265 | +/*tirar a barra vertical | separando os #pairwise_main p.right a */ | |
| 2266 | + | |
| 2267 | +#pairwise_main p.right a{ | |
| 2268 | + color: #b3c4a6; | |
| 2269 | + font-size: 14px; | |
| 2270 | + font-family: 'Open Sans', Arial, Helvetica, sans-serif; | |
| 2271 | +} | |
| 2272 | + | |
| 2273 | +#pairwise_main p.right a.active{ | |
| 2274 | + color: #497b16; | |
| 2275 | +} | |
| 2276 | + | |
| 2277 | +#pairwise_main div.prompt { | |
| 2278 | + background-color: #D0E2BF; | |
| 2279 | + border-width: 0px; | |
| 2280 | + max-width: 360px; | |
| 2281 | + min-height: 190px; | |
| 2282 | +} | |
| 2283 | + | |
| 2284 | +#pairwise_main div.skip_vote { | |
| 2285 | + width: 95%; | |
| 2286 | + background-color: #7d8874; | |
| 2287 | + font-size: 15px; | |
| 2288 | + color: #fff; | |
| 2289 | +} | |
| 2290 | + | |
| 2291 | +#pairwise_main div.show_new_idea_box { | |
| 2292 | + display: none !important; | |
| 2293 | +} | |
| 2294 | + | |
| 2295 | +#pairwise_main div#suggestions_box { | |
| 2296 | + display: block !important; | |
| 2297 | +} | |
| 2298 | + | |
| 2299 | +#suggestions_box .suggestion_header { | |
| 2300 | + display: none; | |
| 2301 | +} | |
| 2302 | + | |
| 2303 | +#pairwise_main div#suggestions_box #new_idea_button { | |
| 2304 | + background: url("images/botao-enviar-pairwise.png") no-repeat top center #CCCCCC; | |
| 2305 | + border-radius: 0px; | |
| 2306 | + cursor: pointer; | |
| 2307 | + display: block; | |
| 2308 | + min-height: 71px; | |
| 2309 | + padding: 5px 10px; | |
| 2310 | + width: 93px; | |
| 2311 | +} | |
| 2312 | + | |
| 2313 | +/*Colocar "#idea_text" e "div.jqEasyCounterMsg" em uma div separada (se possível com uma classe diferente) (div A)*/ | |
| 2314 | +/*Colocar essa nova div e a div que tem o botão "#new_idea_button" em uma nova div (div B)*/ | |
| 2315 | + | |
| 2316 | +/* | |
| 2317 | +Deve ficar mais ou menos assim: | |
| 2318 | + | |
| 2319 | + | |
| 2320 | +<div id="suggestion_box_fields"> | |
| 2321 | + <div class="error"> | |
| 2322 | + | |
| 2323 | + </div> | |
| 2324 | + <div class="notice"> | |
| 2325 | + </div> | |
| 2326 | + <div class="(div B)"> | |
| 2327 | + <div class="(div A)"> | |
| 2328 | + <textarea placeholder="Digite aqui sua idéia" cols="40" rows="4" id="idea_text" maxlenght="160" name="idea[text]"></textarea> | |
| 2329 | + <div class="jqEasyCounterMsg" style="font-size: 100%; font-family: inherit; color: rgb(0, 0, 0); text-align: right; width: 100%; opacity: 1;">131</div> | |
| 2330 | + </div> | |
| 2331 | + | |
| 2332 | + <div style="width: 100%; text-align: center; display: inline;"> | |
| 2333 | + <input type="submit" value="Enviar sugestão" id="new_idea_button" class="button with-text icon- submit" name="commit"> | |
| 2334 | + </div> | |
| 2335 | + </div> | |
| 2336 | + | |
| 2337 | + </div> | |
| 2338 | + | |
| 2339 | +Precisamos adicionar alguns elementos como o botão "escolher esta contribuição" dentro do prompt e o logo do usuário no canto superior direito. | |
| 2340 | +Devo chegar cedo na segunda feira para terminar o css. | |
| 2341 | + | |
| 2342 | +*/ | |
| 2343 | + | |
| 2344 | + | |
| 2345 | +/*Fim Pairwise*/ | |
| 2346 | + | |
| 2248 | 2347 | /*:::::::::::Acessibilidade:::::::::::*/ |
| 2249 | 2348 | /************* Contraste *************/ |
| 2250 | 2349 | ... | ... |