Fix bug 51871: convertation process

This commit is contained in:
Viktor Fomin 2021-08-26 17:57:27 +03:00
parent ea31c0f258
commit 957877899a

View File

@ -7,6 +7,7 @@ import Link from "@appserver/components/link";
import LoadingButton from "./LoadingButton";
import ShareButton from "./ShareButton";
import LoadErrorIcon from "../../../../public/images/load.error.react.svg";
import IconButton from "@appserver/components/icon-button";
import { inject, observer } from "mobx-react";
import { withTranslation } from "react-i18next";
@ -39,6 +40,10 @@ const StyledFileRow = styled(Row)`
filter: grayscale(1);
}
.convert_icon {
padding-right: 12px;
}
.__react_component_tooltip.type-light {
background-color: #f8f7bf !important;
box-shadow: none;
@ -162,6 +167,13 @@ const FileRow = (props) => {
inConversion={item.inConversion}
percent={item.convertProgress}
/>
<IconButton
iconName="/static/images/refresh.react.svg"
className="convert_icon"
size="medium"
isfill={true}
color="#A3A9AE"
/>
</div>
)}
</>