blob: 33b2b2fea0baabe836368c0e7663ed3cde2150f0 (
plain)
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
|
.dropDown-logout-button {
color: var(--color-nav-link, $white);
.expand-caret {
display: none;
}
&:focus,
&:hover,
&[aria-expanded="true"] {
.expand-caret {
display: flex;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
.dropDown-logout-text {
opacity: 0;
}
}
}
.dropDown-logout-displayName {
max-width: 15em;
}
.dropDown-logout-email {
font-size: 1rem;
}
.dropDown-logout-initials {
border-color: var(--color-nav-link, $pm-global-border);
min-width: 2.7em;
}
@if $rtl-option == true {
[dir="rtl"] {
.dropDown-logout-button > span:first-child {
margin-left: .5em;
margin-right: 0;
}
}
}
|