You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by bf...@apache.org on 2013/10/08 22:56:44 UTC

[3/6] git commit: updated refs/heads/ui-restyle to c56e59f

Tabs: Make all jquery UI tabs apply appearance by default


Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/62551a93
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/62551a93
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/62551a93

Branch: refs/heads/ui-restyle
Commit: 62551a93b5dbe2b8d0eedf4355165d1ba590e894
Parents: 5cb2ed3
Author: Brian Federle <br...@citrix.com>
Authored: Tue Oct 8 13:38:06 2013 -0700
Committer: Brian Federle <br...@citrix.com>
Committed: Tue Oct 8 13:38:06 2013 -0700

----------------------------------------------------------------------
 ui/stylesheets/csui/_details.scss | 32 ++++++++++++++++++++++++++++++++
 1 file changed, 32 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/62551a93/ui/stylesheets/csui/_details.scss
----------------------------------------------------------------------
diff --git a/ui/stylesheets/csui/_details.scss b/ui/stylesheets/csui/_details.scss
index b0ee36c..2ef9417 100644
--- a/ui/stylesheets/csui/_details.scss
+++ b/ui/stylesheets/csui/_details.scss
@@ -20,12 +20,25 @@
     list-style: none;
     padding: 15px 40px;
     margin: 0px;
+
+    a {
+        &:hover {
+            color: black;
+            text-decoration: none;
+        }
+    }
 }
 
 @mixin csui-tab-active {
     background: lighten(#ccc, 15%);
     border-radius: 8px 8px 0 0;
     margin: 0;
+
+    a {
+        color: black;
+        text-decoration: none;
+        cursor: default;
+    }
 }
 
 @mixin csui-tabs {
@@ -43,4 +56,23 @@
     background: lighten(#ccc, 15%);
     padding: 10px;
     border-bottom: 1px solid #ccc;
+}
+
+// jQuery UI tabs
+ul.ui-tabs-nav {
+    @include csui-tabs;
+
+    li {
+        @include csui-tab;
+
+        &.ui-state-active {
+            @include csui-tab-active;
+        }
+    }
+}
+
+.ui-tabs-panel {
+    &.ui-tabs-hide {
+        display: none;
+    }
 }
\ No newline at end of file