mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-23 07:33:27 -06:00
a14d243fcd
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
23 lines
389 B
CSS
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;
|
|
} |