-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
87 lines (75 loc) · 1.53 KB
/
Copy pathstyles.css
File metadata and controls
87 lines (75 loc) · 1.53 KB
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
.crumbs-container {
padding: 0.5em 0;
}
.crumbs-bar {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 0;
width: 100%;
font-size: var(--font-ui-small);
line-height: 1.4;
}
.crumbs-segment {
display: inline-flex;
align-items: center;
padding: 2px 4px;
border-radius: var(--radius-s);
}
.crumbs-segment-name {
color: var(--text-accent);
cursor: pointer;
text-decoration: none;
}
.crumbs-segment-name:hover {
color: var(--text-accent-hover);
text-decoration: underline;
}
.crumbs-segment-name.is-current {
color: var(--text-normal);
font-weight: var(--font-semibold);
cursor: default;
text-decoration: none;
}
.crumbs-segment-name.is-current:hover {
text-decoration: none;
}
.crumbs-segment-name.is-missing {
font-style: italic;
color: var(--text-muted);
}
.crumbs-chevron.clickable-icon {
--icon-size: 14px;
--icon-stroke: 2px;
display: inline-flex;
align-items: center;
justify-content: center;
margin-left: 1px;
padding: 2px;
height: auto;
width: auto;
color: var(--text-faint);
background: transparent;
border-radius: var(--radius-s);
box-shadow: none;
}
.crumbs-chevron.clickable-icon:hover,
.crumbs-chevron.clickable-icon:focus-visible {
color: var(--text-normal);
background-color: var(--background-modifier-hover);
}
.crumbs-separator {
color: var(--text-faint);
padding: 0 4px;
user-select: none;
}
.crumbs-children {
display: inline-flex;
align-items: center;
padding: 2px 4px;
border-radius: var(--radius-s);
}
.crumbs-menu-item-missing-title {
font-style: italic;
color: var(--text-muted);
}