Fix query tool horizontal scrolling of results. Fixes #1362

The backgrid-sizeable's css property 'overflow: hidden' was overriding backgrid table css property and It was reproducible only in runtime.
Removed 'overflow: hidden' property from backgrid-sizeabled-columns.css
This commit is contained in:
Surinder Kumar 2016-06-14 15:51:14 +01:00 committed by Dave Page
parent b0b21fd46c
commit e881695050
2 changed files with 1 additions and 5 deletions

View File

@ -6,7 +6,6 @@
Licensed under the MIT @license.
*/
table.backgrid {
overflow: hidden;
position: relative;
}

View File

@ -194,10 +194,7 @@
error = self.keyPathAccessor(errorModel.toJSON(), $(el).attr('name'));
if (_.isEmpty(error)) return;
self.$el.addClass(Backform.errorClassName).append(
$("<div></div>").addClass('pgadmin-control-error-message pg-el-xs-offset-4 pg-el-xs-8 help-block').text(error)
);
self.$el.addClass(Backform.errorClassName);
});
},