You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ga...@apache.org on 2016/08/15 06:58:51 UTC

fauxton commit: updated refs/heads/master to 2f9df63

Repository: couchdb-fauxton
Updated Branches:
  refs/heads/master 5aeb8c43e -> 2f9df630e


Clean up version data css in nav footer


Project: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/commit/2f9df630
Tree: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/tree/2f9df630
Diff: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/diff/2f9df630

Branch: refs/heads/master
Commit: 2f9df630ea514a72021e7c15e0dee07433a7b529
Parents: 5aeb8c4
Author: michellephung <mi...@gmail.com>
Authored: Sat Aug 13 22:02:36 2016 -0400
Committer: michellephung <mi...@gmail.com>
Committed: Sat Aug 13 23:02:09 2016 -0400

----------------------------------------------------------------------
 .../fauxton/navigation/components.react.jsx     |  7 +++---
 assets/less/templates.less                      | 23 +++++++++++---------
 2 files changed, 16 insertions(+), 14 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/blob/2f9df630/app/addons/fauxton/navigation/components.react.jsx
----------------------------------------------------------------------
diff --git a/app/addons/fauxton/navigation/components.react.jsx b/app/addons/fauxton/navigation/components.react.jsx
index ed29b21..ddf338d 100644
--- a/app/addons/fauxton/navigation/components.react.jsx
+++ b/app/addons/fauxton/navigation/components.react.jsx
@@ -24,10 +24,9 @@ const Footer = React.createClass({
     if (!version) { return null; }
     return (
       <div className="version-footer">
-        Fauxton on
-        <a href="http://couchdb.apache.org/"> Apache CouchDB</a>
-        <br/>
-        v. {version}
+        Fauxton on {" "}
+        <a href="http://couchdb.apache.org/">Apache CouchDB</a>
+        {" "} v. {version}
       </div>
     );
   }

http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/blob/2f9df630/assets/less/templates.less
----------------------------------------------------------------------
diff --git a/assets/less/templates.less b/assets/less/templates.less
index d4e71af..0fc734e 100644
--- a/assets/less/templates.less
+++ b/assets/less/templates.less
@@ -67,7 +67,8 @@
   .version-footer {
     color: #fff;
     font-size: 10px;
-    padding-left: 10px;
+    text-align: center;
+    background-color: @brown;
   }
   .closeMenu & {
     .version-footer {
@@ -104,7 +105,7 @@
     }
     .bottom-container {
       position: fixed;
-      bottom: 0;
+      bottom: 10px;
       .brand {
         .box-sizing(content-box);
         .hide-text;
@@ -116,7 +117,7 @@
         background: #3a2c2b;
         .icon {
           .box-sizing(content-box);
-          background: url(../img/CouchDB-negative-logo.png) no-repeat 28px 0px;
+          background: url(../img/CouchDB-negative-logo.png) no-repeat 23px 0px;
           background-size: 150px;
           display: block;
           height: 100%;
@@ -137,18 +138,20 @@
       #footer-nav-links {
         width: 100%;
         margin: 0;
-        background: #3a2c2b;
+        background: @brown;
+
         li {
+          width: 100%;
+          text-align: center;
+
           a {
-            font-size: 12px;
+            font-size: 10px;
             color: @linkColor;
-            padding: 0px 0px 15px 85px;
+            padding: 0px;
             text-shadow: none;
-
-            .closeMenu & {
-              padding: 0px 0px 15px 15px;
-            }
+            width: 100%;
           }
+
           &.active, &:hover {
             a {
               text-decoration: underline;