Commit f00bbd4e58103023f3a98f864c3d7147337331cc

Authored by Melissa Wen
1 parent 872f06f2
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

Adding style to categories and tags elements and back to parent page button

Showing 1 changed file with 45 additions and 7 deletions   Show diff stats
css/article-page.css
... ... @@ -28,6 +28,15 @@
28 28 line-height: 21px;
29 29 }
30 30  
  31 +#content #article-parent a.button.with-text{
  32 + background-color: #3E67B1;
  33 + color: #FFF;
  34 +}
  35 +
  36 +#content #article-parent a.button.with-text:hover{
  37 + background-color: #5E82C6;
  38 +}
  39 +
31 40 /* Need a dev solution - blog internal pages*/
32 41  
33 42 #article-header .preview{
... ... @@ -76,27 +85,34 @@
76 85 }
77 86  
78 87 #content .main-block .article-body #article-actions:last-child{
79   - padding-top: 10px;
80   - border-top: 4px solid #2C4B6B;
  88 + margin: 0;
  89 + padding: 10px 0;
  90 + border-top: 1px solid #D3D6DE;
81 91 }
82 92  
83 93 /*** Categories ***/
84 94  
  95 +#content .main-block #article-cat{
  96 + border-top: 4px solid #2C4B6B;
  97 + border-bottom: 1px solid #D3D6DE;
  98 +}
  99 +
85 100 #content .main-block #article-cat h4 {
86 101 float: left;
87   - margin: 13px 10px 10px 0;
  102 + margin: 12px 10px 10px 0;
88 103 min-height: 0px;
  104 + color: #5E82C6;
89 105 font-family: Arial;
90   - font-size: 1.3em;
  106 + font-size: 12px;
91 107 font-weight: 300;
92 108 text-decoration: initial;
93 109 }
94 110  
95 111 #content .main-block #article-cat a{
96   - float: left;
  112 + display: inline-block;
97 113 margin: 10px 10px 10px 0;
98 114 padding: 3px 10px;
99   - color: #3E67B1;
  115 + color: #5E82C6;
100 116 background-color: #ECEDF1;
101 117 border: 1px solid #D3D6DE;
102 118 border-radius: 3px;
... ... @@ -104,7 +120,29 @@
104 120 text-decoration: initial;
105 121 }
106 122  
107   -/*** end of categories ***/
  123 +/*** Tags ***/
  124 +
  125 +#content .main-block #article-tags{
  126 + width: 100%;
  127 + color: #5E82C6;
  128 + border-bottom: 1px solid #D3D6DE;
  129 + font-family: Arial;
  130 + font-size: 12px;
  131 + font-weight: 300;
  132 + text-align: left;
  133 +}
  134 +
  135 +#content .main-block #article-tags a{
  136 + display: inline-block;
  137 + margin: 10px 10px 10px 0;
  138 + padding: 3px 10px;
  139 + color: #5E82C6;
  140 + background-color: #ECEDF1;
  141 + border: 1px solid #D3D6DE;
  142 + border-radius: 3px;
  143 + font-size: 12px;
  144 + text-decoration: initial;
  145 +}
108 146  
109 147 /*** Site Map page ***/
110 148  
... ...