various css fixes and cleanups.
--- a/src/css/LdtPlayer.css Fri Nov 25 12:26:28 2011 +0100
+++ b/src/css/LdtPlayer.css Fri Nov 25 14:11:49 2011 +0100
@@ -29,8 +29,6 @@
}
.Ldt-iri-chapter{
- border-left:solid 1px #000;
- border-right:solid 1px #000;
float: left;
height: 10px;
}
@@ -139,7 +137,7 @@
font-size: 62.5%;
font-family: "Trebuchet MS", "Helvetica", "Arial", "Verdana", "sans-serif";
background:url('imgs/player_gradient.png') repeat-x transparent ;
- height: 27px;
+ height: 25px;
border-top: 1px solid #b6b8b8;
border-bottom: 1px solid #b6b8b8;
}
@@ -158,8 +156,9 @@
background:url('imgs/play.png') no-repeat scroll 0 0 transparent ;
background-position: center;
width: 50px;
- height: 23px;
- border: 1px solid #b6b8b8;
+ height: 25px;
+ border-left: 1px solid #b6b8b8;
+ border-right: 1px solid #b6b8b8;
float: left;
}
@@ -167,8 +166,8 @@
background:url('imgs/play_button.png') no-repeat scroll 0 0 transparent ;
background-position: center;
width: 50px;
- height: 23px;
- border: 1px solid #b6b8b8;
+ height: 25px;
+ border-right: 1px solid #b6b8b8;
float: left;
}
@@ -177,14 +176,17 @@
background:url('imgs/search.png') no-repeat scroll 0 0 transparent ;
background-position: center;
width: 50px;
- height: 23px;
- border: 1px solid #b6b8b8;
+ height: 25px;
+ border-right: 1px solid #b6b8b8;
float: left;
}
.Ldt-Time {
float: left;
padding: 4px;
+ border-right: 1px solid #b6b8b8;
+ height: 25px;
+ overflow: auto;
}
.Ldt-ElapsedTime {
@@ -195,12 +197,9 @@
color: #b2b2b2;
}
- .Ldt-CtrlMute {
-
- }
-
- .Ldt-CtrlFullscreen {
-
+ .Ldt-CtrlSound {
+ float: right;
+ padding: 4px;
}
.Ldt-cleaner {
clear:both;
--- a/src/templates/player.html Fri Nov 25 12:26:28 2011 +0100
+++ b/src/templates/player.html Fri Nov 25 14:11:49 2011 +0100
@@ -6,12 +6,12 @@
<div class='Ldt-CtrlSearch'></div>
</div>
<div class='Ldt-RightPlayerControls'>
- <span class='ldt-Time'>
+ <div class='Ldt-Time'>
<span class='Ldt-ElapsedTime'></span>
/
<span class='Ldt-TotalTime'></span>
- </span>
- <button class='Ldt-CtrlSound'>Sound</button>
+ </div>
+ <div class='Ldt-CtrlSound'>Sound</div>
</div>
<div class='cleaner'> </div>
</div>
--- a/src/templates/tooltip.html Fri Nov 25 12:26:28 2011 +0100
+++ b/src/templates/tooltip.html Fri Nov 25 14:11:49 2011 +0100
@@ -1,6 +1,6 @@
{{! template used by the jquery ui tooltip }}
<div class='Ldt-tooltip'>
-<div class='title'>{{title}}</div>
-<div class='time'>{{begin}} : {{end}} </div>
-<div class='description'>{{description}}</div>
-</div>
\ No newline at end of file
+ <div class='title'>{{title}}</div>
+ <div class='time'>{{begin}} : {{end}} </div>
+ <div class='description'>{{description}}</div>
+</div>