CC-2030: Icon needed for Cue In/Out

-Implemented
This commit is contained in:
martin 2011-03-21 15:01:43 -04:00
parent 9dae306526
commit a3a8ae104a
4 changed files with 53 additions and 8 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

View file

@ -15,7 +15,11 @@
#spl_sortable > li,
#side_playlist > div,
#spl_editor,
.spl_artist {
.spl_artist,
.spl_cue_in,
.spl_fade_in,
.spl_cue_out,
.spl_fade_out {
clear: left;
}
@ -35,8 +39,8 @@
#spl_sortable {
list-style: none;
padding:0;
height: 400px;
overflow-y: scroll;
height: 300px;
overflow: auto;
width:100%;
margin-top:0;
}
@ -52,6 +56,10 @@
border: none;
}
#spl_name {
}
.ui-icon-closethick {
margin-top: 7px;
}
@ -72,6 +80,15 @@
font-size:12px;
}
/*#spl_editor {
height: 50px;
}*/
#spl_editor > div > span {
/* display: inline-block;
width: 150px;*/
}
.ui-icon-closethick,
.ui-icon-play,
.spl_fade_control,
@ -239,13 +256,12 @@
margin: 0;
}
dd.edit-error {
.edit-error {
color:#b80000;
margin:0;
padding-bottom:0;
font-size:12px;
display:none;
clear: left;
}
/*.edit-error:last-child {
@ -276,3 +292,26 @@ dd.edit-error {
top: 3px;
z-index: 3;
}
#spl_sortable li .spl_cue {
background-color: transparent;
float:right;
font-size: 9px;
height: 15px;
right: 35px;
width: 33px;
margin-top:2px;
cursor:pointer;
}
#spl_sortable li .spl_cue.ui-state-default {
background: transparent url(images/cue_playlist.png) no-repeat 0 0;
border:none;
}
#spl_sortable li .spl_cue.ui-state-default:hover {
background: transparent url(images/cue_playlist.png) no-repeat 0 -15px;
border:none;
}
#spl_sortable li .spl_cue.ui-state-active, #spl_sortable li .spl_cue.ui-state-active:hover {
background: transparent url(images/cue_playlist.png) no-repeat 0 -30px;
border:none;
}