diff options
author | Joas Schilling <coding@schilljs.com> | 2019-12-20 12:11:54 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2019-12-20 12:11:54 +0100 |
commit | 59e9b3d1d0fd6ea14cb3b71bc99327fb88b1d25c (patch) | |
tree | e4c0b3a0030593fe8d99d338d93a00dcfb5729c7 /core/css | |
parent | 9db15459b9d39681965b3a599960e6d2225c57a0 (diff) | |
download | nextcloud-server-59e9b3d1d0fd6ea14cb3b71bc99327fb88b1d25c.tar.gz nextcloud-server-59e9b3d1d0fd6ea14cb3b71bc99327fb88b1d25c.zip |
Only round the real avatars
Before this all images were rounded, including the icons of contacts menu options
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'core/css')
-rw-r--r-- | core/css/styles.scss | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/css/styles.scss b/core/css/styles.scss index 1ff81a17cbf..7c6b7f8ad59 100644 --- a/core/css/styles.scss +++ b/core/css/styles.scss @@ -407,7 +407,7 @@ body { .avatar, .avatardiv { border-radius: 50%; flex-shrink: 0; - img { + &> img { border-radius: 50%; flex-shrink: 0; } |