-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcreate_helper.css
More file actions
101 lines (86 loc) · 1.82 KB
/
Copy pathcreate_helper.css
File metadata and controls
101 lines (86 loc) · 1.82 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
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
96
97
98
99
100
101
#create_helper_wrapper {
background: #024d61;
width: 83px;
height: 120px;
/* margin-left: -33px; */
position: absolute;
top: 80px;
left: 0px;
z-index: 200;
-webkit-transition: margin-left 0.2s;
-moz-transition: margin-left 0.2s;
transition: margin-left 0.2s;
}
/*
#create_helper_wrapper:hover {
margin-left: 0px;
}
*/
#create_helper_wrapper .create_helper_pop{
float: left;
}
#create_helper_wrapper .create_post_button {
width: 40px;
height: 40px;
cursor: pointer;
}
#create_helper_wrapper .text_post:hover {
background: #F9CF3A;
}
#create_helper_wrapper .picture_post:hover {
background: #FD5E21;
}
#create_helper_wrapper .video_post:hover {
background: #299B26;
}
#create_helper_wrapper .text_post img {
margin-top: 11px;
margin-left: 11px;
}
#create_helper_wrapper .picture_post img {
margin-top: 12px;
margin-left: 9px;
}
#create_helper_wrapper .video_post img {
margin-top: 11px;
margin-left: 10px;
}
#create_helper_wrapper .create_helper_button {
position: relative;
width: 90px;
top: -68px;
right: -21px;
color: whitesmoke;
float: right;
cursor: default;
-webkit-transform: rotate(90deg);
-moz-transform: rotate(90deg);
}
#create_helper_wrapper .pop_tip {
position: relative;
left: 40px;
top: -23px;
z-index: 102;
display: none;
}
#create_helper_wrapper .pop_tip .tip_arrow {
position: absolute;
left: -8px;
top: 5px;
width: 0;
height: 0;
border-top: 6px solid transparent;
border-right: 8px solid black;
border-bottom: 6px solid transparent;
}
#create_helper_wrapper .pop_tip .tip_text {
position: absolute;
white-space: nowrap;
padding: 2px 5px;
background: black;
color: whitesmoke;
font-size: 10pt;
}
#create_helper_wrapper .create_post_button:hover .pop_tip {
display: table-cell;
}