diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-10-03 16:49:49 +0300 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-10-03 16:49:49 +0300 |
commit | f3e0cbdeed97ff465dc7cd7935035ccfe096bd4f (patch) | |
tree | 56b164aa79a992528beff9ec5c8112632be617fa /apps/files/css | |
parent | 308d4383a36008f694d2d64ec85540f2f60a0e6b (diff) | |
download | nextcloud-server-f3e0cbdeed97ff465dc7cd7935035ccfe096bd4f.tar.gz nextcloud-server-f3e0cbdeed97ff465dc7cd7935035ccfe096bd4f.zip |
fix position of New and Deleted Files buttons
Diffstat (limited to 'apps/files/css')
-rw-r--r-- | apps/files/css/files.css | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/apps/files/css/files.css b/apps/files/css/files.css index 1508f8ac493..89cadbc8337 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -8,7 +8,9 @@ .actions .button a { color: #555; } .actions .button a:hover, .actions .button a:active { color: #333; } #new { - height:17px; margin:0 0 0 1em; z-index:1010; float:left; + height: 17px; + z-index: 1010; + float: left; } #new.active { border-bottom-left-radius:0; border-bottom-right-radius:0; border-bottom:none; } #new>a { padding:.5em 1.2em .3em; } @@ -30,7 +32,12 @@ margin: 2px 0; } -#trash { margin: 0 1em; z-index:1010; float: right; } +#trash { + margin: 0 1em; + height: 17px; + z-index: 1010; + float: right; +} #upload { height:27px; padding:0; margin-left:0.2em; overflow:hidden; |