mirror of
https://github.com/docmost/docmost.git
synced 2026-05-21 09:14:07 +08:00
fix(base): widen row-number column so drag grip sits left of checkbox
This commit is contained in:
@@ -25,7 +25,7 @@ import { useUpdateViewMutation } from "@/features/base/queries/base-view-query";
|
|||||||
const DEFAULT_COLUMN_WIDTH = 180;
|
const DEFAULT_COLUMN_WIDTH = 180;
|
||||||
const MIN_COLUMN_WIDTH = 80;
|
const MIN_COLUMN_WIDTH = 80;
|
||||||
const MAX_COLUMN_WIDTH = 600;
|
const MAX_COLUMN_WIDTH = 600;
|
||||||
const ROW_NUMBER_COLUMN_WIDTH = 50;
|
const ROW_NUMBER_COLUMN_WIDTH = 64;
|
||||||
|
|
||||||
export const SYSTEM_PROPERTY_TYPES = new Set(["createdAt", "lastEditedAt", "lastEditedBy"]);
|
export const SYSTEM_PROPERTY_TYPES = new Set(["createdAt", "lastEditedAt", "lastEditedBy"]);
|
||||||
|
|
||||||
|
|||||||
@@ -321,7 +321,7 @@
|
|||||||
.rowNumberDragHandle {
|
.rowNumberDragHandle {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 50%;
|
top: 50%;
|
||||||
left: 4px;
|
left: 6px;
|
||||||
transform: translateY(-50%);
|
transform: translateY(-50%);
|
||||||
display: none;
|
display: none;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
|||||||
Reference in New Issue
Block a user