Move style changes to bootstrap theme

pull/5370/head
alexcherman 5 years ago
parent 9a85014df7
commit 1db45ad1ea
  1. 18
      src/app/components/plugin-manager-component.js
  2. 2
      src/app/tabs/theme-module.js

@ -30,10 +30,6 @@ const css = csjs`
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: space-between; justify-content: space-between;
margin: 0;
font-size: 13px;
line-height: 16px;
text-transform: uppercase;
} }
.description { .description {
font-size: 13px; font-size: 13px;
@ -121,7 +117,7 @@ class PluginManagerComponent extends ViewPlugin {
return yo` return yo`
<article id="remixPluginManagerListItem_${name}" class="list-group-item px-2 pt-2 pb-0 plugins-list-group-item" title="${displayName}" > <article id="remixPluginManagerListItem_${name}" class="list-group-item px-2 pt-2 pb-0 plugins-list-group-item" title="${displayName}" >
<div class="${css.row} justify-content-between align-items-center mb-2"> <div class="${css.row} justify-content-between align-items-center mb-2">
<h6 class="${css.displayName}"> <h6 class="${css.displayName} plugin-name">
${displayName} ${displayName}
${versionWarning} ${versionWarning}
</h6> </h6>
@ -179,16 +175,16 @@ class PluginManagerComponent extends ViewPlugin {
const activeTile = actives.length !== 0 const activeTile = actives.length !== 0
? yo` ? yo`
<nav class="plugins-list-header justify-content-start navbar navbar-expand-lg bg-light navbar-light align-items-center px-4 py-3"> <nav class="plugins-list-header justify-content-between navbar navbar-expand-lg bg-light navbar-light align-items-center">
<span class="h6 mb-0 mr-2">Active Modules</span> <span class="navbar-brand plugins-list-title">Active Modules</span>
<span class="badge badge-pill badge-warning">${actives.length}</span> <span class="badge badge-primary">${actives.length}</span>
</nav>` </nav>`
: '' : ''
const inactiveTile = inactives.length !== 0 const inactiveTile = inactives.length !== 0
? yo` ? yo`
<nav class="plugins-list-header justify-content-start navbar navbar-expand-lg bg-light navbar-light align-items-center px-4 py-3"> <nav class="plugins-list-header justify-content-between navbar navbar-expand-lg bg-light navbar-light align-items-center">
<span class="h6 mb-0 mr-2">Inactive Modules</span> <span class="navbar-brand plugins-list-title h6 mb-0 mr-2">Inactive Modules</span>
<span class="badge badge-pill badge-warning" style = "cursor: default;">${inactives.length}</span> <span class="badge badge-primary" style = "cursor: default;">${inactives.length}</span>
</nav>` </nav>`
: '' : ''

@ -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/v1572868094/remix-custom-dark.css'}, {name: 'Dark', quality: 'dark', url: 'https://res.cloudinary.com/dvtmp0niu/raw/upload/v1572885068/remix-custom-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

Loading…
Cancel
Save