[THEME] Fix image hover and sup size
This commit is contained in:
parent
59b2f3c8f4
commit
70214fda1b
2 changed files with 4 additions and 1 deletions
|
@ -2,7 +2,7 @@
|
|||
{{ $name_splitted := split $img.RelPermalink "." }}
|
||||
{{ $name_base := index $name_splitted 0 }}
|
||||
{{ $ext_base := index $name_splitted 1 }}
|
||||
<figure {{ with .Get "class" }} class="{{ . }}"{{ end }}>
|
||||
<figure {{ with .Get "id" }} id="{{ . }}"{{ end }}{{ with .Get "class" }} class="{{ . }}"{{ end }}>
|
||||
{{ with .Get "link" }}
|
||||
<a href="{{ . | absURL }}">
|
||||
{{ else }}
|
||||
|
|
|
@ -626,6 +626,8 @@ a.not(.anchor):focus {
|
|||
}
|
||||
.article-body figure figcaption .attribution {
|
||||
float: right;
|
||||
margin-left: 1em;
|
||||
margin-top: 1em;
|
||||
}
|
||||
@media only screen and (max-width: 320px) {
|
||||
.article-body .footnotes ol {
|
||||
|
@ -749,6 +751,7 @@ details[open] summary:hover {
|
|||
vertical-align: top;
|
||||
position: relative;
|
||||
top: -0.5rem;
|
||||
font-size: 0.6em;
|
||||
}
|
||||
|
||||
/******************* Article Blockquote *******************/
|
||||
|
|
Loading…
Reference in a new issue