diff options
author | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2018-10-04 19:11:09 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2018-10-18 13:44:08 +0200 |
commit | b532c9516272ac6687958d2f3f72fdd9e385ba15 (patch) | |
tree | 4e895dc9ad6b1739be1f7616d0e38a5bb3cf028b /apps | |
parent | 1f1dddcc5e50a2ea257134c1a331b69172e32df9 (diff) | |
download | nextcloud-server-b532c9516272ac6687958d2f3f72fdd9e385ba15.tar.gz nextcloud-server-b532c9516272ac6687958d2f3f72fdd9e385ba15.zip |
Border radius
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files/css/files.scss | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/files/css/files.scss b/apps/files/css/files.scss index b168f9d63d7..57c9baa1a3b 100644 --- a/apps/files/css/files.scss +++ b/apps/files/css/files.scss @@ -812,6 +812,11 @@ table.dragshadow td.size { .name { height: 100%; + border-radius: var(--border-radius); + // since we're using thumbnail, name and actions bg + // we need to hide the overflow for the radius to show + // luckily the popovermenu is outside .name + overflow: hidden; // we but the thumbnail in background to ensure // the name is the default click handler // force back the cursor which have been overrided |