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

Dark theme update
pull/1/head
Rob 5 years ago committed by GitHub
commit b3da51d84f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/app/components/plugin-manager-component.js
  2. 4
      src/app/tabs/styles/run-tab-styles.js
  3. 2
      src/app/tabs/theme-module.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`<small title="Version Alpha" class="${css.versionWarning}">alpha</small>`
versionWarning = yo`<small title="Version Alpha" class="${css.versionWarning} plugin-version">alpha</small>`
}
// Beta
if (api.profile.version && api.profile.version.match(/\b(\w*beta\w*)\b/g)) {

@ -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;

@ -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/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

Loading…
Cancel
Save