Преглед на файлове

style: don't color authors as links in Pages widget with Cite view

Authors are still clickable but colored the same as the rest of the
entry.

Only the publication title link is colored as a normal link.

See #950
George Cushen преди 6 години
родител
ревизия
a62c6bf01f
променени са 3 файла, в които са добавени 16 реда и са изтрити 3 реда
  1. 1 1
      exampleSite/content/home/hero.md
  2. 13 0
      layouts/partials/css/academic.css
  3. 2 2
      layouts/partials/li_citation.html

+ 1 - 1
exampleSite/content/home/hero.md

@@ -33,7 +33,7 @@ hero_media = "hero-academic.png"
 #   Display link(s) by specifying a URL and label below. Icon is optional for `[cta]`.
 #   Remove a link/note by deleting a cta/note block.
 [cta]
-  url = "post/getting-started/"
+  url = "https://sourcethemes.com/academic/docs/install/"
   label = "Get Started"
   icon_pack = "fas"
   icon = "download"

+ 13 - 0
layouts/partials/css/academic.css

@@ -1218,6 +1218,19 @@ article .article-metadata {
   overflow: hidden;
 }
 
+.li-cite-author {
+  font-size: 1em;
+  color: inherit;
+}
+
+.li-cite-author a {
+  color: inherit;
+}
+
+.dark .li-cite-author a {
+  color: rgb(248, 248, 242);
+}
+
 /*************************************************
  * Experience
  **************************************************/

+ 2 - 2
layouts/partials/li_citation.html

@@ -4,7 +4,7 @@
   {{/* APA Style */}}
   {{ if eq ($.Site.Params.publications.citation_style | default "apa") "apa" }}
 
-  <span itemprop="author">
+  <span itemprop="author" class="article-metadata li-cite-author">
     {{ partial "page_metadata_authors" . }}
   </span>
   ({{- .Date.Format "2006" -}}).
@@ -19,7 +19,7 @@
   {{/* MLA Style */}}
   {{ else }}
 
-  <span itemprop="author">
+  <span itemprop="author" class="article-metadata li-cite-author">
     {{ partial "page_metadata_authors" . }}
   </span>.
   <a href="{{ .RelPermalink }}" itemprop="name">{{ .Title }}</a>.