- cancel/resume subscription fix

- upload into root folder fix
- custom color theme part 3
This commit is contained in:
Peter Papp
2021-03-25 15:46:34 +01:00
parent 44fe96497c
commit ee1a8a6719
32 changed files with 412 additions and 644 deletions

View File

@@ -5,7 +5,7 @@
<div class="icon-item">
<!--If is file or image, then link item-->
<span v-if="isFile || (isImage && !item.thumbnail) " class="file-icon-text">{{ item.mimetype }}</span>
<span v-if="isFile || (isImage && !item.thumbnail) " class="file-icon-text text-theme">{{ item.mimetype }}</span>
<!--Folder thumbnail-->
<FontAwesomeIcon v-if="isFile || (isImage && !item.thumbnail)" class="file-icon" :class="{'file-icon-mobile' : $isMobile()}" icon="file"/>
@@ -138,7 +138,6 @@
text-align: center;
left: 0;
right: 0;
color: $theme;
font-weight: 600;
user-select: none;
max-width: 20px;
@@ -194,6 +193,16 @@
}
}
}
.popup-wrapper {
.file-item {
.icon-item .file-icon {
path {
fill: lighten($dark_mode_foreground, 3%);
}
}
}
}
}
@media (max-width: 690px) and (prefers-color-scheme: dark) {