diff options
author | Petr Vobornik <pvoborni@redhat.com> | 2014-04-04 17:45:56 +0200 |
---|---|---|
committer | Petr Vobornik <pvoborni@redhat.com> | 2014-06-10 10:23:24 +0200 |
commit | 2e9e5792bc7c5fd1ed65b4d72e3915442db060f5 (patch) | |
tree | b7d70798b734e429d5dd7925934eed426351a729 /install/ui/test | |
parent | 3eaa69a68681a2478a6feeff7fb9e4cf2a27deee (diff) | |
download | freeipa-2e9e5792bc7c5fd1ed65b4d72e3915442db060f5.tar.gz freeipa-2e9e5792bc7c5fd1ed65b4d72e3915442db060f5.tar.xz freeipa-2e9e5792bc7c5fd1ed65b4d72e3915442db060f5.zip |
webui: adjust styles to PatternFly
side effect partially fixes:
https://fedorahosted.org/freeipa/ticket/3435
Reviewed-By: Endi Sukma Dewata <edewata@redhat.com>
Diffstat (limited to 'install/ui/test')
-rw-r--r-- | install/ui/test/details_tests.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/install/ui/test/details_tests.js b/install/ui/test/details_tests.js index 33d49aa47..9e7ea361b 100644 --- a/install/ui/test/details_tests.js +++ b/install/ui/test/details_tests.js @@ -90,13 +90,13 @@ test("Testing IPA.details_section.create().", function() { var container = $("<div/>"); section.create(container); - var section_el = $('.details-section', container); + var section_el = $('.details-section-content', container); same( section_el.length, 1, 'Verifying section element'); - var controls = $('.control-group', section_el); + var controls = $('.form-group', section_el); same( controls.length, fields.length, 'Verifying number of controls'); @@ -247,7 +247,7 @@ test("Testing details lifecycle: create, load.", function(){ identity.length, 'Verifying section for identity is created'); - var rows = $('.control-group', identity); + var rows = $('.form-group', identity); same( rows.length, 6, @@ -313,13 +313,13 @@ test("Testing IPA.details_section_create again()",function() { section.create(container); facet.load(data); - var section_el = $('.details-section', container); + var section_el = $('.details-section-content', container); same( section_el.length, 1, 'Verifying section element'); - var controls = $('.control-group', section_el); + var controls = $('.form-group', section_el); same( controls.length, fields.length, 'Verifying number of controls'); |