diff options
| author | zephyr <[email protected]> | 2023-06-20 23:42:43 +0800 |
|---|---|---|
| committer | kunish <[email protected]> | 2023-06-21 00:15:16 +0800 |
| commit | 8128705d1faa2ba814956a544287460e494a6502 (patch) | |
| tree | 2bf0c8e0f81a0c00299627948a179b3865a001bd /src/components/ConnectionTable.module.scss | |
| parent | 586235155d3b3c66d808312fb1528bba5ee6514a (diff) | |
fix: dnd && modal && reset && chain
Diffstat (limited to 'src/components/ConnectionTable.module.scss')
| -rw-r--r-- | src/components/ConnectionTable.module.scss | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/src/components/ConnectionTable.module.scss b/src/components/ConnectionTable.module.scss index d53acad..180b9ae 100644 --- a/src/components/ConnectionTable.module.scss +++ b/src/components/ConnectionTable.module.scss @@ -9,7 +9,6 @@ .th { height: 50px; background: var(--color-background); - position: sticky; top: 0; font-size: 1em; user-select: none; @@ -35,12 +34,11 @@ .td { /* 上边下边 | 左边右边 */ - padding: 10px 2px; + padding: 10px 5px; font-size: 0.9em; // max-width: 14em; min-width: 9em; cursor: default; - align-items: center; text-align: left; vertical-align: middle; white-space: nowrap; @@ -52,6 +50,18 @@ font-family: var(--font-normal); } +.overlay { + background: #444; +} +.modal { + background-color: var(--bg-modal); + // color: var(--color-text); +} + +.table { + border-collapse: collapse; +} + .td.odd { background: var(--color-row-odd); } @@ -63,8 +73,8 @@ } .sortIconContainer { - display: inline-flex; - margin-left: 0.5em; + float: right; + // margin-left: 0.5em; width: 1em; height: 1em; } |
