forked from 0x2620/pandora
use OxLight class for list info description text
This commit is contained in:
parent
f05d750706
commit
ca0b2dd467
1 changed files with 2 additions and 2 deletions
|
@ -227,13 +227,13 @@ pandora.ui.listInfo = function() {
|
||||||
$description = Ox.Editable({
|
$description = Ox.Editable({
|
||||||
clickLink: pandora.clickLink,
|
clickLink: pandora.clickLink,
|
||||||
format: function(value) {
|
format: function(value) {
|
||||||
return '<div style="color: rgb(128, 128, 128); text-align: center">'
|
return '<div class="OxLight" style="text-align: center">'
|
||||||
+ value + '</div>';
|
+ value + '</div>';
|
||||||
},
|
},
|
||||||
editable: editable,
|
editable: editable,
|
||||||
height: pandora.user.ui.sidebarSize - 32,
|
height: pandora.user.ui.sidebarSize - 32,
|
||||||
placeholder: editable
|
placeholder: editable
|
||||||
? '<div style="color: rgb(128, 128, 128); text-align: center">No description</span>'
|
? '<div class="OxLight" style="text-align: center">No description</span>'
|
||||||
: '',
|
: '',
|
||||||
tooltip: editable ? 'Doubleclick to edit description' : '',
|
tooltip: editable ? 'Doubleclick to edit description' : '',
|
||||||
type: 'textarea',
|
type: 'textarea',
|
||||||
|
|
Loading…
Reference in a new issue