forked from 0x2620/pandora
fix #1513 (rights level badge too wide in context browser)
This commit is contained in:
parent
5a966577b0
commit
b47b8b14fb
3 changed files with 5 additions and 5 deletions
|
@ -95,7 +95,7 @@ pandora.ui.browser = function() {
|
|||
this, [data[sortKey]].concat(format.args || [])
|
||||
);
|
||||
if (sortKey == 'rightslevel') {
|
||||
info.css({width: '96px'});
|
||||
info.css({width: size * 0.75 + 'px'});
|
||||
}
|
||||
} else {
|
||||
info = data[sortKey];
|
||||
|
|
|
@ -50,7 +50,7 @@ pandora.ui.clipList = function(videoRatio) {
|
|||
this, [data[sortKey]].concat(format.args || [])
|
||||
);
|
||||
if (sortKey == 'rightslevel') {
|
||||
info.css({width: '96px'});
|
||||
info.css({width: size * 0.75 + 'px'});
|
||||
}
|
||||
} else {
|
||||
info = data[sortKey];
|
||||
|
|
|
@ -144,7 +144,7 @@ pandora.ui.list = function() {
|
|||
this, [data[sortKey]].concat(format.args || [])
|
||||
);
|
||||
if (sortKey == 'rightslevel') {
|
||||
info.css({width: '96px'});
|
||||
info.css({width: size * 0.75 + 'px'});
|
||||
}
|
||||
} else {
|
||||
info = data[sortKey];
|
||||
|
@ -202,7 +202,7 @@ pandora.ui.list = function() {
|
|||
this, [data[sortKey]].concat(format.args || [])
|
||||
);
|
||||
if (sortKey == 'rightslevel') {
|
||||
info.css({width: '96px'});
|
||||
info.css({width: size * 0.75 + 'px'});
|
||||
}
|
||||
} else {
|
||||
info = data[sortKey];
|
||||
|
@ -287,7 +287,7 @@ pandora.ui.list = function() {
|
|||
this, [data[sortKey]].concat(format.args || [])
|
||||
);
|
||||
if (sortKey == 'rightslevel') {
|
||||
info.css({width: '96px'});
|
||||
info.css({width: size * 0.75 + 'px'});
|
||||
}
|
||||
} else {
|
||||
info = data[sortKey];
|
||||
|
|
Loading…
Reference in a new issue