diff --git a/src/main/twirl/issues/create.scala.html b/src/main/twirl/issues/create.scala.html index 7522588..1e3692a 100644 --- a/src/main/twirl/issues/create.scala.html +++ b/src/main/twirl/issues/create.scala.html @@ -105,13 +105,15 @@ if($(this).data('selected') == true){ $(this).css({ 'background-color': 'white', - 'color' : 'black' + 'color' : 'black', + 'font-weight' : 'normal' }); $(this).data('selected', false); } else { $(this).css({ 'background-color': '#' + $(this).data('bgcolor'), - 'color' : '#' + $(this).data('fgcolor') + 'color' : '#' + $(this).data('fgcolor'), + 'font-weight' : 'bold' }); $(this).data('selected', true); }