1
0
Fork 0
mirror of https://github.com/anyproto/anytype-ts.git synced 2025-06-07 21:47:02 +09:00

JS-4400: fix

This commit is contained in:
Andrew Simachev 2024-04-17 17:39:07 +02:00
parent 7fed7613f8
commit 05c8ea2597
No known key found for this signature in database
GPG key ID: 49A163D0D14E6FD8
3 changed files with 13 additions and 9 deletions

2
dist/css/export.css vendored
View file

@ -1 +1 @@
.blocks .block.blockText #value { -webkit-user-modify: read-only; }
.blocks .block.blockText #value { -webkit-user-modify: read-only !important; }

View file

@ -132,6 +132,7 @@ html.printMedia.withPopup {
@media (max-width: 500px) {
html.printMedia.save {
#editorWrapper { width: 100% !important; margin: 0px 16px; }
#editorWrapper { width: calc(100% - 32px) !important; margin: 0px 16px; padding-left: 0px; }
.blocks { width: calc(100% + 48px) !important; }
}
}

View file

@ -69,13 +69,16 @@ const PopupSettingsSpaceIndex = observer(class PopupSettingsSpaceIndex extends R
placeholder={translate('defaultNamePage')}
/>
</div>
<Label
className="spaceAccessType"
text={translate(`spaceAccessType${I.SpaceType.Private}`)}
onMouseEnter={onSpaceTypeTooltip}
onMouseLeave={e => Preview.tooltipHide(false)}
/>
<div className="info">
<Label
className="spaceAccessType"
text={translate(`spaceAccessType${I.SpaceType.Private}`)}
onMouseEnter={onSpaceTypeTooltip}
onMouseLeave={e => Preview.tooltipHide(false)}
/>
<div className="bullet" />
<Label className="small" text={translate('popupSettingsSpaceIndexInfoLabel')} />
</div>
</div>
</div>