Fixed some Night Shift colours in the post settings menu

closes https://github.com/TryGhost/Ghost/issues/9244
- adjust weekday and current day text colours in the calendar popup to improve legibility
- match the new tags input colours to the other form inputs
This commit is contained in:
Kevin Ansfield 2018-01-02 11:29:23 +00:00
parent 30ba178861
commit 8072d75401

View File

@ -107,6 +107,11 @@ input,
background: color(var(--lightgrey));
}
.ember-power-select-multiple-trigger {
border-color: color(var(--lightgrey));
background: color(var(--lightgrey));
}
.ember-power-select-dropdown {
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}
@ -118,6 +123,18 @@ input,
background: color(var(--lightgrey));
}
.ember-basic-dropdown--opened > .ember-power-select-trigger,
.ember-power-select-trigger[aria-expanded="true"],
.ember-power-select-search input {
border-color: color(var(--lightgrey));
}
.ember-power-calendar-weekdays,
.ember-power-calendar-day--selected,
.ember-power-calendar-day--selected:not([disabled]):hover {
color: #e5eff5;
}
.gh-nav-list svg {
fill: var(--darkgrey);
}