Skip to content

Dynalist coloured tags by dtasev

Details

Authordtasev

LicenseNo License

Categorydynalist.io

Created

Updated

Size766 B

Statistics

Learn how we calculate statistics in the FAQ.

Failed to fetch stats.

Description

Showcases CSS that allows modifying tags with specific values.

Notes

Userstyle doesn't have notes.

Source code

/* ==UserStyle==
@name          Dynalist coloured tags
@namespace     https://dynalist.io/
@version       1.0
@description   Showcase for coloring tags for Dynalist 
@author        Dimitar Tasev
*/

@-moz-document domain("dynalist.io") {

/* The following will match #task, #todo, #epic, @person, @project-1 

This is not trying to provide useful values but just to showcase the method. 
Add the tags you use most.

*/

.node-tag[title="Filter #task"] {
    color: green;
}

.node-tag[title="Filter #todo"] {
    color: yellow;
}

.node-tag[title="Filter #epic"] {
    color: pink;
}

/* same but with @ */
.node-tag[title="Filter @person"] {
    color: purple;
}

.node-tag[title="Filter @project-1"] {
    color: white;
}

}

Reviews

No reviews yet.