Commit e7870d319e09ade5f4e002b4718fe3b66608b813

Authored by Melissa Wen
2 parents 5bc7a390 96369589

Merge branch 'fix_html_structure' into 'master'

Fix html structure

Relacionado com a issue #707

See merge request !200
src/noosfero-spb/noosfero-spb-theme/css/home-page.css
... ... @@ -66,8 +66,8 @@
66 66 border-radius: 4px;
67 67 }
68 68  
69   -.controller-environment_design #content #catalogo-software-search h1,
70   -.action-home-index #content #catalogo-software-search h1{
  69 +.controller-environment_design #content #catalogo-software-search h2,
  70 +.action-home-index #content #catalogo-software-search h2 {
71 71 margin: 0px 15px 10px 15px;
72 72 border-bottom: none;
73 73 padding: 10px 0px 0px 0px;
... ...
src/noosfero-spb/noosfero-spb-theme/css/software-pages.css
... ... @@ -786,7 +786,7 @@
786 786 text-align: left;
787 787 }
788 788  
789   -.new-software-form .step-explanation span{
  789 +.action-profile_editor-edit_software_community #content .main-block .step-explanation span {
790 790 font-size: 14px;
791 791 }
792 792  
... ...
src/noosfero-spb/software_communities/views/blocks/search_catalog.html.erb
1 1 <div id="catalogo-software-search">
2   - <h1><%= _("Catalog of Software") %></h1>
  2 + <h2><%= _("Catalog of Software") %></h2>
3 3 <%= form_tag(controller: "search", action: block.search_catalog, method: "get") do %>
4 4 <%= text_field_tag(:query, nil, :placeholder => "e.g: cacic, e-cidade, gsan, etc", :class=>"searchField", :id=>"search-Gadget") %>
5 5 <%= submit_tag(_("Search"), {:class=>"searchButton-catalog"})%>
... ...
src/noosfero-spb/software_communities/views/profile_editor/edit_software_community.html.erb
... ... @@ -4,9 +4,9 @@
4 4 <h1><%= _('Configure Software Community') %></h1>
5 5  
6 6 <div class='step-explanation'>
7   - <spam>
  7 + <span>
8 8 <%= _('Set the basic settings of the software associated community') %>
9   - </spam>
  9 + </span>
10 10 </div>
11 11  
12 12 <%= error_messages_for :profile_data %>
... ...