margin to margin-inline & padding to padding-inline

This commit is contained in:
freeplay 2023-07-09 21:27:07 -04:00
parent 4c313ea7ab
commit 44375d2b2c
140 changed files with 351 additions and 351 deletions

View file

@ -83,8 +83,8 @@ button {
color: rgb(156, 207, 216);
font-size: 16px;
padding: 0 20px;
margin-right: 5px;
margin-left: 5px;
margin-inline-end: 5px;
margin-inline-start: 5px;
}
button:hover {
background: #555;

View file

@ -19,7 +19,7 @@ main {
img {
border-radius: 10px;
margin-right: 10px;
margin-inline-end: 10px;
}
#form {

View file

@ -47,7 +47,7 @@ export async function sendEmail(
<body style="background: #191724; padding: 16px; margin: 0; font-family: sans-serif; font-size: 14px;">
<main style="max-width: 500px; margin: 0 auto; background: #1f1d2e; color: #e0def4; border-radius: 20px;">
<header style="padding: 32px; background: #31748f; color: #e0def4; display: flex; border-radius: 20px;">
<img src="${meta.logoImageUrl || meta.iconUrl || iconUrl}" style="max-width: 128px; max-height: 72px; vertical-align: bottom; margin-right: 16px;"/>
<img src="${meta.logoImageUrl || meta.iconUrl || iconUrl}" style="max-width: 128px; max-height: 72px; vertical-align: bottom; margin-inline-end: 16px;"/>
<h1 style="margin: 0 0 1em 0;">${meta.name}</h1>
</header>
<article style="padding: 32px;">

View file

@ -128,7 +128,7 @@ function resolve() {
}
> .names {
margin-left: 0.3em;
margin-inline-start: 0.3em;
padding: 0 8px;
flex: 1;

View file

@ -9,7 +9,7 @@
<template #header>
<i
class="ph-warning-circle ph-bold ph-lg"
style="margin-right: 0.5em"
style="margin-inline-end: 0.5em"
></i>
<I18n :src="i18n.ts.reportAbuseOf" tag="span">
<template #name>

View file

@ -125,8 +125,8 @@ function onMousedown(evt: MouseEvent): void {
overflow: clip;
box-sizing: border-box;
transition: background 0.1s ease;
margin-right: 0.2rem;
margin-left: 0.2rem;
margin-inline-end: 0.2rem;
margin-inline-start: 0.2rem;
&:not(:disabled):hover {
background: var(--buttonHoverBg);

View file

@ -129,7 +129,7 @@ async function onClick() {
}
> span {
margin-right: 6px;
margin-inline-end: 6px;
}
}
</style>

View file

@ -11,7 +11,7 @@
<I18n
:src="i18n.ts._channel.usersCount"
tag="span"
style="margin-left: 4px"
style="margin-inline-start: 4px"
>
<template #n>
<b>{{ channel.usersCount }}</b>
@ -23,7 +23,7 @@
<I18n
:src="i18n.ts._channel.notesCount"
tag="span"
style="margin-left: 4px"
style="margin-inline-start: 4px"
>
<template #n>
<b>{{ channel.notesCount }}</b>

View file

@ -61,7 +61,7 @@ const emit = defineEmits<{
height: 8px;
border-width: 1px;
border-style: solid;
margin-right: 8px;
margin-inline-end: 8px;
}
}
}

View file

@ -220,7 +220,7 @@ export default defineComponent({
padding: 12px 16px;
> ::v-deep(i) {
margin-right: 6px;
margin-inline-end: 6px;
transform: translateY(0.1em);
}

View file

@ -174,18 +174,18 @@ export default defineComponent({
> span {
&:first-child {
margin-right: 8px;
margin-inline-end: 8px;
> .icon {
margin-right: 8px;
margin-inline-end: 8px;
}
}
&:last-child {
margin-left: 8px;
margin-inline-start: 8px;
> .icon {
margin-left: 8px;
margin-inline-start: 8px;
}
}
}

View file

@ -336,8 +336,8 @@ function onContextmenu(ev: MouseEvent) {
color: var(--desktopDriveFolderFg);
> i {
margin-right: 4px;
margin-left: 2px;
margin-inline-end: 4px;
margin-inline-start: 2px;
text-align: left;
}
}

View file

@ -133,7 +133,7 @@ function onDrop(ev: DragEvent) {
}
> i {
margin-right: 4px;
margin-inline-end: 4px;
}
}
</style>

View file

@ -833,7 +833,7 @@ onBeforeUnmount(() => {
}
> .menu {
margin-left: auto;
margin-inline-start: auto;
padding: 0 12px;
}
}

View file

@ -22,7 +22,7 @@
}}
<span
v-if="selected.length > 0"
style="margin-left: 8px; opacity: 0.5"
style="margin-inline-start: 8px; opacity: 0.5"
>({{ number(selected.length) }})</span
>
</template>

View file

@ -36,7 +36,7 @@
<div v-else>{{ i18n.ts.system }}</div>
</div>
<div>
<span style="margin-right: 1em">{{ file.type }}</span>
<span style="margin-inline-end: 1em">{{ file.type }}</span>
<span>{{ bytes(file.size) }}</span>
</div>
<div>
@ -98,7 +98,7 @@ const props = defineProps<{
}
> .body {
margin-left: 0.3em;
margin-inline-start: 0.3em;
padding: 8px;
flex: 1;

View file

@ -166,7 +166,7 @@ export default defineComponent({
padding: 12px 16px 12px 0;
> i {
margin-right: 6px;
margin-inline-end: 6px;
}
&:empty {

View file

@ -264,7 +264,7 @@ onBeforeUnmount(() => {
}
> span {
margin-right: 6px;
margin-inline-end: 6px;
}
}

View file

@ -81,7 +81,7 @@ const props = defineProps<{
display: flex;
> .avatar {
margin-left: auto;
margin-inline-start: auto;
width: 32px;
height: 32px;
}

View file

@ -83,8 +83,8 @@ const modal = $ref<InstanceType<typeof MkModal>>();
opacity: 0.8;
> span + span {
margin-left: 0.5em;
padding-left: 0.5em;
margin-inline-start: 0.5em;
padding-inline-start: 0.5em;
border-left: solid 1px rgba(255, 255, 255, 0.5);
}
}

View file

@ -81,10 +81,10 @@ function close() {
}
> i {
margin-right: 4px;
margin-inline-end: 4px;
}
> .close {
margin-left: auto;
margin-inline-start: auto;
float: right;
}
}

View file

@ -71,7 +71,7 @@ function getInstanceIcon(instance): string {
height: ($bodyTitleHieght + $bodyInfoHieght);
object-fit: cover;
border-radius: 4px;
margin-right: 10px;
margin-inline-end: 10px;
}
> :global(.body) {
@ -79,7 +79,7 @@ function getInstanceIcon(instance): string {
overflow: hidden;
font-size: 0.9em;
color: var(--fg);
padding-right: 8px;
padding-inline-end: 8px;
> :global(.host) {
display: block;

View file

@ -167,7 +167,7 @@ const cancel = () => {
> .icon {
width: 16px;
height: 16px;
margin-right: 8px;
margin-inline-end: 8px;
float: left;
}
}

View file

@ -80,7 +80,7 @@ function getInstanceIcon(instance): string {
> .name {
display: none;
margin-left: 4px;
margin-inline-start: 4px;
font-size: 0.85em;
vertical-align: top;
font-weight: bold;

View file

@ -9,7 +9,7 @@
v-if="copy"
v-tooltip="i18n.ts.copy"
class="_textButton"
style="margin-left: 0.5em"
style="margin-inline-start: 0.5em"
@click="copy_"
>
<i class="ph-clipboard-text ph-bold"></i>

View file

@ -58,7 +58,7 @@ useTooltip($$(el), (showing) => {
word-break: break-all;
> .icon {
padding-left: 2px;
padding-inline-start: 2px;
font-size: 0.9em;
}
}

View file

@ -111,7 +111,7 @@ onMounted(() => {
}
> *:not(:last-child) {
margin-right: 0.2em;
margin-inline-end: 0.2em;
}
> .icon {

View file

@ -318,8 +318,8 @@ export default defineComponent({
opacity: 0.8;
> span + span {
margin-left: 0.5em;
padding-left: 0.5em;
margin-inline-start: 0.5em;
padding-inline-start: 0.5em;
border-left: solid 1px rgba(255, 255, 255, 0.5);
}
}

View file

@ -473,7 +473,7 @@ onBeforeUnmount(() => {
cursor: default;
> .caret {
margin-left: auto;
margin-inline-start: auto;
}
&.childShowing {
@ -487,12 +487,12 @@ onBeforeUnmount(() => {
}
> i {
margin-right: 5px;
margin-inline-end: 5px;
width: 20px;
}
> .avatar {
margin-right: 5px;
margin-inline-end: 5px;
width: 20px;
height: 20px;
}
@ -532,7 +532,7 @@ onBeforeUnmount(() => {
}
> i {
margin-right: 14px;
margin-inline-end: 14px;
width: 24px;
}
}

View file

@ -193,7 +193,7 @@ function onContextmenu(ev: MouseEvent) {
@media (max-width: 500px) {
height: $height-narrow;
line-height: $height-narrow;
padding-left: 16px;
padding-inline-start: 16px;
> button {
height: $height-narrow;
@ -205,7 +205,7 @@ function onContextmenu(ev: MouseEvent) {
flex: 1;
> .icon {
margin-right: 0.5em;
margin-inline-end: 0.5em;
}
}
}

View file

@ -145,7 +145,7 @@ defineExpose({
> .title {
flex: 1;
line-height: $height;
padding-left: 32px;
padding-inline-start: 32px;
font-weight: bold;
white-space: nowrap;
overflow: hidden;
@ -154,12 +154,12 @@ defineExpose({
@media (max-width: 500px) {
line-height: $height-narrow;
padding-left: 16px;
padding-inline-start: 16px;
}
}
> button + .title {
padding-left: 0;
padding-inline-start: 0;
}
}

View file

@ -2,7 +2,7 @@
<div class="msjugskd _block">
<i
class="ph-airplane-takeoff ph-bold ph-lg"
style="margin-right: 8px"
style="margin-inline-end: 8px"
/>
{{ i18n.ts.accountMoved }}
<MkMention class="link" :username="acct" :host="host" />
@ -28,7 +28,7 @@ defineProps<{
border-radius: var(--radius);
> .link {
margin-left: 4px;
margin-inline-start: 4px;
color: var(--accent);
}
}

View file

@ -653,7 +653,7 @@ defineExpose({
margin-bottom: -4px;
margin-top: 16px;
border-left: 2px solid currentColor;
margin-left: calc((var(--avatarSize) / 2) - 1px);
margin-inline-start: calc((var(--avatarSize) / 2) - 1px);
opacity: 0.25;
}
}
@ -678,14 +678,14 @@ defineExpose({
z-index: 2;
width: var(--avatarSize);
display: flex;
margin-right: 14px;
margin-inline-end: 14px;
margin-top: 0;
flex-grow: 0;
pointer-events: none;
}
> div > i {
margin-left: -0.5px;
margin-inline-start: -0.5px;
}
> .info {
display: flex;
@ -695,11 +695,11 @@ defineExpose({
color: #f6c177;
> i {
margin-right: 4px;
margin-inline-end: 4px;
}
> .hide {
margin-left: auto;
margin-inline-start: auto;
color: inherit;
}
}
@ -712,7 +712,7 @@ defineExpose({
cursor: pointer;
> i {
margin-right: 4px;
margin-inline-end: 4px;
}
> span {
@ -727,7 +727,7 @@ defineExpose({
}
> .info {
margin-left: auto;
margin-inline-start: auto;
font-size: 0.9em;
display: flex;
@ -737,7 +737,7 @@ defineExpose({
display: inline-flex;
align-items: center;
> .dropdownIcon {
margin-right: 4px;
margin-inline-end: 4px;
}
}
}
@ -751,7 +751,7 @@ defineExpose({
position: absolute;
border-left: 2px solid currentColor;
border-top: 2px solid currentColor;
margin-left: calc(var(--avatarSize) / 2 - 1px);
margin-inline-start: calc(var(--avatarSize) / 2 - 1px);
width: calc(var(--avatarSize) / 2 + 14px);
border-top-left-radius: calc(var(--avatarSize) / 4);
top: calc(50% - 1px);
@ -767,7 +767,7 @@ defineExpose({
height: 1.2em;
border-radius: 2em;
overflow: hidden;
margin-right: 0.4em;
margin-inline-end: 0.4em;
background: var(--panelHighlight);
}
.username {
@ -886,7 +886,7 @@ defineExpose({
transition: background 0.2s;
}
&:first-of-type {
margin-left: -0.5em;
margin-inline-start: -0.5em;
&::before {
border-radius: 100px 0 0 100px;
}
@ -933,7 +933,7 @@ defineExpose({
margin-top: 0px;
}
> .line {
margin-right: 10px;
margin-inline-end: 10px;
&::before {
margin-top: 8px;
}
@ -946,7 +946,7 @@ defineExpose({
padding-top: 104px;
}
> .main > .header-container > .avatar {
margin-right: 10px;
margin-inline-end: 10px;
// top: calc(14px + var(--stickyTop, 0px));
}
}

View file

@ -517,7 +517,7 @@ onUnmounted(() => {
> :deep(.chips) {
padding-block: 6px 12px;
padding-left: 32px;
padding-inline-start: 32px;
&:last-child {
margin-bottom: 12px;
}
@ -629,7 +629,7 @@ onUnmounted(() => {
padding: 12px 0 0 0;
font-size: 1.05rem;
> .header > .body {
padding-left: 10px;
padding-inline-start: 10px;
}
}
> .clips,
@ -638,7 +638,7 @@ onUnmounted(() => {
padding-inline: 16px !important;
}
> :deep(.underline) {
padding-left: 16px !important;
padding-inline-start: 16px !important;
}
}

View file

@ -31,7 +31,7 @@
})
"
class="ph-pencil ph-bold"
style="margin-left: 0.4rem"
style="margin-inline-start: 0.4rem"
></i>
</MkA>
<MkVisibility :note="note" />
@ -82,7 +82,7 @@ const showTicker =
> .avatar {
width: 3.7em;
height: 3.7em;
margin-right: 1em;
margin-inline-end: 1em;
}
> .user-info {
width: 0;
@ -151,7 +151,7 @@ const showTicker =
.info {
display: inline-flex;
flex-shrink: 0;
margin-left: 0.5em;
margin-inline-start: 0.5em;
font-size: 0.9em;
.created-at {
max-width: 100%;
@ -162,7 +162,7 @@ const showTicker =
.ticker {
display: inline-flex;
margin-left: 0.5em;
margin-inline-start: 0.5em;
vertical-align: middle;
> .name {
display: none;

View file

@ -80,7 +80,7 @@ const props = defineProps<{
overflow-wrap: break-word;
> .text {
margin-right: 8px;
margin-inline-end: 8px;
}
}

View file

@ -417,7 +417,7 @@ function noteClick(e) {
outline: none;
&.children {
padding: 10px 0 0 var(--indent);
padding-left: var(--indent) !important;
padding-inline-start: var(--indent) !important;
font-size: 1em;
cursor: auto;
@ -430,7 +430,7 @@ function noteClick(e) {
display: flex;
> .avatar-container {
margin-right: 8px;
margin-inline-end: 8px;
z-index: 2;
> .avatar {
flex-shrink: 0;
@ -494,7 +494,7 @@ function noteClick(e) {
transition: background 0.2s;
}
&:first-of-type {
margin-left: -0.5em;
margin-inline-start: -0.5em;
&::before {
border-radius: 100px 0 0 100px;
}
@ -536,19 +536,19 @@ function noteClick(e) {
&.reply,
&.reply-to {
> .main > .body {
margin-right: -24px;
padding-right: 24px;
margin-inline-end: -24px;
padding-inline-end: 24px;
margin-top: -12px;
padding-top: 12px;
margin-left: calc(0px - var(--avatarSize) - 32px);
padding-left: calc(var(--avatarSize) + 32px);
margin-inline-start: calc(0px - var(--avatarSize) - 32px);
padding-inline-start: calc(var(--avatarSize) + 32px);
border-radius: var(--radius);
}
}
&.reply-to {
> .main > .body {
margin-left: calc(0px - var(--avatarSize) - 38px);
padding-left: calc(var(--avatarSize) + 38px);
margin-inline-start: calc(0px - var(--avatarSize) - 38px);
padding-inline-start: calc(var(--avatarSize) + 38px);
margin-top: -16px;
padding-top: 16px;
}
@ -556,7 +556,7 @@ function noteClick(e) {
&.reply {
--avatarSize: 38px;
.avatar-container {
margin-right: 8px !important;
margin-inline-end: 8px !important;
}
}
> .reply,
@ -580,7 +580,7 @@ function noteClick(e) {
flex-grow: 0 !important;
margin-top: -10px !important;
margin-bottom: 10px !important;
margin-right: 10px !important;
margin-inline-end: 10px !important;
&::before {
border-left-style: dashed !important;
border-bottom-left-radius: 100px !important;
@ -635,7 +635,7 @@ function noteClick(e) {
display: flex;
flex-direction: column;
align-items: center;
margin-right: 14px;
margin-inline-end: 14px;
width: var(--avatarSize);
> .avatar {
width: var(--avatarSize);
@ -657,7 +657,7 @@ function noteClick(e) {
content: "";
position: absolute;
border-left: 2px solid currentColor;
margin-left: calc((var(--avatarSize) / 2) - 1px);
margin-inline-start: calc((var(--avatarSize) / 2) - 1px);
width: calc(var(--indent) / 2);
inset-block: 0;
min-height: 8px;
@ -700,7 +700,7 @@ function noteClick(e) {
position: absolute;
border-left: 2px solid currentColor;
border-bottom: 2px solid currentColor;
margin-left: calc((var(--avatarSize) / 2) - 1px);
margin-inline-start: calc((var(--avatarSize) / 2) - 1px);
width: calc(var(--indent) / 2);
height: calc((var(--avatarSize) / 2));
border-bottom-left-radius: calc(var(--indent) / 2);
@ -723,7 +723,7 @@ function noteClick(e) {
// border-top: 1px solid var(--X13);
// position: absolute;
// bottom: 0;
// margin-left: calc(var(--avatarSize) + 12px);
// margin-inline-start: calc(var(--avatarSize) + 12px);
// inset-inline: 0;
// }
}
@ -751,7 +751,7 @@ function noteClick(e) {
--indent: 35px;
}
> .children:not(.single) {
padding-left: 28px !important;
padding-inline-start: 28px !important;
}
}
&.reply-to {
@ -762,7 +762,7 @@ function noteClick(e) {
margin-bottom: 0 !important;
}
> .main > .avatar-container {
margin-right: 10px;
margin-inline-end: 10px;
}
&:first-child > .main > .body {
margin-top: -20px;

View file

@ -407,7 +407,7 @@ useTooltip(reactionRef, (showing) => {
flex-shrink: 0;
width: 42px;
height: 42px;
margin-right: 8px;
margin-inline-end: 8px;
> .icon {
display: block;
@ -504,7 +504,7 @@ useTooltip(reactionRef, (showing) => {
}
> .time {
margin-left: auto;
margin-inline-start: auto;
font-size: 0.9em;
}
}
@ -531,11 +531,11 @@ useTooltip(reactionRef, (showing) => {
}
> i:first-child {
margin-right: 4px;
margin-inline-end: 4px;
}
> i:last-child {
margin-left: 4px;
margin-inline-start: 4px;
}
}
}

View file

@ -150,7 +150,7 @@ export default defineComponent({
> .element {
display: block;
padding-left: 16px;
padding-inline-start: 16px;
}
}
@ -164,7 +164,7 @@ export default defineComponent({
> .kv {
display: block;
padding-left: 16px;
padding-inline-start: 16px;
> .toggle {
width: 16px;
@ -178,7 +178,7 @@ export default defineComponent({
> .k {
display: inline;
margin-right: 8px;
margin-inline-end: 8px;
}
> .v {

View file

@ -103,7 +103,7 @@ defineProps<{
display: inline-block;
width: 16px;
height: 16px;
margin-right: 4px;
margin-inline-end: 4px;
vertical-align: top;
}

View file

@ -17,7 +17,7 @@
v-if="pageMetadata.value.icon"
class="icon"
:class="pageMetadata.value.icon"
style="margin-right: 0.5em"
style="margin-inline-end: 0.5em"
></i>
<span>{{ pageMetadata.value.title }}</span>
</template>

View file

@ -486,8 +486,8 @@ defineExpose({
.cxiknjgy {
> .button {
margin-left: auto;
margin-right: auto;
margin-inline-start: auto;
margin-inline-end: auto;
}
}
.list > :deep(._button) {

View file

@ -185,12 +185,12 @@ const vote = async (id) => {
border-radius: 3px;
> i {
margin-right: 4px;
margin-inline-end: 4px;
color: var(--accent);
}
> .votes {
margin-left: 4px;
margin-inline-start: 4px;
opacity: 0.7;
}
}

View file

@ -190,7 +190,7 @@ watch(
color: #f00;
> i {
margin-right: 4px;
margin-inline-end: 4px;
}
}

View file

@ -89,7 +89,7 @@
</button>
</div>
<div v-if="visibility === 'specified'" class="to-specified">
<span style="margin-right: 8px">{{ i18n.ts.recipient }}</span>
<span style="margin-inline-end: 8px">{{ i18n.ts.recipient }}</span>
<div class="visibleUsers">
<span v-for="u in visibleUsers" :key="u.id">
<MkAcct :user="u" />
@ -1072,7 +1072,7 @@ onMounted(() => {
margin: 0 0 0 8px;
& + .localOnly {
margin-left: 0 !important;
margin-inline-start: 0 !important;
}
}
@ -1115,7 +1115,7 @@ onMounted(() => {
}
> i {
margin-left: 6px;
margin-inline-start: 6px;
}
}
}

View file

@ -196,7 +196,7 @@ export default defineComponent({
position: relative;
width: 64px;
height: 64px;
margin-right: 4px;
margin-inline-end: 4px;
border-radius: 4px;
cursor: move;

View file

@ -49,7 +49,7 @@ function quote(): void {
> .count {
display: inline;
margin-left: 8px;
margin-inline-start: 8px;
opacity: 0.7;
}
}

View file

@ -17,7 +17,7 @@
"
:custom-emojis="note.emojis"
/>
<span style="margin-left: 4px">{{
<span style="margin-inline-start: 4px">{{
note.reactions[reaction]
}}</span>
</button>

View file

@ -71,9 +71,9 @@ const emit = defineEmits<{
min-width: 0;
font-size: 0.95em;
border-left: solid 0.5px var(--divider);
padding-left: 10px;
margin-left: 10px;
margin-right: 14px;
padding-inline-start: 10px;
margin-inline-start: 10px;
margin-inline-end: 14px;
text-align: left;
> .user {
@ -89,7 +89,7 @@ const emit = defineEmits<{
> .avatar {
width: 24px;
height: 24px;
margin-right: 3px;
margin-inline-end: 3px;
}
}
}

View file

@ -28,7 +28,7 @@ defineProps<{
border-radius: var(--radius);
> .link {
margin-left: 4px;
margin-inline-start: 4px;
color: var(--accent);
}
}

View file

@ -131,7 +131,7 @@
:href="`${apiUrl}/signin/twitter`"
><i
class="ph-twitter-logo ph-bold ph-lg"
style="margin-right: 4px"
style="margin-inline-end: 4px"
></i
>{{ i18n.t("signinWith", { x: "Twitter" }) }}</a
>
@ -141,7 +141,7 @@
:href="`${apiUrl}/signin/github`"
><i
class="ph-github-logo ph-bold ph-lg"
style="margin-right: 4px"
style="margin-inline-end: 4px"
></i
>{{ i18n.t("signinWith", { x: "GitHub" }) }}</a
>
@ -151,7 +151,7 @@
:href="`${apiUrl}/signin/discord`"
><i
class="ph-discord-logo ph-bold ph-lg"
style="margin-right: 4px"
style="margin-inline-end: 4px"
></i
>{{ i18n.t("signinWith", { x: "Discord" }) }}</a
>

View file

@ -267,7 +267,7 @@ function focusFooter(ev) {
display: inline-block;
border-radius: 6px;
padding: 0.2em 0.2em;
margin-right: 0.2em;
margin-inline-end: 0.2em;
color: var(--accent);
transition: background 0.2s;
&:hover,
@ -283,7 +283,7 @@ function focusFooter(ev) {
margin-bottom: 10px;
overflow-wrap: break-word;
> .text {
margin-right: 8px;
margin-inline-end: 8px;
}
}
@ -293,7 +293,7 @@ function focusFooter(ev) {
> .body {
transition: filter 0.1s;
> .rp {
margin-left: 4px;
margin-inline-start: 4px;
font-style: oblique;
color: var(--renote);
}
@ -301,7 +301,7 @@ function focusFooter(ev) {
display: inline-block;
border-radius: 6px;
padding: 0.2em 0.2em;
margin-right: 0.2em;
margin-inline-end: 0.2em;
color: var(--accent);
transition: background 0.2s;
&:hover,
@ -390,8 +390,8 @@ function focusFooter(ev) {
}
> :deep(button) {
margin-top: 10px;
margin-left: 0;
margin-right: 0.4rem;
margin-inline-start: 0;
margin-inline-end: 0.4rem;
}
> .fade {
position: absolute;

View file

@ -113,7 +113,7 @@ export default defineComponent({
> .icon {
width: 32px;
margin-right: 2px;
margin-inline-end: 2px;
flex-shrink: 0;
text-align: center;
opacity: 0.8;
@ -123,7 +123,7 @@ export default defineComponent({
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
padding-right: 12px;
padding-inline-end: 12px;
}
}
}
@ -136,8 +136,8 @@ export default defineComponent({
border-top: none;
}
margin-left: 0;
margin-right: 0;
margin-inline-start: 0;
margin-inline-end: 0;
> .title {
font-size: 1em;
@ -160,13 +160,13 @@ export default defineComponent({
> .icon {
display: block;
margin-right: 0;
margin-inline-end: 0;
margin-bottom: 12px;
font-size: 1.5em;
}
> .text {
padding-right: 0;
padding-inline-end: 0;
width: 100%;
font-size: 0.8em;
}

View file

@ -81,11 +81,11 @@ export default defineComponent({
}
&:not(:first-child) {
margin-left: 8px;
margin-inline-start: 8px;
}
> .icon {
margin-right: 6px;
margin-inline-end: 6px;
}
&:empty {
@ -104,7 +104,7 @@ export default defineComponent({
black calc(100% - 90px),
transparent
);
padding-right: 90px !important;
padding-inline-end: 90px !important;
&::-webkit-scrollbar {
display: none;
}
@ -114,7 +114,7 @@ export default defineComponent({
align-items: center;
flex: unset;
margin: 0;
margin-right: 8px;
margin-inline-end: 8px;
padding: 0.5em 1em;
border-radius: 100px;
background: var(--buttonBg);
@ -122,7 +122,7 @@ export default defineComponent({
margin-top: -0.1em;
}
> .count {
margin-right: -0.2em;
margin-inline-end: -0.2em;
}
}
}

View file

@ -304,9 +304,9 @@ const timetravel = (date?: Date) => {
z-index: -1;
}
i {
margin-left: 0.7em;
margin-inline-start: 0.7em;
border-left: 1px solid var(--accentedBg);
padding-left: 0.4em;
padding-inline-start: 0.4em;
}
}
}

View file

@ -313,11 +313,11 @@ function close(res) {
}
&:first-child {
padding-right: 8px;
padding-inline-end: 8px;
}
&:last-child {
padding-left: 8px;
padding-inline-start: 8px;
}
}
@ -327,7 +327,7 @@ function close(res) {
}
> .ok {
margin-left: auto;
margin-inline-start: auto;
}
}
}

View file

@ -264,7 +264,7 @@ onUnmounted(() => {
overflow: hidden;
> span {
font-weight: 600;
margin-right: 0.4em;
margin-inline-end: 0.4em;
}
}
}

View file

@ -70,7 +70,7 @@ if (props.withChart) {
display: block;
width: ($bodyTitleHieght + $bodyInfoHieght);
height: ($bodyTitleHieght + $bodyInfoHieght);
margin-right: 12px;
margin-inline-end: 12px;
}
> :global(.body) {
@ -78,7 +78,7 @@ if (props.withChart) {
overflow: hidden;
font-size: 0.9em;
color: var(--fg);
padding-right: 8px;
padding-inline-end: 8px;
> :global(.name) {
display: block;

View file

@ -50,7 +50,7 @@ const emit = defineEmits<{
> .avatar {
width: 24px;
height: 24px;
margin-right: 3px;
margin-inline-end: 3px;
}
}
}

View file

@ -66,6 +66,6 @@ if (props.note.visibility === "specified") {
<style lang="scss" module>
.visibility,
.localOnly {
margin-left: 0.5em;
margin-inline-start: 0.5em;
}
</style>

View file

@ -205,7 +205,7 @@ function choose(visibility: (typeof misskey.noteVisibilities)[number]): void {
display: flex;
justify-content: center;
align-items: center;
margin-right: 10px;
margin-inline-end: 10px;
width: 16px;
top: 0;
bottom: 0;
@ -234,7 +234,7 @@ function choose(visibility: (typeof misskey.noteVisibilities)[number]): void {
display: flex;
justify-content: center;
align-items: center;
margin-left: 10px;
margin-inline-start: 10px;
width: 16px;
top: 0;
bottom: 0;

View file

@ -574,7 +574,7 @@ defineExpose({
}
> .left {
margin-right: 16px;
margin-inline-end: 16px;
}
> .right {

View file

@ -103,7 +103,7 @@ const toggle = () => {
}
> .label {
margin-left: 12px;
margin-inline-start: 12px;
margin-top: 2px;
display: block;
transition: inherit;

View file

@ -48,7 +48,7 @@ defineProps<{
}
> .icon {
margin-right: 0.75em;
margin-inline-end: 0.75em;
flex-shrink: 0;
text-align: center;
opacity: 0.8;
@ -57,7 +57,7 @@ defineProps<{
display: none;
& + .text {
padding-left: 4px;
padding-inline-start: 4px;
}
}
}
@ -66,16 +66,16 @@ defineProps<{
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
padding-right: 12px;
padding-inline-end: 12px;
}
> .right {
margin-left: auto;
margin-inline-start: auto;
opacity: 0.7;
white-space: nowrap;
> .text:not(:empty) {
margin-right: 0.75em;
margin-inline-end: 0.75em;
}
}
}

View file

@ -268,12 +268,12 @@ defineExpose({
> .prefix {
left: 0;
padding-right: 6px;
padding-inline-end: 6px;
}
> .suffix {
right: 0;
padding-left: 6px;
padding-inline-start: 6px;
}
&.inline {

View file

@ -66,7 +66,7 @@ const props = defineProps<{
}
> .icon {
margin-right: 0.75em;
margin-inline-end: 0.75em;
flex-shrink: 0;
text-align: center;
color: var(--fgTransparentWeak);
@ -75,7 +75,7 @@ const props = defineProps<{
display: none;
& + .text {
padding-left: 4px;
padding-inline-start: 4px;
}
}
}
@ -84,16 +84,16 @@ const props = defineProps<{
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
padding-right: 12px;
padding-inline-end: 12px;
}
> .right {
margin-left: auto;
margin-inline-start: auto;
opacity: 0.7;
white-space: nowrap;
> .text:not(:empty) {
margin-right: 0.75em;
margin-inline-end: 0.75em;
}
}
}

View file

@ -123,7 +123,7 @@ function toggle(x) {
}
> .label {
margin-left: 28px;
margin-inline-start: 28px;
display: block;
line-height: 20px;
cursor: pointer;

View file

@ -283,12 +283,12 @@ function show(ev: MouseEvent) {
> .prefix {
left: 0;
padding-right: 6px;
padding-inline-end: 6px;
}
> .suffix {
right: 0;
padding-left: 6px;
padding-inline-start: 6px;
}
&.inline {

View file

@ -92,7 +92,7 @@ function toggle(x) {
}
> .label {
margin-left: 12px;
margin-inline-start: 12px;
margin-top: 2px;
display: block;
transition: inherit;

View file

@ -354,7 +354,7 @@ const props = withDefaults(
::v-deep(blockquote) {
display: block;
margin: 8px 0;
padding-left: 12px;
padding-inline-start: 12px;
color: var(--fgTransparentWeak);
border-left: solid 4px var(--fgTransparent);
}

View file

@ -372,13 +372,13 @@ onUnmounted(() => {
display: flex;
> .buttons {
&:not(:empty) {
margin-right: 8px;
margin-left: calc(0px - var(--margin));
margin-inline-end: 8px;
margin-inline-start: calc(0px - var(--margin));
}
> .avatar {
width: 32px;
height: 32px;
margin-left: var(--margin);
margin-inline-start: var(--margin);
}
}
}
@ -391,16 +391,16 @@ onUnmounted(() => {
&.right {
justify-content: flex-end;
z-index: 2;
// margin-right: calc(0px - var(--margin));
// margin-left: var(--margin);
// margin-inline-end: calc(0px - var(--margin));
// margin-inline-start: var(--margin);
> .button:last-child {
margin-right: calc(0px - var(--margin));
margin-inline-end: calc(0px - var(--margin));
}
}
> .fullButton {
& + .fullButton {
margin-left: 12px;
margin-inline-start: 12px;
}
}
}
@ -426,11 +426,11 @@ onUnmounted(() => {
width: $size;
height: $size;
vertical-align: bottom;
margin-right: 8px;
margin-inline-end: 8px;
}
> .icon {
margin-right: 8px;
margin-inline-end: 8px;
min-width: 16px;
width: 1em;
text-align: center;
@ -456,7 +456,7 @@ onUnmounted(() => {
> .chevron {
display: inline-block;
margin-left: 6px;
margin-inline-start: 6px;
}
}
}
@ -472,14 +472,14 @@ onUnmounted(() => {
}
> .left {
min-width: 20%;
margin-left: -10px;
padding-left: 10px;
margin-inline-start: -10px;
padding-inline-start: 10px;
}
> .right {
// margin-left: auto;
// margin-inline-start: auto;
min-width: max-content;
margin-right: -10px;
padding-right: 10px;
margin-inline-end: -10px;
padding-inline-end: 10px;
}
> .tabs {
@ -553,7 +553,7 @@ onUnmounted(() => {
}
> .icon + .title {
margin-left: 8px;
margin-inline-start: 8px;
}
> .title {
transition: opacity 0.2s;

View file

@ -84,7 +84,7 @@ const target = self ? null : "_blank";
line-height: 1.05;
> .icon {
padding-left: 2px;
padding-inline-start: 2px;
font-size: 0.9em;
}

View file

@ -53,7 +53,7 @@ export default defineComponent({
margin: 16px auto;
& + .hkcxmtwj {
margin-left: 16px;
margin-inline-start: 16px;
}
}
</style>

View file

@ -140,7 +140,7 @@
:key="patron"
style="
margin-bottom: 0.5rem;
margin-right: 0.5rem;
margin-inline-end: 0.5rem;
"
>
<Mfm :text="`${patron}`" />

View file

@ -36,7 +36,7 @@
class="fullButton"
primary
@click.stop="action.handler"
><i :class="action.icon" style="margin-right: 6px"></i
><i :class="action.icon" style="margin-inline-end: 6px"></i
>{{ action.text }}</MkButton
>
<button
@ -211,7 +211,7 @@ onUnmounted(() => {
margin: 0 var(--margin);
&.right {
margin-left: auto;
margin-inline-start: auto;
}
&:empty {
@ -239,7 +239,7 @@ onUnmounted(() => {
> .fullButton {
& + .fullButton {
margin-left: 12px;
margin-inline-start: 12px;
}
}
}
@ -253,7 +253,7 @@ onUnmounted(() => {
text-align: left;
font-weight: bold;
flex-shrink: 0;
margin-left: 24px;
margin-inline-start: 24px;
> .avatar {
$size: 32px;
@ -266,7 +266,7 @@ onUnmounted(() => {
}
> .icon {
margin-right: 8px;
margin-inline-end: 8px;
width: 16px;
text-align: center;
}
@ -291,7 +291,7 @@ onUnmounted(() => {
> .chevron {
display: inline-block;
margin-left: 6px;
margin-inline-start: 6px;
}
}
}
@ -300,7 +300,7 @@ onUnmounted(() => {
> .tabs {
position: relative;
margin-left: 16px;
margin-inline-start: 16px;
font-size: 0.8em;
overflow: auto;
white-space: nowrap;
@ -320,7 +320,7 @@ onUnmounted(() => {
}
> .icon + .title {
margin-left: 8px;
margin-inline-start: 8px;
}
}

View file

@ -172,7 +172,7 @@ onMounted(async () => {
place-items: center;
height: 100%;
aspect-ratio: 1;
margin-right: 12px;
margin-inline-end: 12px;
background: var(--accentedBg);
color: var(--accent);
border-radius: 10px;

View file

@ -120,7 +120,7 @@ onUnmounted(() => {
> .pie {
height: 82px;
flex-shrink: 0;
margin-right: 16px;
margin-inline-end: 16px;
}
> div {
@ -135,7 +135,7 @@ onUnmounted(() => {
margin-bottom: 4px;
> i {
margin-right: 4px;
margin-inline-end: 4px;
}
}
}

View file

@ -14,7 +14,7 @@
<div class="value">
<MkNumber
:value="stats.originalUsersCount"
style="margin-right: 0.5em"
style="margin-inline-end: 0.5em"
/>
<MkNumberDiff
v-tooltip="i18n.ts.dayOverDayChanges"
@ -33,7 +33,7 @@
<div class="value">
<MkNumber
:value="stats.originalNotesCount"
style="margin-right: 0.5em"
style="margin-inline-end: 0.5em"
/>
<MkNumberDiff
v-tooltip="i18n.ts.dayOverDayChanges"
@ -52,7 +52,7 @@
<div class="value">
<MkNumber
:value="stats.instances"
style="margin-right: 0.5em"
style="margin-inline-end: 0.5em"
/>
</div>
<div class="label">{{ i18n.ts.instances }}</div>
@ -66,7 +66,7 @@
<div class="value">
<MkNumber
:value="onlineUsersCount"
style="margin-right: 0.5em"
style="margin-inline-end: 0.5em"
/>
</div>
<div class="label">{{ i18n.ts.online }}</div>
@ -80,7 +80,7 @@
<div class="value">
<MkNumber
:value="emojiCount"
style="margin-right: 0.5em"
style="margin-inline-end: 0.5em"
/>
</div>
<div class="label">{{ i18n.ts.emojis }}</div>
@ -152,7 +152,7 @@ onMounted(async () => {
place-items: center;
height: 100%;
aspect-ratio: 1;
margin-right: 12px;
margin-inline-end: 12px;
background: var(--accentedBg);
color: var(--accent);
border-radius: 10px;

View file

@ -49,7 +49,7 @@ os.apiGet("charts/user/notes", {
display: block;
width: ($bodyTitleHieght + $bodyInfoHieght);
height: ($bodyTitleHieght + $bodyInfoHieght);
margin-right: 12px;
margin-inline-end: 12px;
}
> :global(.body) {
@ -57,7 +57,7 @@ os.apiGet("charts/user/notes", {
overflow: hidden;
font-size: 0.9em;
color: var(--fg);
padding-right: 8px;
padding-inline-end: 8px;
> :global(.name) {
display: block;

View file

@ -42,7 +42,7 @@
class="button"
inline
primary
style="margin-right: 12px"
style="margin-inline-end: 12px"
@click="save(ad)"
><i class="ph-floppy-disk-back ph-bold ph-lg"></i>
{{ i18n.ts.save }}</MkButton

View file

@ -47,7 +47,7 @@
>
{{ job[0] }}
</a>
<span style="margin-left: 8px; opacity: 0.7"
<span style="margin-inline-start: 8px; opacity: 0.7"
>({{ number(job[1]) }} jobs)</span
>
</div>

View file

@ -119,7 +119,7 @@ definePageMetadata({
> .icon {
width: 1em;
margin-right: 0.75em;
margin-inline-end: 0.75em;
&.accepted {
color: var(--success);

View file

@ -220,10 +220,10 @@ definePageMetadata(
margin-bottom: 16px;
> * {
margin-right: 16px;
margin-inline-end: 16px;
&:last-child {
margin-right: 0;
margin-inline-end: 0;
}
}
}

View file

@ -45,7 +45,7 @@
><I18n
:src="i18n.ts._channel.usersCount"
tag="span"
style="margin-left: 4px"
style="margin-inline-start: 4px"
><template #n
><b>{{
channel.usersCount
@ -60,7 +60,7 @@
><I18n
:src="i18n.ts._channel.notesCount"
tag="span"
style="margin-left: 4px"
style="margin-inline-start: 4px"
><template #n
><b>{{
channel.notesCount

View file

@ -11,7 +11,7 @@
<template #header
><i
class="ph-bookmark ph-bold ph-lg ph-fw"
style="margin-right: 0.5em"
style="margin-inline-end: 0.5em"
></i
>{{ i18n.ts.pinnedUsers }}</template
>
@ -25,7 +25,7 @@
<template #header
><i
class="ph-chart-line-up ph-bold ph-lg ph-fw"
style="margin-right: 0.5em"
style="margin-inline-end: 0.5em"
></i
>{{ i18n.ts.popularUsers }}</template
>
@ -39,7 +39,7 @@
<template #header
><i
class="ph-activity ph-bold ph-lg ph-fw"
style="margin-right: 0.5em"
style="margin-inline-end: 0.5em"
></i
>{{ i18n.ts.recentlyUpdatedUsers }}</template
>
@ -53,7 +53,7 @@
<template #header
><i
class="ph-butterfly ph-bold ph-lg ph-fw"
style="margin-right: 0.5em"
style="margin-inline-end: 0.5em"
></i
>{{ i18n.ts.recentlyRegisteredUsers }}</template
>
@ -71,7 +71,7 @@
<template #header
><i
class="ph-compass ph-bold ph-lg ph-fw"
style="margin-right: 0.5em"
style="margin-inline-end: 0.5em"
></i
>{{ i18n.ts.popularTags }}</template
>
@ -97,7 +97,7 @@
<template #header
><i
class="ph-hash ph-bold ph-lg ph-fw"
style="margin-right: 0.5em"
style="margin-inline-end: 0.5em"
></i
>{{ tag }}</template
>
@ -109,7 +109,7 @@
<template #header
><i
class="ph-chart-line-up ph-bold ph-lg ph-fw"
style="margin-right: 0.5em"
style="margin-inline-end: 0.5em"
></i
>{{ i18n.ts.popularUsers }}</template
>
@ -119,7 +119,7 @@
<template #header
><i
class="ph-activity ph-bold ph-lg ph-fw"
style="margin-right: 0.5em"
style="margin-inline-end: 0.5em"
></i
>{{ i18n.ts.recentlyUpdatedUsers }}</template
>
@ -129,7 +129,7 @@
<template #header
><i
class="ph-rocke-launch ph-bold ph-lg ph-fw"
style="margin-right: 0.5em"
style="margin-inline-end: 0.5em"
></i
>{{ i18n.ts.recentlyDiscoveredUsers }}</template
>
@ -255,7 +255,7 @@ os.api("hashtags/list", {
<style lang="scss" scoped>
.vxjfqztj {
> * {
margin-right: 16px;
margin-inline-end: 16px;
&.local {
font-weight: bold;

View file

@ -176,8 +176,8 @@ definePageMetadata(
text-overflow: ellipsis;
opacity: 0.7;
font-size: 14px;
padding-right: 40px;
padding-left: 8px;
padding-inline-end: 40px;
padding-inline-start: 8px;
box-sizing: border-box;
@media (max-width: 500px) {

View file

@ -306,13 +306,13 @@ definePageMetadata(
color: #eb6f92;
::v-deep(.count) {
margin-left: 0.5em;
margin-inline-start: 0.5em;
}
}
}
> .other {
margin-left: auto;
margin-inline-start: auto;
> button {
padding: 8px;
@ -343,7 +343,7 @@ definePageMetadata(
}
> .koudoku {
margin-left: auto;
margin-inline-start: auto;
}
}
}

View file

@ -394,7 +394,7 @@ defineExpose({
}
> .send {
margin-left: auto;
margin-inline-start: auto;
color: var(--accent);
&:hover {

View file

@ -248,17 +248,17 @@ function del(): void {
}
> i {
margin-left: 4px;
margin-inline-start: 4px;
}
}
}
&:not(.isMe) {
padding-left: var(--margin);
padding-inline-start: var(--margin);
> .content {
padding-left: 16px;
padding-right: 32px;
padding-inline-start: 16px;
padding-inline-end: 32px;
> .balloon {
$color: var(--X4);
@ -291,12 +291,12 @@ function del(): void {
&.isMe {
flex-direction: row-reverse;
padding-right: var(--margin);
padding-inline-end: var(--margin);
right: var(--margin); // position: absolute使
> .content {
padding-right: 16px;
padding-left: 32px;
padding-inline-end: 16px;
padding-inline-start: 32px;
text-align: right;
> .balloon {

View file

@ -382,7 +382,7 @@ XMessage:last-of-type {
}
> i {
margin-right: 4px;
margin-inline-end: 4px;
}
}
@ -418,7 +418,7 @@ XMessage:last-of-type {
> i {
display: inline-block;
margin-right: 8px;
margin-inline-end: 8px;
}
}
}

View file

@ -41,7 +41,7 @@
>
<i
class="ph-shield-warning ph-bold ph-xl"
style="margin-right: 0.5rem"
style="margin-inline-end: 0.5rem"
></i>
{{ i18n.ts._permissions.allPermissions }}
</div>
@ -55,7 +55,7 @@
<i
:class="[`ph-${getIcon(p)}`]"
class="ph-bold ph-xl"
style="margin-right: 0.5rem"
style="margin-inline-end: 0.5rem"
></i>
{{ i18n.t(`_permissions.${p}`) }}
</div>

View file

@ -108,7 +108,7 @@ definePageMetadata({
float: left;
min-width: 25px;
padding: 13px;
margin-right: 10px;
margin-inline-end: 10px;
border: solid 1px var(--divider);
border-radius: 6px;

View file

@ -123,7 +123,7 @@ export default defineComponent({
box-shadow: 0 1px rgba(#000, 0.07);
> i {
margin-right: 6px;
margin-inline-end: 6px;
}
&:empty {

View file

@ -579,7 +579,7 @@ definePageMetadata(
box-shadow: 0 1px rgba(#000, 0.07);
> i {
margin-right: 6px;
margin-inline-end: 6px;
}
&:empty {

View file

@ -381,7 +381,7 @@ definePageMetadata(
}
> .koudoku {
margin-left: 4px;
margin-inline-start: 4px;
vertical-align: bottom;
}
}
@ -408,7 +408,7 @@ definePageMetadata(
color: #eb6f92;
::v-deep(.count) {
margin-left: 0.5em;
margin-inline-start: 0.5em;
}
}
}
@ -425,7 +425,7 @@ definePageMetadata(
}
> .user {
margin-left: auto;
margin-inline-start: auto;
display: flex;
align-items: center;
@ -440,7 +440,7 @@ definePageMetadata(
}
> .koudoku {
margin-left: auto;
margin-inline-start: auto;
margin: 1rem;
}
}
@ -452,7 +452,7 @@ definePageMetadata(
border-top: solid 0.5px var(--divider);
> .link {
margin-right: 2em;
margin-inline-end: 2em;
}
}
}

View file

@ -7,7 +7,7 @@
<template #icon
><i
class="ph-shield-check ph-bold ph-lg"
style="margin-right: 0.5rem"
style="margin-inline-end: 0.5rem"
></i
></template>
<template #label>{{ i18n.ts.totp }}</template>
@ -18,7 +18,7 @@
<MkButton @click="renewTOTP"
><i
class="ph-shield-check ph-bold ph-lg"
style="margin-right: 0.5rem"
style="margin-inline-end: 0.5rem"
></i
>{{ i18n.ts._2fa.renewTOTP }}</MkButton
>
@ -27,7 +27,7 @@
<MkButton v-else @click="unregisterTOTP"
><i
class="ph-shield-slash ph-bold ph-lg"
style="margin-right: 0.5rem"
style="margin-inline-end: 0.5rem"
></i
>{{ i18n.ts.unregister }}</MkButton
>
@ -44,7 +44,7 @@
<template #icon
><i
class="ph-key ph-bold ph-lg"
style="margin-right: 0.5rem"
style="margin-inline-end: 0.5rem"
></i
></template>
<template #label>{{ i18n.ts.securityKeyAndPasskey }}</template>
@ -70,7 +70,7 @@
<MkButton primary @click="addSecurityKey"
><i
class="ph-key ph-bold ph-lg"
style="margin-right: 0.5rem"
style="margin-inline-end: 0.5rem"
></i
>{{ i18n.ts._2fa.registerSecurityKey }}</MkButton
>

View file

@ -289,6 +289,6 @@ definePageMetadata({
<style module>
.button {
margin-right: 16px;
margin-inline-end: 16px;
}
</style>

View file

@ -366,7 +366,7 @@ definePageMetadata(INFO);
> .nav {
width: 34%;
padding-right: 32px;
padding-inline-end: 32px;
box-sizing: border-box;
}

View file

@ -37,7 +37,7 @@
class="button"
:disabled="accountAlias.length >= 10"
inline
style="margin-right: 8px"
style="margin-inline-end: 8px"
@click="add"
><i class="ph-plus ph-bold ph-lg"></i>
{{ i18n.ts.add }}</FormButton

View file

@ -16,7 +16,7 @@
>
<span style="display: flex"
><b>{{ plugin.name }}</b
><span style="margin-left: auto"
><span style="margin-inline-start: auto"
>v{{ plugin.version }}</span
></span
>

Some files were not shown because too many files have changed in this diff Show more