diff options
author | Morris Jobke <hey@morrisjobke.de> | 2018-11-01 12:42:03 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-01 12:42:03 +0100 |
commit | bfab6ccf1bcce9e778721e7e9e63cc8b315db298 (patch) | |
tree | fe2415ecf32ebe519db8b29b1d74638a0d88552e /apps/files/css | |
parent | 0a61242c8520a5261a8f239be90998b7682a7214 (diff) | |
parent | c0aee3f1a11188e862e8715b8a3a1a51259b333f (diff) | |
download | nextcloud-server-bfab6ccf1bcce9e778721e7e9e63cc8b315db298.tar.gz nextcloud-server-bfab6ccf1bcce9e778721e7e9e63cc8b315db298.zip |
Merge pull request #12180 from nextcloud/sidebar-fixes
Sidebar fixes, mostly fixing design of tabs
Diffstat (limited to 'apps/files/css')
-rw-r--r-- | apps/files/css/detailsView.scss | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/apps/files/css/detailsView.scss b/apps/files/css/detailsView.scss index f64a3702850..71062648c97 100644 --- a/apps/files/css/detailsView.scss +++ b/apps/files/css/detailsView.scss @@ -15,7 +15,13 @@ #app-sidebar .mainFileInfoView .permalink { padding: 6px 10px; - vertical-align: text-top; + vertical-align: top; + opacity: .6; + + &:hover, + &:focus { + opacity: 1; + } } #app-sidebar .mainFileInfoView .permalink-field>input { clear: both; @@ -87,7 +93,7 @@ } #app-sidebar .fileName h3 { - width: calc(100% - 36px); /* 36px is the with of the copy link icon */ + width: calc(100% - 42px); /* 36px is the with of the copy link icon, but this breaks so we add some more to be sure */ display: inline-block; padding: 5px 0; margin: -5px 0; |