Download action were added in two placese. 1. Playlist Builder. jjmenu now showing 'Download'. 2. Calendar-> Show Content. Click on the file, you will see Downlaod menu. Limitation: File name is set to original file name. On the ticket it said, file format should be like "show_name-12012011-2130.mp3". However, in my opinion, this is only possible, if a user downloads it from calender->show content. We know what the show names and etc, but, if the user downloads it from Playlist Builder, we cannot retrive such information. To be consistent in both area, I just set the file name to original file name. This can be easily modified in the future.
39 lines
984 B
CSS
39 lines
984 B
CSS
div.jjmenu {
|
|
|
|
position:absolute;
|
|
background:#d2d2d2;
|
|
border-bottom:2px solid #5b5b5b;
|
|
border-right:1px solid #5b5b5b;
|
|
padding:0px;
|
|
z-index: 1011;
|
|
font-size:11px;
|
|
}
|
|
|
|
div.jj_menu_item {
|
|
color:black;
|
|
border:1px solid #5b5b5b;
|
|
border-bottom:none;
|
|
background:#d2d2d2;
|
|
background: -moz-linear-gradient(center top , #d2d2d2 0pt, #bcbcbc 100%);
|
|
background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #d2d2d2), color-stop(100%, #bcbcbc));
|
|
cursor:pointer;
|
|
}
|
|
|
|
div.jj_menu_item span {
|
|
display:block;
|
|
padding:4px 10px;
|
|
}
|
|
|
|
div.jj_menu_item_more span {
|
|
background:url(images/more.gif) right no-repeat;
|
|
}
|
|
div.jj_menu_item_more span {
|
|
padding-right:20px;
|
|
}
|
|
|
|
div.jj_menu_item_hover {
|
|
background:#6e6e6e;
|
|
background: -moz-linear-gradient(center top , #868686 0pt, #6e6e6e 100%);
|
|
background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #868686), color-stop(100%, #6e6e6e));
|
|
color:#FFF;
|
|
}
|