fix #1260 (text in item label should be selectable)

This commit is contained in:
rolux 2013-07-10 13:22:06 +00:00
parent bff8959902
commit 3ff53566e9

View file

@ -31,7 +31,10 @@ pandora.ui.toolbar = function() {
left: getListTitleLeft() + 'px', left: getListTitleLeft() + 'px',
top: '4px', top: '4px',
right: (ui._list ? 324 : 310) + 'px', right: (ui._list ? 324 : 310) + 'px',
width: 'auto' width: 'auto',
MozUserSelect: 'text',
OUserSelect: 'text',
WebkitUserSelect: 'text'
}) })
: pandora.$ui.itemTitle = Ox.Label({ : pandora.$ui.itemTitle = Ox.Label({
textAlign: 'center' textAlign: 'center'
@ -41,7 +44,10 @@ pandora.ui.toolbar = function() {
left: '236px', left: '236px',
top: '4px', top: '4px',
right: (ui._list ? 324 : 310) + 'px', right: (ui._list ? 324 : 310) + 'px',
width: 'auto' width: 'auto',
MozUserSelect: 'text',
OUserSelect: 'text',
WebkitUserSelect: 'text'
}) })
.hide() .hide()
); );