Commit a4a063fdf8f4ad3b737582adc4a7755f1cd3f550

Authored by Alexandre Barbosa
1 parent b2cac32b
Exists in master and in 79 other branches add_sisp_to_chef, add_super_archives_plugin, api_for_colab, automates_core_packing, backup_not_prod, changes_in_buttons_on_content_panel, colab_automated_login, colab_spb_plugin_recipe, colab_widgets_settings, design_validation, dev_env_minimal, disable_email_dev, fix_breadcrumbs_position, fix_categories_software_link, fix_edit_institution, fix_edit_software_with_another_license, fix_get_license_info, fix_gitlab_assets_permission, fix_list_style_inside_article, fix_list_style_on_folder_elements, fix_members_pagination, fix_merge_request_url, fix_models_translations, fix_no_license, fix_software_api, fix_software_block_migration, fix_software_communities_translations, fix_software_communities_unit_test, fix_style_create_institution_admin_panel, fix_superarchives_imports, fix_sym_links_noosfero, focus_search_field_theme, gov-user-refactoring, gov-user-refactoring-rails4, header_fix, institution_modal_on_rating, kalibro-conf-refactoring, kalibro-processor-package, lxc_settings, margin_fix, mezuro_cookbook, prezento, refactor_download_block, refactor_software_communities, refactor_software_for_sisp, register_page, release-process, release-process-v2, remove-unused-images, remove_broken_theme, remove_secondary_email_from_user, remove_sisp_buttons, removing_super_archives_email, review_message, scope2method, signals_user_noosfero, sisp_catalog_header, sisp_colab_config, sisp_dev, sisp_dev_master, sisp_simple_version, software_as_organization, software_catalog_style_fix, software_communities_html_refactor, software_infos_api, spb_minimal_env, spb_to_rails4, spec_refactor, stable-4.1, stable-4.2, stable-4.x, temp_soft_comm_refactoring, theme_header, theme_javascript_refactory, thread_dropdown, thread_page, update_search_by_categories, update_software_api, update_softwares_boxes

Fixing footer

Signed-off-by: Alexandre Barbosa <alexandreab@live.com>
Signed-off-by: Carlos Oliveira <carlospecter@gmail.com>
Signed-off-by: Peter Lima <peterlima@gmail.com>
colab_spb_theme/static/css/footer.css
... ... @@ -52,7 +52,7 @@ footer #doormat-container dt {
52 52 font-family: "open_sansbold", Arial, Helvetica, sans-serif;
53 53 }
54 54  
55   -footer #doormat-container dtfooter ,
  55 +footer #doormat-container dt,
56 56 footer #doormat-container dd {
57 57 padding-left: 10px;
58 58 margin-bottom: 4px;
... ... @@ -76,14 +76,34 @@ footer #doormat-container .doormatColumn {
76 76 text-align: left;
77 77 }
78 78  
79   -
80   -footer #footer .footer-logos {
  79 +#footer .footer-logos {
81 80 margin: 0 0 -20px;
82 81 padding: 1.6em 0;
83 82 max-width: 100%;
84 83 background: #0041B1;
85 84 }
86 85  
  86 +#footer .footer-logos div {
  87 + width: 960px;
  88 + margin: auto;
  89 + overflow: auto;
  90 +}
  91 +
  92 +#footer .footer-logos div .logo-acesso-footer {
  93 + background-image: url("../img/acesso-a-informacao.png");
  94 + float: left;
  95 + width: 107px;
  96 + height: 49px;
  97 +}
  98 +
  99 +
  100 +#footer .footer-logos div .logo-brasil-footer {
  101 + background-image: url("../img/brasil.png");
  102 + float: right;
  103 + width: 153px;
  104 + height: 48px;
  105 + }
  106 +
87 107 footer #extra-footer p {
88 108 margin: 1em auto;
89 109 max-width: 960px;
... ... @@ -110,6 +130,6 @@ footer .go-top i {
110 130 font-size: 12px;
111 131 }
112 132  
113   -html footer div#wrapper-footer-brasil {
  133 +html footer div#wrap-footer-brasil {
114 134 padding: 0;
115 135 }
... ...
colab_spb_theme/templates/footer.html
... ... @@ -77,14 +77,32 @@
77 77 </div>
78 78 </div>
79 79 <div class="clear"></div>
80   - <div id="footer-brasil" class="footer-logos">
  80 + <!-- <div id="footer-brasil" class="footer-logos">
81 81 <div>
82 82 <a href="http://www.acessoainformacao.gov.br/" class="logo-acesso">
83 83 <img src="{% static 'img/acesso-a-informacao.png' %}" alt="Acesso a Informação"></a>
84 84 <a href="http://www.brasil.gov.br/" class="logo-brasil">
85 85 <img src="{% static 'img/brasil.png' %}" alt="Brasil - Governo Federal"></a>
86 86 </div>
87   - </div>
  87 + </div> -->
  88 + <div class="footer-logos">
  89 +
  90 +
  91 + <div>
  92 +
  93 + <a href="http://www.acessoainformacao.gov.br/">
  94 + <span class="logo-acesso-footer"></span>
  95 + </a>
  96 +
  97 +
  98 + <a href="http://www.brasil.gov.br/">
  99 + <span class="logo-brasil-footer"></span>
  100 + </a>
  101 +
  102 +
  103 + </div>
  104 +
  105 + </div>
88 106 </div>
89 107 <div id="extra-footer">
90 108 <p>
... ...