-
Notifications
You must be signed in to change notification settings - Fork 114
Expand file tree
/
Copy pathangular-resizable.css
More file actions
77 lines (68 loc) · 1.25 KB
/
angular-resizable.css
File metadata and controls
77 lines (68 loc) · 1.25 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
.resizable {
position: relative;
}
.resizable.no-transition {
transition: none !important;
}
.rg-right, .rg-left, .rg-top, .rg-bottom {
display: block;
width: 14px;
height: 14px;
line-height: 14px;
position: absolute;
z-index: 1;
-moz-user-select: -moz-none;
-ms-user-select: none;
-webkit-user-select: none;
user-select: none;
background: transparent;
}
.rg-right span, .rg-left span, .rg-top span, .rg-bottom span {
position: absolute;
box-sizing: border-box;
display: block;
border: 1px solid #ccc;
}
.rg-right span, .rg-left span {
border-width: 0 1px;
top: 50%;
margin-top: -10px;
margin: -10px 0 0 3.5px;
height: 20px;
width: 7px;
}
.rg-top span, .rg-bottom span {
border-width: 1px 0;
left: 50%;
margin: 3.5px 0 0 -10px;
width: 20px;
height: 7px;
}
.rg-top {
cursor: row-resize;
width: 100%;
top: 0;
left: 0;
margin-top: -14px;
}
.rg-right {
cursor: col-resize;
height: 100%;
right: 0;
top: 0;
margin-right: -14px;
}
.rg-bottom {
cursor: row-resize;
width: 100%;
bottom: 0;
left: 0;
margin-bottom: -14px;
}
.rg-left {
cursor: col-resize;
height: 100%;
left: 0;
top: 0;
margin-left: -14px;
}