You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ga...@apache.org on 2016/10/18 07:31:07 UTC

fauxton commit: updated refs/heads/master to 7663682

Repository: couchdb-fauxton
Updated Branches:
  refs/heads/master d6837062a -> 76636829e


Updating hover colors for notification center to be consistent


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

Branch: refs/heads/master
Commit: 76636829e1ce4987d975ded2394bb0251333d44b
Parents: d683706
Author: Ryan Millay <ry...@gmail.com>
Authored: Mon Oct 17 13:26:14 2016 -0400
Committer: Ryan Millay <ry...@gmail.com>
Committed: Mon Oct 17 13:26:14 2016 -0400

----------------------------------------------------------------------
 assets/less/notification-center.less | 20 ++++++++++++++++----
 assets/less/variables.less           |  2 ++
 2 files changed, 18 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/blob/76636829/assets/less/notification-center.less
----------------------------------------------------------------------
diff --git a/assets/less/notification-center.less b/assets/less/notification-center.less
index 08a44a5..af9939a 100644
--- a/assets/less/notification-center.less
+++ b/assets/less/notification-center.less
@@ -70,6 +70,9 @@ body #dashboard #notification-center-btn {
         margin: -18px -16px -14px; /* enlarges the hit area */
         font-size: 21px;
         color: #dddddd;
+        &:hover {
+          color: @hoverRed;
+        }
       }
     }
 
@@ -90,6 +93,12 @@ body #dashboard #notification-center-btn {
         &.selected {
           background-color: #555555;
         }
+        &:hover {
+          background-color: @hoverRed;
+          .fonticon {
+            color: white;
+          }
+        }
       }
       .fonticon {
         font-size: 16px;
@@ -129,6 +138,9 @@ body #dashboard #notification-center-btn {
           height: 20px;
           margin-top: -4px;
           margin-left: 6px;
+          &:hover {
+            color: @hoverRed;
+          }
         }
         p {
           margin-bottom: 0;
@@ -158,10 +170,10 @@ body #dashboard #notification-center-btn {
       .copy {
         color: @blue;
         text-decoration: none;
-        &:hover {
-          color: @red;
-          text-decoration: underline;
-        }
+      }
+      .copy.zeroclipboard-is-hover {
+        color: @hoverRed;
+        text-decoration: underline;
       }
     }
 

http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/blob/76636829/assets/less/variables.less
----------------------------------------------------------------------
diff --git a/assets/less/variables.less b/assets/less/variables.less
index 128cadf..87df168 100644
--- a/assets/less/variables.less
+++ b/assets/less/variables.less
@@ -26,6 +26,8 @@
 @yellow: #ffcc00;
 @pink: #c3325f;
 @purple: #7a43b6;
+@hoverOrange: #f3812d;
+@hoverRed: #e73d34;
 
 /* brand */
 @brandPrimary: @red;