Skip to content

Latest commit

 

History

History
38 lines (30 loc) · 882 Bytes

Kanban styling - background based on tag.md

File metadata and controls

38 lines (30 loc) · 882 Bytes

Collection

Kanban styling - background based on tag



cover::

/*
author: sailKite
source: https://discord.com/channels/686053708261228577/702656734631821413/1173968522372722689
*/

/* --- Kanban With Background Color Based On Tag --- */
/* use this to style the card background and text */
.kanban-plugin__item.has-tag-someTag,
.has-tag-someTag
  :is(
    .kanban-plugin__item-content-wrapper,
    .kanban-plugin__item-title-wrapper
  ) {
  background-color: red !important;
  color: black;
}

/* use this to style the tag bubble at the bottom of the card */
a[href="#someTag"].kanban-plugin__item-tag {
  background-color: yellow;
  color: green !important;
  font-weight: bold;
}