From 8d69ebdb987df8e5124da73a642fb297eb3fc51d Mon Sep 17 00:00:00 2001 From: Mathieu Giraud Date: Fri, 11 Mar 2016 16:04:33 +0100 Subject: [PATCH] css: textarea, overriding FF default rendering --- browser/css/dark.css | 5 +++++ browser/css/light.css | 5 +++++ browser/css/vidjil.less | 6 ++++++ 3 files changed, 16 insertions(+) diff --git a/browser/css/dark.css b/browser/css/dark.css index 8cfd7802e..315ce16ab 100644 --- a/browser/css/dark.css +++ b/browser/css/dark.css @@ -21,6 +21,11 @@ body { font-family: ubuntumedium, Arial Bold, Helvetica, Sans-serif; bottom: 1px; } +/* for FF override */ +textarea { + font-family: ubuntulight, Arial, Helvetica, Sans-serif; + font-size: 100%; +} /* texts that are not sequences nor identifiers */ h2 { margin-top: 2px; diff --git a/browser/css/light.css b/browser/css/light.css index b7132ec0b..5c2631565 100644 --- a/browser/css/light.css +++ b/browser/css/light.css @@ -21,6 +21,11 @@ body { font-family: ubuntumedium, Arial Bold, Helvetica, Sans-serif; bottom: 1px; } +/* for FF override */ +textarea { + font-family: ubuntulight, Arial, Helvetica, Sans-serif; + font-size: 100%; +} /* texts that are not sequences nor identifiers */ h2 { margin-top: 2px; diff --git a/browser/css/vidjil.less b/browser/css/vidjil.less index 41f60c546..79489da8f 100644 --- a/browser/css/vidjil.less +++ b/browser/css/vidjil.less @@ -38,6 +38,12 @@ body { bottom: 1px; } +/* for FF override */ +textarea { + font-family: ubuntulight, Arial, Helvetica, Sans-serif; + font-size: 100%; +} + /* texts that are not sequences nor identifiers */ #info, .popup_msg, .menu, .menu a -- GitLab