diff --git a/src/app/panels/styles/terminal-styles.js b/src/app/panels/styles/terminal-styles.js index 91ce77722b..2e34526136 100644 --- a/src/app/panels/styles/terminal-styles.js +++ b/src/app/panels/styles/terminal-styles.js @@ -128,7 +128,6 @@ var css = csjs` height : 65%; } .pendingTx { - border : 1px solid var(--secondary); border-radius : 50%; margin-right : 30px; min-width : 13px; @@ -137,6 +136,7 @@ var css = csjs` justify-content : center; align-items : center; font-size : 14px; + user-select : none; } .dragbarHorizontal { position : absolute; diff --git a/src/app/panels/tab-proxy.js b/src/app/panels/tab-proxy.js index 9fcd33f0ef..7464b631c4 100644 --- a/src/app/panels/tab-proxy.js +++ b/src/app/panels/tab-proxy.js @@ -27,7 +27,7 @@ export class TabProxy { this._view.filetabs.activateTab(file) return } - this.addTab(file, "", () => { + this.addTab(file, '', () => { this.fileManager.switchFile(file) this.event.emit('switchFile', file) }, @@ -39,7 +39,7 @@ export class TabProxy { fileManager.events.on('fileRenamed', (oldName, newName) => { this.removeTab(oldName) - this.addTab(newName, "", () => { + this.addTab(newName, '', () => { this.fileManager.switchFile(newName) this.event.emit('switchFile', newName) }, diff --git a/src/app/panels/terminal.js b/src/app/panels/terminal.js index 8b8a8a9926..cc0fbf7693 100644 --- a/src/app/panels/terminal.js +++ b/src/app/panels/terminal.js @@ -127,7 +127,7 @@ class Terminal { ` self._view.icon = yo` ` + class="btn btn-secondary btn-sm align-items-center ${css.toggleTerminal} fa fa-angle-double-down">` self._view.dragbar = yo`
` self._view.dropdown = self._components.dropdown.render() diff --git a/src/app/tabs/debugger-tab.js b/src/app/tabs/debugger-tab.js index 8be80c9be7..8b133a54ba 100644 --- a/src/app/tabs/debugger-tab.js +++ b/src/app/tabs/debugger-tab.js @@ -5,7 +5,7 @@ var DebuggerUI = require('../debugger/debuggerUI') import { BaseApi } from 'remix-plugin' -const profile = { displayName: 'Debugger', +const profile = { name: 'debugger', displayName: 'Debuggerr', methods: [], diff --git a/src/app/tabs/settings-tab.js b/src/app/tabs/settings-tab.js index 9c700715b0..21b2623791 100644 --- a/src/app/tabs/settings-tab.js +++ b/src/app/tabs/settings-tab.js @@ -41,7 +41,7 @@ module.exports = class SettingsTab extends BaseApi { initTheme () { this.currentTheme = this._deps.themeModule.currentTheme() } - + createThemeCheckies () { let themes = this._deps.themeModule.getThemes() const onswitchTheme = (event, name) => { diff --git a/src/app/ui/styles/dropdown-styles.js b/src/app/ui/styles/dropdown-styles.js index d29b0944bf..6868788b35 100644 --- a/src/app/ui/styles/dropdown-styles.js +++ b/src/app/ui/styles/dropdown-styles.js @@ -8,6 +8,8 @@ var css = csjs` flex-direction : column; margin-left : 10px; width : auto; + margin-top : 2px; + max-height : 24px; } .selectbox { display : flex; @@ -31,7 +33,7 @@ var css = csjs` display : flex; flex-direction : column; align-items : end; - top : 32px; + top : 23px; left : 0; width : 245px; border : 1px solid var(--dark);