[Product Blocks editor]: set max width for the description general field (#41555)
This commit is contained in:
commit
cb539c787f
|
@ -0,0 +1,4 @@
|
||||||
|
Significance: patch
|
||||||
|
Type: tweak
|
||||||
|
|
||||||
|
[Product Blocks editor]: set max width for the description general field
|
|
@ -29,10 +29,10 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// This alignment class does not exists in
|
// This alignment class does not exists in
|
||||||
// https://github.com/WordPress/gutenberg/blob/trunk/packages/block-library/src/common.scss
|
// https://github.com/WordPress/gutenberg/blob/trunk/packages/block-library/src/common.scss
|
||||||
.has-text-align-justify {
|
.has-text-align-justify {
|
||||||
/*rtl:ignore*/
|
/*rtl:ignore*/
|
||||||
text-align: justify;
|
text-align: justify;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -163,6 +163,10 @@
|
||||||
.block-editor-block-list__block:not([contenteditable]):focus:after {
|
.block-editor-block-list__block:not([contenteditable]):focus:after {
|
||||||
display: none; // use important or increase specificity.
|
display: none; // use important or increase specificity.
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.block-editor-block-list__block fieldset {
|
||||||
|
min-width: 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue