mirror of
https://gitee.com/nocobase/nocobase.git
synced 2025-05-06 05:59:25 +08:00
56 lines
1.3 KiB
TypeScript
56 lines
1.3 KiB
TypeScript
/**
|
|
* This file is part of the NocoBase (R) project.
|
|
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
* Authors: NocoBase Team.
|
|
*
|
|
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
*/
|
|
|
|
import { createStyles } from '@nocobase/client';
|
|
|
|
const useStyles = createStyles(({ token, css }) => {
|
|
return {
|
|
ganttverticalcontainer: css`
|
|
overflow: hidden;
|
|
font-size: 0;
|
|
margin: 0;
|
|
padding: 0;
|
|
width: 100%;
|
|
border-left: 2px solid ${token.colorBorderSecondary};
|
|
overflow-x: auto;
|
|
.ganttheader: {
|
|
border-bottom: 1px solid ${token.colorBorderSecondary};
|
|
font-weight: 700;
|
|
}
|
|
.ganttbody: {
|
|
border-bottom: 1px solid ${token.colorBorderSecondary};
|
|
}
|
|
`,
|
|
horizontalcontainer: css`
|
|
margin: 0;
|
|
padding: 0;
|
|
overflow: hidden;
|
|
margin-bottom: -5px;
|
|
`,
|
|
wrapper: css`
|
|
display: flex;
|
|
padding: 0;
|
|
margin: 0;
|
|
liststyle: none;
|
|
outline: none;
|
|
position: relative;
|
|
.gantt-horizontal-scoll: {
|
|
display: none;
|
|
}
|
|
&:hover: {
|
|
.gantt-horizontal-scoll: {
|
|
display: block;
|
|
}
|
|
}
|
|
`,
|
|
};
|
|
});
|
|
|
|
export default useStyles;
|