forked from DeviceFarmer/stf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
52 lines (47 loc) · 991 Bytes
/
style.css
File metadata and controls
52 lines (47 loc) · 991 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
/*
Currently angular-xeditable does not support popover
This is a work around to make angular-xeditable look like
popover
*/
.xeditable-wrapper {
position: relative;
}
.xeditable-wrapper form {
background: #FFF;
border: 1px solid #AAA;
border-radius: 5px;
display: inline-block;
left: 50%;
margin-left: -190px;
padding: 7px;
position: absolute;
top: -55px;
width: 380px;
z-index: 101;
}
.xeditable-wrapper form:before {
content: '';
width: 0;
height: 0;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
border-top: 10px solid #AAA;
position: absolute;
bottom: -10px;
left: 190px;
}
.xeditable-wrapper form:after {
content: '';
width: 0;
height: 0;
border-left: 9px solid transparent;
border-right: 9px solid transparent;
border-top: 9px solid #FFF;
position: absolute;
bottom: -9px;
left: 191px;
}
.xeditable-wrapper .editable-buttons .btn {
margin-left: 6px !important;
cursor: pointer;
}