0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-12-01 11:41:20 +01:00

Reduce contrast of rich text toolbar. Fix #4997 (#5740)

This commit is contained in:
Jack Paine 2020-01-25 00:05:27 +00:00 committed by Thibaud Colas
parent 2933589680
commit 70da204eb1
3 changed files with 10 additions and 5 deletions

View File

@ -4,6 +4,7 @@ Changelog
2.9 (xx.xx.xxxx) - IN DEVELOPMENT
~~~~~~~~~~~~~~~~
* Reduced contrast of rich text toolbar (Jack Paine)
* Fix: Added ARIA alert role to live search forms in the admin (Casper Timmers)
* Fix: Reorder login form elements to match expected tab order (Kjartan Sverrisson)
* Fix: Re-add 'Close Explorer' button on mobile viewports (Sævar Öfjörð Magnússon)

View File

@ -1,10 +1,10 @@
$editor-z-index: $draftail-editor-z-index;
$draftail-editor-text: $color-text-input;
$draftail-editor-chrome: $color-grey-1;
$draftail-editor-chrome-text: $color-white;
$draftail-editor-chrome-active: $color-white;
$draftail-editor-chrome-accent: lighten($draftail-editor-chrome, 20%);
$draftail-editor-chrome: $color-white;
$draftail-editor-chrome-text: $color-grey-2;
$draftail-editor-chrome-active: $color-grey-2;
$draftail-editor-chrome-accent: transparent;
$draftail-editor-border: 0;
$draftail-editor-padding: 0;
@ -99,6 +99,10 @@ $draftail-editor-font-family: $font-serif;
@include nice-margin;
}
.Draftail-Toolbar {
border: 1px solid $color-grey-3;
}
.title .Draftail-Editor .public-DraftEditor-content,
.title .Draftail-Editor .public-DraftEditorPlaceholder-root {
font-size: 2em;

View File

@ -14,7 +14,7 @@ What's new
Other features
~~~~~~~~~~~~~~
* ...
* Reduced contrast of rich text toolbar (Jack Paine)
Bug fixes