From: Jaroslav Kysela Date: Mon, 18 Apr 2016 12:41:01 +0000 (+0200) Subject: mdhelp: little css fix and property doc fix X-Git-Tag: v4.2.1~625 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=dc76d7de0292270580be0c018d3ba1525d59cd0f;p=thirdparty%2Ftvheadend.git mdhelp: little css fix and property doc fix --- diff --git a/src/prop.c b/src/prop.c index 4dedd7c7f..bc6a2795d 100644 --- a/src/prop.c +++ b/src/prop.c @@ -583,8 +583,8 @@ prop_md_doc(const char **doc, const char *lang) size_t l = 0; for (; *doc; doc++) { - if (*doc[0] == '\xff') { - if (*doc[1] == 1) + if ((*doc)[0] == '\xff') { + if ((*doc)[1] == 1) s = tvh_gettext_lang(lang, *doc + 2); else s = ""; diff --git a/src/webui/static/app/ext.css b/src/webui/static/app/ext.css index d2bf812c2..b3350878a 100644 --- a/src/webui/static/app/ext.css +++ b/src/webui/static/app/ext.css @@ -902,6 +902,12 @@ color: white; } +.hts-doc-toc .hts-doc-anchor { + color: inherit; + text-decoration: inherit; + cursor: inherit; +} + .hts-doc-toc p { margin: 3px 0 1px 5px; }