diff --git a/build/copy_plugin.js b/build/copy_plugin.js index a783fe7ff..694048a36 100644 --- a/build/copy_plugin.js +++ b/build/copy_plugin.js @@ -29,9 +29,9 @@ const copyPlugin = ({ inUrl, inFs }) => { order: 'post', sequential: true, async handler () { - console.log(`Copying '${inFs}' to ${copyTarget}...`) + console.info(`Copying '${inFs}' to ${copyTarget}...`) await cp(inFs, copyTarget, { recursive: true }) - console.log('Done.') + console.info('Done.') } } }] diff --git a/build/sw_plugin.js b/build/sw_plugin.js index a2c792b7d..d970c5c09 100644 --- a/build/sw_plugin.js +++ b/build/sw_plugin.js @@ -178,7 +178,7 @@ export const buildSwPlugin = ({ order: 'post', sequential: true, async handler () { - console.log('Building service worker for production') + console.info('Building service worker for production') await build(config) } } diff --git a/changelog.d/admin_tab.add b/changelog.d/admin_tab.add new file mode 100644 index 000000000..403695a09 --- /dev/null +++ b/changelog.d/admin_tab.add @@ -0,0 +1,2 @@ +Most of the remaining AdminFE tabs were added into Admin Dashboard +It's now possible to customize PWA Manfiest from PleromaFE diff --git a/src/App.scss b/src/App.scss index ee1654bb7..1eee63a7e 100644 --- a/src/App.scss +++ b/src/App.scss @@ -513,6 +513,12 @@ nav { } } +label { + &.-disabled { + color: var(--textFaint); + } +} + input, textarea { border: none; @@ -553,6 +559,10 @@ textarea { &[disabled="disabled"], &.disabled { cursor: not-allowed; + color: var(--textFaint); + + /* stylelint-disable-next-line declaration-no-important */ + background-color: transparent !important; } &[type="range"] { @@ -578,6 +588,8 @@ textarea { & + label::before { opacity: 0.5; } + + background-color: var(--background); } + label::before { @@ -677,7 +689,8 @@ option { list-style: none; display: grid; grid-auto-flow: row dense; - grid-template-columns: 1fr 1fr; + grid-template-columns: repeat(auto-fit, minmax(20em, 1fr)); + grid-gap: 0.5em; li { border: 1px solid var(--border); @@ -698,7 +711,6 @@ option { --_roundness-right: 0; position: relative; - flex: 1 1 auto; } > *:first-child, diff --git a/src/components/checkbox/checkbox.vue b/src/components/checkbox/checkbox.vue index c8bba4c44..1e0f5ad05 100644 --- a/src/components/checkbox/checkbox.vue +++ b/src/components/checkbox/checkbox.vue @@ -1,7 +1,7 @@