diff options
| author | Teddy Wing | 2013-11-10 06:01:45 -0500 |
|---|---|---|
| committer | Teddy Wing | 2013-11-10 06:01:45 -0500 |
| commit | 65bf73caaa1685e83d57a50f32df2fae5d063720 (patch) | |
| tree | 15b21cda09015d48c6cf9f1a278ac4e4ee98f4cf | |
| parent | 8e76f32162a533b592211d14bfb254a81b486936 (diff) | |
| download | clip-play-65bf73caaa1685e83d57a50f32df2fae5d063720.tar.bz2 | |
Add gradient to selected bar in progress bar
| -rw-r--r-- | assets/css/sample-editor.css | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/assets/css/sample-editor.css b/assets/css/sample-editor.css index f7b6868..3e98d15 100644 --- a/assets/css/sample-editor.css +++ b/assets/css/sample-editor.css @@ -49,6 +49,14 @@ position: absolute; top: 0; background-color: #4087a0; + background: #499db7; /* Old browsers */ + background: -moz-linear-gradient(top, #499db7 0%, #4087a0 100%); /* FF3.6+ */ + background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#499db7), color-stop(100%,#4087a0)); /* Chrome,Safari4+ */ + background: -webkit-linear-gradient(top, #499db7 0%,#4087a0 100%); /* Chrome10+,Safari5.1+ */ + background: -o-linear-gradient(top, #499db7 0%,#4087a0 100%); /* Opera 11.10+ */ + background: -ms-linear-gradient(top, #499db7 0%,#4087a0 100%); /* IE10+ */ + background: linear-gradient(to bottom, #499db7 0%,#4087a0 100%); /* W3C */ + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#499db7', endColorstr='#4087a0',GradientType=0 ); /* IE6-9 */ } |
