From a4dfc686cad0070df5af7931dcba5eddfb470f27 Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Fri, 14 Nov 2014 01:00:12 +0100 Subject: [PATCH] finally fix an old bug on marker and cursor SVG height (telemeta #98) with a simple css rule --- .../player/static/timeside/skins/classic/style.css | 6 ++++++ timeside/player/static/timeside/skins/lab/style.css | 12 +++++++++--- 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/timeside/player/static/timeside/skins/classic/style.css b/timeside/player/static/timeside/skins/classic/style.css index 068b72a..8e877f0 100644 --- a/timeside/player/static/timeside/skins/classic/style.css +++ b/timeside/player/static/timeside/skins/classic/style.css @@ -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; @@ -150,3 +155,4 @@ font-size: 80%; color: #000; } + diff --git a/timeside/player/static/timeside/skins/lab/style.css b/timeside/player/static/timeside/skins/lab/style.css index 578b4dc..79a8b92 100644 --- a/timeside/player/static/timeside/skins/lab/style.css +++ b/timeside/player/static/timeside/skins/lab/style.css @@ -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; @@ -112,7 +117,7 @@ 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; @@ -122,7 +127,7 @@ -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; @@ -143,4 +148,5 @@ padding-right: 60px; font-size: 80%; color:white; -} \ No newline at end of file +} + -- 2.39.5