Commit
0fb8e6a1b3ff4fa0543049bfe9812c057662312e
Exists in
master
and in
35 other branches
add_sisp_to_chef, add_super_archives_plugin, automates_core_packing, changes_in_buttons_on_content_panel, colab_automated_login, colab_spb_plugin_recipe, colab_widgets_settings, disable_email_dev, fix_breadcrumbs_position, fix_categories_software_link, fix_edit_institution, fix_get_license_info, fix_gitlab_assets_permission, fix_list_style_inside_article, fix_list_style_on_folder_elements, fix_merge_request_url, fix_no_license, fix_software_communities_translations, fix_software_communities_unit_test, fix_style_create_institution_admin_panel, fix_sym_links_noosfero, lxc_settings, mezuro_cookbook, refactor_download_block, remove_broken_theme, remove_sisp_buttons, sisp_catalog_header, software_communities_html_refactor, software_infos_api, spb_to_rails4, stable-4.1, stable-4.2, theme_header, theme_javascript_refactory, update_search_by_categories
Merge branch 'fix_hover_button_whitening' into 'master'
Fix hover button whitening
In 'https://softwarepublico.gov.br/gitlab/softwarepublico/softwarepublico/blob/master/src/colab-spb-theme-plugin/colab_spb_theme/static/css/search.css', the rule '.btn:hover' is too generic, it's affecting Gitlab's 'HTTP' button (or 'SSH' when HTTP is active) when hovering the button.
That button (it's more of a link) is disappearing because its background is white as well, please check it here: https://softwarepublico.gov.br/gitlab/softwarepublico/softwarepublico
It might affect other 'btn', since this is a bootstrap thing.
See merge request !125
| @@ -58,7 +58,7 @@ |
| @@ -58,7 +58,7 @@ |
58
| text-decoration: none; |
58
| text-decoration: none; |
59
| } |
59
| } |
60
| |
60
| |
61
| -.btn:hover { |
61
| +colab-search-form .btn:hover { |
62
| color: white; |
62
| color: white; |
63
| } |
63
| } |
64
| |
64
| |