summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorJohn Molakvoæ <skjnldsv@users.noreply.github.com>2018-10-31 09:01:10 +0100
committerGitHub <noreply@github.com>2018-10-31 09:01:10 +0100
commit426641a795c41aaa1e48715c9fa2c39d2a8cb387 (patch)
treeb6a55c090b3f5c4de54a9869ed8e5b1c4a046d96 /core
parentb449cb35f67ca0cf21b466ca1ac1c195a2e6bd91 (diff)
parent372109a2766a908af2f776eeb90801cde34e4d31 (diff)
downloadnextcloud-server-426641a795c41aaa1e48715c9fa2c39d2a8cb387.tar.gz
nextcloud-server-426641a795c41aaa1e48715c9fa2c39d2a8cb387.zip
Merge pull request #12154 from nextcloud/files-details
Design details in file picker
Diffstat (limited to 'core')
-rw-r--r--core/css/styles.scss10
1 files changed, 6 insertions, 4 deletions
diff --git a/core/css/styles.scss b/core/css/styles.scss
index 4b80b4f9626..f23f4c2dead 100644
--- a/core/css/styles.scss
+++ b/core/css/styles.scss
@@ -798,7 +798,7 @@ code {
&.view-grid {
$grid-size: 120px;
$grid-pad: 10px;
- $name-height: 20px;
+ $name-height: 30px;
display: flex;
flex-direction: column;
@@ -818,20 +818,22 @@ code {
flex-direction: column;
width: $grid-size - 2 * $grid-pad;
+
td {
border: none;
padding: 0;
+ text-align: center;
+ border-radius: var(--border-radius);
&.filename {
padding: #{$grid-size - 2 * $grid-pad} 0 0 0;
background-position: center top;
background-size: contain;
line-height: $name-height;
- height: $name-height;
}
&.filesize {
- line-height: $name-height;
- text-align: left;
+ line-height: $name-height / 3;
+ width: 100%;
}
&.date {
display: none;