Skip to content

Commit

Permalink
Reset additional background styles from toolbar in CKEditor
Browse files Browse the repository at this point in the history
Signed-off-by: julia.kirschenheuter <[email protected]>
  • Loading branch information
JuliaKirschenheuter authored and ChristophWurst committed Apr 3, 2024
1 parent 1be49a0 commit 5039528
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions src/components/TextEditor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,15 @@ https://github.com/ckeditor/ckeditor5/issues/1142
.ck .ck-reset {
background: var(--color-main-background) !important;
}
.custom-item-username {
.ck-list__item {
.ck-off {
background:var(--color-main-background) !important;
}
.ck-on {
background:var(--color-primary-element-light) !important;
}
}
.custom-item-username {
color: var(--color-main-text) !important;
}
.link-title{
Expand All @@ -413,6 +421,7 @@ https://github.com/ckeditor/ckeditor5/issues/1142
border-radius : 8px !important;
padding : 4px 8px !important;
display :block;
background:var(--color-main-background)!important;
}
.custom-item:hover {
background:var(--color-primary-element-light)!important;
Expand All @@ -422,13 +431,8 @@ https://github.com/ckeditor/ckeditor5/issues/1142
padding :4px 8px !important;
display : block;
width : 100% !important;
}
.ck-off{
background:var(--color-main-background)!important;
}
.ck-on{
background:var(--color-primary-element-light)!important;
}
.link-container:hover {
background:var(--color-primary-element-light)!important;
}
Expand Down

0 comments on commit 5039528

Please sign in to comment.