Commit 87562abc800d8a1d99bf09873586e124ff372f3f
1 parent
15c66b83
Exists in
master
and in
5 other branches
Replacing people-block by display-people-block
Showing
3 changed files
with
14 additions
and
5 deletions
Show diff stats
footer.rhtml
| ... | ... | @@ -16,4 +16,4 @@ |
| 16 | 16 | </div><!-- end id="footer-license" --> |
| 17 | 17 | </div> |
| 18 | 18 | |
| 19 | -<script type="text/javascript" src="http://barra.brasil.gov.br/barra.js?cor=verde"></script> | |
| 19 | +<!-- <script type="text/javascript" src="http://barra.brasil.gov.br/barra.js?cor=verde"></script> --> | ... | ... |
style.css
| ... | ... | @@ -40,6 +40,15 @@ body { |
| 40 | 40 | } |
| 41 | 41 | |
| 42 | 42 | /* Overwriting Brasil gov style */ |
| 43 | + | |
| 44 | +body { | |
| 45 | + font-size: 12px; | |
| 46 | +} | |
| 47 | + | |
| 48 | +label { | |
| 49 | + font-weight: normal; | |
| 50 | +} | |
| 51 | + | |
| 43 | 52 | #portal-siteactions { |
| 44 | 53 | padding-bottom: 5px; |
| 45 | 54 | margin-top: -10px; |
| ... | ... | @@ -559,11 +568,11 @@ div#article-parent { |
| 559 | 568 | } |
| 560 | 569 | |
| 561 | 570 | .action-home-index #content .communities-block .block-title, |
| 562 | -.action-home-index #content .people-block .block-title { | |
| 571 | +.action-home-index #content .display-people-block .block-title { | |
| 563 | 572 | display: none; |
| 564 | 573 | } |
| 565 | 574 | |
| 566 | -#content .people-block .vcard a.profile_link { | |
| 575 | +#content .display-people-block .vcard a.profile_link { | |
| 567 | 576 | height: 52px; |
| 568 | 577 | margin: 0; |
| 569 | 578 | width: 52px; |
| ... | ... | @@ -835,7 +844,7 @@ div#article-parent { |
| 835 | 844 | } |
| 836 | 845 | |
| 837 | 846 | .action-home-index #content .communities-block, |
| 838 | -.action-home-index #content .people-block { | |
| 847 | +.action-home-index #content .display-people-block { | |
| 839 | 848 | display: inline-block; |
| 840 | 849 | width: 50%; |
| 841 | 850 | vertical-align: top; | ... | ... |
theme.js
| ... | ... | @@ -35,7 +35,7 @@ |
| 35 | 35 | profile_blocks_div_inner = $('<div>',{ class : 'home-blocks-inner'}); |
| 36 | 36 | profile_blocks_div.prepend(profile_blocks_div_inner); |
| 37 | 37 | profile_blocks_div_inner.prepend($('.action-home-index #box-1 .communities-block')); |
| 38 | - profile_blocks_div_inner.prepend($('.action-home-index #box-1 .people-block')); | |
| 38 | + profile_blocks_div_inner.prepend($('.action-home-index #box-1 .display-people-block')); | |
| 39 | 39 | |
| 40 | 40 | blocks_area.prepend(profile_blocks_div); |
| 41 | 41 | blocks_area.prepend(content_blocks_div); | ... | ... |