From: Guillaume Pellerin Date: Fri, 14 Nov 2014 00:00:12 +0000 (+0100) Subject: finally fix an old bug on marker and cursor SVG height (telemeta #98) with a simple... X-Git-Tag: 0.7^2~38^2~11 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=0c91f9423672ee1263805d708424ebe3b674af7a;p=timeside.git finally fix an old bug on marker and cursor SVG height (telemeta #98) with a simple css rule --- 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 +} +