Made it easier to tell primary and other authors apart in post settings

This commit is contained in:
Djordje Vlaisavljevic 2022-07-15 15:27:57 +02:00
parent 9e7727752c
commit 067ebeab7b
2 changed files with 44 additions and 4 deletions

View File

@ -513,6 +513,19 @@ input:focus,
background: var(--white);
}
#author-list ul li:first-of-type {
color: var(--black);
}
#author-list ul li:first-of-type::before {
opacity: 0.3;
}
#author-list ul li:first-of-type svg path {
stroke: var(--black);
fill: var(--black);
}
.fullscreen-modal-background, .epm-backdrop {
background: #000;
}

View File

@ -298,10 +298,6 @@
opacity: 0.15;
}
.tag-token--internal {
background: var(--whitegrey-l1);
}
.tag-token span {
position: relative;
z-index: 2;
@ -318,6 +314,37 @@
fill: var(--black);
}
/* Author input */
#author-list ul li:first-of-type {
position: relative;
color: var(--accent-color);
background: none;
}
#author-list ul li:first-of-type::after {
position: absolute;
top: -1px;
right: -1px;
bottom: -1px;
left: -1px;
content: "";
border-radius: 3px;
background: var(--accent-color);
opacity: 0.15;
}
#author-list ul li:first-of-type span {
position: relative;
z-index: 2;
opacity: 0.8;
}
#author-list ul li:first-of-type svg path {
stroke: var(--accent-color);
fill: var(--accent-color);
}
/* Segment input */
.token-segment-status-free {