You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by be...@apache.org on 2015/09/28 22:12:58 UTC

fauxton commit: updated refs/heads/master to b43dd5c

Repository: couchdb-fauxton
Updated Branches:
  refs/heads/master 010557ecf -> b43dd5c39


Layout CSS fixes

This fixes a small problem with IE10 and Safari where the right
header isn't properly positioned. To see the error just load the
Databases page in one of those browsers in current master.


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

Branch: refs/heads/master
Commit: b43dd5c39d4117f43ec66b1c4687c5f34092d8bb
Parents: 010557e
Author: Ben Keen <be...@gmail.com>
Authored: Mon Sep 28 12:32:49 2015 -0700
Committer: Ben Keen <be...@gmail.com>
Committed: Mon Sep 28 12:32:49 2015 -0700

----------------------------------------------------------------------
 assets/less/fauxton.less | 4 ----
 assets/less/layouts.less | 3 ++-
 2 files changed, 2 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/blob/b43dd5c3/assets/less/fauxton.less
----------------------------------------------------------------------
diff --git a/assets/less/fauxton.less b/assets/less/fauxton.less
index c56d7dd..9446f61 100644
--- a/assets/less/fauxton.less
+++ b/assets/less/fauxton.less
@@ -427,10 +427,6 @@ body #dashboard .two-panel-header {
   }
 }
 
-#right-header {
-  float: right;
-}
-
 .with-sidebar {
   #breadcrumbs {
     border-right: 1px solid @grayLight;

http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/blob/b43dd5c3/assets/less/layouts.less
----------------------------------------------------------------------
diff --git a/assets/less/layouts.less b/assets/less/layouts.less
index e93409e..d51ae1d 100644
--- a/assets/less/layouts.less
+++ b/assets/less/layouts.less
@@ -70,7 +70,8 @@ body #dashboard .flex-body {
     float: none;
   }
   #right-header {
-    /* TODO. How come .flex(0 0 inherit) is invalid? */
+    -ms-flex-preferred-size: auto;
+    -webkit-flex: 0 0 auto;
     flex-grow: 0;
     flex-shrink: 0;
     flex-basis: inherit;