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

[HINT] Obsidian Snippet to improve visibility of prios #142

Open
limex opened this issue Feb 8, 2025 · 1 comment
Open

[HINT] Obsidian Snippet to improve visibility of prios #142

limex opened this issue Feb 8, 2025 · 1 comment

Comments

@limex
Copy link

limex commented Feb 8, 2025

As we are all waiting for version 1, I decided to add some css improvements to the current version.
Disclaimer: They might be ugly but work ;)

Add this to a .css file in folder /snippets:

/* make edit button smaller */
a[aria-label="Modify Task"] {
    font-size: 10px;
  }

/* make priority label for medium bold and blue */
a.priority[aria-label="priority: Medium"] .label {
    font-weight: bold;
    color: rgb(183, 0, 255);
}

/* make priority label for medium bold and orange */
a.priority[aria-label="priority: High"] .label {
    font-weight: bold;
    color: orangered;
}

Before:

Image

After:

Image

@Leonezz
Copy link
Owner

Leonezz commented Feb 10, 2025

good enhancement! you can open a pr and add this snippet to the style.css

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

No branches or pull requests

2 participants