From: Mark Clarkstone Date: Sat, 7 May 2016 14:34:01 +0000 (+0100) Subject: wizard: use css to scale wizard image & remove previously added logowizard.png X-Git-Tag: v4.2.1~550 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ce227a9c85e3002d23a9f689eec3264c997b4b33;p=thirdparty%2Ftvheadend.git wizard: use css to scale wizard image & remove previously added logowizard.png --- diff --git a/src/webui/static/app/ext.css b/src/webui/static/app/ext.css index 13c5c3b62..567f46933 100644 --- a/src/webui/static/app/ext.css +++ b/src/webui/static/app/ext.css @@ -716,6 +716,10 @@ .x-wizard-icon { float: right; + margin: 0px auto; + border: none; + padding: 5px; + max-width: 25% } .x-wizard-description { diff --git a/src/webui/static/img/logowizard.png b/src/webui/static/img/logowizard.png deleted file mode 100644 index 4f30bdf7b..000000000 Binary files a/src/webui/static/img/logowizard.png and /dev/null differ diff --git a/src/wizard.c b/src/wizard.c index 92413874c..3f24ebeba 100644 --- a/src/wizard.c +++ b/src/wizard.c @@ -42,7 +42,7 @@ static const void *empty_get(void *o) static const void *icon_get(void *o) { - strcpy(prop_sbuf, "static/img/logowizard.png"); + strcpy(prop_sbuf, "static/img/logobig.png"); return &prop_sbuf_ptr; }