Return-Path: X-Original-To: apmail-couchdb-dev-archive@www.apache.org Delivered-To: apmail-couchdb-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 38CA811104 for ; Wed, 27 Aug 2014 16:22:04 +0000 (UTC) Received: (qmail 35367 invoked by uid 500); 27 Aug 2014 16:22:03 -0000 Delivered-To: apmail-couchdb-dev-archive@couchdb.apache.org Received: (qmail 35311 invoked by uid 500); 27 Aug 2014 16:22:03 -0000 Mailing-List: contact dev-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 dev@couchdb.apache.org Received: (qmail 35300 invoked by uid 99); 27 Aug 2014 16:22:03 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 27 Aug 2014 16:22:03 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 36D3D9CBC1D; Wed, 27 Aug 2014 16:22:03 +0000 (UTC) From: robertkowalski To: dev@couchdb.apache.org Reply-To: dev@couchdb.apache.org References: In-Reply-To: Subject: [GitHub] couchdb-fauxton pull request: New Database layout Content-Type: text/plain Message-Id: <20140827162203.36D3D9CBC1D@tyr.zones.apache.org> Date: Wed, 27 Aug 2014 16:22:03 +0000 (UTC) Github user robertkowalski commented on a diff in the pull request: https://github.com/apache/couchdb-fauxton/pull/45#discussion_r16786544 --- Diff: assets/less/fauxton.less --- @@ -1043,3 +960,360 @@ div.add-dropdown { font-size: 16px; } } + + +//----templates// + +/* +--------------------------------------------------- + REUSEABLE SHADOW BORDER +--------------------------------------------------- +*/ + +.left-shadow-border{ + border-left: 1px solid #999; + .box-shadow(-6px 0 rgba(0, 0, 0, 0.1)); +} + +.bottom-shadow-border{ + border-bottom: 1px solid #999; + .box-shadow(0px 6px 0 0 rgba(0, 0, 0, 0.1)); +} + + +#right-content, +#dashboard-lower-content{ + .view { + //background-color:#A8A1A1; + } +} + +#dashboard-content{ + padding-left: 15px; + padding-top: 20px; + + &.row-fluid, + &.window-resizeable{ + /*remove gutter without rewriting variable*/ + margin-left: 0px; + } + .one-pane &{ + //margin-top:60px; + //padding-bottom:60px; + } + .with-sidebar &{ + .left-shadow-border; + border-right: 1px solid #999; + width: auto; + padding: 0px; + bottom: 0px; + top: 60px; + position: fixed; + overflow-x: hidden; + overflow-y: auto; + left: @sidebarWidth+@navWidth; + right: 0; + .box-sizing(border-box); + .closeMenu & { + left: @sidebarWidth+@collapsedNavWidth; + } + } + > div.inner { + display: block; + } +} + +#global-notifications{ + .with-sidebar & { + left: @sidebarWidth+@navWidth; + .closeMenu & { + left: @sidebarWidth+@collapsedNavWidth; + } + } +} + +#right-content{ + .two-pane &{ + .view { + padding: 0 20px 40px; + } + border-left: 1px solid #999; + .box-shadow(-6px 0 rgba(0, 0, 0, 0.1)); + } +} + +//---header--// +/* Licensed under the Apache License, Version 2.0 (the "License"); you may not --- End diff -- I think we already have a license header on the top --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastructure@apache.org or file a JIRA ticket with INFRA. ---