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 {
|
.go-ahead,
|
||||||
border-bottom: 1px @gray-light dotted;
|
.markdown,
|
||||||
|
.plugin-output {
|
||||||
|
a {
|
||||||
|
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;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue