Commit a76728fa6426cf724d1392bb00488c7d8b929ee3
1 parent
ebd54332
Exists in
pkg_fixes
fix alignment of arrow on additional informations section
Showing
1 changed file
with
9 additions
and
7 deletions
Show diff stats
css/use-report.css
... | ... | @@ -19,13 +19,13 @@ |
19 | 19 | |
20 | 20 | .profile-homepage #content .organization-average-rating-container .rate-this-organization { |
21 | 21 | font-size: 14px; |
22 | - text-decoration: underline; | |
23 | 22 | margin: 4px 0px 0px 6px; |
24 | 23 | padding: 0px 0px 0px 15px; |
25 | 24 | } |
26 | 25 | |
27 | 26 | .profile-homepage #content .organization-average-rating-container .rate-this-organization a { |
28 | 27 | color: #2c66ce; |
28 | + text-decoration: underline; | |
29 | 29 | } |
30 | 30 | |
31 | 31 | .profile-homepage #content .organization-average-rating-container .star-container .medium-star-negative, |
... | ... | @@ -287,29 +287,31 @@ |
287 | 287 | } |
288 | 288 | |
289 | 289 | #content .star-rate-form .star-comment-container .comments-display-fields:hover span, |
290 | -#content .star-rate-form .star-comment-container .comments-display-fields:hover span:after { | |
290 | +#content .star-rate-form .star-comment-container .comments-display-fields:hover span::after { | |
291 | 291 | opacity: 0.6; |
292 | 292 | } |
293 | 293 | |
294 | 294 | #content .star-rate-form .star-comment-container .comments-display-fields span#comments-additional-information { |
295 | - color: #172738; | |
296 | - display: block; | |
297 | 295 | float: left; |
296 | + padding-bottom: 4px; | |
297 | + color: #172738; | |
298 | 298 | font-size: 14px; |
299 | 299 | font-weight: 700; |
300 | - padding-bottom: 4px; | |
300 | +} | |
301 | + | |
302 | +#content .star-rate-form .star-comment-container .comments-display-fields span.comments-arrow-down, | |
303 | +#content .star-rate-form .star-comment-container .comments-display-fields span.comments-arrow-up{ | |
304 | + float: right; | |
301 | 305 | } |
302 | 306 | |
303 | 307 | .action-organization_ratings_plugin_profile-new_rating #content .star-rate-form .star-comment-container .comments-display-fields .comments-arrow-up::after { |
304 | 308 | content: url('../images/top-arrow-black.png'); |
305 | - float: right; | |
306 | 309 | padding-top: 7px; |
307 | 310 | padding-right: 6px; |
308 | 311 | } |
309 | 312 | |
310 | 313 | .action-organization_ratings_plugin_profile-new_rating #content .star-rate-form .star-comment-container .comments-display-fields .comments-arrow-down::after { |
311 | 314 | content: url('../images/bottom-arrow-black.png'); |
312 | - float: right; | |
313 | 315 | padding-top: 7px; |
314 | 316 | padding-right: 6px; |
315 | 317 | } | ... | ... |