10
0
mirror of https://github.com/LCPQ/QUESTDB_website.git synced 2024-07-23 03:07:44 +02:00

Add header and a better cursor for author popup

This commit is contained in:
Mickaël Véril 2019-10-07 10:57:22 +02:00
parent 8e31a5f6c6
commit a5cb7ab3a1
2 changed files with 10 additions and 2 deletions

View File

@ -44,6 +44,9 @@ draft: false
}
var notifycontent=document.createElement("div")
notifycontent.className="author-info"
const notifyhead=document.createElement("h1")
notifyhead.innerText=String.raw`${author.given} ${author.family}`
notifycontent.appendChild(notifyhead)
const ulaff=document.createElement("ul")
ulaff.className="affiliation-list"
notifycontent.appendChild(ulaff)

View File

@ -14,7 +14,8 @@ ul.papers-list{
}
.paper ul.authors-list li.author-item{
display: inline
display: inline;
cursor: default
}
.paper ul.authors-list li.author-item:after
@ -43,7 +44,11 @@ ul.papers-list{
display: inline;
}
.author-info {
font-size: 18x
font-size: 14px;
cursor: initial
}
.author-info h1 {
font-size: larger
}
.author-info ul.affiliation-list{
list-style: none;