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
63
.zen-backdrop {
&.fullscreen {
background-color: $white-light;
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
z-index: 1031;
textarea {
border: none;
box-shadow: none;
border-radius: 0;
color: $black;
font-size: 20px;
line-height: 26px;
padding: 30px;
display: block;
outline: none;
resize: none;
height: 100vh;
max-height: calc(100vh - 10px);
max-width: 900px;
margin: 0 auto 10px;
}
.zen-control-leave {
display: block;
position: absolute;
top: 0;
}
}
}
.zen-control {
padding: 0;
color: $zen-control-color;
background: none;
border: 0;
}
.zen-control-full {
color: $gl-text-color-secondary;
&:hover {
color: $gl-link-color;
text-decoration: none;
}
}
.zen-control-leave {
display: none;
color: $gl-text-color;
position: absolute;
right: 10px;
padding: 5px;
font-size: 36px;
&:hover {
color: $black;
}
}