From: Harris Lapiroff Date: Mon, 13 Jun 2011 14:37:53 +0000 (-0400) Subject: Make grid selection stand out more. X-Git-Url: http://git.ithinksw.org/philo.git/commitdiff_plain/4e45e63464a3ca1c41e6db0be0fbe3ecfe8ce2b4 Make grid selection stand out more. --- diff --git a/philo/contrib/gilbert/static/gilbert/murano/css/murano.css b/philo/contrib/gilbert/static/gilbert/murano/css/murano.css index a4fef18..f380256 100644 --- a/philo/contrib/gilbert/static/gilbert/murano/css/murano.css +++ b/philo/contrib/gilbert/static/gilbert/murano/css/murano.css @@ -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 { diff --git a/philo/contrib/gilbert/static/gilbert/murano/sass/murano/components/_grid.scss b/philo/contrib/gilbert/static/gilbert/murano/sass/murano/components/_grid.scss index 9ec3fc6..40165b4 100644 --- a/philo/contrib/gilbert/static/gilbert/murano/sass/murano/components/_grid.scss +++ b/philo/contrib/gilbert/static/gilbert/murano/sass/murano/components/_grid.scss @@ -94,10 +94,10 @@ .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; } }