[gnome-mines] styling: use more subtle colors



commit 12e57f395b688d8b9e9f64006995c8eb3a8bb67d
Author: Jakub Steiner <jimmac gmail com>
Date:   Wed Apr 30 12:56:43 2014 +0200

    styling: use more subtle colors
    
    - paused state grabbed more attention than when running
    - 'solved' part of the grid shouldn't grab more attention
      than the unsolved part.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=729254

 data/gnome-mines.css.in |   13 +++++++++----
 1 files changed, 9 insertions(+), 4 deletions(-)
---
diff --git a/data/gnome-mines.css.in b/data/gnome-mines.css.in
index b081a66..36ef2ec 100644
--- a/data/gnome-mines.css.in
+++ b/data/gnome-mines.css.in
@@ -11,7 +11,7 @@ Changes are applied instantly and globally, for the whole application.
   background-image:none;
   background-color:#babdb6;
   border-color:transparent;
-  border-radius:0px;
+  border-radius:4px; /* border width might be affecting */
   color:transparent;
   border-image:none;
   font-size:16px;
@@ -31,18 +31,19 @@ Changes are applied instantly and globally, for the whole application.
 
 .tile:active {
   background-color:#888a85;
+  box-shadow: inset 0 2px 1px rgba(0,0,0,.2);
 }
 
 .count {
   color:black;
   font-size:0px;
   background-image:none;
-  background-color:#cadbed;
+  background-color:#dededc;
   transition-duration:0.4s;
 }
 
 .count:hover {
-  background-color:#cadbed;
+  background-color:#aeaeac;
 }
 
 .flag {
@@ -99,10 +100,14 @@ Changes are applied instantly and globally, for the whole application.
 }
 
 .pausedOverlay {
-  background-color:black;
+  background-color:#babdb6;
   color: white;
   font-size:32px;
+  border-radius: 3px;
 }
+  .pausedOverlay:backdrop {
+    background-color: shade(#babdb6,1.1);
+  }
 
 .explodedField .tile {
   background-color:#888a85;


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]