diff options
author | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2017-11-07 15:22:35 +0100 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2017-11-08 13:04:39 +0100 |
commit | 4fe7ec387076c0c366965a74814c5b58d5b7d178 (patch) | |
tree | d53497f78c9c8b67b26b7a0c33ba5e0af781e273 | |
parent | e4b190d80d35960b587c4228838ed64d7740d6c1 (diff) | |
download | nextcloud-server-4fe7ec387076c0c366965a74814c5b58d5b7d178.tar.gz nextcloud-server-4fe7ec387076c0c366965a74814c5b58d5b7d178.zip |
fix multiple span next to last crumb link
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
-rw-r--r-- | core/css/styles.scss | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/core/css/styles.scss b/core/css/styles.scss index fe170f3fe3c..6c9121b0317 100644 --- a/core/css/styles.scss +++ b/core/css/styles.scss @@ -1443,8 +1443,9 @@ div.crumb { &:last-child { font-weight: 600; margin-right: 10px; - a { - padding-right: 0; + // Allow multiple span next to the main 'a' + a ~ span { + padding-left: 0; } } &:hover, &:focus, a:focus, &:active { |