add fluid grid for sidebar views
Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/29950879 Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/29950879 Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/29950879 Branch: refs/heads/fauxton Commit: 29950879aba4bfb6bccfa2e23b7e12cc23c46b5a Parents: 44232cc Author: Garren Smith <[email protected]> Authored: Mon Mar 11 14:49:28 2013 +0200 Committer: Garren Smith <[email protected]> Committed: Mon Mar 11 14:49:28 2013 +0200 ---------------------------------------------------------------------- src/fauxton/app/templates/databases/sidebar.html | 6 ++++-- .../app/templates/layouts/with_sidebar.html | 10 +++++----- .../app/templates/layouts/with_tabs_sidebar.html | 2 +- 3 files changed, 10 insertions(+), 8 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb/blob/29950879/src/fauxton/app/templates/databases/sidebar.html ---------------------------------------------------------------------- diff --git a/src/fauxton/app/templates/databases/sidebar.html b/src/fauxton/app/templates/databases/sidebar.html index 161d4a5..af4c438 100644 --- a/src/fauxton/app/templates/databases/sidebar.html +++ b/src/fauxton/app/templates/databases/sidebar.html @@ -12,7 +12,9 @@ License for the specific language governing permissions and limitations under the License. --> -<a class="btn btn-small new span4" id="new" style="width: 93%; margin-left: 0"><i class="icon-plus"></i> New database</a> +<div class="row-fluid"> +<a class="btn new span4" id="new"><i class="icon-plus"></i> New database</a> +</div> <hr> <ul class="nav nav-list"> <!-- <li class="nav-header">Database types</li> --> @@ -23,4 +25,4 @@ the License. <div class="well"> <p>Here be news.</p> </div> -<img src="img/couchdblogo.png"/> \ No newline at end of file +<img src="img/couchdblogo.png"/> http://git-wip-us.apache.org/repos/asf/couchdb/blob/29950879/src/fauxton/app/templates/layouts/with_sidebar.html ---------------------------------------------------------------------- diff --git a/src/fauxton/app/templates/layouts/with_sidebar.html b/src/fauxton/app/templates/layouts/with_sidebar.html index c28dac4..5deb4d1 100644 --- a/src/fauxton/app/templates/layouts/with_sidebar.html +++ b/src/fauxton/app/templates/layouts/with_sidebar.html @@ -14,13 +14,13 @@ the License. <div id="primary-navbar"></div> -<div id="dashboard" class="container"> - <div class="row"> +<div id="dashboard" class="container-fluid"> + <div class="row-fluid"> <div id="breadcrumbs" class="span12"></div> </div> - <div class="row"> - <div id="sidebar-content" class="sidebar span4"></div> - <div id="dashboard-content" class="list span8 pull-right"></div> + <div class="row-fluid"> + <div id="sidebar-content" class="sidebar span3"></div> + <div id="dashboard-content" class="list span9"></div> </div> </div> http://git-wip-us.apache.org/repos/asf/couchdb/blob/29950879/src/fauxton/app/templates/layouts/with_tabs_sidebar.html ---------------------------------------------------------------------- diff --git a/src/fauxton/app/templates/layouts/with_tabs_sidebar.html b/src/fauxton/app/templates/layouts/with_tabs_sidebar.html index c486a69..f78832f 100644 --- a/src/fauxton/app/templates/layouts/with_tabs_sidebar.html +++ b/src/fauxton/app/templates/layouts/with_tabs_sidebar.html @@ -13,7 +13,7 @@ the License. --> <div id="primary-navbar"></div> -<div id="dashboard" class="container"> +<div id="dashboard" class="container-fluid"> <div class="row-fluid"> <div id="breadcrumbs" class="row-fluid"></div>
