Blame SOURCES/0051-Too-big-font-in-input-fields.patch
|
|
9991ea |
From 92cb7c52b3a6241c9a0e5bc4e0c91705723d118f Mon Sep 17 00:00:00 2001
|
|
|
9991ea |
From: Adam Misnyovszki <amisnyov@redhat.com>
|
|
|
9991ea |
Date: Wed, 26 Feb 2014 18:16:45 +0100
|
|
|
9991ea |
Subject: [PATCH 51/51] Too big font in input fields
|
|
|
9991ea |
|
|
|
9991ea |
In Firefox 27, default font size has bigger priority than body css,
|
|
|
9991ea |
text input font size is therefore explicitly set to 1em. Also
|
|
|
9991ea |
checkbox/radiobutton styling fixed.
|
|
|
9991ea |
|
|
|
9991ea |
https://fedorahosted.org/freeipa/ticket/4180
|
|
|
9991ea |
|
|
|
9991ea |
Reviewed-By: Petr Vobornik <pvoborni@redhat.com>
|
|
|
9991ea |
---
|
|
|
9991ea |
install/ui/ipa.css | 12 ++++++++++++
|
|
|
9991ea |
1 file changed, 12 insertions(+)
|
|
|
9991ea |
|
|
|
9991ea |
diff --git a/install/ui/ipa.css b/install/ui/ipa.css
|
|
|
9991ea |
index ad3d1aa1f8f8898ad8dff8f8ecc175238fad1181..29dfe80aacfa1e508f59d3008b2aa57f9477a448 100644
|
|
|
9991ea |
--- a/install/ui/ipa.css
|
|
|
9991ea |
+++ b/install/ui/ipa.css
|
|
|
9991ea |
@@ -1243,6 +1243,18 @@ table.scrollable tbody {
|
|
|
9991ea |
width: 250px;
|
|
|
9991ea |
}
|
|
|
9991ea |
|
|
|
9991ea |
+input, select, textarea {
|
|
|
9991ea |
+ font-size: 1em;
|
|
|
9991ea |
+ font-family: "Liberation Sans",Arial,Sans;
|
|
|
9991ea |
+}
|
|
|
9991ea |
+
|
|
|
9991ea |
+input[type=radio], input[type=checkbox],
|
|
|
9991ea |
+.ui-widget input[type=radio], .ui-widget input[type=checkbox]{
|
|
|
9991ea |
+ margin-right: 5px;
|
|
|
9991ea |
+ position: relative;
|
|
|
9991ea |
+ top: 3px;
|
|
|
9991ea |
+}
|
|
|
9991ea |
+
|
|
|
9991ea |
.multivalued-widget [name=value] {
|
|
|
9991ea |
margin-bottom: 1em;
|
|
|
9991ea |
}
|
|
|
9991ea |
--
|
|
|
9991ea |
1.8.5.3
|
|
|
9991ea |
|