From 000949212d94c1781d821d6a2cedeef7a4b7ccfe Mon Sep 17 00:00:00 2001 From: alexcherman Date: Wed, 6 Nov 2019 11:46:00 +0100 Subject: [PATCH 1/7] Change plugin connect button --- src/app/components/plugin-manager-component.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/components/plugin-manager-component.js b/src/app/components/plugin-manager-component.js index cf564ddecc..d35366ae2c 100644 --- a/src/app/components/plugin-manager-component.js +++ b/src/app/components/plugin-manager-component.js @@ -196,7 +196,7 @@ class PluginManagerComponent extends ViewPlugin {
-
From 3bc5d8f3e6f80ceeb12180e28aa10c65e134fd5b Mon Sep 17 00:00:00 2001 From: alexcherman Date: Wed, 6 Nov 2019 11:47:05 +0100 Subject: [PATCH 2/7] Fix at address button height --- src/app/tabs/styles/run-tab-styles.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/app/tabs/styles/run-tab-styles.js b/src/app/tabs/styles/run-tab-styles.js index 4efd19fe56..a4c8fe39fc 100644 --- a/src/app/tabs/styles/run-tab-styles.js +++ b/src/app/tabs/styles/run-tab-styles.js @@ -120,7 +120,7 @@ var css = csjs` margin: 0; min-width: 100px; width: 100px; - /* font-size: 10px; */ + height: 100%; word-break: inherit; border-top-right-radius: 0; border-bottom-right-radius: 0; @@ -128,10 +128,12 @@ var css = csjs` } .atAddressSect { margin-top: 6px; + height: 32px; } .atAddressSect input { border-top-left-radius: 0; border-bottom-left-radius: 0; + height: 100%; } .ataddressinput { padding: .25rem; From c7ddfe79d736de45a9207a3e37c011a6b8c97ac2 Mon Sep 17 00:00:00 2001 From: alexcherman Date: Wed, 6 Nov 2019 11:47:26 +0100 Subject: [PATCH 3/7] Update dark theme --- src/app/tabs/theme-module.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/tabs/theme-module.js b/src/app/tabs/theme-module.js index 65501b7fb3..9ff1d7a74c 100644 --- a/src/app/tabs/theme-module.js +++ b/src/app/tabs/theme-module.js @@ -3,7 +3,7 @@ import { EventEmitter } from 'events' import * as packageJson from '../../../package.json' const themes = [ - {name: 'Dark', quality: 'dark', url: 'https://res.cloudinary.com/dvtmp0niu/raw/upload/v1572963493/remix-custom-dark.css'}, + {name: 'Dark', quality: 'dark', url: 'https://res.cloudinary.com/dvtmp0niu/raw/upload/v1573037013/remix-dark-theme.css'}, {name: 'Light', quality: 'light', url: 'https://res.cloudinary.com/dvtmp0niu/raw/upload/v1572342742/light-theme.css'}, // switching to the url Todo: remove when the theme is ready From 6c5baf1eb8572cac382e1fd43bf0841171f61692 Mon Sep 17 00:00:00 2001 From: alexcherman Date: Wed, 6 Nov 2019 13:54:10 +0100 Subject: [PATCH 4/7] Change toaster background --- src/app/tabs/theme-module.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/tabs/theme-module.js b/src/app/tabs/theme-module.js index 9ff1d7a74c..f131daf45c 100644 --- a/src/app/tabs/theme-module.js +++ b/src/app/tabs/theme-module.js @@ -3,7 +3,7 @@ import { EventEmitter } from 'events' import * as packageJson from '../../../package.json' const themes = [ - {name: 'Dark', quality: 'dark', url: 'https://res.cloudinary.com/dvtmp0niu/raw/upload/v1573037013/remix-dark-theme.css'}, + {name: 'Dark', quality: 'dark', url: 'https://res.cloudinary.com/dvtmp0niu/raw/upload/v1573044638/remix-dark.css'}, {name: 'Light', quality: 'light', url: 'https://res.cloudinary.com/dvtmp0niu/raw/upload/v1572342742/light-theme.css'}, // switching to the url Todo: remove when the theme is ready From d04213df9d3d18b051b0cec6a288d912599c4987 Mon Sep 17 00:00:00 2001 From: alexcherman Date: Thu, 7 Nov 2019 15:18:38 +0100 Subject: [PATCH 5/7] Remove unnecessary class and change text-dark color --- src/app/components/plugin-manager-component.js | 2 +- src/app/tabs/theme-module.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/components/plugin-manager-component.js b/src/app/components/plugin-manager-component.js index d35366ae2c..cf564ddecc 100644 --- a/src/app/components/plugin-manager-component.js +++ b/src/app/components/plugin-manager-component.js @@ -196,7 +196,7 @@ class PluginManagerComponent extends ViewPlugin {
-
diff --git a/src/app/tabs/theme-module.js b/src/app/tabs/theme-module.js index f131daf45c..f7c005209f 100644 --- a/src/app/tabs/theme-module.js +++ b/src/app/tabs/theme-module.js @@ -3,7 +3,7 @@ import { EventEmitter } from 'events' import * as packageJson from '../../../package.json' const themes = [ - {name: 'Dark', quality: 'dark', url: 'https://res.cloudinary.com/dvtmp0niu/raw/upload/v1573044638/remix-dark.css'}, + {name: 'Dark', quality: 'dark', url: 'https://res.cloudinary.com/dvtmp0niu/raw/upload/v1573136151/remix-dark.css'}, {name: 'Light', quality: 'light', url: 'https://res.cloudinary.com/dvtmp0niu/raw/upload/v1572342742/light-theme.css'}, // switching to the url Todo: remove when the theme is ready From e12a04c6155b7a31646167dfcf5371503a7ac2fc Mon Sep 17 00:00:00 2001 From: alexcherman Date: Thu, 7 Nov 2019 16:32:13 +0100 Subject: [PATCH 6/7] Update text-dark color --- src/app/tabs/theme-module.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/tabs/theme-module.js b/src/app/tabs/theme-module.js index f7c005209f..a4dec2522f 100644 --- a/src/app/tabs/theme-module.js +++ b/src/app/tabs/theme-module.js @@ -3,7 +3,7 @@ import { EventEmitter } from 'events' import * as packageJson from '../../../package.json' const themes = [ - {name: 'Dark', quality: 'dark', url: 'https://res.cloudinary.com/dvtmp0niu/raw/upload/v1573136151/remix-dark.css'}, + {name: 'Dark', quality: 'dark', url: 'https://res.cloudinary.com/dvtmp0niu/raw/upload/v1573140701/remix-dark.css'}, {name: 'Light', quality: 'light', url: 'https://res.cloudinary.com/dvtmp0niu/raw/upload/v1572342742/light-theme.css'}, // switching to the url Todo: remove when the theme is ready From b6eb16f85f380c40a25f3d5b7f6cde35dad43f9c Mon Sep 17 00:00:00 2001 From: alexcherman Date: Tue, 12 Nov 2019 16:41:52 +0100 Subject: [PATCH 7/7] Fix alpha badge colors --- src/app/components/plugin-manager-component.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/components/plugin-manager-component.js b/src/app/components/plugin-manager-component.js index cf564ddecc..5400c40d19 100644 --- a/src/app/components/plugin-manager-component.js +++ b/src/app/components/plugin-manager-component.js @@ -97,7 +97,7 @@ class PluginManagerComponent extends ViewPlugin { let versionWarning // Alpha if (api.profile.version && api.profile.version.match(/\b(\w*alpha\w*)\b/g)) { - versionWarning = yo`alpha` + versionWarning = yo`alpha` } // Beta if (api.profile.version && api.profile.version.match(/\b(\w*beta\w*)\b/g)) {