-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
588 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 24 additions & 6 deletions
30
...components/erd/table-properties/table-properties-indexes/TablePropertiesIndexes.styles.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,31 @@ | ||
import { css } from '@dineug/r-html'; | ||
|
||
export const tableProperties = css` | ||
width: 50%; | ||
min-width: 400px; | ||
import { COLUMN_HEIGHT, TABLE_PADDING } from '@/constants/layout'; | ||
|
||
export const leftArea = css` | ||
width: 30%; | ||
min-width: 240px; | ||
height: 100%; | ||
padding-right: 12px; | ||
`; | ||
|
||
export const tableInfo = css` | ||
width: 50%; | ||
min-width: 400px; | ||
export const rightArea = css` | ||
width: 70%; | ||
min-width: 560px; | ||
height: 100%; | ||
`; | ||
|
||
export const addIndexButtonArea = css` | ||
display: flex; | ||
width: 100%; | ||
height: ${COLUMN_HEIGHT}px; | ||
align-items: center; | ||
padding: 0 ${TABLE_PADDING}px; | ||
cursor: pointer; | ||
&:hover { | ||
background-color: var(--column-hover); | ||
fill: var(--active); | ||
color: var(--active); | ||
} | ||
`; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
...operties/table-properties-indexes/indexes-checkbox-column/IndexesCheckboxColumn.styles.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import { css } from '@dineug/r-html'; | ||
|
||
export const root = css` | ||
display: flex; | ||
flex-direction: column; | ||
width: 100%; | ||
max-height: 240px; | ||
overflow: auto; | ||
`; |
Oops, something went wrong.