fix table cell input css
This commit is contained in:
parent
a2f6e18900
commit
0a5ae83f35
1 changed files with 2 additions and 1 deletions
|
@ -1020,8 +1020,9 @@ Ox.TableList = function(options, self) {
|
||||||
style: 'square',
|
style: 'square',
|
||||||
textAlign: column.align || 'left',
|
textAlign: column.align || 'left',
|
||||||
value: column.unformat ? column.unformat(html) : html,
|
value: column.unformat ? column.unformat(html) : html,
|
||||||
width: width
|
width: width - 2
|
||||||
})
|
})
|
||||||
|
.css({padding: '0 1px'})
|
||||||
.on({
|
.on({
|
||||||
mousedown: function(e) {
|
mousedown: function(e) {
|
||||||
// keep mousedown from reaching list
|
// keep mousedown from reaching list
|
||||||
|
|
Loading…
Reference in a new issue