Make drafts work with Themes 3
This commit is contained in:
parent
55598d1cad
commit
f41f7c77d9
|
@ -749,9 +749,8 @@ option {
|
|||
margin-top: -1em;
|
||||
}
|
||||
|
||||
&.badge-neutral {
|
||||
background-color: $fallback--cGreen;
|
||||
background-color: var(--badgeNeutral, $fallback--cGreen);
|
||||
&.-neutral {
|
||||
background-color: var(--badgeNeutral);
|
||||
color: white;
|
||||
color: var(--badgeNeutralText, white);
|
||||
}
|
||||
|
|
|
@ -72,18 +72,14 @@
|
|||
<script src="./draft.js"></script>
|
||||
|
||||
<style lang="scss">
|
||||
@import "src/variables";
|
||||
|
||||
.Draft {
|
||||
margin: 1em;
|
||||
|
||||
.status-content {
|
||||
border: 1px solid $fallback--faint;
|
||||
border-color: var(--faint, $fallback--faint);
|
||||
border-radius: $fallback--inputRadius;
|
||||
border-radius: var(--inputRadius, $fallback--inputRadius);
|
||||
color: $fallback--text;
|
||||
color: var(--text, $fallback--text);
|
||||
border: 1px solid;
|
||||
border-color: var(--faint);
|
||||
border-radius: var(--inputRadius);
|
||||
color: var(--text);
|
||||
padding: 0.5em;
|
||||
margin: 0.5em 0;
|
||||
}
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
v-body-scroll-lock="true"
|
||||
class="confirm-modal"
|
||||
:on-cancel="cancel"
|
||||
>
|
||||
>
|
||||
<template #header>
|
||||
<span>
|
||||
{{ $t('post_status.close_confirm_title') }}
|
||||
|
|
|
@ -34,8 +34,8 @@
|
|||
<slot />
|
||||
<div
|
||||
v-if="item.badgeGetter && getters[item.badgeGetter]"
|
||||
class="badge -notification"
|
||||
:class="[`badge-${item.badgeStyle}`]"
|
||||
class="badge"
|
||||
:class="[`-${item.badgeStyle}`]"
|
||||
>
|
||||
{{ getters[item.badgeGetter] }}
|
||||
</div>
|
||||
|
|
|
@ -19,8 +19,8 @@
|
|||
>{{ item.iconLetter }}</span>
|
||||
<div
|
||||
v-if="item.badgeGetter && getters[item.badgeGetter]"
|
||||
class="badge -dot -notification"
|
||||
:class="[`alert-dot-${item.badgeStyle}`]"
|
||||
class="badge -dot"
|
||||
:class="[`-${item.badgeStyle}`]"
|
||||
/>
|
||||
</router-link>
|
||||
</span>
|
||||
|
@ -36,13 +36,11 @@
|
|||
height: 100%;
|
||||
|
||||
&.alert-dot-notification {
|
||||
background-color: $fallback--cRed;
|
||||
background-color: var(--badgeNotification, $fallback--cRed);
|
||||
background-color: var(--badgeNotification);
|
||||
}
|
||||
|
||||
&.alert-dot-neutral {
|
||||
background-color: $fallback--cGreen;
|
||||
background-color: var(--badgeNeutral, $fallback--cGreen);
|
||||
background-color: var(--badgeNeutral);
|
||||
}
|
||||
|
||||
.pinned-item {
|
||||
|
|
|
@ -255,7 +255,7 @@
|
|||
/> {{ $t('nav.drafts') }}
|
||||
<span
|
||||
v-if="draftCount"
|
||||
class="badge badge-neutral"
|
||||
class="badge -neutral"
|
||||
>
|
||||
{{ draftCount }}
|
||||
</span>
|
||||
|
|
Loading…
Reference in a new issue