[DE] Fix Bug 57472

This commit is contained in:
ShimaginAndrey 2022-06-20 10:34:01 +03:00
parent cd7551f898
commit 02a88b340a
2 changed files with 2 additions and 1 deletions

View file

@ -181,6 +181,7 @@
margin-top: 21px;
box-sizing: border-box;
box-shadow: 0 0 0 1px rgba(0, 0, 0, .15) inset;
background: @fill-white;
}
.item-after {
.color-preview {

View file

@ -196,7 +196,7 @@ const EditParagraph = props => {
const paragraph = props.storeFocusObjects.paragraphObject;
const curBackColor = storeParagraphSettings.backColor ? storeParagraphSettings.backColor : storeParagraphSettings.getBackgroundColor(paragraph);
const background = curBackColor !== 'transparent' ? `#${(typeof curBackColor === "object" ? curBackColor.color : curBackColor)}` : curBackColor;
const background = curBackColor !== 'transparent' ? `#${(typeof curBackColor === "object" ? curBackColor.color : curBackColor)}` : '';
const activeStyle = Device.android ? 'link no-active-state' : 'no-active-state';
return (