Commit 2dffabc417a526ec77d29c4de331d704c082ee8b
Exists in
master
and in
36 other branches
Merge branch 'software_homepage_style_fixes' into 'master'
Software homepage style fixes * Add a space on software platform description. * Fix software categories inline position. See merge request !134
Showing
2 changed files
with
6 additions
and
4 deletions
Show diff stats
src/noosfero-spb/noosfero-spb-theme/css/software-pages.css
... | ... | @@ -227,8 +227,8 @@ |
227 | 227 | } |
228 | 228 | |
229 | 229 | #content .box-1 .categories-and-tags-block .block-title{ |
230 | - display: inline-flex; | |
231 | - margin: 13px 10px 10px 0; | |
230 | + float: left; | |
231 | + margin: 13px 0px 10px 0; | |
232 | 232 | padding: 3px 0px; |
233 | 233 | background: none; |
234 | 234 | color: #5E82C6; |
... | ... | @@ -238,7 +238,9 @@ |
238 | 238 | } |
239 | 239 | |
240 | 240 | #content .box-1 .categories-and-tags-block .category_cloud{ |
241 | - margin: 13px 0 10px 0; | |
241 | + margin: 0px; | |
242 | + position: relative; | |
243 | + top: 7px; | |
242 | 244 | } |
243 | 245 | |
244 | 246 | #content .box-1 .categories-and-tags-block .category_cloud a{ | ... | ... |
src/noosfero-spb/software_communities/views/blocks/download.html.erb
... | ... | @@ -13,7 +13,7 @@ |
13 | 13 | </div> |
14 | 14 | <div class="download-info"> |
15 | 15 | <span class="download-name"><%= _("#{download[:name]}") %></span> |
16 | - <span class="download-platform"><%= _("Platform:") + _("#{download[:software_description]}") %> </span> | |
16 | + <span class="download-platform"><%= _("Platform: ") + _("#{download[:software_description]}") %> </span> | |
17 | 17 | <span class="min-requirements"><%= link_to _("Minimum Requirements"), download[:minimum_requirements] %></span> |
18 | 18 | </div> |
19 | 19 | </li> | ... | ... |