]> git.parisson.com Git - timeside.git/commitdiff
finally fix an old bug on marker and cursor SVG height (telemeta #98) with a simple...
authorGuillaume Pellerin <yomguy@parisson.com>
Fri, 14 Nov 2014 00:00:12 +0000 (01:00 +0100)
committerGuillaume Pellerin <yomguy@parisson.com>
Fri, 14 Nov 2014 00:04:45 +0000 (01:04 +0100)
timeside/player/static/timeside/skins/classic/style.css
timeside/player/static/timeside/skins/lab/style.css

index 068b72a9b59e52052b5055e95c03e05dee5e6066..8e877f0fc3944f9c561578c2c8b88b31be5c7391 100644 (file)
@@ -3,6 +3,11 @@
 * For details, see http://code.google.com/p/timeside/wiki/UiGuide?ts=1308677096&updated=UiGuide#CSS_and_skins
 */
 
+svg {
+    width: 100%;
+    height: 100%;
+}
+
 .ts-player {
     padding: 0;
     border: solid 1px #ADADAD;
     font-size: 80%;
     color: #000;
 }
+
index 578b4dcee1ae185599d54bf3d04bba3da34293ae..79a8b92280ce2b30fe9520a45dd0e347045f4410 100644 (file)
@@ -3,6 +3,11 @@
 * For details, see http://code.google.com/p/timeside/wiki/UiGuide?ts=1308677096&updated=UiGuide#CSS_and_skins
 */
 
+svg {
+    width: 100%;
+    height: 100%;
+}
+
 .ts-player {
     padding: 0;
     border: solid 1px #ADADAD;
     background-image: url('img/volumeoff.png');
     width:24px;
 }
-.ts-player .ts-control .ts-volume-bar-container { 
+.ts-player .ts-control .ts-volume-bar-container {
     background: url('img/controlbg-inverted.png');
     background-position: -3px left;
     background-repeat: repeat-x;
      -moz-border-radius: 5px;
     -webkit-border-radius: 5px;
     border-radius: 5px;
-    
+
 }
 .ts-player .ts-control .ts-volume-bar { /*width will be changed inside the code*/
     background-color: #e4eaf1;
     padding-right: 60px;
     font-size: 80%;
     color:white;
-}
\ No newline at end of file
+}
+