From 00b33bbf1cef68c3d6c86fe8fd22c0d172743f07 Mon Sep 17 00:00:00 2001 From: Alon Levy Date: Wed, 29 Oct 2014 15:40:58 +0200 Subject: fix multiple warnings from zed (zedapp.org) css: use 0 instead of 0px (0 doesn't need a unit) fallback rgb(r,g,b) for rgba code: missing semicolons don't use initial caps for a function name unused variables --- ui.css | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) (limited to 'ui.css') diff --git a/ui.css b/ui.css index 2c8f486a..91cc08bb 100644 --- a/ui.css +++ b/ui.css @@ -60,6 +60,7 @@ } .ui-datepicker { + background-color: rgb(17,17,17); background-color: rgba(17,17,17,0.9); width: 217px; height: auto; @@ -67,9 +68,9 @@ font-size: 9pt; border: 1px solid; - -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .5); - -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .5); - box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .5); + -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, .5); + -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, .5); + box-shadow: 0 0 10px 0 rgba(0, 0, 0, .5); } @@ -84,16 +85,16 @@ } .ui-datepicker-next { float: right; - background-position: center 0px; + background-position: center 0; } .ui-datepicker-header { color: #e0e0e0; font-weight: bold; - -webkit-box-shadow: inset 0px 1px 1px 0px rgba(250, 250, 250, 2); - -moz-box-shadow: inset 0px 1px 1px 0px rgba(250, 250, 250, .2); - box-shadow: inset 0px 1px 1px 0px rgba(250, 250, 250, .2); - text-shadow: 1px -1px 0px #000; + -webkit-box-shadow: inset 0 1px 1px 0 rgba(250, 250, 250, 2); + -moz-box-shadow: inset 0 1px 1px 0 rgba(250, 250, 250, .2); + box-shadow: inset 0 1px 1px 0 rgba(250, 250, 250, .2); + text-shadow: 1px -1px 0 #000; filter: dropshadow(color=#000, offx=1, offy=-1); line-height: 30px; border-width: 1px 0 0 0; -- cgit v1.3.1