add border-radius on the last visible flying add-on

This commit is contained in:
Chris Van 2011-12-21 15:07:14 -05:00
Родитель 2dcac00e77
Коммит aa2dce59ad
2 изменённых файлов: 8 добавлений и 3 удалений

Просмотреть файл

@ -525,7 +525,7 @@ section#featured-addons {
margin: 0 -10px; margin: 0 -10px;
clear: both; clear: both;
} }
#sub li.show { #promo-video-addons li.show {
border-bottom: 0; border-bottom: 0;
border-top: 1px solid #cdd4de; border-top: 1px solid #cdd4de;
} }
@ -533,7 +533,7 @@ section#featured-addons {
border-bottom-color: #666; border-bottom-color: #666;
} }
#sub li:last-child { #sub li:last-child {
border-bottom-width: 0; border-bottom: 0;
} }
#sub .featured li, #sub .featured li,
@ -609,7 +609,9 @@ section#featured-addons {
} }
#sub .featured li:last-child a, #sub .featured li:last-child a,
.featured .featured-personas ul li:last-child a span.addon-title { .featured .featured-personas ul li:last-child a span.addon-title,
#promo-video-addons .show.last a,
#promo-video-addons .show.last a span.addon-title {
border-radius: 0 0 8px 8px; border-radius: 0 0 8px 8px;
} }

Просмотреть файл

@ -357,6 +357,9 @@ $(function() {
onStart: function() { onStart: function() {
$video_details.hide(); $video_details.hide();
addon.addClass('show'); addon.addClass('show');
$addons.removeClass('last');
// So we can do a nice border-radius on the last visible.
$addons.filter(':visible:last').addClass('last');
}, },
onEnd: function() { onEnd: function() {
addon.removeClass('show'); addon.removeClass('show');