Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
mdhelp: little css fix and property doc fix
  • Loading branch information
perexg committed Apr 18, 2016
1 parent 1e158a5 commit dc76d7d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/prop.c
Expand Up @@ -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 = "";
Expand Down
6 changes: 6 additions & 0 deletions src/webui/static/app/ext.css
Expand Up @@ -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;
}
Expand Down

0 comments on commit dc76d7d

Please sign in to comment.