|
@@ -88,6 +88,10 @@ |
|
@@ -88,6 +88,10 @@ |
88
|
height: auto;
|
88
|
height: auto;
|
89
|
overflow: hidden;
|
89
|
overflow: hidden;
|
90
|
margin-top: pxToRem(20px);
|
90
|
margin-top: pxToRem(20px);
|
|
|
91
|
+
|
|
|
92
|
+ a {
|
|
|
93
|
+ display: block;
|
|
|
94
|
+ }
|
91
|
}
|
95
|
}
|
92
|
|
96
|
|
93
|
.fav-img-box {
|
97
|
.fav-img-box {
|
|
@@ -171,17 +175,28 @@ |
|
@@ -171,17 +175,28 @@ |
171
|
}
|
175
|
}
|
172
|
|
176
|
|
173
|
&.del-fav {
|
177
|
&.del-fav {
|
174
|
- $width: pxToRem(image_width(sprite-file($fav, fav-del)));
|
|
|
175
|
- $height: pxToRem(image_height(sprite-file($fav, fav-del)));
|
|
|
176
|
-
|
|
|
177
|
- @include rem-sprite($fav, fav-del);
|
|
|
178
|
- width: $width;
|
|
|
179
|
- height: $height;
|
|
|
180
|
-
|
178
|
+ width: 2rem;
|
|
|
179
|
+ height: 1.5rem;
|
181
|
position: absolute;
|
180
|
position: absolute;
|
182
|
top: 50%;
|
181
|
top: 50%;
|
183
|
- right: pxToRem(30px);
|
|
|
184
|
- margin-top: -$height / 2;
|
182
|
+ margin-top: -0.75rem;
|
|
|
183
|
+ right: 0;
|
|
|
184
|
+
|
|
|
185
|
+ &:after {
|
|
|
186
|
+ content: '';
|
|
|
187
|
+ display: block;
|
|
|
188
|
+ $width: pxToRem(image_width(sprite-file($fav, fav-del)));
|
|
|
189
|
+ $height: pxToRem(image_height(sprite-file($fav, fav-del)));
|
|
|
190
|
+
|
|
|
191
|
+ @include rem-sprite($fav, fav-del);
|
|
|
192
|
+ width: $width;
|
|
|
193
|
+ height: $height;
|
|
|
194
|
+
|
|
|
195
|
+ position: absolute;
|
|
|
196
|
+ top: 50%;
|
|
|
197
|
+ right: pxToRem(30px);
|
|
|
198
|
+ margin-top: -$height / 2;
|
|
|
199
|
+ }
|
185
|
}
|
200
|
}
|
186
|
}
|
201
|
}
|
187
|
}
|
202
|
}
|