Unverified Commit b3da51d8 authored by Rob's avatar Rob Committed by GitHub

Merge pull request #2426 from EthWorks/dark-theme-update

Dark theme update
parents 1b8eb199 f85773a8
...@@ -97,7 +97,7 @@ class PluginManagerComponent extends ViewPlugin { ...@@ -97,7 +97,7 @@ class PluginManagerComponent extends ViewPlugin {
let versionWarning let versionWarning
// Alpha // Alpha
if (api.profile.version && api.profile.version.match(/\b(\w*alpha\w*)\b/g)) { if (api.profile.version && api.profile.version.match(/\b(\w*alpha\w*)\b/g)) {
versionWarning = yo`<small title="Version Alpha" class="${css.versionWarning}">alpha</small>` versionWarning = yo`<small title="Version Alpha" class="${css.versionWarning} plugin-version">alpha</small>`
} }
// Beta // Beta
if (api.profile.version && api.profile.version.match(/\b(\w*beta\w*)\b/g)) { if (api.profile.version && api.profile.version.match(/\b(\w*beta\w*)\b/g)) {
......
...@@ -120,7 +120,7 @@ var css = csjs` ...@@ -120,7 +120,7 @@ var css = csjs`
margin: 0; margin: 0;
min-width: 100px; min-width: 100px;
width: 100px; width: 100px;
/* font-size: 10px; */ height: 100%;
word-break: inherit; word-break: inherit;
border-top-right-radius: 0; border-top-right-radius: 0;
border-bottom-right-radius: 0; border-bottom-right-radius: 0;
...@@ -128,10 +128,12 @@ var css = csjs` ...@@ -128,10 +128,12 @@ var css = csjs`
} }
.atAddressSect { .atAddressSect {
margin-top: 6px; margin-top: 6px;
height: 32px;
} }
.atAddressSect input { .atAddressSect input {
border-top-left-radius: 0; border-top-left-radius: 0;
border-bottom-left-radius: 0; border-bottom-left-radius: 0;
height: 100%;
} }
.ataddressinput { .ataddressinput {
padding: .25rem; padding: .25rem;
......
...@@ -3,7 +3,7 @@ import { EventEmitter } from 'events' ...@@ -3,7 +3,7 @@ import { EventEmitter } from 'events'
import * as packageJson from '../../../package.json' import * as packageJson from '../../../package.json'
const themes = [ 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/v1573140701/remix-dark.css'},
{name: 'Light', quality: 'light', url: 'https://res.cloudinary.com/dvtmp0niu/raw/upload/v1572342742/light-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 // switching to the url Todo: remove when the theme is ready
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment