diff --git a/.stylelintrc.json b/.stylelintrc.json index c91107595..afdfd5f5b 100644 --- a/.stylelintrc.json +++ b/.stylelintrc.json @@ -12,6 +12,8 @@ "custom-property-pattern": null, "keyframes-name-pattern": null, "scss/operator-no-newline-after": null, + "declaration-property-value-no-unknown": true, + "scss/declaration-property-value-no-unknown": true, "declaration-block-no-redundant-longhand-properties": [ true, { diff --git a/changelog.d/linter.skip b/changelog.d/linter.skip new file mode 100644 index 000000000..e69de29bb diff --git a/changelog.d/timed.add b/changelog.d/timed.add new file mode 100644 index 000000000..66cb50c9f --- /dev/null +++ b/changelog.d/timed.add @@ -0,0 +1 @@ +Support for expiring mutes and blocks (if available) diff --git a/src/App.scss b/src/App.scss index d56306c9e..64c8b8b82 100644 --- a/src/App.scss +++ b/src/App.scss @@ -525,6 +525,10 @@ textarea { height: unset; } + &::placeholder { + color: var(--textFaint) + } + --_padding: 0.5em; border: none; @@ -1075,7 +1079,7 @@ option { scale: 1.0063 0.9938; translate: 0 -10%; transform: rotateZ(var(--defaultZ)); - animation-timing-function: ease-in-ou; + animation-timing-function: ease-in-out; } 90% { diff --git a/src/boot/after_store.js b/src/boot/after_store.js index 3ef92fd11..fd4c57229 100644 --- a/src/boot/after_store.js +++ b/src/boot/after_store.js @@ -254,7 +254,6 @@ const getNodeInfo = async ({ store }) => { const data = await res.json() const metadata = data.metadata const features = metadata.features - console.log(features) store.dispatch('setInstanceOption', { name: 'name', value: metadata.nodeName }) store.dispatch('setInstanceOption', { name: 'registrationOpen', value: data.openRegistrations }) store.dispatch('setInstanceOption', { name: 'mediaProxyAvailable', value: features.includes('media_proxy') }) diff --git a/src/components/account_actions/account_actions.vue b/src/components/account_actions/account_actions.vue index f3cca45d0..be281c5ae 100644 --- a/src/components/account_actions/account_actions.vue +++ b/src/components/account_actions/account_actions.vue @@ -3,7 +3,6 @@