monitoring: Highlight links in markdown content (#3893)

Doesn't apply to all markdown content. Our only use-case
currently is in the monitoring module and this already got
a known style for external/custom links.

Other modules may want to apply a different style or possibly
none at all.

resolves #3888
This commit is contained in:
Johannes Meyer 2019-08-12 12:58:29 +02:00 committed by GitHub
parent 6e05d852ee
commit 86eefe5abf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 5 deletions

View File

@ -654,12 +654,16 @@ form.instance-features span.description, form.object-features span.description {
}
}
.go-ahead a {
border-bottom: 1px @gray-light dotted;
.go-ahead,
.markdown,
.plugin-output {
a {
border-bottom: 1px @gray-light dotted;
&:hover {
border-bottom: 1px @text-color solid;
text-decoration: none;
&:hover {
border-bottom: 1px @text-color solid;
text-decoration: none;
}
}
}