mirror of
https://github.com/zadam/trilium.git
synced 2025-12-16 05:09:54 +01:00
refactor(layout): remove floating title bar experiment
This commit is contained in:
@@ -79,7 +79,6 @@ export default class DesktopLayout {
|
||||
const fullWidthTabBar = launcherPaneIsHorizontal || (isElectron && !hasNativeTitleBar && isMac);
|
||||
const customTitleBarButtons = !hasNativeTitleBar && !isMac && !isWindows;
|
||||
const isNewLayout = isExperimentalFeatureEnabled("new-layout");
|
||||
const isFloatingTitlebar = isExperimentalFeatureEnabled("floating-titlebar");
|
||||
|
||||
const titleRow = new FlexContainer("row")
|
||||
.class("title-row")
|
||||
|
||||
@@ -12,11 +12,6 @@ export const experimentalFeatures = [
|
||||
id: "new-layout",
|
||||
name: t("experimental_features.new_layout_name"),
|
||||
description: t("experimental_features.new_layout_description"),
|
||||
},
|
||||
{
|
||||
id: "floating-titlebar",
|
||||
name: t("experimental_features.floating_titlebar"),
|
||||
description: t("experimental_features.floating_titlebar_description"),
|
||||
}
|
||||
] as const satisfies ExperimentalFeature[];
|
||||
|
||||
|
||||
@@ -1102,9 +1102,7 @@
|
||||
"title": "Experimental Options",
|
||||
"disclaimer": "These options are experimental and may cause instability. Use with caution.",
|
||||
"new_layout_name": "New Layout",
|
||||
"new_layout_description": "Try out the new layout for a more modern look and improved usability. Subject to heavy change in the upcoming releases.",
|
||||
"floating_titlebar": "Floating Titlebar",
|
||||
"floating_titlebar_description": "The title bar is part of the content and is scrolled along with the note content."
|
||||
"new_layout_description": "Try out the new layout for a more modern look and improved usability. Subject to heavy change in the upcoming releases."
|
||||
},
|
||||
"fonts": {
|
||||
"theme_defined": "Theme defined",
|
||||
|
||||
@@ -60,35 +60,3 @@ body.experimental-feature-new-layout {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
body.experimental-feature-floating-titlebar {
|
||||
.title-row {
|
||||
max-width: var(--max-content-width);
|
||||
padding: 0;
|
||||
padding-inline-start: 24px;
|
||||
}
|
||||
|
||||
.note-icon-widget {
|
||||
padding: 0;
|
||||
width: 41px;
|
||||
}
|
||||
|
||||
.note-split.type-code:not(.mime-text-x-sqlite) .title-row {
|
||||
background-color: var(--main-background-color);
|
||||
}
|
||||
|
||||
.scrolling-container:has(> :is(.note-detail.full-height, .note-list-widget.full-height)),
|
||||
.note-split.type-book {
|
||||
.title-row {
|
||||
width: 100%;
|
||||
max-width: unset;
|
||||
padding-inline-start: 15px;
|
||||
padding-bottom: 0.2em;
|
||||
font-size: 0.8em;
|
||||
}
|
||||
}
|
||||
|
||||
&.prefers-centered-content .title-row {
|
||||
margin-inline: auto;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user