feat: add color property to taskbar

allows matching category icon when changing categories in composer
This commit is contained in:
Barış Soner Uşaklı
2022-10-11 19:16:27 -04:00
parent 34439c06de
commit f3ae22d2a8

View File

@@ -185,6 +185,9 @@ define('taskbar', ['benchpress', 'translator', 'hooks'], function (Benchpress, t
case 'background-color':
element.find('a').css('background-color', value);
break;
case 'color':
element.find('a').css('color', value);
break;
}
};