You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by kx...@apache.org on 2014/03/27 13:51:53 UTC

svn commit: r1582282 - in /couchdb/site: index.html style/master.css style/master.less

Author: kxepal
Date: Thu Mar 27 12:51:53 2014
New Revision: 1582282

URL: http://svn.apache.org/r1582282
Log:
Use <small> instead of <label> for version info

label is a form element and isn't applicable there


Modified:
    couchdb/site/index.html
    couchdb/site/style/master.css
    couchdb/site/style/master.less

Modified: couchdb/site/index.html
URL: http://svn.apache.org/viewvc/couchdb/site/index.html?rev=1582282&r1=1582281&r2=1582282&view=diff
==============================================================================
--- couchdb/site/index.html (original)
+++ couchdb/site/index.html Thu Mar 27 12:51:53 2014
@@ -82,7 +82,7 @@ This fabulous linen texture was integrat
         </ul>
 
         <div class="button-container">
-            <a class="button" href="#download">DOWNLOAD<label>Version 1.5.0</label></a>
+            <a class="button" href="#download">DOWNLOAD<small>Version 1.5.0</small></a>
         </div>
 
     </div>

Modified: couchdb/site/style/master.css
URL: http://svn.apache.org/viewvc/couchdb/site/style/master.css?rev=1582282&r1=1582281&r2=1582282&view=diff
==============================================================================
--- couchdb/site/style/master.css (original)
+++ couchdb/site/style/master.css Thu Mar 27 12:51:53 2014
@@ -54,10 +54,12 @@ strong {
   font-family: 'HelveticaNeue-Bold', Helvetica, Arial, sans-serif;
   font-weight: 900;
 }
+small,
 label {
   font-family: 'HelveticaNeue', Helvetica, Arial, sans-serif;
   font-weight: 400;
   font-size: 12px;
+  display: block;
 }
 button {
   font-size: 17px;

Modified: couchdb/site/style/master.less
URL: http://svn.apache.org/viewvc/couchdb/site/style/master.less?rev=1582282&r1=1582281&r2=1582282&view=diff
==============================================================================
--- couchdb/site/style/master.less (original)
+++ couchdb/site/style/master.less Thu Mar 27 12:51:53 2014
@@ -70,7 +70,7 @@ b, strong {
 	font-weight: 900;
 }
 
-label {
+small, label {
 	font-family: 'HelveticaNeue', Helvetica, Arial, sans-serif;
 	font-weight: 400;
 	font-size: 12px;