]> git.proxmox.com Git - extjs.git/blame - extjs/classic/theme-base/sass/src/view/BoundList.scss
add extjs 6.0.1 sources
[extjs.git] / extjs / classic / theme-base / sass / src / view / BoundList.scss
CommitLineData
6527f429
DM
1// Fixes a bug in IE 9 standards. When there is a row that is wider than the view, the horizontal scrollbar is triggered b/c overflow\r
2// is set to auto. The boundlist will then continue to grow vertically in size every time addCls is called when the rows are highlighted.\r
3// http://stackoverflow.com/questions/5788726/add-remove-css-will-cause-ie9-to-increase-the-tables-height\r
4// http://blog.brianrichards.net/post/6721471926/ie9-hover-bug-workaround\r
5//\r
6// Note that without escaping the '%' this was not working, IE 9 was changing 0% to 0px. The backslash forced it to remain '0%'.\r
7@if $include-ie {\r
8 .#{$prefix}ie9 .#{$prefix}boundlist-list-ct {\r
9 min-height: 0\%;\r
10 }\r
11}\r