The Open Source kanban (built with Meteor). Keep variable/table/field names camelCase. For translations, only add Pull Request changes to wekan/i18n/en.i18n.json , other translations are done at https://transifex.com/wekan/wekan only.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
wekan/client/components/unicode-icons.css

33 lines
934 B

.unicode-icon {
filter: grayscale(100%);
-webkit-filter: grayscale(100%);
opacity: 0.8;
display: inline-block;
line-height: 1;
}
/* Greyscale for explicitly-marked emoji when feature is enabled */
body.grey-icons-enabled .emoji-icon {
filter: grayscale(100%);
-webkit-filter: grayscale(100%);
opacity: 0.85;
display: inline-block;
}
/* When grey icons are enabled, also grey common UI badges and toggles */
body.grey-icons-enabled .card-date,
body.grey-icons-enabled .mobile-icon,
body.grey-icons-enabled .desktop-icon {
filter: grayscale(100%);
-webkit-filter: grayscale(100%);
opacity: 0.85;
}
/* Grey card minibadges (icons + text + backgrounds) */
body.grey-icons-enabled .minicard .badges .badge,
body.grey-icons-enabled .minicard .badges .badge .badge-icon,
body.grey-icons-enabled .minicard .badges .badge .badge-text {
filter: grayscale(100%);
-webkit-filter: grayscale(100%);
opacity: 0.9;
}