diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2018-10-03 13:19:08 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2018-10-18 13:44:05 +0200 |
commit | 2a42a8da3e3dfa6edf04feaf6f05f87fa4d3969b (patch) | |
tree | 649d37705affb8ad6e6326c1033ef534707dfadb /apps/files/css | |
parent | 32d6090c8bca8db45bf5f78c7a1f2037a1411e29 (diff) | |
download | nextcloud-server-2a42a8da3e3dfa6edf04feaf6f05f87fa4d3969b.tar.gz nextcloud-server-2a42a8da3e3dfa6edf04feaf6f05f87fa4d3969b.zip |
Center align the footer file number & size summary
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
Diffstat (limited to 'apps/files/css')
-rw-r--r-- | apps/files/css/files.scss | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/apps/files/css/files.scss b/apps/files/css/files.scss index c08de6cfebe..6a2aa604c69 100644 --- a/apps/files/css/files.scss +++ b/apps/files/css/files.scss @@ -842,4 +842,27 @@ table.dragshadow td.size { text-overflow: ellipsis; } } + + /* Center align the footer file number & size summary */ + tfoot { + display: grid; + + .summary { + display: inline-block; + margin: 0 auto; + + td { + padding-top: 50px; + + &:first-child, + &.date { + display: none; + } + + .info { + margin-left: 0; + } + } + } + } } |