mirror of
https://github.com/docmost/docmost.git
synced 2025-11-13 17:42:37 +10:00
* lock/unlock pages * remove using isLocked column - add default page edit state preference * * Move state management to editors (avoids flickers on edit mode switch) * Rename variables * Add strings to translation file * Memoize components in page component * Fix title editor sending update request on editable state change * fixed errors merging main * Fix embed view in read-only mode * remove unused line * sync * fix responsiveness on mobile --------- Co-authored-by: Philipinho <16838612+Philipinho@users.noreply.github.com>
31 lines
489 B
CSS
31 lines
489 B
CSS
.breadcrumbs {
|
|
display: flex;
|
|
align-items: center;
|
|
overflow: hidden;
|
|
flex-wrap: nowrap;
|
|
|
|
a {
|
|
color: var(--mantine-color-default-color);
|
|
line-height: inherit;
|
|
}
|
|
|
|
.mantine-Breadcrumbs-breadcrumb {
|
|
min-width: 1px;
|
|
overflow: hidden;
|
|
}
|
|
}
|
|
|
|
.truncatedText {
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
max-width: 200px;
|
|
}
|
|
|
|
.breadcrumbDiv {
|
|
overflow: hidden;
|
|
@media (max-width: $mantine-breakpoint-sm) {
|
|
overflow: visible;
|
|
}
|
|
}
|