mirror of
https://github.com/gitbucket/gitbucket.git
synced 2025-11-09 15:05:50 +01:00
Selected label style is changed to bold.
This commit is contained in:
@@ -105,13 +105,15 @@ $(function(){
|
|||||||
if($(this).data('selected') == true){
|
if($(this).data('selected') == true){
|
||||||
$(this).css({
|
$(this).css({
|
||||||
'background-color': 'white',
|
'background-color': 'white',
|
||||||
'color' : 'black'
|
'color' : 'black',
|
||||||
|
'font-weight' : 'normal'
|
||||||
});
|
});
|
||||||
$(this).data('selected', false);
|
$(this).data('selected', false);
|
||||||
} else {
|
} else {
|
||||||
$(this).css({
|
$(this).css({
|
||||||
'background-color': '#' + $(this).data('bgcolor'),
|
'background-color': '#' + $(this).data('bgcolor'),
|
||||||
'color' : '#' + $(this).data('fgcolor')
|
'color' : '#' + $(this).data('fgcolor'),
|
||||||
|
'font-weight' : 'bold'
|
||||||
});
|
});
|
||||||
$(this).data('selected', true);
|
$(this).data('selected', true);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user