diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2013-08-28 15:11:09 -0700 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2013-08-28 15:11:09 -0700 |
commit | 81cab5ada84bfbb0fb38b8b031770f29bc4ceda6 (patch) | |
tree | 89235009e48009c380f0c752110257b56e3ede0e /apps/files/css/files.css | |
parent | 67ce2ad86985a94389be1edcf38ad037ec2caf7f (diff) | |
parent | 6bd0f3cba7491c55e53c637b3cae60ac9685f146 (diff) | |
download | nextcloud-server-81cab5ada84bfbb0fb38b8b031770f29bc4ceda6.tar.gz nextcloud-server-81cab5ada84bfbb0fb38b8b031770f29bc4ceda6.zip |
Merge pull request #3926 from owncloud/improve_filesummary
Improve filelist summary
Diffstat (limited to 'apps/files/css/files.css')
-rw-r--r-- | apps/files/css/files.css | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/apps/files/css/files.css b/apps/files/css/files.css index 7d5fe6445b7..a9b93dc2dee 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -170,7 +170,20 @@ a.action>img { max-height:16px; max-width:16px; vertical-align:text-bottom; } } .summary { - opacity: .5; + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)"; + filter: alpha(opacity=30); + opacity: .3; + height: 70px; +} + +.summary:hover, .summary, table tr.summary td { + background-color: transparent; +} + +.summary td { + padding-top: 8px; + padding-bottom: 8px; + border-bottom: none; } .summary .info { |