diff options
author | John Molakvoæ <skjnldsv@protonmail.com> | 2023-03-25 11:51:11 +0100 |
---|---|---|
committer | John Molakvoæ <skjnldsv@protonmail.com> | 2023-04-06 14:49:31 +0200 |
commit | f28944e23f96dd756cba3739e99c2fba57e81f1f (patch) | |
tree | e6fde2f68c458184d5f81d2c095f2903c0917e60 /apps/files/src/components/FileEntry.vue | |
parent | e85eb4c59395c4c59d0bb19fb8ad64063a8d7f3b (diff) | |
download | nextcloud-server-f28944e23f96dd756cba3739e99c2fba57e81f1f.tar.gz nextcloud-server-f28944e23f96dd756cba3739e99c2fba57e81f1f.zip |
feat(files): propagate restore and delete events
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
Diffstat (limited to 'apps/files/src/components/FileEntry.vue')
-rw-r--r-- | apps/files/src/components/FileEntry.vue | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/apps/files/src/components/FileEntry.vue b/apps/files/src/components/FileEntry.vue index 343d24f05e1..4d7582216f4 100644 --- a/apps/files/src/components/FileEntry.vue +++ b/apps/files/src/components/FileEntry.vue @@ -431,6 +431,16 @@ export default Vue.extend({ <style scoped lang='scss'> @import '../mixins/fileslist-row.scss'; +/* Hover effect on tbody lines only */ +tr { + &:hover, + &:focus, + &:active { + background-color: var(--color-background-dark); + } +} + +/* Preview not loaded animation effect */ .files-list__row-icon-preview:not([style*='background']) { background: linear-gradient(110deg, var(--color-loading-dark) 0%, var(--color-loading-dark) 25%, var(--color-loading-light) 50%, var(--color-loading-dark) 75%, var(--color-loading-dark) 100%); background-size: 400%; |