diff options
author | kondou <kondou@ts.unde.re> | 2013-07-03 19:50:03 +0200 |
---|---|---|
committer | kondou <kondou@ts.unde.re> | 2013-08-28 15:10:17 +0200 |
commit | 6bd0f3cba7491c55e53c637b3cae60ac9685f146 (patch) | |
tree | 6a3ca4570e2d528b7e31c044a543b044c01ee7eb /apps/files/css | |
parent | b9a95af12c20f18376df4c4f8355b9911ff5a7fd (diff) | |
download | nextcloud-server-6bd0f3cba7491c55e53c637b3cae60ac9685f146.tar.gz nextcloud-server-6bd0f3cba7491c55e53c637b3cae60ac9685f146.zip |
Reimplement filesummary in JS
Fix #993
Diffstat (limited to 'apps/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 { |