posts: update tag counter icons.

This commit is contained in:
evazion
2020-08-02 18:06:40 -05:00
parent b3a4c7aa43
commit 6b7cd7b972
10 changed files with 37 additions and 63 deletions

View File

@@ -485,6 +485,33 @@ div#c-posts, div#c-uploads {
}
}
/* Container for the tag edit <textarea>, header, and related tags buttons. */
#tags-container {
div.header {
line-height: 1.5em;
label {
display: inline-block;
}
i.fa-external-link-alt {
font-size: var(--text-xs);
}
span[data-tag-counter] {
float: right;
color: var(--muted-text-color);
font-size: var(--text-sm);
img {
margin-left: 0.5em;
width: 20px;
height: 20px;
}
}
}
}
div#c-explore-posts {
a.desc {
font-weight: bold;

View File

@@ -5,45 +5,3 @@ div#c-tags {
}
}
}
#tags-container {
div.header {
margin: 0;
display: grid;
grid-template-columns: 50% 50%;
width: 100%;
label {
grid-column: 1;
}
.options {
grid-column: 2;
justify-self: end;
.count {
color: var(--tag-count-color);
text-decoration: italic;
margin-left: 0.25em;
padding-bottom: 0.2em;
}
i {
margin-left: 0.25em;
font-size: 11pt;
}
.fa-frown {
color: var(--tag-count-indicator-frown-color);
}
.fa-meh {
color: var(--tag-count-indicator-meh-color);
}
.fa-smile {
color: var(--tag-count-indicator-smile-color);
}
}
}
}