Browse Source

Fix styling of the breadcrumbs icon

* properly center share icon
* also apply styles for public share icon

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
tags/v11.0RC2
Morris Jobke 7 years ago
parent
commit
742ece8b7a
No account linked to committer's email address
2 changed files with 6 additions and 3 deletions
  1. 5
    2
      apps/files_sharing/css/sharebreadcrumb.css
  2. 1
    1
      core/css/styles.css

+ 5
- 2
apps/files_sharing/css/sharebreadcrumb.css View File

@@ -20,12 +20,15 @@
*
*/

div.crumb span.icon-share {
div.crumb span.icon-share,
div.crumb span.icon-public {
display: inline-block;
cursor: pointer;
opacity: 0.2;
margin-right: 6px;
}

div.crumb span.icon-share.shared {
div.crumb span.icon-share.shared,
div.crumb span.icon-public.shared {
opacity: 0.7;
}

+ 1
- 1
core/css/styles.css View File

@@ -901,7 +901,7 @@ div.crumb > span {
color: #555;
}
div.crumb.last a {
padding-right: 14px;
padding-right: 0px;
}
div.crumb:first-child a {
position: relative;

Loading…
Cancel
Save