Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions packages/block-library/src/quote/theme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,21 @@
font-style: normal;
}

&.has-text-align-right {
&:where(.has-text-align-right) {
border-left: none;
border-right: 0.25em solid currentColor;
padding-left: 0;
padding-right: 1em;
}

&.has-text-align-center {
&:where(.has-text-align-center) {
border: none;
padding-left: 0;
}
// .is-style-large and .is-large are kept for backwards compatibility.
&.is-style-plain,
// They are not wrapped in `:where()` to keep specificity as it was before
// they were deprecated.
&:where(.is-style-plain),
&.is-style-large,
&.is-large {
border: none;
Expand Down