From a9854251d6981f73d1ce9f661ab3ff21d822e0c1 Mon Sep 17 00:00:00 2001 From: Ludovic DEHON Date: Thu, 22 Dec 2022 22:17:15 +0100 Subject: [PATCH] fix(ui): missing style on plugin doc for types --- ui/src/components/plugins/Plugin.vue | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/ui/src/components/plugins/Plugin.vue b/ui/src/components/plugins/Plugin.vue index b58226ba33b..ebfab510f1f 100644 --- a/ui/src/components/plugins/Plugin.vue +++ b/ui/src/components/plugins/Plugin.vue @@ -100,10 +100,11 @@ } mark { - background: var(--success); + background: var(--bs-success); color: var(--white); font-size: var(--font-size-sm); padding: 2px 8px 2px 8px; + border-radius: var(--bs-border-radius-sm); * { color: var(--white) !important; @@ -125,6 +126,21 @@ } } + h2, h3 { + margin-left: -15px; + + .header-anchor { + opacity: 0; + transition: all ease 0.2s; + } + + &:hover { + .header-anchor { + opacity: 1; + } + } + } + h4 { code { display: inline-block;