[css+template] eisenhower matrix

I almost forgot : if you want to replace the tag #.v-eisenhower-matrix by the auto-expanding eye icon (as seen in the gif)
20210306_NUC8_Jz3c3eSTHu
you can add these css rules:

/* vismode icon component by cannibalox */ 
/* part of the ls-vizmods-suite         */ 
a.tag[data-ref*=".v-"]:before {
   content:"👁";
   font-size: 0.75rem; 
   line-height: 0.75rem;
   }
a.tag[data-ref*=".v-"]:hover:before {
   padding-right:0.3rem;
   }
a.tag[data-ref*=".v-"]:hover {
   font-size: 0.75rem; 
   line-height: 0.75rem;
   }
a.tag[data-ref*=".v-"]{
   font-size: 0px; 
   font-family: iosevka, fira code, consolas, source code pro;
   color: #88e165;
   background-color: #1a2d23;
   border: 1px solid #a1c65d; border-radius: 3px;
   padding: 0 2px;
   }

I will reuse the same taxonomy for my other css addons.

5 Likes