-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtextarea-localizer.css
53 lines (46 loc) · 1.15 KB
/
textarea-localizer.css
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
.textarea-localizer{
position: relative;
& .textarea-localizer-header{
/* position: absolute; */
display: flex;
justify-content: flex-end;
top: 0px;
left: 0px;
width: 100%;
background-color: #2e80d5;
padding: 5px;
text-align: right;
box-sizing: border-box;
}
& .textarea-localizer-languages{
/* float: right; */
display: flex;
gap: 10px;
width: 17px;
overflow: hidden;
transition: width 0.3s;
-webkit-transition: width 0.3s;
-moz-transition: width 0.3s;
-o-transition: width 0.3s;
&:focus, &:hover{
width: var(--width);
}
& .textarea-localizer-language{
height: 17px;
& img{
cursor: pointer;
width: 17px;
vertical-align: top;
}
}
}
& .textarea-localizer-textarea{
width: 100%;
padding: 7px;
box-sizing: border-box;
resize: none;
}
& .textarea-hidden{
display: none;
}
}