Return-Path: X-Original-To: apmail-couchdb-commits-archive@www.apache.org Delivered-To: apmail-couchdb-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id B8CE919DAA for ; Mon, 7 Mar 2016 17:07:40 +0000 (UTC) Received: (qmail 36043 invoked by uid 500); 7 Mar 2016 17:07:40 -0000 Delivered-To: apmail-couchdb-commits-archive@couchdb.apache.org Received: (qmail 36002 invoked by uid 500); 7 Mar 2016 17:07:40 -0000 Mailing-List: contact commits-help@couchdb.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@couchdb.apache.org Delivered-To: mailing list commits@couchdb.apache.org Received: (qmail 35993 invoked by uid 99); 7 Mar 2016 17:07:40 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 07 Mar 2016 17:07:40 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 25D6DDFB8A; Mon, 7 Mar 2016 17:07:40 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: benkeen@apache.org To: commits@couchdb.apache.org Message-Id: <860f092cbdeb44558b04cb7189be82f1@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: fauxton commit: updated refs/heads/master to bcd091d Date: Mon, 7 Mar 2016 17:07:40 +0000 (UTC) Repository: couchdb-fauxton Updated Branches: refs/heads/master bede2f30b -> bcd091de9 Minor regression fixes Two small things: - "CouchDB" instead of "Couch DB" text on login page - the icons in the database top header menu were too large due to the recent cog->vertical ellipsis icon change. This fixes their size and spacing. Project: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/commit/bcd091de Tree: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/tree/bcd091de Diff: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/diff/bcd091de Branch: refs/heads/master Commit: bcd091de9feedfa2b056453d35ab02cc1c61d0db Parents: bede2f3 Author: Ben Keen Authored: Mon Mar 7 07:59:31 2016 -0800 Committer: Ben Keen Committed: Mon Mar 7 07:59:31 2016 -0800 ---------------------------------------------------------------------- app/addons/auth/routes.js | 2 +- assets/less/fauxton.less | 14 ++++++++++---- 2 files changed, 11 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/blob/bcd091de/app/addons/auth/routes.js ---------------------------------------------------------------------- diff --git a/app/addons/auth/routes.js b/app/addons/auth/routes.js index 1114ed1..fcd7ee2 100644 --- a/app/addons/auth/routes.js +++ b/app/addons/auth/routes.js @@ -39,7 +39,7 @@ function (app, FauxtonAPI, Auth, AuthActions, Components, ClusterActions) { }, login: function () { - this.crumbs = [{ name: 'Log In to Couch DB', link: "#" }]; + this.crumbs = [{ name: 'Log In to CouchDB', link: "#" }]; this.setComponent('#dashboard-content', Components.LoginForm, { urlBack: app.getParams().urlback }); }, http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/blob/bcd091de/assets/less/fauxton.less ---------------------------------------------------------------------- diff --git a/assets/less/fauxton.less b/assets/less/fauxton.less index 05ab404..0699495 100644 --- a/assets/less/fauxton.less +++ b/assets/less/fauxton.less @@ -453,17 +453,18 @@ body #dashboard .flex-body#breadcrumbs { .dropdown-toggle { color: #666666; &:before { - margin-top: 6px; margin: 6px -5px 0 6px; } } - a { - padding: 10px; - text-decoration: none; + .fonticon-vertical-ellipsis { &:before { font-size: 20px; } } + a { + padding: 10px; + text-decoration: none; + } .dropdown { height: @collapsedNavWidth; @@ -473,6 +474,11 @@ body #dashboard .flex-body#breadcrumbs { .dropdown-menu { left: -115px; top: 48px; + + a.icon:before { + font-size: 14px; + padding-right: 7px; + } } } }