From fccea2dca4d384ab2992103916cfe8801be53edd Mon Sep 17 00:00:00 2001 From: Petr Voborník Date: Thu, 2 Feb 2012 17:55:36 +0100 Subject: Automember UI - default groups In this patch was implemented and added a control for defining default automember groups. There is a difference from UXD spec. In the spec the control was placed below table in the search facet. This was not working well with the combobox in the control. Open combobox requires some space below it. As it was placed at the bottom of the page it created unwanted blank space and forced showing scrollbars. Moving the control above the table solves the problem without rewriting combobox logic. It can be rewritten and moved down later. https://fedorahosted.org/freeipa/ticket/2195 --- install/ui/ipa.css | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) (limited to 'install/ui/ipa.css') diff --git a/install/ui/ipa.css b/install/ui/ipa.css index ab61e867..94ae1f77 100644 --- a/install/ui/ipa.css +++ b/install/ui/ipa.css @@ -1485,4 +1485,38 @@ div.entity[name=hbactest] div.facet[name=run_test] .hbac-test-content { .dnstype-table td { font-weight: normal; +} + +/* --- Automember --- */ + +.automember-header { + position: absolute; + top: 0; + left: 3px; + right: 3px; + height: 52px; +} + +.automember-content { + position: absolute; + top: 52px; + left: 0; + right: 0; + bottom: 0px; +} + +.automember-header .default_group { + border-bottom: 1px solid #DFDFDF; + border-top: 1px solid #DFDFDF; + padding-bottom: 5px; + padding-top: 8px; +} + +.automember-header .default_group h2 { + display: inline-block; + margin: 0 15px 0 20px; +} + +.automember-header .default_group label { + margin-right: 20px; } \ No newline at end of file -- cgit