Making feature YES/NO colors look brighter.

This commit is contained in:
Marat Fayzullin 2024-01-31 19:44:22 -05:00
parent 38313bf11b
commit 51c8362c68
1 changed files with 2 additions and 2 deletions

View File

@ -3,8 +3,8 @@ $(function(){
function yes_no(v) {
return v?
'<td style="color:green;">YES</td>' :
'<td style="color:red;">NO</td>';
'<td style="color:#00FF00;">YES</td>' :
'<td style="color:#FF0000;">NO</td>';
}
$.ajax('api/features').done(function(data){