Added CSS file for Edit DataTable.

For now it only contains a style to prevent empty row collapsing.
This commit is contained in:
Amir Plivatsky 2011-07-12 22:58:45 +03:00
parent 50954c333f
commit 1fd29bf2a1
2 changed files with 11 additions and 0 deletions

View file

@ -0,0 +1,9 @@
/**
* datatable.css
* CSS rules for Edit DataTable
*/
/* prevent collapsing of empty rows */
.yui-dt-editable .yui-dt-liner {
min-height: 10px;
}