Repository: couchdb-fauxton Updated Branches: refs/heads/master f4096ce16 -> 47ddf4c01
Change all scrollbars to show up only if content is clipped overflow: scroll, shows a scrollbar regardless if the content needs scrolling, overflow:auto only shows a scrollbar when the content is clipped and the scrollbar is needed Project: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/commit/47ddf4c0 Tree: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/tree/47ddf4c0 Diff: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/diff/47ddf4c0 Branch: refs/heads/master Commit: 47ddf4c01f3c0f3cb943a1204f573d1729c5cd99 Parents: f4096ce Author: [email protected] <[email protected]> Authored: Thu Jul 2 16:59:30 2015 -0400 Committer: [email protected] <[email protected]> Committed: Thu Jul 23 14:49:07 2015 -0400 ---------------------------------------------------------------------- assets/less/fauxton.less | 2 +- assets/less/templates.less | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/blob/47ddf4c0/assets/less/fauxton.less ---------------------------------------------------------------------- diff --git a/assets/less/fauxton.less b/assets/less/fauxton.less index 6ee3145..44378e2 100644 --- a/assets/less/fauxton.less +++ b/assets/less/fauxton.less @@ -234,7 +234,7 @@ table.databases { #dashboard-content .scrollable { height: auto; - overflow-y: scroll; + overflow-y: auto; overflow-x: hidden; width: 100%; position: absolute; http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/blob/47ddf4c0/assets/less/templates.less ---------------------------------------------------------------------- diff --git a/assets/less/templates.less b/assets/less/templates.less index 7b3e887..3f87b11 100644 --- a/assets/less/templates.less +++ b/assets/less/templates.less @@ -40,7 +40,7 @@ @media screen and (max-height: 600px) { #primary-navbar { - overflow-y: scroll; + overflow-y: auto; } } @@ -329,7 +329,7 @@ with_tabs_sidebar.html .scrollable { height: auto; - overflow-y: scroll; + overflow-y: auto; overflow-x: hidden; width: 100%; position: absolute;
