-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtextarea-localizer.css
More file actions
62 lines (54 loc) · 1.44 KB
/
textarea-localizer.css
File metadata and controls
62 lines (54 loc) · 1.44 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
.textarea-localizer{
position: relative;
border: 1px solid rgba(0, 0, 0, .125);
border-radius: 0.375rem;
overflow: hidden;
& .textarea-localizer-header{
/* position: absolute; */
display: flex;
justify-content: flex-end;
top: 0px;
left: 0px;
width: 100%;
background-color: rgba(0,0,0,.03);
border-bottom: 1px solid rgba(0, 0, 0, .125);
padding: 5px;
text-align: right;
box-sizing: border-box;
}
& .textarea-localizer-languages{
display: flex;
gap: 10px;
transition: filter 0.3s;
-webkit-transition: filter 0.3s;
-moz-transition: filter 0.3s;
-o-transition: filter 0.3s;
& .textarea-localizer-language{
height: 17px;
& img{
cursor: pointer;
width: 17px;
vertical-align: top;
}
}
}
& .textarea-localizer-textarea{
display: block;
width: 100%;
padding: 7px;
box-sizing: border-box;
resize: none;
border: none;
outline: none;
line-height: 1.45;
}
& .default-language{
display: none;
}
& .textarea-localizer-language:not(.textarea-hidden, :hover){
filter: grayscale(100%) !important;
}
& .language-box.textarea-hidden{
display: none;
}
}