Commit 0edd4cf14e0f6151704bc6b36dee7797208ee00e
Exists in
master
and in
4 other branches
Merge branch 'master' of github.com:SerproLivre/participa-theme
Showing
3 changed files
with
67 additions
and
1 deletions
Show diff stats
images/bg-palacio-do-planalto.jpg
style.css
... | ... | @@ -160,6 +160,35 @@ p { |
160 | 160 | /*font-size: x-small;*/ |
161 | 161 | } |
162 | 162 | |
163 | +/*Registro de usuário*/ | |
164 | + | |
165 | +.action-account-signup .no-boxes form { | |
166 | + margin: 0px; | |
167 | +} | |
168 | + | |
169 | +.action-account-signup .singup_text { | |
170 | + display: inline-block; | |
171 | + float: left; | |
172 | + margin-right: 5%; | |
173 | + margin-top: 70px; | |
174 | + width: 30%; | |
175 | +} | |
176 | + | |
177 | +.action-account-signup #signup-form-header, | |
178 | +.action-account-signup #signup-form-profile { | |
179 | + display: inline-block; | |
180 | + float: right; | |
181 | + width: 60%; | |
182 | +} | |
183 | + | |
184 | +.action-account-signup form>p { | |
185 | + clear: both; | |
186 | +} | |
187 | + | |
188 | + | |
189 | + | |
190 | +/*Fim Registro de usuário*/ | |
191 | + | |
163 | 192 | /* Menu List left */ |
164 | 193 | /*Estilo nos blocos laterais*/ |
165 | 194 | |
... | ... | @@ -413,6 +442,21 @@ p { |
413 | 442 | display: inline-block; |
414 | 443 | } |
415 | 444 | |
445 | +.action-home-index .msg_block { | |
446 | + display: block; | |
447 | + font-size: 12px; | |
448 | + background-color: white; | |
449 | +} | |
450 | + | |
451 | +.action-home-index .community-track-plugin_track-card-list-block .msg_block { | |
452 | + margin: 0 0 -5px; | |
453 | + padding-left: 1em; | |
454 | + text-align: left; | |
455 | +} | |
456 | + | |
457 | +.action-home-index .communities-block .msg_block {margin: 0 0 1em;} | |
458 | + | |
459 | + | |
416 | 460 | |
417 | 461 | /*****************/ |
418 | 462 | |
... | ... | @@ -2320,7 +2364,7 @@ input.button.with-text { |
2320 | 2364 | } |
2321 | 2365 | |
2322 | 2366 | #pairwise_main .prompt:hover { |
2323 | - background: url("images/prompt_bg_hover.png") no-repeat center top #548A1C; | |
2367 | + background: url("images/prompt_bg_hover.png") no-repeat 51% top #548A1C; | |
2324 | 2368 | } |
2325 | 2369 | |
2326 | 2370 | #pairwise_main .prompt a{ |
... | ... | @@ -2335,8 +2379,12 @@ input.button.with-text { |
2335 | 2379 | } |
2336 | 2380 | |
2337 | 2381 | #pairwise_main .separator { |
2382 | + background-color: #CCCCCC; | |
2338 | 2383 | display: inline-block; |
2339 | 2384 | float: none; |
2385 | + height: 170px; | |
2386 | + margin-top: 8px; | |
2387 | + width: 1px; | |
2340 | 2388 | } |
2341 | 2389 | |
2342 | 2390 | |
... | ... | @@ -2849,6 +2897,12 @@ body.action-embed-index { |
2849 | 2897 | padding: 22px 0px 0px 0px; |
2850 | 2898 | } |
2851 | 2899 | |
2900 | +.action-embed-index .community-track-plugin_track-card-list-block .view_all a { | |
2901 | + position: absolute; | |
2902 | + right: -12px; | |
2903 | + top: -33px; | |
2904 | +} | |
2905 | + | |
2852 | 2906 | /** Bloco de redes sociais **/ |
2853 | 2907 | .social_widget { |
2854 | 2908 | margin-left: 5px; | ... | ... |
theme.js
... | ... | @@ -13,6 +13,18 @@ |
13 | 13 | }); |
14 | 14 | |
15 | 15 | $( ".profile-image" ).prepend( "<span class='helper'></span>" ); |
16 | + //insere a mensagem no bloco de trilhas na página inicial// | |
17 | + $( ".action-home-index #content .community-track-plugin_track-card-list-block .track_list" ).prepend( "<span class='msg_block'>Construa seu caminho de participação na elaboração de políticas públicas...</span>" ); | |
18 | + | |
19 | + //insere a mensagem no bloco de comunidades na página inicial// | |
20 | + $( ".action-home-index #content .communities-block .block-inner-2>div" ).prepend( "<span class='msg_block'>Participe dos dialogos entre governo e sociedade em comunidades temáticas...</span>" ); | |
21 | + | |
22 | + $( ".action-home-index #content .communities-block .block-inner-2>div.block-footer-content .msg_block" ).remove(); | |
23 | + | |
24 | + | |
25 | + //insere a mensagem na página de registro// | |
26 | + $( ".action-account-signup #content form" ).prepend( "<div class='singup_text'><p>Registre-se. Crie sua conta no Participa Brasil! Este é mais um espaço de diálogo entre governo e sociedade civil. Depois que você se registrar será possível fazer comentários e/ou contribuições, participar de consultas públicas, criar blogs, participar e/ou criar comunidades, etc.</p><p>A gestão pública nunca esteve tão próxima das pessoas como agora. Faça parte desta mudança!</p><p>Seja bem vind@!</p></div>" ); | |
27 | + | |
16 | 28 | |
17 | 29 | })(jQuery); |
18 | 30 | ... | ... |