diff options
author | Petr Vobornik <pvoborni@redhat.com> | 2012-07-13 17:49:13 +0200 |
---|---|---|
committer | Petr Vobornik <pvoborni@redhat.com> | 2012-07-17 15:55:44 +0200 |
commit | a14d243fcdd18bb7bd5409d1a8804bf06929824d (patch) | |
tree | 0c56d2d4a933d911685163a40a707373848ab384 /install/ui/aci.js | |
parent | 7fcca4fa52196ea0082942f9ac39937c097a2064 (diff) | |
download | freeipa-a14d243fcdd18bb7bd5409d1a8804bf06929824d.tar.gz freeipa-a14d243fcdd18bb7bd5409d1a8804bf06929824d.tar.xz freeipa-a14d243fcdd18bb7bd5409d1a8804bf06929824d.zip |
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
Diffstat (limited to 'install/ui/aci.js')
-rw-r--r-- | install/ui/aci.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/install/ui/aci.js b/install/ui/aci.js index 953116c3f..b2e5e19e5 100644 --- a/install/ui/aci.js +++ b/install/ui/aci.js @@ -473,13 +473,17 @@ IPA.attributes_widget = function(spec) { that.create = function(container) { that.container = container; + var attr_container = $('<div/>', { + 'class': 'aci-attribute-table-container' + }).appendTo(container); + that.table = $('<table/>', { id:id, 'class':'search-table aci-attribute-table scrollable' }). append('<thead/>'). append('<tbody/>'). - appendTo(container); + appendTo(attr_container); var tr = $('<tr></tr>').appendTo($('thead', that.table)); |