mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-03-18 02:21:47 -05:00
Made it easier to tell internal and public tags apart in post settings
This commit is contained in:
parent
1d6fee8aa0
commit
5d827ad1a9
2 changed files with 47 additions and 3 deletions
|
@ -496,6 +496,23 @@ input:focus,
|
|||
color: var(--black);
|
||||
}
|
||||
|
||||
.tag-token:not(.tag-token--internal) {
|
||||
color: var(--black);
|
||||
}
|
||||
|
||||
.tag-token:not(.tag-token--internal)::before {
|
||||
opacity: 0.3;
|
||||
}
|
||||
|
||||
.tag-token svg path {
|
||||
stroke: var(--black);
|
||||
fill: var(--black);
|
||||
}
|
||||
|
||||
.tag-token--internal {
|
||||
background: var(--white);
|
||||
}
|
||||
|
||||
.fullscreen-modal-background, .epm-backdrop {
|
||||
background: #000;
|
||||
}
|
||||
|
|
|
@ -280,10 +280,37 @@
|
|||
|
||||
/* Tag input */
|
||||
|
||||
.tag-token:not(.tag-token--internal) {
|
||||
position: relative;
|
||||
color: var(--accent-color);
|
||||
background: none;
|
||||
}
|
||||
|
||||
.tag-token:not(.tag-token--internal)::after {
|
||||
position: absolute;
|
||||
top: -1px;
|
||||
right: -1px;
|
||||
bottom: -1px;
|
||||
left: -1px;
|
||||
content: "";
|
||||
border-radius: 3px;
|
||||
background: var(--accent-color);
|
||||
opacity: 0.15;
|
||||
}
|
||||
|
||||
.tag-token--internal {
|
||||
background: var(--lightgrey-l1);
|
||||
border: 1px solid var(--lightgrey-l1);
|
||||
color: var(--black);
|
||||
background: var(--whitegrey-l1);
|
||||
}
|
||||
|
||||
.tag-token span {
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
opacity: 0.8;
|
||||
}
|
||||
|
||||
.tag-token svg path {
|
||||
stroke: var(--accent-color);
|
||||
fill: var(--accent-color);
|
||||
}
|
||||
|
||||
.tag-token--internal svg path {
|
||||
|
|
Loading…
Add table
Reference in a new issue