From 366ffd113e7880a7efd889defb6489fbd7d3272a Mon Sep 17 00:00:00 2001 From: franzz Date: Sat, 13 Sep 2014 20:38:09 +0200 Subject: [PATCH] fix menu grient color (closed) when user has its own set (options) --- style/screen.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/style/screen.css b/style/screen.css index a2c99c6..9c587af 100644 --- a/style/screen.css +++ b/style/screen.css @@ -1292,13 +1292,12 @@ vertical-align 0% -5% -10% -15% -20% -25% -30% #menu { position:absolute; - background:white; width:20px; padding:10px 0; z-index:10; border-right:0 solid #04357B; - background: rgb(217,229,242); + background: #D9E5F2; background: -moz-linear-gradient(top, rgba(217,229,242,1) 0%, rgba(255,255,255,1) 25%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(217,229,242,1)), color-stop(25%,rgba(255,255,255,1))); background: -webkit-linear-gradient(top, rgba(217,229,242,1) 0%,rgba(255,255,255,1) 25%); @@ -1308,6 +1307,7 @@ vertical-align 0% -5% -10% -15% -20% -25% -30% filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d9e5f2', endColorstr='#ffffff',GradientType=0 ); } #menu.opened { + background: white; background: -moz-linear-gradient(left, rgba(255,255,255,1) 75%, rgba(255,255,255,0) 100%); background: -webkit-gradient(linear, left top, right top, color-stop(75%,rgba(255,255,255,1)), color-stop(100%,rgba(255,255,255,0))); background: -webkit-linear-gradient(left, rgba(255,255,255,1) 75%,rgba(255,255,255,0) 100%);