Return-Path: X-Original-To: apmail-cloudstack-commits-archive@www.apache.org Delivered-To: apmail-cloudstack-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 2F31610E32 for ; Thu, 3 Oct 2013 22:17:23 +0000 (UTC) Received: (qmail 50116 invoked by uid 500); 3 Oct 2013 22:17:23 -0000 Delivered-To: apmail-cloudstack-commits-archive@cloudstack.apache.org Received: (qmail 50078 invoked by uid 500); 3 Oct 2013 22:17:23 -0000 Mailing-List: contact commits-help@cloudstack.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cloudstack.apache.org Delivered-To: mailing list commits@cloudstack.apache.org Received: (qmail 50069 invoked by uid 99); 3 Oct 2013 22:17:23 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 03 Oct 2013 22:17:23 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id C45E890F06B; Thu, 3 Oct 2013 22:17:22 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: bfederle@apache.org To: commits@cloudstack.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: git commit: updated refs/heads/ui-restyle to 9c4ef72 Date: Thu, 3 Oct 2013 22:17:22 +0000 (UTC) Updated Branches: refs/heads/ui-restyle d35eb7e64 -> 9c4ef7280 Detail view: Add tabbed appearance Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/9c4ef728 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/9c4ef728 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/9c4ef728 Branch: refs/heads/ui-restyle Commit: 9c4ef72803de06cf6d44543234cd6886d472aa95 Parents: d35eb7e Author: Brian Federle Authored: Thu Oct 3 15:17:09 2013 -0700 Committer: Brian Federle Committed: Thu Oct 3 15:17:09 2013 -0700 ---------------------------------------------------------------------- ui/stylesheets/cloudstack.scss | 18 ++++++++++++++ ui/stylesheets/csui/_csui.scss | 1 + ui/stylesheets/csui/_details.scss | 45 ++++++++++++++++++++++++++++++++++ 3 files changed, 64 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/9c4ef728/ui/stylesheets/cloudstack.scss ---------------------------------------------------------------------- diff --git a/ui/stylesheets/cloudstack.scss b/ui/stylesheets/cloudstack.scss index b8b5ee0..43d4604c 100644 --- a/ui/stylesheets/cloudstack.scss +++ b/ui/stylesheets/cloudstack.scss @@ -225,6 +225,24 @@ body { max-height: 85%; } +.detail-view { + .ui-tabs-nav { + @include csui-tabs; + + li.ui-state-active { + @include csui-tab-active; + } + } + + .detail-group { + @include csui-details; + } + + .ui-tabs-hide { + display: none; + } +} + // Panel toolbars .toolbar { @include csui-toolbar; http://git-wip-us.apache.org/repos/asf/cloudstack/blob/9c4ef728/ui/stylesheets/csui/_csui.scss ---------------------------------------------------------------------- diff --git a/ui/stylesheets/csui/_csui.scss b/ui/stylesheets/csui/_csui.scss index b3584c3..508d938 100644 --- a/ui/stylesheets/csui/_csui.scss +++ b/ui/stylesheets/csui/_csui.scss @@ -56,5 +56,6 @@ html, body { @import "asset"; @import "dialog"; @import "list"; +@import "details"; @import "toolbar"; @import "breadcrumbs"; \ No newline at end of file http://git-wip-us.apache.org/repos/asf/cloudstack/blob/9c4ef728/ui/stylesheets/csui/_details.scss ---------------------------------------------------------------------- diff --git a/ui/stylesheets/csui/_details.scss b/ui/stylesheets/csui/_details.scss new file mode 100644 index 0000000..50ea9c9 --- /dev/null +++ b/ui/stylesheets/csui/_details.scss @@ -0,0 +1,45 @@ +// Licensed to the Apache Software Foundation (ASF) under one +// or more contributor license agreements. See the NOTICE file +// distributed with this work for additional information +// regarding copyright ownership. The ASF licenses this file +// to you under the Apache License, Version 2.0 (the +// "License"); you may not use this file except in compliance +// with the License. You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, +// software distributed under the License is distributed on an +// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +// KIND, either express or implied. See the License for the +// specific language governing permissions and limitations +// under the License. + +@mixin csui-tab { + float: left; + list-style: none; + padding: 15px 40px; + margin: 0px; +} + +@mixin csui-tab-active { + background: lighten(#ccc, 10%); + border-radius: 8px 8px 0 0; + margin: 0; +} + +@mixin csui-tabs { + @include row; + + margin: 0; + padding: 0; + + li { + @include csui-tab; + } +} + +@mixin csui-details { + background: lighten(#ccc, 10%); + padding: 15px; +} \ No newline at end of file