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/11/01 06:36:54 UTC

fauxton commit: updated refs/heads/master to e118d93

Repository: couchdb-fauxton
Updated Branches:
  refs/heads/master 8b7e186bf -> e118d93b2


fix flaky nw test

turns out the dom element in the sidebar was hidden by a parent
dom element.

see: https://cloudup.com/ch2kUJzrmAy


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

Branch: refs/heads/master
Commit: e118d93b285fb9a17a2a4623142ded7088ed31ee
Parents: 8b7e186
Author: Robert Kowalski <ro...@apache.org>
Authored: Mon Oct 31 18:36:02 2016 +0100
Committer: Robert Kowalski <ro...@apache.org>
Committed: Mon Oct 31 19:16:17 2016 +0100

----------------------------------------------------------------------
 app/addons/documents/assets/less/sidenav.less                | 8 ++++++++
 .../documents/tests/nightwatch/editDocumentsFromView.js      | 1 +
 2 files changed, 9 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/blob/e118d93b/app/addons/documents/assets/less/sidenav.less
----------------------------------------------------------------------
diff --git a/app/addons/documents/assets/less/sidenav.less b/app/addons/documents/assets/less/sidenav.less
index fb46c22..82b6a63 100644
--- a/app/addons/documents/assets/less/sidenav.less
+++ b/app/addons/documents/assets/less/sidenav.less
@@ -24,6 +24,10 @@
     text-decoration: none;
   }
 
+  .nav-list {
+    padding-right: 0px;
+  }
+
   // selected nav item row styles
   .nav-list .active > a {
     text-shadow: none;
@@ -34,6 +38,10 @@
     }
   }
 
+  .dropdown {
+    margin-right: 15px;
+  }
+
   .dropdown-toggle:hover {
     color: @linkColor;
   }

http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/blob/e118d93b/app/addons/documents/tests/nightwatch/editDocumentsFromView.js
----------------------------------------------------------------------
diff --git a/app/addons/documents/tests/nightwatch/editDocumentsFromView.js b/app/addons/documents/tests/nightwatch/editDocumentsFromView.js
index 06fa981..ae320c1 100644
--- a/app/addons/documents/tests/nightwatch/editDocumentsFromView.js
+++ b/app/addons/documents/tests/nightwatch/editDocumentsFromView.js
@@ -30,6 +30,7 @@ module.exports = {
     client
       .createDocument(newDocumentName, newDatabaseName, ddocContents)
       .populateDatabase(newDatabaseName)
+      .checkForDocumentCreated(newDocumentName)
 
       .loginToGUI()