diff options
| author | 2017-05-28 02:23:33 +0200 | |
|---|---|---|
| committer | 2017-05-28 02:23:33 +0200 | |
| commit | 2b0c9100ea0ad9526de4660bfff151f9f27bb875 (patch) | |
| tree | fbd83390413f91deda0d4e2ae1830cd7e2c17570 | |
| parent | 5706186db85d10be1d39528062989339c81e57ff (diff) | |
| parent | d2f65e6986a4b2203355e258b35c83716ad904bb (diff) | |
Merge pull request #1550 from mszkb/dev
fix font-sizes of input fields for exotic browsers
| -rw-r--r-- | CREDITS.md | 1 | ||||
| -rw-r--r-- | p/themes/BlueLagoon/template.css | 3 | ||||
| -rw-r--r-- | p/themes/base-theme/template.css | 1 |
3 files changed, 4 insertions, 1 deletions
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) 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 d7ae7be51..277bb61b2 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: 0.8rem; } input[type="radio"], input[type="checkbox"] { |
