mirror of
https://github.com/docmost/docmost.git
synced 2026-05-20 16:44:05 +08:00
299a9ca3c8
* fix(editor): hide transclusion borders and reset spacing in read-only mode * feat(share): add full width toggle for shared pages * feat(share): support resizing sidebar on shared pages * fix: auto redirect if there is only one SSO provider. - fix tighten sso redirect - fix share tree margin * sync * package overrides
45 lines
700 B
CSS
45 lines
700 B
CSS
.shareLinkText {
|
|
@mixin light {
|
|
border-bottom: 0.05em solid var(--mantine-color-dark-0);
|
|
}
|
|
@mixin dark {
|
|
border-bottom: 0.05em solid var(--mantine-color-dark-2);
|
|
}
|
|
}
|
|
|
|
.treeNode {
|
|
text-decoration: none;
|
|
user-select: none;
|
|
padding-bottom: 0;
|
|
}
|
|
|
|
.navbar,
|
|
.aside {
|
|
@media (max-width: $mantine-breakpoint-sm) {
|
|
width: 350px;
|
|
}
|
|
}
|
|
|
|
.resizeHandle {
|
|
width: 3px;
|
|
cursor: col-resize;
|
|
position: absolute;
|
|
right: 0;
|
|
top: 0;
|
|
bottom: 0;
|
|
z-index: 1;
|
|
|
|
&:hover,
|
|
&:active {
|
|
width: 5px;
|
|
background: light-dark(
|
|
var(--mantine-color-gray-4),
|
|
var(--mantine-color-dark-5)
|
|
);
|
|
}
|
|
|
|
@media (max-width: $mantine-breakpoint-sm) {
|
|
display: none;
|
|
}
|
|
}
|