mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-03-18 02:21:47 -05:00
Fixed text selection for announcement bar
no issue. - In dark mode the text and the text selection color in the announcement bar's input field were the same. This made the selected text unreadable
This commit is contained in:
parent
ca7ca53d5c
commit
5f266a11db
2 changed files with 2 additions and 1 deletions
|
@ -3,7 +3,7 @@
|
|||
<label class="gh-setting-title gh-theme-setting-title" for={{this.selectId}}>
|
||||
Announcement
|
||||
</label>
|
||||
<div class="gh-announcement-editor">
|
||||
<div class="gh-announcement-editor {{if this.feature.nightShift "dark"}}">
|
||||
<KoenigLexicalEditorInput
|
||||
@placeholderText="Highlight breaking news, special offers, or important updates"
|
||||
@html={{this.content}}
|
||||
|
|
|
@ -3,6 +3,7 @@ import {action} from '@ember/object';
|
|||
import {inject as service} from '@ember/service';
|
||||
|
||||
export default class AnnouncementSettingsContentComponent extends Component {
|
||||
@service feature;
|
||||
@service settings;
|
||||
|
||||
get content() {
|
||||
|
|
Loading…
Add table
Reference in a new issue