You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by ma...@apache.org on 2015/03/10 20:00:24 UTC

svn commit: r1665649 - /openoffice/ooo-site/trunk/content/download/boxed_download.js

Author: marcus
Date: Tue Mar 10 19:00:24 2015
New Revision: 1665649

URL: http://svn.apache.org/r1665649
Log:
Added a CSS class to the logos to get them aligned with the list items

Modified:
    openoffice/ooo-site/trunk/content/download/boxed_download.js

Modified: openoffice/ooo-site/trunk/content/download/boxed_download.js
URL: http://svn.apache.org/viewvc/openoffice/ooo-site/trunk/content/download/boxed_download.js?rev=1665649&r1=1665648&r2=1665649&view=diff
==============================================================================
--- openoffice/ooo-site/trunk/content/download/boxed_download.js (original)
+++ openoffice/ooo-site/trunk/content/download/boxed_download.js Tue Mar 10 19:00:24 2015
@@ -371,13 +371,13 @@ DL.createLogoSection = function() {
 
     // Sourceforge logo.
     + "<a href='" + l10n.dl_img_sourceforge_href + "' target='_blank' title='" + l10n.dl_img_sourceforge_title + "'>"
-      + "<img src='" + l10n.dl_img_sourceforge_src + "' width='160' height='34' alt='" + l10n.dl_img_sourceforge_alt + "' />"
+      + "<img class='sf_logo' src='" + l10n.dl_img_sourceforge_src + "' width='160' height='34' alt='" + l10n.dl_img_sourceforge_alt + "' />"
     + "</a>"
     + "<br /><br />"
 
     // W3C Validator logo.
     + "<a href='" + l10n.dl_img_w3c_href + "' target='_blank' title='" + l10n.dl_img_w3c_title + "'>"
-      + "<img src='" + l10n.dl_img_w3c_src + "' alt='" + l10n.dl_img_w3c_alt + "' />"
+      + "<img class='w3c_logo' src='" + l10n.dl_img_w3c_src + "' alt='" + l10n.dl_img_w3c_alt + "' />"
     + "</a>"
   + "</div>" );
   return;