Merge remote-tracking branch 'refs/remotes/origin/2.1' into 3.0
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / style / ui / breadcrumb.scss
1 .breadcrumbs {
2 flex: 1;
3
4 > ol {
5 display: flex;
6 flex-wrap: wrap;
7
8 > li {
9 flex: 0 0 auto;
10 max-width: 100%;
11
12 @include wcfFontSmall;
13
14 &:not(:last-child) {
15 margin-right: 10px;
16
17 &:after {
18 color: $wcfNavigationText;
19 content: "/";
20 }
21
22 > a {
23 margin-right: 10px;
24 }
25 }
26
27 > a {
28 color: $wcfNavigationLink;
29 text-decoration: none;
30
31 &:hover {
32 color: $wcfNavigationLinkActive;
33 text-decoration: underline;
34 }
35 }
36 }
37 }
38 }