Merge branch 'release/v1.2' of github.com:ONLYOFFICE/AppServer into release/v1.2

This commit is contained in:
Nikita Gopienko 2022-04-26 12:00:22 +03:00
commit b2ae2f2116
6 changed files with 14 additions and 97 deletions

View File

@ -33,7 +33,7 @@ const DownloadAppListContainer = React.memo(({ t, theme }) => {
return ( return (
<StyledDownloadAppList> <StyledDownloadAppList>
<Text className="download-app-text" fontSize="14px"> <Text className="download-app-text" fontSize="14px" noSelect={true}>
{t("Translations:DownloadApps")} {t("Translations:DownloadApps")}
</Text> </Text>
<div className="download-app-list"> <div className="download-app-list">

View File

@ -5,6 +5,7 @@ import DropDownItem from "@appserver/components/drop-down-item";
import AccessRightSelect from "@appserver/components/access-right-select"; import AccessRightSelect from "@appserver/components/access-right-select";
import { getAccessIcon } from "../../../helpers/files-helpers"; import { getAccessIcon } from "../../../helpers/files-helpers";
import { ReactSVG } from "react-svg"; import { ReactSVG } from "react-svg";
import Backdrop from "@appserver/components/backdrop";
const { const {
FullAccess, FullAccess,

View File

@ -67,7 +67,7 @@ const Item = ({
t={t} t={t}
access={item.access} access={item.access}
directionX="right" directionX="right"
directionY="bottom" directionY="both"
accessOptions={externalAccessOptions} accessOptions={externalAccessOptions}
onAccessChange={onChangeItemAccess} onAccessChange={onChangeItemAccess}
itemId={item.sharedTo.id} itemId={item.sharedTo.id}
@ -75,8 +75,8 @@ const Item = ({
disableLink={false} disableLink={false}
canDelete={true} canDelete={true}
onRemoveUserClick={onRemoveUserClick} onRemoveUserClick={onRemoveUserClick}
isDefaultMode={false} isDefaultMode={true}
fixedDirection={true} fixedDirection={false}
/> />
)} )}
</StyledItem> </StyledItem>

View File

@ -3,42 +3,6 @@ import styled, { css } from "styled-components";
import { isMobile, isMobileOnly } from "react-device-detect"; import { isMobile, isMobileOnly } from "react-device-detect";
const StyledContainer = styled.div`
transition: unset;
transform: translateX(${(props) => (props.visible ? "0" : "480px")});
width: 480px;
height: 100%;
position: fixed;
max-width: 480px;
overflow-y: hidden;
right: 0;
bottom: 0;
background: ${(props) => props.theme.aside.backgroundColor};
z-index: 311;
@media (max-width: 500px) {
position: fixed;
top: unset;
bottom: 0;
right: 0;
width: 100%;
height: calc(100% - 64px);
}
.panel_combo-box {
.optionalBlock {
margin-right: -3px;
}
}
`;
StyledContainer.defaultProps = { theme: Base };
const StyledContent = styled.div` const StyledContent = styled.div`
width: 100%; width: 100%;
height: 100%; height: 100%;
@ -389,7 +353,6 @@ const StyledModalFooter = styled.div`
`; `;
export { export {
StyledContainer,
StyledContent, StyledContent,
StyledHeaderContent, StyledHeaderContent,
StyledBodyContent, StyledBodyContent,

View File

@ -19,11 +19,7 @@ import withLoader from "../../../HOCs/withLoader";
import ModalDialog from "@appserver/components/modal-dialog"; import ModalDialog from "@appserver/components/modal-dialog";
import EmbeddingBody from "../EmbeddingPanel/EmbeddingBody"; import EmbeddingBody from "../EmbeddingPanel/EmbeddingBody";
import { import { StyledContent, StyledModalFooter } from "./StyledSharingPanel";
StyledContainer,
StyledContent,
StyledModalFooter,
} from "./StyledSharingPanel";
import Header from "./Header"; import Header from "./Header";
import Body from "./Body"; import Body from "./Body";

View File

@ -101,24 +101,14 @@ const StyledAsidePanel = styled.div`
@media (max-width: 500px) { @media (max-width: 500px) {
position: fixed; position: fixed;
top: unset;
top: 64px;
bottom: 0; bottom: 0;
left: 0; right: 0;
width: 100%; width: 100%;
height: calc(100% - 64px); height: calc(100% - 64px);
} }
${isMobileOnly &&
css`
position: fixed;
top: 64px;
bottom: 0;
left: 0;
width: 100%;
height: calc(100% - 64px);
`}
} }
${PanelStyles} ${PanelStyles}
`; `;
@ -176,22 +166,11 @@ const StyledAddUsersPanelPanel = styled.div`
position: fixed; position: fixed;
top: 64px; top: 64px;
bottom: 0; bottom: 0;
left: 0; right: 0;
width: 100%; width: 100%;
height: calc(100% - 64px); height: calc(100% - 64px);
} }
${isMobileOnly &&
css`
position: fixed;
top: 64px;
bottom: 0;
left: 0;
width: 100%;
height: calc(100% - 64px);
`}
} }
${PanelStyles} ${PanelStyles}
.combo-button-label { .combo-button-label {
@ -211,22 +190,11 @@ const StyledAddGroupsPanel = styled.div`
position: fixed; position: fixed;
top: 64px; top: 64px;
bottom: 0; bottom: 0;
left: 0; right: 0;
width: 100%; width: 100%;
height: calc(100% - 64px); height: calc(100% - 64px);
} }
${isMobileOnly &&
css`
position: fixed;
top: 64px;
bottom: 0;
left: 0;
width: 100%;
height: calc(100% - 64px);
`}
} }
${PanelStyles} ${PanelStyles}
.combo-button-label { .combo-button-label {
@ -246,22 +214,11 @@ const StyledEmbeddingPanel = styled.div`
position: fixed; position: fixed;
top: 64px; top: 64px;
bottom: 0; bottom: 0;
left: 0; right: 0;
width: 100vw; width: 100%;
height: calc(100vh - 64px); height: calc(100% - 64px);
} }
${isMobileOnly &&
css`
position: fixed;
top: 64px;
bottom: 0;
left: 0;
width: 100vw;
height: calc(100vh - 64px);
`}
} }
${PanelStyles} ${PanelStyles}
`; `;