added manual tooltip to nerdlinks
This commit is contained in:
parent
ab9f873c65
commit
a7825fe8b4
|
@ -167,10 +167,25 @@ h1, h2, h3, h4, h5, h6 {
|
||||||
@extend .nerd;
|
@extend .nerd;
|
||||||
color: $fg_color;
|
color: $fg_color;
|
||||||
border-bottom: none;
|
border-bottom: none;
|
||||||
|
position: relative;
|
||||||
|
span {
|
||||||
|
position: absolute;
|
||||||
|
top: 1.5em;
|
||||||
|
left: 50%;
|
||||||
|
transform: translateX(-50%);
|
||||||
|
padding: 2px;
|
||||||
|
border: 1px solid $stroke_color;
|
||||||
|
border-radius: 3px;
|
||||||
|
color: $fg_color;
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
&:hover {
|
&:hover {
|
||||||
color: $accent_color;
|
color: $accent_color;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
border-bottom: none;
|
border-bottom: none;
|
||||||
|
span {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,7 @@
|
||||||
<a
|
<a
|
||||||
target="_blank"
|
target="_blank"
|
||||||
class="nerdlink"
|
class="nerdlink"
|
||||||
href="{{ index . 1 }}"
|
href="{{ index . 1 }}">
|
||||||
title="{{ index . 0 }}">
|
|
||||||
{{ if eq (lower (index . 0)) "gitlab" }}
|
{{ if eq (lower (index . 0)) "gitlab" }}
|
||||||

|

|
||||||
{{ else if eq (lower (index . 0)) "gnome" }}
|
{{ else if eq (lower (index . 0)) "gnome" }}
|
||||||
|
@ -30,4 +29,7 @@
|
||||||
{{ else }}
|
{{ else }}
|
||||||
{{ index . 0 }}
|
{{ index . 0 }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
<span>
|
||||||
|
{{ index . 0 }}
|
||||||
|
</span>
|
||||||
</a>
|
</a>
|
||||||
|
|
Loading…
Reference in New Issue