Skip to content

Commit

Permalink
Adjusting css for background gradients on track events.
Browse files Browse the repository at this point in the history
  • Loading branch information
secretrobotron committed Jun 20, 2011
1 parent ed38206 commit 78a1183
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions 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;
Expand All @@ -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));
}

0 comments on commit 78a1183

Please sign in to comment.