mirror of
https://github.com/docmost/docmost.git
synced 2026-08-28 01:07:08 +08:00
* feat: support opening property menu directly on options panel * refactor: expose group-by property from useKanbanColumns * feat: rename kanban group by clicking column name * feat: edit group-by property from kanban column menu * fix: license-gate base and kanban inserts * fix: add missing bases strings to en-US translation file
32 lines
497 B
CSS
32 lines
497 B
CSS
.menuBtn {
|
|
width: 100%;
|
|
padding: 4px;
|
|
margin-bottom: 2px;
|
|
color: var(--mantine-color-text);
|
|
border-radius: var(--mantine-radius-sm);
|
|
|
|
&:hover {
|
|
@mixin light {
|
|
background: var(--mantine-color-gray-2);
|
|
}
|
|
|
|
@mixin dark {
|
|
background: var(--mantine-color-gray-light);
|
|
}
|
|
}
|
|
}
|
|
|
|
.selectedItem {
|
|
@mixin light {
|
|
background: var(--mantine-color-gray-2);
|
|
}
|
|
|
|
@mixin dark {
|
|
background: var(--mantine-color-gray-light);
|
|
}
|
|
}
|
|
|
|
.gatedItem {
|
|
opacity: 0.7;
|
|
}
|