This repository was archived by the owner on Jun 24, 2025. It is now read-only.
File tree Expand file tree Collapse file tree
docs/Release Notes/Release Notes Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1111 * Note tree not closing when selecting some of the menu actions.
1212 * [ Most tree context menu on mobile are broken] ( https://github.com/TriliumNext/Notes/issues/671 )
1313* [ Quick search launch bar item does nothing in vertical layout] ( https://github.com/TriliumNext/Notes/issues/1680 )
14+ * [ Note background is gray in 0.92.7 (light theme)] ( https://github.com/TriliumNext/Notes/issues/1689 )
1415
1516## ✨ Improvements
1617
Original file line number Diff line number Diff line change @@ -122,6 +122,7 @@ export default class DesktopLayout {
122122
123123 const rootContainer = new RootContainer ( true )
124124 . setParent ( appContext )
125+ . class ( ( launcherPaneIsHorizontal ? "horizontal" : "vertical" ) + "-layout" )
125126 . optChild (
126127 fullWidthTabBar ,
127128 new FlexContainer ( "row" )
Original file line number Diff line number Diff line change @@ -7,8 +7,6 @@ import ToggleSidebarButtonWidget from "../widgets/mobile_widgets/toggle_sidebar_
77import MobileDetailMenuWidget from "../widgets/mobile_widgets/mobile_detail_menu.js" ;
88import ScreenContainer from "../widgets/mobile_widgets/screen_container.js" ;
99import ScrollingContainer from "../widgets/containers/scrolling_container.js" ;
10- import ProtectedSessionPasswordDialog from "../widgets/dialogs/protected_session_password.js" ;
11- import ConfirmDialog from "../widgets/dialogs/confirm.js" ;
1210import FilePropertiesWidget from "../widgets/ribbon_widgets/file_properties.js" ;
1311import FloatingButtons from "../widgets/floating_buttons/floating_buttons.js" ;
1412import EditButton from "../widgets/floating_buttons/edit_button.js" ;
@@ -118,6 +116,7 @@ export default class MobileLayout {
118116 getRootWidget ( appContext : typeof AppContext ) {
119117 const rootContainer = new RootContainer ( true )
120118 . setParent ( appContext )
119+ . class ( "horizontal-layout" )
121120 . cssBlock ( MOBILE_CSS )
122121 . child ( new FlexContainer ( "column" ) . id ( "mobile-sidebar-container" ) )
123122 . child (
Original file line number Diff line number Diff line change @@ -19,7 +19,6 @@ export default class RootContainer extends FlexContainer<BasicWidget> {
1919
2020 this . id ( "root-widget" ) ;
2121 this . css ( "height" , "100dvh" ) ;
22- this . class ( ( isHorizontalLayout ? "horizontal" : "vertical" ) + "-layout" ) ;
2322 this . originalViewportHeight = getViewportHeight ( ) ;
2423 }
2524
You can’t perform that action at this time.
0 commit comments