From 5bf7e5533d79c98d720d92ecee0125938805ff0f Mon Sep 17 00:00:00 2001 From: Christoph Wurst Date: Mon, 10 Oct 2016 11:14:51 +0200 Subject: visually reflect sharing state of current folder Signed-off-by: Christoph Wurst --- core/css/styles.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'core') diff --git a/core/css/styles.css b/core/css/styles.css index d94a31c4cf1..6923ea42fc0 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -894,12 +894,15 @@ div.crumb.hidden { display: none; } div.crumb a, -div.crumb span { +div.crumb > span { position: relative; top: 12px; padding: 14px 24px 14px 17px; color: #555; } +div.crumb.last a { + padding-right: 14px; +} div.crumb:first-child a { position: relative; top: 13px; -- cgit v1.2.3 From 742ece8b7a054ce16152d721f91936d04b5d22c2 Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Tue, 8 Nov 2016 11:14:36 +0100 Subject: Fix styling of the breadcrumbs icon * properly center share icon * also apply styles for public share icon Signed-off-by: Morris Jobke --- apps/files_sharing/css/sharebreadcrumb.css | 7 +++++-- core/css/styles.css | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) (limited to 'core') diff --git a/apps/files_sharing/css/sharebreadcrumb.css b/apps/files_sharing/css/sharebreadcrumb.css index 2339fc8ffc3..792c8a31b7c 100644 --- a/apps/files_sharing/css/sharebreadcrumb.css +++ b/apps/files_sharing/css/sharebreadcrumb.css @@ -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; } diff --git a/core/css/styles.css b/core/css/styles.css index 6923ea42fc0..84d3229bda9 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -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; -- cgit v1.2.3