mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-28 22:43:30 +03:00
Made it easier to tell primary and other authors apart in post settings
This commit is contained in:
parent
9e7727752c
commit
067ebeab7b
@ -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;
|
||||
}
|
||||
|
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user