-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
52 lines (44 loc) · 975 Bytes
/
Copy pathstyles.css
File metadata and controls
52 lines (44 loc) · 975 Bytes
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
.cpn-publish-indicators {
display: inline-flex;
align-items: center;
margin-left: 8px;
vertical-align: middle;
}
.cpn-publish-indicator {
cursor: default;
}
.cpn-tooltip {
position: relative;
}
.cpn-tooltip:hover::after {
content: attr(aria-label);
position: absolute;
bottom: 100%;
left: 50%;
transform: translateX(-50%);
padding: 4px 8px;
background: var(--background-secondary);
color: var(--text-normal);
border-radius: 4px;
font-size: 12px;
white-space: nowrap;
z-index: 1000;
}
.workspace-tab-header .cpn-tooltip:hover::after {
bottom: auto; /* Remove bottom positioning */
top: 100%; /* Position below instead of above */
margin-top: 4px; /* Add some spacing from the icon */
}
.cpn-tab-indicators {
margin-left: 4px; /* Space after the close button */
scale: 0.8;
}
.cpn-profile-delete-container {
margin-bottom: 1em;
}
.cpn-profile-container {
transition: opacity 0.2s ease-out;
}
.cpn-profile-container.removing {
opacity: 0;
}