Merge pull request #38 from 0xAF/ui_themes2
fix border moving on receiver panel
This commit is contained in:
commit
59baacfd50
|
|
@ -657,7 +657,8 @@ img.openwebrx-mirror-img
|
|||
|
||||
#openwebrx-panel-receiver
|
||||
{
|
||||
width:110px;
|
||||
width:110px;
|
||||
border: 2px solid transparent;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -166,8 +166,8 @@ UI.toggleFrame = function(on) {
|
|||
this.frame = on;
|
||||
LS.save('ui_frame', on);
|
||||
$('#openwebrx-frame-checkbox').attr('checked', on);
|
||||
$('#openwebrx-panel-receiver').css('border', on? '2px solid':'');
|
||||
$('#openwebrx-dialog-bookmark').css('border', on? '2px solid':'');
|
||||
$('#openwebrx-panel-receiver').css( 'border', on ? '2px solid white' : '2px solid transparent');
|
||||
$('#openwebrx-dialog-bookmark').css('border', on ? '2px solid white' : '2px solid transparent');
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue