From 723633358760604df80d054d464500eb8405603e Mon Sep 17 00:00:00 2001 From: Christian Boltz Date: Sat, 28 Dec 2013 21:35:00 +0000 Subject: [PATCH] default.css: - apply the same font family and size to input, textarea and select https://sourceforge.net/p/postfixadmin/bugs/40/ git-svn-id: https://svn.code.sf.net/p/postfixadmin/code/trunk@1618 a1433add-5e2c-0410-b055-b7f2511e0802 --- css/default.css | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/css/default.css b/css/default.css index 274c9c5a..5a86c492 100644 --- a/css/default.css +++ b/css/default.css @@ -35,8 +35,12 @@ table { input, .button, textarea { padding: 6px; +} + +input, .button, textarea, select { + font-family: "BitStream Vera Sans", Verdana, Arial, Helvetica, sans-serif; font-size: 13px; -} +} .readonly { background:#eee; @@ -377,4 +381,4 @@ z-index:100; .quota_low { background: url(images/quota-colors.png) repeat-x 0 0px #05f905; } .quota_text_high { color: white; } .quota_text_mid { color: #666; } -.quota_text_low { color: #666; } \ No newline at end of file +.quota_text_low { color: #666; }