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/04 01:12:58 UTC

[1/2] git commit: updated refs/heads/ui-restyle to f6fb769

Updated Branches:
  refs/heads/ui-restyle 937ed44b7 -> f6fb769b6


Use border instead of BG-coloring for detail group


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

Branch: refs/heads/ui-restyle
Commit: 4cf18a1d9e05bfb450c54371ef882a376ddb9107
Parents: 937ed44
Author: Brian Federle <br...@citrix.com>
Authored: Thu Oct 3 16:11:11 2013 -0700
Committer: Brian Federle <br...@citrix.com>
Committed: Thu Oct 3 16:11:11 2013 -0700

----------------------------------------------------------------------
 ui/stylesheets/csui/_details.scss | 17 ++++++++++++++---
 1 file changed, 14 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/4cf18a1d/ui/stylesheets/csui/_details.scss
----------------------------------------------------------------------
diff --git a/ui/stylesheets/csui/_details.scss b/ui/stylesheets/csui/_details.scss
index 345b635..3cbe3cf 100644
--- a/ui/stylesheets/csui/_details.scss
+++ b/ui/stylesheets/csui/_details.scss
@@ -23,7 +23,7 @@
 }
 
 @mixin csui-tab-active {
-    background: lighten(#ccc, 10%);
+    background: lighten(#ccc, 15%);
     border-radius: 8px 8px 0 0;
     margin: 0;
 }
@@ -40,17 +40,28 @@
 }
 
 @mixin csui-details {
-    background: lighten(#ccc, 10%);
+    background: lighten(#ccc, 15%);
     padding: 10px;
+    border-bottom: 1px solid #ccc;
 
     &:not(.detail-actions) {
         table {
-            background: lighten(#ccc, 15%);
             width: 100%;
 
+            tr {
+                &:nth-child(even) {
+                    background: lighten(#ccc, 12%);
+                }
+            }
+            
             th, td {
                 padding: 10px;
             }
         }
     }
+
+    .detail-actions {
+        background: white;
+        border-radius: 6px;
+    }
 }
\ No newline at end of file


[2/2] git commit: updated refs/heads/ui-restyle to f6fb769

Posted by bf...@apache.org.
Add nth-child coloring for list rows


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

Branch: refs/heads/ui-restyle
Commit: f6fb769b69a4add2b2e273eb128b54e17ad5e42d
Parents: 4cf18a1
Author: Brian Federle <br...@citrix.com>
Authored: Thu Oct 3 16:12:42 2013 -0700
Committer: Brian Federle <br...@citrix.com>
Committed: Thu Oct 3 16:12:42 2013 -0700

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


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/f6fb769b/ui/stylesheets/csui/_list.scss
----------------------------------------------------------------------
diff --git a/ui/stylesheets/csui/_list.scss b/ui/stylesheets/csui/_list.scss
index f82bd89..1a7e2c9 100644
--- a/ui/stylesheets/csui/_list.scss
+++ b/ui/stylesheets/csui/_list.scss
@@ -38,6 +38,10 @@
             &:not(.empty) {
                 border-bottom: 1px solid #ccc;
             }
+
+            &:nth-child(even) {
+                background: lighten(#ccc, 17%);
+            }
         }
 
         tr td {