diff options
author | Alib <aliboba@free.fr> | 2010-03-17 12:25:02 +0100 |
---|---|---|
committer | Alib <aliboba@free.fr> | 2010-03-17 12:25:02 +0100 |
commit | 65c01c73b688dcd30b5215f6316cbca1f05e38b8 (patch) | |
tree | 34b70dc22ae2aede5ca38e5d2fadabc6952357dd | |
parent | e581350f37c18e15ba9d535d29fe5bd5b2fd46c4 (diff) | |
download | istreamdev-65c01c73b688dcd30b5215f6316cbca1f05e38b8.tar.gz istreamdev-65c01c73b688dcd30b5215f6316cbca1f05e38b8.tar.bz2 |
playlist/
-rw-r--r-- | css/istreamdev.css | 19 | ||||
-rw-r--r-- | js/istreamdev.js | 2 |
2 files changed, 9 insertions, 12 deletions
diff --git a/css/istreamdev.css b/css/istreamdev.css index c0a6a24..3f37884 100644 --- a/css/istreamdev.css +++ b/css/istreamdev.css @@ -35,18 +35,12 @@ vertical-align: middle; margin: 0 0 0 10px; } -.cat_but { -overflow: hidden; -text-overflow: ellipsis; -white-space: nowrap; -} - li.forward > a > span, span.substring { vertical-align: middle; } li.channellist { height: 55px; -background-image: url(../img/chevron.png), -webkit-gradient(linear, 0% 0%, 0% 100%, from(#4c4d4e), to(#404142)); +background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#4c4d4e), to(#404142)); background-position: right center; background-repeat: no-repeat; } @@ -73,7 +67,7 @@ font-size: 17px; line-height: normal; position: absolute; font-weight: bold; -width: 40%; +width: 50%; } li.channellist span.comment { @@ -89,14 +83,17 @@ font-weight: normal; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; -width: 40%; +width: 50%; } +li.channellist small { +margin-right: 0px; +} li.channellist small.counter { - margin-right: 15px; + margin-right: 0px; position: relative; - top: 36px; + top: 40px; font-size: 17px; line-height: 13px; font-weight: bold; diff --git a/js/istreamdev.js b/js/istreamdev.js index 0a70ebd..2000c83 100644 --- a/js/istreamdev.js +++ b/js/istreamdev.js @@ -175,7 +175,7 @@ function gen_channels(category) { $.each(data.channel,function(i,channel){
$("#chan_menu").append('<li class="channellist"><a class="chan_but" href="#"><img src="logos/' + channel.name + '.png"/><small class="counter">' + channel.number + '</small><span class="name">' + channel.name + '</span><span class="comment">' + channel.now_title + '</span></a></li>');
});
- json_complete('#channels','cube');
+ json_complete('#channels','slide');
})
}
|