From 78a11836f6a03c88a05668784374abf3851c71be Mon Sep 17 00:00:00 2001 From: secretrobotron Date: Mon, 20 Jun 2011 13:51:00 -0400 Subject: [PATCH] Adjusting css for background gradients on track events. --- trackliner.css | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/trackliner.css b/trackliner.css index 21e14f3..cafaf0e 100644 --- a/trackliner.css +++ b/trackliner.css @@ -1,13 +1,13 @@ .trackliner-track { - background-image: -moz-linear-gradient(top, #eee, #999); - background-image: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#999)); + background: -moz-linear-gradient(top, #eee, #999); + background: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#999)); height: 36px; position: relative; } .trackliner-event { - background-image: -moz-linear-gradient(top, #ff0, #660); - background-image: -webkit-gradient(linear, left top, left bottom, from(#ff0), to(#660)); + background: -moz-linear-gradient(top, #ff0, #660); + background: -webkit-gradient(linear, left top, left bottom, from(#ff0), to(#660)); opacity: 0.5; height: 100%; position: absolute; @@ -17,7 +17,7 @@ } .trackliner-event-selected { - background-image: -moz-linear-gradient(top, #0f0, #060); - background-image: -webkit-gradient(linear, left top, left bottom, from(#0f0), to(#060)); + background: -moz-linear-gradient(top, #0f0, #060); + background: -webkit-gradient(linear, left top, left bottom, from(#0f0), to(#060)); }