File size: 617 Bytes
8fd7a1d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
@import "../../css/colors.css";
@import "../../css/units.css";

/* Position the language select over the language icon, and make it transparent */
.language-select {
    position: absolute;
    width: 100%;
    height: $menu-bar-height;
    opacity: 0;
    user-select: none;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: .875rem;
    color: $text-primary;
    background: $ui-white;
}

[dir="ltr"] .language-select {
    right: 0;
}

[dir="rtl"] .language-select {
    left: 0;
}

.language-select option {
    opacity: 1;
}

.language-select:focus {
    border: 1px solid white;
}