diff options
author | Morris Jobke <morris.jobke@gmail.com> | 2013-10-04 10:40:32 -0700 |
---|---|---|
committer | Morris Jobke <morris.jobke@gmail.com> | 2013-10-04 10:40:32 -0700 |
commit | a927c145bed8c435af63469742bed58a7b657380 (patch) | |
tree | 70daeed510f68d9954494a0dd6e366ff0b715ba5 /apps | |
parent | bae121b16dbabed3ec307ea58e3b8a73ab27161c (diff) | |
parent | 0c53269b5e53271c4cfcf9fb332454d2934a4b39 (diff) | |
download | nextcloud-server-a927c145bed8c435af63469742bed58a7b657380.tar.gz nextcloud-server-a927c145bed8c435af63469742bed58a7b657380.zip |
Merge pull request #5102 from owncloud/input-simplify
Input simplify
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files/css/files.css | 7 | ||||
-rw-r--r-- | apps/files_sharing/css/public.css | 4 |
2 files changed, 5 insertions, 6 deletions
diff --git a/apps/files/css/files.css b/apps/files/css/files.css index 138b15db04f..12de81c609d 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -7,13 +7,14 @@ .actions input, .actions button, .actions .button { margin:0; float:left; } .actions .button a { color: #555; } .actions .button a:hover, .actions .button a:active { color: #333; } + #new, #trash { z-index: 1010; float: left; padding: 0 !important; /* override default control bar button padding */ } #trash { - margin: 0 1em; + margin-right: 12px; float: right; } #new>a, #trash>a { @@ -113,7 +114,7 @@ table th#headerDate, table td.date { table.multiselect thead { position: fixed; top: 89px; - z-index: 1; + z-index: 10; -moz-box-sizing: border-box; box-sizing: border-box; left: 0; @@ -122,7 +123,7 @@ table.multiselect thead { } table.multiselect thead th { - background-color: rgba(210,210,210,.7); + background-color: rgba(220,220,220,.8); color: #000; font-weight: bold; border-bottom: 0; diff --git a/apps/files_sharing/css/public.css b/apps/files_sharing/css/public.css index b6511cb57cc..3aa4a483041 100644 --- a/apps/files_sharing/css/public.css +++ b/apps/files_sharing/css/public.css @@ -3,8 +3,7 @@ body { } #header { - background:#1d2d44; - box-shadow:0 0 10px rgba(0,0,0,.5), inset 0 -2px 10px #222; + background: #1d2d44 url('%webroot%/core/img/noise.png') repeat; height:2.5em; left:0; line-height:2.5em; @@ -61,7 +60,6 @@ body { p.info { color:#777; text-align:center; - text-shadow:#fff 0 1px 0; width:22em; margin:2em auto; } |