Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Bug]: Indentation Guides missing in admonitions #312

Closed
3 of 7 tasks
nousernameavailableanymore opened this issue Jun 25, 2023 · 1 comment · Fixed by #316
Closed
3 of 7 tasks

[Bug]: Indentation Guides missing in admonitions #312

nousernameavailableanymore opened this issue Jun 25, 2023 · 1 comment · Fixed by #316
Assignees

Comments

@nousernameavailableanymore

Check for existing bug reports before submitting.

  • I searched for existing Bug Reports and found no similar reports.

Expected Behavior

Indentation guide shown for indented list items.

This is how it should look (built-in callout)
image

Current behaviour

No indentation guide lines are shown for indented list items

This is how it looks with admonitions:

image

Reproduction

Create admonition block

```ad-info
- asdflkasdf
- sadfklsdflk
	- laskdflk
	- dsf
	- kl
```

Which Operating Systems are you using?

  • Android
  • iPhone/iPad
  • Linux
  • macOS
  • Windows

Obsidian Version Check

1.3.5 and 1.3.5

Plugin Version

9.3.2

Confirmation

  • I have disabled all other plugins and the issue still persists.

Possible solution

No response

@sigrunixia
Copy link
Member

sigrunixia commented Jul 5, 2023

The following code will solve this. Submitting PR.

.is-live-preview {
  & .admonition {
    & .admonition-content {
      & ul {
        > li {
          > ul {
            border-left: var(--blockquote-border-thickness);
            border-left-color: var(--list-marker-color);
            border-left-style: solid;
          }
        }
      }
    }
  }
}
image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants