diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-08-19 03:56:44 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-08-19 03:56:44 +0900 |
| commit | 78b560d89aa4aadd2d81871bd1f93f3c714e6b8c (patch) | |
| tree | 2cec425358608ef40beafaa7758d0c343131b6c1 /src/client/app/desktop | |
| parent | Fix #2325 (diff) | |
| download | misskey-78b560d89aa4aadd2d81871bd1f93f3c714e6b8c.tar.gz misskey-78b560d89aa4aadd2d81871bd1f93f3c714e6b8c.tar.bz2 misskey-78b560d89aa4aadd2d81871bd1f93f3c714e6b8c.zip | |
#2324
Diffstat (limited to 'src/client/app/desktop')
| -rw-r--r-- | src/client/app/desktop/views/components/drive.file.vue | 35 |
1 files changed, 27 insertions, 8 deletions
diff --git a/src/client/app/desktop/views/components/drive.file.vue b/src/client/app/desktop/views/components/drive.file.vue index 3b5be19dcf..3ac8923c51 100644 --- a/src/client/app/desktop/views/components/drive.file.vue +++ b/src/client/app/desktop/views/components/drive.file.vue @@ -9,12 +9,18 @@ @contextmenu.prevent.stop="onContextmenu" :title="title" > - <div class="label" v-if="$store.state.i.avatarId == file.id"><img src="/assets/label.svg"/> + <div class="label" v-if="$store.state.i.avatarId == file.id"> + <img src="/assets/label.svg"/> <p>%i18n:@avatar%</p> </div> - <div class="label" v-if="$store.state.i.bannerId == file.id"><img src="/assets/label.svg"/> + <div class="label" v-if="$store.state.i.bannerId == file.id"> + <img src="/assets/label.svg"/> <p>%i18n:@banner%</p> </div> + <div class="label red" v-if="file.isSensitive"> + <img src="/assets/label-red.svg"/> + <p>%i18n:@nsfw%</p> + </div> <div class="thumbnail" ref="thumbnail" :style="`background-color: ${ background }`"> <img :src="file.thumbnailUrl" alt="" @load="onThumbnailLoaded"/> </div> @@ -212,6 +218,11 @@ root(isDark) &:after background #0b65a5 + &.red + &:before + &:after + background #c12113 + &:active background rgba(#000, 0.1) @@ -220,6 +231,11 @@ root(isDark) &:after background #0b588c + &.red + &:before + &:after + background #ce2212 + &[data-is-selected] background $theme-color @@ -256,26 +272,29 @@ root(isDark) pointer-events none &:before + &:after content "" display block position absolute z-index 1 + background #0c7ac9 + + &:before top 0 left 57px width 28px height 8px - background #0c7ac9 &:after - content "" - display block - position absolute - z-index 1 top 57px left 0 width 8px height 28px - background #0c7ac9 + + &.red + &:before + &:after + background #c12113 > img position absolute |