mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-28 22:43:30 +03:00
Improved delete subscriber icon visibility in Night Shift
refs https://github.com/TryGhost/Ghost-Admin/pull/989 - changed the delete subscriber icon to match the colour of the rest of the table contents (thanks @CriticalRespawn) - replaced manual colour hex code values with respective colour var in `app-dark.css`
This commit is contained in:
parent
033ec0ce1a
commit
7f9c399812
@ -63,7 +63,7 @@
|
||||
}
|
||||
|
||||
body {
|
||||
color: #e5eff5;
|
||||
color: var(--darkgrey);
|
||||
}
|
||||
|
||||
pre {
|
||||
@ -129,7 +129,7 @@ input,
|
||||
.ember-power-calendar-weekdays,
|
||||
.ember-power-calendar-day--selected,
|
||||
.ember-power-calendar-day--selected:not([disabled]):hover {
|
||||
color: #e5eff5;
|
||||
color: var(--darkgrey);
|
||||
}
|
||||
|
||||
.gh-nav-list svg {
|
||||
@ -290,7 +290,7 @@ input,
|
||||
}
|
||||
|
||||
.gh-canvas-title span path {
|
||||
fill: #e5eff5;
|
||||
fill: var(--darkgrey);
|
||||
}
|
||||
|
||||
.gh-loading-spinner {
|
||||
@ -334,3 +334,7 @@ input,
|
||||
.CodeMirror .CodeMirror-code .cm-string {
|
||||
color: color-mod(#183691 l(+25%));
|
||||
}
|
||||
|
||||
.subscribers-table table .gh-btn svg {
|
||||
fill: var(--darkgrey);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user