Lines Matching refs:appIcon

2590 		if (this.appIcon != null)
2597 this.appIcon.setAttribute('title', mxResources.get('openIt', [mxResources.get('googleDrive')]));
2598 this.appIcon.style.cursor = 'pointer';
2602 this.appIcon.setAttribute('title', mxResources.get('openIt', [mxResources.get('dropbox')]));
2603 this.appIcon.style.cursor = 'pointer';
2607 this.appIcon.setAttribute('title', mxResources.get('openIt', [mxResources.get('oneDrive')]));
2608 this.appIcon.style.cursor = 'pointer';
2612 this.appIcon.removeAttribute('title');
2613 this.appIcon.style.cursor = (mode == App.MODE_DEVICE) ? 'pointer' : 'default';
6725 this.appIcon = document.createElement('a');
6726 this.appIcon.style.display = 'block';
6727 this.appIcon.style.position = 'absolute';
6728 this.appIcon.style.width = '32px';
6729 this.appIcon.style.height = (this.menubarHeight - 28) + 'px';
6730 this.appIcon.style.margin = '14px 0px 8px 16px';
6731 this.appIcon.style.opacity = '0.85';
6732 this.appIcon.style.borderRadius = '3px';
6736 this.appIcon.style.backgroundColor = '#f08705';
6739 mxEvent.disableContextMenu(this.appIcon);
6741 mxEvent.addListener(this.appIcon, 'click', mxUtils.bind(this, function(evt)
6752 this.appIcon.style.backgroundImage = logo;
6753 this.appIcon.style.backgroundPosition = 'center center';
6754 this.appIcon.style.backgroundSize = '100% 100%';
6755 this.appIcon.style.backgroundRepeat = 'no-repeat';
6757 mxUtils.setPrefixedStyle(this.appIcon.style, 'transition', 'all 125ms linear');
6759 mxEvent.addListener(this.appIcon, 'mouseover', mxUtils.bind(this, function()
6769 this.appIcon.style.backgroundImage = 'url(' + IMAGE_PATH + '/google-drive-logo-white.svg)';
6770 this.appIcon.style.backgroundSize = '70% 70%';
6774 this.appIcon.style.backgroundImage = 'url(' + IMAGE_PATH + '/dropbox-logo-white.svg)';
6775 this.appIcon.style.backgroundSize = '70% 70%';
6779 this.appIcon.style.backgroundImage = 'url(' + IMAGE_PATH + '/onedrive-logo-white.svg)';
6780 this.appIcon.style.backgroundSize = '70% 70%';
6784 this.appIcon.style.backgroundImage = 'url(' + IMAGE_PATH + '/github-logo-white.svg)';
6785 this.appIcon.style.backgroundSize = '70% 70%';
6789 this.appIcon.style.backgroundImage = 'url(' + IMAGE_PATH + '/gitlab-logo-white.svg)';
6790 this.appIcon.style.backgroundSize = '100% 100%';
6794 this.appIcon.style.backgroundImage = 'url(' + IMAGE_PATH + '/notion-logo-white.svg)';
6795 this.appIcon.style.backgroundSize = '70% 70%';
6799 this.appIcon.style.backgroundImage = 'url(' + IMAGE_PATH + '/trello-logo-white-orange.svg)';
6800 this.appIcon.style.backgroundSize = '70% 70%';
6805 mxEvent.addListener(this.appIcon, 'mouseout', mxUtils.bind(this, function()
6807 this.appIcon.style.backgroundImage = logo;
6808 this.appIcon.style.backgroundSize = '90% 90%';
6813 this.menubarContainer.appendChild(this.appIcon);
7054 this.appIcon.style.display = 'block';
7070 this.appIcon.style.display = 'none';