-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathangular-mobile-select.css
73 lines (70 loc) · 1.25 KB
/
angular-mobile-select.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
.ngm-select{
width: 100%;
height: 40px;
margin-top: 10px;
border-bottom: 2px solid #757575;
font-family: Arial, Helvetica, sans-serif;
}
.ngm-select-floating-label{
position: relative;
left: 0px;
font-size: 12px;
visibility:hidden;
}
.ngm-select-active-float-label{
color: #2979FF;
}
.ngm-select-selected-item{
cursor: pointer;
}
.ngm-select-list-item{
cursor: pointer;
padding: 10px;
font-size: 14px;
}
.ngm-select-load-list{
position: fixed;
bottom: 0;
left: 0;
width: 100%;
}
.ngm-select-load-header{
padding: 10px;
background: #2979FF;
font-size: 16px;
color: #FFF;
z-index: 999;
text-align: center;
}
.ngm-select-load-list-container{
max-height: 250px;
overflow: auto;
z-index: 999;
background:#FFF;
}
.ngm-select-float-label{
visibility: visible;
top: -8px;
}
.ngm-select-input-bottom
{
border-bottom: 2px solid #2979FF;
}
.ngm-select-backdrop{
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0,0,0,.2);
transition-property: opacity,transform;
transition-duration: .6s;
transition-timing-function: cubic-bezier(.23,1,.32,1);
}
.ngm-select-full-view{
max-height: calc(100vh - 38px);
transition: max-height 0.50s ease-out;
}
.ngm-select-disabled-item{
color: rgba(0,0,0,.5);
}