Skip to content

Commit

Permalink
Fix the styling of the accessibility dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
dtdesign committed Sep 25, 2024
1 parent 34d3c8c commit cd7f436
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions wcfsetup/install/files/style/ui/ckeditor.scss
Original file line number Diff line number Diff line change
Expand Up @@ -662,3 +662,25 @@ html.iOS {
display: none !important;
}
}

/* Accessiblity Dialog */
.ck.ck-dialog {
--ck-accessibility-help-dialog-border-color: var(--wcfContentBorderInner);
--ck-color-dialog-form-header-border: var(--wcfContentBorderInner);
--ck-accessibility-help-dialog-code-background-color: transparent;

background-color: var(--wcfContentBackground);
border-radius: var(--wcfBorderRadiusContainer);
box-shadow: var(--wcfBoxShadow);
color: var(--wcfContentText);

dl:not(.plain) {
&:not(:first-child) {
margin-top: 0;
}

> :is(dt:not(:empty), dd:not(:last-child)) {
margin-bottom: 0;
}
}
}

0 comments on commit cd7f436

Please sign in to comment.