blob: c954b03d88e781d7690f32875abd9859e3bdcc52 (
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
.sidebar--right {
position: absolute;
width: 400px;
height: 100%;
right: 0px;
padding: 0 0 2em 0;
background: #fff;
@include single-transition(transform, 0.5s, ease);
right: -320px;
&.move--left {
right: 0;
}
.sidebar--right__back {
color: #666;
width: 20px;
text-align: center;
margin: 0 0 0 -6px;
font-size: 12px;
display: inline-block;
}
.sidebar-right__body {
border-left: $border-gray;
border-top: $border-gray;
}
.post {
.post-header {
.post-header-col {
&.post-header__reply {
min-width: 30px;
text-align: right;
float: right;
}
}
}
.post-body {
margin: 3px 0 0;
}
}
.sidebar__overlay {
width: 100%;
height: 100%;
background-color: yellow;
@include opacity(0.1);
position: absolute;
z-index: 5;
pointer-events: none;
}
.input-group {
word-break: break-word;
}
.sidebar--right__close {
margin: 11px 0 0 0;
width: 22px;
height: 22px;
opacity: 0.5;
font-size: 22px;
line-height: 0;
background: none;
float: right;
outline: none;
border: none;
@include single-transition(all, 0.2s, ease-in);
&:hover, &:active {
opacity: 0.8;
}
i {
position: relative;
top: -2px;
}
}
.sidebar--right__header {
font-size: 1em;
text-transform: uppercase;
color: inherit;
height: 44px;
padding: 0 1em;
line-height: 44px;
background: #F5F5F5;
border-bottom: $border-gray;
}
.sidebar--right__subheader {
font-size: 1em;
text-transform: uppercase;
color: #999;
font-weight: 400;
color: #888;
height: 44px;
line-height: 44px;
padding: 0 1em;
}
}
.sidebar-right-container {
height: 100%;
}
|