Skip to content

Nav Header at the bottom it covers the last folders and the +Open Spaces option at the end #174

Open
@walterm128

Description

With Make.md plugin installed and with two lines of Spaces icons and the “Nav Header” at the bottom it covers the last folders and the “+Open Spaces” option at the end.

Describe the bug
[A clear and concise description of what the bug is.]

To Reproduce
Steps to reproduce the behavior:

  1. Plugin MAKE.md
  2. Nav Bar bottom
  3. 2 lines of Spaces icons
  4. It covers the last folders and the “+Open Spaces” option.

Expected behavior
See the last folders and the option “+Open Spaces”.

Screenshots
Before
Antes

Setup Information

  • Device Type: PC
  • Operating System: Windows 11
  • Prism version: 3.5.3
  • Color Schemes Used: Color Schemes and Style -> Light/Dark Theme -> Color Scheme -> Dark
  • Obsidian Version: 1.6.7
  • Obsidian Installer Version: 1.6.5
  • Related Community plugins:

Additional context
Temporarily fixed with a CSS snippet:

.pt-nav-header-left-sidebar-position-bottom .workspace-drawer.mod-left .nav-header,
.pt-nav-header-left-sidebar-position-bottom .workspace-split.mod-left-split .nav-header,
.pt-nav-header-right-sidebar-position-bottom .workspace-drawer.mod-right .nav-header,
.pt-nav-header-right-sidebar-position-bottom .workspace-split.mod-right-split .nav-header {
  /* se cambia de absolute a sticky para que no se tapen los ultimos archivos */
  position: sticky;
  bottom: calc(var(--size-2-2) + var(--scroll-bar-size));
  z-index: var(--layer-popover);
  order: 10;
  width: -webkit-fill-available;
  width: fill-available;
  height: unset;
  padding: 0 calc(var(--size-2-2) + var(--scroll-bar-size)) 0 var(--size-2-2);
  pointer-events: none;
  background-color: unset;
  border-bottom: unset;
}

Changed
position: absolute;
to
position: sticky;
After
Despues

Metadata

Assignees

Labels

BugSomething isn't working / doesn't look right

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions