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:
Kevin Ansfield 2018-06-04 11:29:23 +01:00
parent 033ec0ce1a
commit 7f9c399812

View File

@ -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);
}