-
Notifications
You must be signed in to change notification settings - Fork 0
/
popover.css
134 lines (129 loc) · 2.91 KB
/
popover.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
input[type="text"], input[type="search"], input[type="number"], input[type="tel"], input[type="password"], .a-input-text {
height: 31px;
line-height: normal;
padding: 3px 7px;
}
input[type="text"], input[type="search"], input[type="number"], input[type="tel"], input[type="password"], textarea, select.a-select-multiple, .a-input-text {
-moz-border-bottom-colors: none;
-moz-border-left-colors: none;
-moz-border-right-colors: none;
-moz-border-top-colors: none;
border-color: #949494 #a6a6a6 #a6a6a6;
border-image: none;
border-radius: 3px;
border-right: 1px solid #a6a6a6;
border-style: solid;
border-width: 1px;
box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5), 0 1px 0 rgba(0, 0, 0, 0.07) inset;
outline: 0 none;
}
input, textarea {
background-color: none;
}
input, textarea, select {
font-family: Arial,sans-serif;
line-height: 19px;
transition: all 100ms linear 0s;
}
button, input {
line-height: normal;
}
button, input, select, textarea {
font-size: 100%;
margin: 0;
vertical-align: middle;
}
* {
box-sizing: unset !important;
}
.pop-container{
background: none repeat scroll 0 0 #fff;
border: 1px solid;
box-shadow: 0 0 1em #fff inset, 0 1em 3em 0 #000;
height: 230px;
position: absolute;
right: 30px;
top: 60px;
width: 518px;
z-index: 2147483641;
}
.pop-container .header{
height: 50px;
text-align: center;
}
.pop-container .product {
border: 1px solid;
display: block;
height: 120px;
margin: 0 25px 25px;
padding-top: 16px;
width: 100px;
}
.pop-container .col1{
width: 29%;
height: 180px;
display: inline-block;
}
.pop-container .col2{
width: 69%;
height: 180px;
display: inline-block;
position: absolute;
}
.pop-container .logo {
height: 50px;
}
.pop-container .product-name {
padding: 4px 3px 3px;
border-spacing: 0px; text-align: left;
background-color: transparent;
}
.pop-container .input-name {
display: block;
height: 16px;
width: 80%;
}
.pop-container .input-btn {
display: block;
height: 30px;
width: 40%;
cursor: pointer;
}
.pop-container .pop-cancel{
height: 10px;
width: 10px;
float: right;
padding:10px;
cursor: pointer;
}
.pop-container .paginator{
bottom: 15px;
padding-right: 10px;
position: relative;
text-align: center;
}
.pop-container .prev{
background-image: url("http://dev.walmart.com/myJs/images/next-prev.png");
background-position: 15px 22px;
background-size: cover;
height: 11px;
position: absolute;
vertical-align: super;
width: 7px;
cursor: pointer;
}
.pop-container .next{
background-image: url("http://dev.walmart.com/myJs/images/next-prev.png");
background-position: 22px 22px;
background-size: cover;
height: 11px;
position: absolute;
vertical-align: super;
width: 7px;
cursor: pointer;
}
.pop-container .count{
font: 10px/130% Arial,Helvetica,Verdana,sans-serif;
margin: 10px;
vertical-align: top;
}