Commit 05025a11c8f5e75377290ce98976312b54b4d6cb

Authored by Álvaro Fernando Matos de Souza
1 parent 45b081d8
Exists in master and in 1 other branch mezuro_spb

Fix form for the softwares specific info - #821

src/noosfero-spb/noosfero-spb-theme/css/edition-pages.css
... ... @@ -326,6 +326,8 @@
326 326 font-size: 14px;
327 327 }
328 328  
  329 +.action-software_communities_plugin_myprofile-edit_software #content .main-content #especific-info h4,
  330 +.action-software_communities_plugin_myprofile-edit_software #content .main-content #especific-info form .formlabel,
329 331 .action-software_communities_plugin_myprofile-edit_software #content .main-content form .formlabel,
330 332 .action-software_communities_plugin_myprofile-edit_software #content .main-content #profile_change_picture_title label,
331 333 .action-software_communities_plugin_myprofile-new_software #content .main-content #profile_change_picture_title label,
... ... @@ -421,6 +423,10 @@ font-size: 10px;
421 423 margin-bottom: 20px;
422 424 }
423 425  
  426 +.action-software_communities_plugin_myprofile-edit_software #content .main-content #especific-info h4 {
  427 + margin-top: 20px;
  428 +}
  429 +
424 430 .action-software_communities_plugin_myprofile-edit_software #content .main-content #basic-info #profile_change_picture div {
425 431 margin: 0px;
426 432 }
... ... @@ -477,6 +483,10 @@ font-size: 10px;
477 483 text-decoration: none;
478 484 }
479 485  
  486 +.action-software_communities_plugin_myprofile-edit_software .main-content #especific-info {
  487 + color: #231f20
  488 +}
  489 +
480 490 /* new community form*/
481 491  
482 492 .action-memberships-new_community #content .main-block form input[type="text"] {
... ...
src/noosfero-spb/software_communities/views/software_communities_plugin_myprofile/_public_software_info.html.erb
... ... @@ -71,27 +71,19 @@
71 71 <%= render :partial => 'library_fields', :locals => {:object_name => 'community', :profile => @community, :libraries => @list_libraries } %>
72 72 </div>
73 73  
74   -<br />
75   -
76 74 <div id='operating_system_fields'>
77 75 <h4> <%= _("Operating Systems") %> </h4>
78 76  
79 77 <%= render :partial => 'operating_system_fields', :locals => {:object_name => 'community', :profile => @community, :operating_systems_fields => @list_operating_systems} %>
80 78 </div>
81   -<br />
82   -
83   -<br />
84 79 <div id='programming_languages_fields'>
85 80 <h4> <%= _("Programming languages") %> </h4>
86 81  
87 82 <%= render :partial => 'language_fields', :locals => { :object_name => 'community', :profile => @community, :languages => @list_languages } %>
88 83 </div>
89 84  
90   -<br />
91 85 <div id='database_fields'>
92 86 <h4> <%= _("Databases") %> </h4>
93 87  
94 88 <%= render :partial => 'database_fields', :locals => {:object_name => 'community', :profile => @community, :database => @list_databases } %>
95 89 </div>
96   -
97   -<br>
... ...