From dceaced929e99d732a3a4d6868ee2bff8fbee168 Mon Sep 17 00:00:00 2001 From: Adam Misnyovszki Date: Feb 27 2014 11:31:46 +0000 Subject: Too big font in input fields In Firefox 27, default font size has bigger priority than body css, text input font size is therefore explicitly set to 1em. Also checkbox/radiobutton styling fixed. https://fedorahosted.org/freeipa/ticket/4180 Reviewed-By: Petr Vobornik --- diff --git a/install/ui/ipa.css b/install/ui/ipa.css index ad3d1aa..29dfe80 100644 --- a/install/ui/ipa.css +++ b/install/ui/ipa.css @@ -1243,6 +1243,18 @@ table.scrollable tbody { width: 250px; } +input, select, textarea { + font-size: 1em; + font-family: "Liberation Sans",Arial,Sans; +} + +input[type=radio], input[type=checkbox], +.ui-widget input[type=radio], .ui-widget input[type=checkbox]{ + margin-right: 5px; + position: relative; + top: 3px; +} + .multivalued-widget [name=value] { margin-bottom: 1em; }