diff options
author | Jan C. Borchardt <hey@jancborchardt.net> | 2020-08-19 00:29:14 +0200 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2020-08-19 17:07:30 +0200 |
commit | d1a2482dda73ea7234a94cc71f563eb6d24a679c (patch) | |
tree | 3a66ecbeb8cb818bf4c6c905859c2d527c0e6961 /apps/dashboard/src/components/BackgroundSettings.vue | |
parent | 9a7f7ea5e7181a09f3f2feb8f3dcd0ec4f21134f (diff) | |
download | nextcloud-server-d1a2482dda73ea7234a94cc71f563eb6d24a679c.tar.gz nextcloud-server-d1a2482dda73ea7234a94cc71f563eb6d24a679c.zip |
Dashboard: Add more feedback for selected background
Signed-off-by: Jan C. Borchardt <hey@jancborchardt.net>
Diffstat (limited to 'apps/dashboard/src/components/BackgroundSettings.vue')
-rw-r--r-- | apps/dashboard/src/components/BackgroundSettings.vue | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/apps/dashboard/src/components/BackgroundSettings.vue b/apps/dashboard/src/components/BackgroundSettings.vue index 7c43ed9ff39..4fc23363ec3 100644 --- a/apps/dashboard/src/components/BackgroundSettings.vue +++ b/apps/dashboard/src/components/BackgroundSettings.vue @@ -177,6 +177,16 @@ export default { &:focus { border: 2px solid var(--color-primary); } + + &.active:after { + background-image: var(--icon-checkmark-fff); + background-repeat: no-repeat; + background-position: center; + background-size: 44px; + content: ''; + display: block; + height: 100%; + } } } |