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,13 +654,17 @@ form.instance-features span.description, form.object-features span.description {
} }
} }
.go-ahead a { .go-ahead,
.markdown,
.plugin-output {
a {
border-bottom: 1px @gray-light dotted; border-bottom: 1px @gray-light dotted;
&:hover { &:hover {
border-bottom: 1px @text-color solid; border-bottom: 1px @text-color solid;
text-decoration: none; text-decoration: none;
} }
}
} }
.event-details { .event-details {