Compare commits

..

No commits in common. "ddee459aa2072dbc90db28f6bb816252a5da4e20" and "6952bcaa1d1d797ad60b15dd490e90906cdbd818" have entirely different histories.

3 changed files with 19 additions and 31 deletions

View File

@ -219,10 +219,10 @@ function CreateManga(manga, connector){
statusTooltip.innerText = 'Status Unavailable';
}
releaseStatus.appendChild(statusTooltip); //Append the tooltip to the indicator circle
mangaName.appendChild(releaseStatus); //Append the release status indicator to the info block
info.appendChild(mangaName);
mangaElement.appendChild(info);
mangaElement.appendChild(releaseStatus); //Append the release status indicator to the publication element
return mangaElement;
}

View File

@ -251,16 +251,13 @@ publication-name{
}
publication-status {
display:block;
display: inline-block;
height: 10px;
width: 10px;
border-radius: 50%;
margin: 5px;
position: absolute;
top: 5px;
right: 5px;
z-index: 2;
box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 10px, rgb(51, 51, 51) 0px 0px 10px 3px;
position: relative;
vertical-align: middle;
}
publication-status:hover > status-tooltip {
@ -272,8 +269,8 @@ status-tooltip {
position: absolute;
/*Position*/
left: 150%;
bottom: -75%;
left: -50px ;
bottom: 150%;
z-index: 3;
/*Text Properties*/
@ -287,20 +284,17 @@ status-tooltip {
width:100px;
background-color: black;
border-radius: 6px;
border-style: solid;
border-color: black;
border-width: 1px;
}
status-tooltip::after {
content: " ";
position: absolute;
top: 50%;
right: 100%; /* To the left of the tooltip */
margin-top: -5px;
top: 100%; /* At the bottom of the tooltip */
left: 50%;
margin-left: -5px;
border-width: 5px;
border-style: solid;
border-color: transparent black transparent transparent;
border-color: black transparent transparent transparent;
}
publication img {

View File

@ -252,16 +252,13 @@ publication-name{
}
publication-status {
display:block;
display: inline-block;
height: 10px;
width: 10px;
border-radius: 50%;
margin: 5px;
position: absolute;
top: 5px;
right: 5px;
z-index: 2;
box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 10px, rgb(51, 51, 51) 0px 0px 10px 3px;
position: relative;
vertical-align: middle;
}
publication-status:hover > status-tooltip {
@ -273,8 +270,8 @@ status-tooltip {
position: absolute;
/*Position*/
left: 150%;
bottom: -75%;
left: -50px ;
bottom: 150%;
z-index: 3;
/*Text Properties*/
@ -288,20 +285,17 @@ status-tooltip {
width:100px;
background-color: black;
border-radius: 6px;
border-style: solid;
border-color: black;
border-width: 1px;
}
status-tooltip::after {
content: " ";
position: absolute;
top: 50%;
right: 100%; /* To the left of the tooltip */
margin-top: -5px;
top: 100%; /* At the bottom of the tooltip */
left: 50%;
margin-left: -5px;
border-width: 5px;
border-style: solid;
border-color: transparent black transparent transparent;
border-color: black transparent transparent transparent;
}