From c7b79a6527b6d5719a642e4faff0232fc3d021a7 Mon Sep 17 00:00:00 2001 From: mszkb Date: Fri, 26 May 2017 15:57:10 +0200 Subject: fix font-sizes of input fields for exotic browsers --- p/themes/base-theme/template.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/p/themes/base-theme/template.css b/p/themes/base-theme/template.css index d7ae7be51..7bd3b28cd 100644 --- a/p/themes/base-theme/template.css +++ b/p/themes/base-theme/template.css @@ -88,6 +88,7 @@ input.extend:focus { input, select, textarea { display: inline-block; max-width: 100%; + font-size: inital; } input[type="radio"], input[type="checkbox"] { @@ -345,7 +346,7 @@ a.btn { /*=== Tree */ .tree { margin: 0; - padding: 0 0 15em 0; + padding: 0; list-style: none; text-align: left; } -- cgit v1.2.3 From 20281fb7eb00b554a93c1f205ad76e2fd8220c08 Mon Sep 17 00:00:00 2001 From: mszkb Date: Fri, 26 May 2017 18:23:42 +0200 Subject: fixed typo in css for font-size --- p/themes/base-theme/template.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/p/themes/base-theme/template.css b/p/themes/base-theme/template.css index 7bd3b28cd..288dc34ce 100644 --- a/p/themes/base-theme/template.css +++ b/p/themes/base-theme/template.css @@ -88,7 +88,7 @@ input.extend:focus { input, select, textarea { display: inline-block; max-width: 100%; - font-size: inital; + font-size: initial; } input[type="radio"], input[type="checkbox"] { -- cgit v1.2.3 From 56cd0bfa067db050de9d7e42df1808b9ba6d1ed3 Mon Sep 17 00:00:00 2001 From: mszkb Date: Fri, 26 May 2017 18:29:13 +0200 Subject: adding mszkb to credits --- CREDITS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CREDITS.md b/CREDITS.md index d30af7542..97651ab20 100644 --- a/CREDITS.md +++ b/CREDITS.md @@ -44,3 +44,4 @@ People are sorted by name so please keep this order. * [Thomas Citharel](https://github.com/tcitworld): [contributions](https://github.com/FreshRSS/FreshRSS/pulls?q=is:pr+author:tomgue), [Web](https://www.tcit.fr/) * [tomgue](https://github.com/tomgue): [contributions](https://github.com/FreshRSS/FreshRSS/commits?author=tomgue) * [Wanabo](https://github.com/Wanabo): [contributions](https://github.com/FreshRSS/FreshRSS/commits?author=Wanabo) +* [mszkb](https://github.com/mszkb): [contributions](https://github.com/FreshRSS/FreshRSS/commits?author=mszkb) -- cgit v1.2.3 From d2f65e6986a4b2203355e258b35c83716ad904bb Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Sun, 28 May 2017 02:19:33 +0200 Subject: font-size for input --- p/themes/BlueLagoon/template.css | 3 ++- p/themes/base-theme/template.css | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/p/themes/BlueLagoon/template.css b/p/themes/BlueLagoon/template.css index 8c1a4ed21..4bc0fb735 100644 --- a/p/themes/BlueLagoon/template.css +++ b/p/themes/BlueLagoon/template.css @@ -2,7 +2,7 @@ /*=== GENERAL */ /*============*/ -html, body { +html, body { margin: 0; padding: 0; font-size: 92%; @@ -79,6 +79,7 @@ textarea { input, select, textarea { display: inline-block; max-width: 100%; + font-size: 0.8rem; } input[type="radio"], input[type="checkbox"] { diff --git a/p/themes/base-theme/template.css b/p/themes/base-theme/template.css index 288dc34ce..277bb61b2 100644 --- a/p/themes/base-theme/template.css +++ b/p/themes/base-theme/template.css @@ -88,7 +88,7 @@ input.extend:focus { input, select, textarea { display: inline-block; max-width: 100%; - font-size: initial; + font-size: 0.8rem; } input[type="radio"], input[type="checkbox"] { @@ -346,7 +346,7 @@ a.btn { /*=== Tree */ .tree { margin: 0; - padding: 0; + padding: 0 0 15em 0; list-style: none; text-align: left; } -- cgit v1.2.3