forked from jdart/who-cors
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.css
50 lines (42 loc) · 915 Bytes
/
popup.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
html {
width: 400px;
min-height: 444px;
}
.has-header {
position: relative;
top: 44px !important;
height: 400px;
overflow-x: hidden;
overflow-y: auto;
}
label.toggle {
cursor: pointer;
}
.item.active:not(.item-divider):not(.item-input):not(.item-input-inset), .item-complex.active .item-content {
background-color: #fff !important;
border-color: #ddd !important;
}
.item.animate-enter-leave {
padding-top: 0px;
padding-bottom: 0px;
line-height: 50px;
position: relative;
top: 0px;
}
.item.animate-enter-leave.ng-leave,
.item.animate-enter-leave.ng-enter {
-webkit-transition: all linear .2s;
transition: all linear .2s;
}
.item.animate-enter-leave.ng-leave.ng-leave-active,
.item.animate-enter-leave.ng-enter {
opacity: 0;
line-height: 0px;
top: -30px;
}
.item.animate-enter-leave.ng-enter.ng-enter-active,
.item.animate-enter-leave.ng-leave {
opacity: 1;
line-height: 50px;
top: 0;
}