This commit is contained in:
AlexVallat 2015-04-11 19:12:10 +01:00
parent 25d06114fe
commit 5896991718
1 changed files with 9 additions and 5 deletions

View File

@ -1471,11 +1471,16 @@ vAPI.toolbarButton.init = function() {
this.defaultArea = CustomizableUI.AREA_NAVBAR; this.defaultArea = CustomizableUI.AREA_NAVBAR;
this.styleURI = [ this.styleURI = [
'#' + this.id + ' {', '#' + this.id + '.off {',
'list-style-image: url(', 'list-style-image: url(',
vAPI.getURL('img/browsericons/icon16-off.svg'), vAPI.getURL('img/browsericons/icon16-off.svg'),
');', ');',
'}', '}',
'#' + this.id + ' {',
'list-style-image: url(',
vAPI.getURL('img/browsericons/icon16.svg'),
');',
'}',
'#' + this.viewId + ', #' + this.viewId + ' > iframe {', '#' + this.viewId + ', #' + this.viewId + ' > iframe {',
'width: 160px;', 'width: 160px;',
'height: 290px;', 'height: 290px;',
@ -1679,16 +1684,15 @@ vAPI.toolbarButton.updateState = function(win, tabId) {
} }
var icon = this.tabs[tabId]; var icon = this.tabs[tabId];
button.setAttribute('badge', icon && icon.badge || ''); button.setAttribute('badge', icon && icon.badge || '');
if ( !icon || !icon.img ) { if ( !icon || !icon.img ) {
icon = ''; button.classList.add('off');
} }
else { else {
icon = 'url(' + vAPI.getURL('img/browsericons/icon16.svg') + ')'; button.classList.remove('off');
} }
button.style.listStyleImage = icon;
}; };
/******************************************************************************/ /******************************************************************************/