diff options
author | Michael Jobst <mjobst+github@tecratech.de> | 2016-11-21 14:40:34 +0100 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2016-12-19 17:34:09 +0100 |
commit | a7526b9837336f2c643bb0c1d347c7afdd51f0cb (patch) | |
tree | 572f63458f1c85679502f5eda21537042cbee845 /apps/files/css | |
parent | 1afdce9ef84bebfc4b4a902c1f0311e5e6562387 (diff) | |
download | nextcloud-server-a7526b9837336f2c643bb0c1d347c7afdd51f0cb.tar.gz nextcloud-server-a7526b9837336f2c643bb0c1d347c7afdd51f0cb.zip |
Style modifications of favorite star on main detail view (#26658)
* Style modifications of favorite star on main detail view
* Removed unused opacity change on mouse over
* favorite star title fixed
* favorite star opacity should always be .7
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
Diffstat (limited to 'apps/files/css')
-rw-r--r-- | apps/files/css/detailsView.css | 18 |
1 files changed, 6 insertions, 12 deletions
diff --git a/apps/files/css/detailsView.css b/apps/files/css/detailsView.css index f91fe3319e5..85eb804d081 100644 --- a/apps/files/css/detailsView.css +++ b/apps/files/css/detailsView.css @@ -16,6 +16,7 @@ #app-sidebar .mainFileInfoView .icon { display: inline-block; + background-size: 16px 16px; } #app-sidebar .mainFileInfoView .permalink { @@ -102,23 +103,16 @@ color: #999; } -#app-sidebar .file-details img { - -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; - opacity: .5; -} - -#app-sidebar .file-details img:hover, -#app-sidebar .file-details img:focus{ - -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; - opacity: 1; -} - #app-sidebar .action-favorite { - vertical-align: text-bottom; + vertical-align: sub; padding: 10px; margin: -10px; } +#app-sidebar .action-favorite > span{ + opacity: .7 !important; +} + #app-sidebar .detailList { float: left; } |