1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
| .breadcrumbs {
| height: 100%;
| display: flex;
| align-items: center;
| margin-right: 20px;
|
| &__label {
| display: flex;
| gap: 4px;
| align-items: center;
| }
|
| &__beta {
| font-size: 12px;
| font-style: normal;
| font-weight: 500;
| line-height: 16px;
| color: var(--plum_0);
| padding: 2px 8px;
| background-color: var(--plum_500);
| border-radius: 12px;
| }
|
| &__list {
| height: 100%;
| display: flex;
| align-items: center;
| list-style-type: none;
| margin: 0;
| padding: 0;
| }
|
| &__item {
| font-size: 16px;
| line-height: 22px;
| position: relative;
| margin: 0;
| padding: 0;
| height: 100%;
| display: flex;
| align-items: center;
| cursor: default;
|
| &:not(.breadcrumbs__item_last) {
| cursor: pointer;
|
| & > span,
| & > a {
| color: var(--color-neutral-content-subtler);
|
| &:hover {
| color: var(--color-primary-content-hover);
| }
| }
| }
|
| &:not(:nth-child(2)) {
| flex-shrink: 0;
| }
|
| &:nth-child(2) span {
| overflow: hidden;
| text-overflow: ellipsis;
| white-space: nowrap;
| }
|
| &:only-child {
| pointer-events: none;
| }
| }
|
| &__item > span,
| &__item > a {
| text-decoration: none;
| color: var(--color-neutral-content);
|
| a {
| color: var(--color-primary-content);
| }
| }
|
| &__item + &__item {
| margin-left: 30px;
| }
|
| &__item + &__item::before {
| top: 50%;
| right: 100%;
| width: 30px;
| content: "/";
| height: 16px;
| display: block;
| color: var(--color-neutral-content-subtlest);
| position: absolute;
| transform: translate3d(0, -50%, 0);
| text-align: center;
| line-height: 16px;
| font-size: 18px;
| }
|
| &__settings {
| width: 20px;
| height: 20px;
| display: block;
| margin-left: 10px;
| }
|
| &__settings img {
| display: block;
| opacity: 0.23;
| }
| }
|
|