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:
parent
6e05d852ee
commit
86eefe5abf
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue