Compare commits

..

No commits in common. "2ff0f78759205d993be6b32c0582890b2ace5816" and "62388eb555f5a39927c4c6fc878a61bd34913e9e" have entirely different histories.

2 changed files with 1 additions and 3 deletions

View File

@ -51,11 +51,10 @@ const m = ref<typeof MediaPreview | null>(null)
figure caption { figure caption {
font-weight: 600; font-weight: 600;
color: var(--text-color); color: var(--text-color);
text-shadow: 0 0 .2rem var(--primary-background), 0 0 .2rem var(--primary-background); text-shadow: 0 0 .2rem #000, 0 0 1rem #000;
} }
.cursor caption { .cursor caption {
background: var(--accent-color); background: var(--accent-color);
text-shadow: none;
} }
caption { caption {
position: absolute; position: absolute;

View File

@ -6,7 +6,6 @@
</template> </template>
<UploadButton :path="props.path" /> <UploadButton :path="props.path" />
<SvgButton <SvgButton
v-if="!store.prefs.gallery"
name="create-folder" name="create-folder"
data-tooltip="New folder" data-tooltip="New folder"
@click="() => store.fileExplorer!.newFolder()" @click="() => store.fileExplorer!.newFolder()"