From d78f26e4e6c8fae395b9a8795239da9515af6f67 Mon Sep 17 00:00:00 2001 From: Kevin Burke Date: Mon, 16 Jun 2014 09:37:56 -0700 Subject: [PATCH] Friendlier form styles - Swap out black borders for gray ones - Add rounded corners to form areas --- core/src/main/resources/lib/form/section_.css | 3 ++- war/src/main/webapp/css/style.css | 6 +++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/core/src/main/resources/lib/form/section_.css b/core/src/main/resources/lib/form/section_.css index 907e680d4b..ca1a1bad2b 100644 --- a/core/src/main/resources/lib/form/section_.css +++ b/core/src/main/resources/lib/form/section_.css @@ -1,6 +1,7 @@ .section-header { font-weight: bold; - border-bottom: 1px solid black; + border-bottom: 1px solid #e0e0e0; margin-bottom: 0.2em; margin-top: 0.4em; + padding-bottom: 3px; } diff --git a/war/src/main/webapp/css/style.css b/war/src/main/webapp/css/style.css index e2a62729dd..0c20e09e50 100644 --- a/war/src/main/webapp/css/style.css +++ b/war/src/main/webapp/css/style.css @@ -29,7 +29,7 @@ body { body, table, form, input, td, th, p, textarea, select { - font-family: Verdana, Helvetica, sans serif; + font-family: Verdana, Helvetica, sans-serif; font-size: 11px; } @@ -236,6 +236,10 @@ pre.console { .setting-input { width: 100%; + border-radius: 3px; + border: 1px solid #ccc; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + padding: 6px; } .setting-description { -- GitLab