Commit 0852306e276db249fe638fc72cb24dbb8f740171
1 parent
f8ec386a
Exists in
master
and in
5 other branches
updating theme
Showing
2 changed files
with
23 additions
and
0 deletions
Show diff stats
style.css
... | ... | @@ -413,6 +413,21 @@ p { |
413 | 413 | display: inline-block; |
414 | 414 | } |
415 | 415 | |
416 | +.action-home-index .msg_block { | |
417 | + display: block; | |
418 | + font-size: 12px; | |
419 | + background-color: white; | |
420 | +} | |
421 | + | |
422 | +.action-home-index .community-track-plugin_track-card-list-block .msg_block { | |
423 | + margin: 0 0 -5px; | |
424 | + padding-left: 1em; | |
425 | + text-align: left; | |
426 | +} | |
427 | + | |
428 | +.action-home-index .communities-block .msg_block {margin: 0 0 1em;} | |
429 | + | |
430 | + | |
416 | 431 | |
417 | 432 | /*****************/ |
418 | 433 | ... | ... |
theme.js
... | ... | @@ -13,6 +13,14 @@ |
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 | + | |
16 | 24 | |
17 | 25 | })(jQuery); |
18 | 26 | ... | ... |