-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbtagger.css
79 lines (79 loc) · 1.18 KB
/
btagger.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
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
#btagger_css {
display: none;
}
.btagger_border {
border-style: solid;
border-color: #000000;
position: absolute;
opacity: 0.5;
filter: alpha(opacity=50);
}
.btagger_corners {
position: absolute;
}
.btagger_pin {
width: 10px;
height: 10px;
background: #FFFFFF;
background-color: rgba(220, 220, 220, 0.5);
position: absolute;
cursor: pointer;
}
.btagger_active .btagger_pin {
background-color: rgba(255, 255, 255, 0.8);
}
.btagger_tl {
top: -5px;
left: -5px;
cursor: nw-resize;
}
.btagger_tm {
top: -5px;
left: 50%;
margin-left: -5px;
cursor: n-resize;
}
.btagger_bm {
bottom: -5px;
left: 50%;
margin-left: -5px;
cursor: s-resize;
}
.btagger_ml {
top: 50%;
left: -5px;
margin-top: -5px;
cursor: w-resize;
}
.btagger_mr {
top: 50%;
right: -5px;
margin-top: -5px;
cursor: e-resize;
}
.btagger_tr {
top: -5px;
right: -5px;
cursor: ne-resize;
}
.btagger_bl {
bottom: -5px;
left: -5px;
cursor: sw-resize;
}
.btagger_br {
bottom: -5px;
right: -5px;
cursor: se-resize;
}
.btagger_bg {
z-index: 2000;
left: 0px;
top: 0px;
background-color: #FFF;
opacity: 0;
filter: alpha(opacity=0);
}
.btagger_corners {
cursor: move;
}