Commit cb3ea07b authored by Antoine Cellerier's avatar Antoine Cellerier

* fix playlist bug and change some css

parent 3c6f137d
...@@ -175,7 +175,7 @@ function parse_playlist() ...@@ -175,7 +175,7 @@ function parse_playlist()
{ {
pos.appendChild( document.createElement( "div" ) ); pos.appendChild( document.createElement( "div" ) );
pos.lastChild.setAttribute( 'class', 'pl_node' ); pos.lastChild.setAttribute( 'class', 'pl_node' );
pos.lastChild.setAttribute( 'onclick', 'pl_play('+elt.getAttribute( 'id' )+');' ); /*pos.lastChild.setAttribute( 'onclick', 'pl_play('+elt.getAttribute( 'id' )+');' );*/
pos.lastChild.setAttribute( 'id', 'pl_'+elt.getAttribute( 'id' ) ); pos.lastChild.setAttribute( 'id', 'pl_'+elt.getAttribute( 'id' ) );
pos.lastChild.appendChild( document.createTextNode( elt.getAttribute( 'name' ) ) ); pos.lastChild.appendChild( document.createTextNode( elt.getAttribute( 'name' ) ) );
} }
......
...@@ -111,8 +111,6 @@ div.pl_node { ...@@ -111,8 +111,6 @@ div.pl_node {
} }
a.pl_leaf { a.pl_leaf {
font-style: normal; font-style: normal;
color: #00f;
text-decoration: underline;
display: block; display: block;
} }
a.pl_leaf:hover { a.pl_leaf:hover {
...@@ -128,6 +126,7 @@ div#browse { ...@@ -128,6 +126,7 @@ div#browse {
position: absolute; position: absolute;
left: 15%; left: 15%;
z-index: 1; z-index: 1;
font-size: 0.8em;
} }
div#browse div.title { div#browse div.title {
background-color: #008; background-color: #008;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment