add listing bodyclass
This commit is contained in:
Родитель
a0b67759dc
Коммит
2514002991
|
@ -4,7 +4,7 @@
|
|||
{{ page_title(category.name if category else _('Extensions')) }}
|
||||
{% endblock %}
|
||||
|
||||
{% block bodyclass %}s-{{ sorting }}{% endblock %}
|
||||
{% block bodyclass %}listing s-{{ sorting }}{% endblock %}
|
||||
|
||||
{% if category %}
|
||||
{% block extrahead %}
|
||||
|
|
|
@ -47,7 +47,7 @@ header .feed {
|
|||
}
|
||||
}
|
||||
|
||||
.item {
|
||||
.listing .item {
|
||||
border-top: 1px dotted @border-blue;
|
||||
color: @note-gray;
|
||||
display: table;
|
||||
|
@ -146,7 +146,7 @@ header .feed {
|
|||
}
|
||||
}
|
||||
|
||||
.html-rtl .item {
|
||||
.html-rtl .listing .item {
|
||||
.collector-note,
|
||||
.performance-note {
|
||||
float: right;
|
||||
|
|
|
@ -1,16 +1,17 @@
|
|||
$(function () {
|
||||
$('.performance-note .popup').each(function(i,p) {
|
||||
var $p = $(this),
|
||||
$a = $p.siblings('a').first();
|
||||
$p.popup($a, {width: 300, pointTo: $a});
|
||||
});
|
||||
|
||||
$('.item.addon').each(function(i,p){
|
||||
var $this = $(this);
|
||||
if ($this.find('.concealed').length) {
|
||||
$this.addClass('incompatible');
|
||||
}
|
||||
});
|
||||
if ($('body').hasClass('listing')) {
|
||||
$('.performance-note .popup').each(function(i,p) {
|
||||
var $p = $(this),
|
||||
$a = $p.siblings('a').first();
|
||||
$p.popup($a, {width: 300, pointTo: $a});
|
||||
});
|
||||
$('.item.addon').each(function(i,p){
|
||||
var $this = $(this);
|
||||
if ($this.find('.concealed').length) {
|
||||
$this.addClass('incompatible');
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
if (!$("body").hasClass('addon-details')) return;
|
||||
$(".previews").zCarousel({
|
||||
|
|
Загрузка…
Ссылка в новой задаче