forked from 0x2620/pandora
fix #1260 (text in item label should be selectable)
This commit is contained in:
parent
bff8959902
commit
3ff53566e9
1 changed files with 8 additions and 2 deletions
|
@ -31,7 +31,10 @@ pandora.ui.toolbar = function() {
|
|||
left: getListTitleLeft() + 'px',
|
||||
top: '4px',
|
||||
right: (ui._list ? 324 : 310) + 'px',
|
||||
width: 'auto'
|
||||
width: 'auto',
|
||||
MozUserSelect: 'text',
|
||||
OUserSelect: 'text',
|
||||
WebkitUserSelect: 'text'
|
||||
})
|
||||
: pandora.$ui.itemTitle = Ox.Label({
|
||||
textAlign: 'center'
|
||||
|
@ -41,7 +44,10 @@ pandora.ui.toolbar = function() {
|
|||
left: '236px',
|
||||
top: '4px',
|
||||
right: (ui._list ? 324 : 310) + 'px',
|
||||
width: 'auto'
|
||||
width: 'auto',
|
||||
MozUserSelect: 'text',
|
||||
OUserSelect: 'text',
|
||||
WebkitUserSelect: 'text'
|
||||
})
|
||||
.hide()
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue