Fix Bug 57277 - Client.Files.ThumbnailsView. add spacing between search bar and file/folder tile when list is scrolled

This commit is contained in:
Timofey Boyko 2022-05-24 09:54:58 +03:00
parent 38e3aaa5c4
commit 4bc061b4df
3 changed files with 15 additions and 3 deletions

View File

@ -1,5 +1,7 @@
import styled, { css } from "styled-components";
import { isDesktop } from "react-device-detect";
import SearchInput from "@appserver/components/search-input";
const StyledFilterInput = styled.div`
@ -13,6 +15,11 @@ const StyledFilterInput = styled.div`
margin: 0;
padding: 0;
${isDesktop &&
css`
margin-bottom: 6px;
`}
`;
const StyledSearchInput = styled(SearchInput)`

View File

@ -3,7 +3,7 @@ import PropTypes from "prop-types";
import styled, { css } from "styled-components";
//import equal from "fast-deep-equal/react";
//import { LayoutContextConsumer } from "studio/Layout/context";
import { isMobile, isMobileOnly } from "react-device-detect";
import { isMobile, isMobileOnly, isDesktop } from "react-device-detect";
import { inject, observer } from "mobx-react";
import Scrollbar from "@appserver/components/scrollbar";
@ -82,8 +82,13 @@ const commonStyles = css`
.files-row-container {
margin-top: -22px;
${isDesktop &&
css`
margin-top: -17px;
`}
@media ${desktop} {
${(props) => props.viewAs === "row" && `margin-top: -9px;`}
${(props) => props.viewAs === "row" && `margin-top: -15px;`}
}
}
}

View File

@ -9,7 +9,7 @@ const StyledTableContainer = styled.div`
width: 100%;
max-width: 100%;
margin-top: -19px;
margin-top: -25px;
display: grid;