Make grid selection stand out more.
authorHarris Lapiroff <hlapirof@oberlin.edu>
Mon, 13 Jun 2011 14:37:53 +0000 (10:37 -0400)
committerHarris Lapiroff <hlapirof@oberlin.edu>
Mon, 13 Jun 2011 14:37:53 +0000 (10:37 -0400)
philo/contrib/gilbert/static/gilbert/murano/css/murano.css
philo/contrib/gilbert/static/gilbert/murano/sass/murano/components/_grid.scss

index a4fef18..f380256 100644 (file)
@@ -506,11 +506,11 @@ button {
   background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 100%);
   background-image: -o-linear-gradient(top, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 100%);
   background-image: linear-gradient(top, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 100%);
-  background-color: #222; }
+  background-color: #000; }
   /* line 98, ../sass/murano/components/_grid.scss */
   .x-grid-row-selected td {
-    border-top: 1px solid #CCC;
-    border-bottom: 1px solid #777; }
+    border-top: 1px solid #1286f8;
+    border-bottom: 1px solid #066cd1; }
 
 /* line 104, ../sass/murano/components/_grid.scss */
 .x-grid-resize-marker {
index 9ec3fc6..40165b4 100644 (file)
 
 .x-grid-row-selected{
        @include background-image($gloss-gradient);
-       background-color:#222;
+       background-color:#000;
        td{
-               border-top:1px solid #CCC;
-               border-bottom:1px solid #777;
+               border-top:1px solid lighten($accent-color, 10%);
+               border-bottom:1px solid $accent-color;
        }
 }