-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheditable.css
More file actions
58 lines (45 loc) · 714 Bytes
/
editable.css
File metadata and controls
58 lines (45 loc) · 714 Bytes
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
body {
}
.ui-editable-icon {
position: absolute;
cursor:pointer;
}
.icon_remove {
right: 0;
top: 0px;
}
.icon_rotate {
left: 0;
top: 0px;
}
.icon_reflect {
bottom:-10px;
left:50%;
margin-left:-5px;
}
.ui-editable .text{
//width:100%;
//height:100%;
text-align: center;
display: table-cell;
vertical-align: middle;
}
.ui-editable-selected {
border: 2px #bde9ba dotted;
}
.background-as-img {
position: absolute;
background-repeat: no-repeat;
background-size: 100% 100%;
left: 0px;
right:0px;
}
.reflect {
-webkit-transform: scaleX(-1);
-o-transform: scaleX(-1);
-moz-transform: scaleX(-1);
transform: scaleX(-1);
filter: FlipH;
-ms-filter: "FlipH";
}