summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2018-11-01 04:11:20 +0100
committerJan-Christoph Borchardt <hey@jancborchardt.net>2018-11-01 04:11:20 +0100
commit4e12132e43e679a0129e16a1a9019bfc332be5c9 (patch)
tree79481e5d981a7e64e153d18677b2192452e74d2b
parentbb1d503f3e4f15b77d735f0a288356e0b815e997 (diff)
downloadnextcloud-server-4e12132e43e679a0129e16a1a9019bfc332be5c9.tar.gz
nextcloud-server-4e12132e43e679a0129e16a1a9019bfc332be5c9.zip
Fix issues with clipboard button for local link in sidebar
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
-rw-r--r--apps/files/css/detailsView.scss10
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;