diff --git a/src/app/panels/styles/terminal-styles.js b/src/app/panels/styles/terminal-styles.js index 8168747186..cc342283a8 100644 --- a/src/app/panels/styles/terminal-styles.js +++ b/src/app/panels/styles/terminal-styles.js @@ -90,17 +90,17 @@ var css = csjs` .search { display : flex; align-items : center; - width : 200px; + width : 330px; padding-left : 20px; height : 100%; } .filter { - width : 200px; padding-right : 0px; margin-right : 0px; - border-top-left-radius : 0px; - border-bottom-left-radius : 0px; height : 100%; + white-space : nowrap; + overflow : hidden; + text-overflow : ellipsis; } .searchIcon { height : 100%; diff --git a/src/app/panels/terminal.js b/src/app/panels/terminal.js index 524f6c4eb6..6b36436383 100644 --- a/src/app/panels/terminal.js +++ b/src/app/panels/terminal.js @@ -125,7 +125,14 @@ class Terminal extends BaseApi {
` self._view.pendingTxCount = yo`
0
` - self._view.inputSearch = yo`` + self._view.inputSearch = yo` + ` self._view.bar = yo`
${self._view.dragbar} @@ -138,9 +145,19 @@ class Terminal extends BaseApi { ${self._view.pendingTxCount}
- - + +
diff --git a/src/app/tabs/styles/debugger-tab-styles.js b/src/app/tabs/styles/debugger-tab-styles.js index 6a15d2cf56..31400f9045 100644 --- a/src/app/tabs/styles/debugger-tab-styles.js +++ b/src/app/tabs/styles/debugger-tab-styles.js @@ -6,6 +6,7 @@ const css = csjs` } .debugger { margin-bottom: 1%; + width: max-content; } ` diff --git a/src/app/ui/landing-page/landing-page.js b/src/app/ui/landing-page/landing-page.js index 6be9e16b31..6510889222 100644 --- a/src/app/ui/landing-page/landing-page.js +++ b/src/app/ui/landing-page/landing-page.js @@ -163,11 +163,19 @@ export class LandingPage extends BaseApi { globalRegistry.get('verticalicon').api.select('fileExplorers') } + globalRegistry.get('themeModule').api.events.on('themeChanged', (type) => { + const invert = type === 'dark' ? 1 : 0 + const img = document.getElementById('remixLogo') + if (img) { + img.style.filter = `invert(${invert})` + } + }) + let container = yo`
- remix logo +

The new layout has arrived