freeipa/install/ui/ie.css
Petr Vobornik a14d243fcd Fixed display of attributes_widget in IE9
Attributes widget is using overflow css rule in tbody element. IE9 doesn't handle it well.

To fix the issue, attributes widget was slightly modified and conditional css stylesheet was added just for fixing IE problems.

https://fedorahosted.org/freeipa/ticket/2822
2012-07-17 15:55:44 +02:00

23 lines
389 B
CSS

/* Authors:
* Petr Vobornik <pvobornik@redhat.com>
*
* Copyright (C) 2012 Red Hat
*
* Styles for IE only
*/
.aci-attribute-table-container {
overflow: auto !important;
overflow-x: hidden !important;
width: 348px !important;
}
.aci-attribute-table {
float: left;
margin: 0;
width: 332px !important;
}
.aci-attribute-table tbody {
height: auto !important;
}