From c7c2f5743bffd1036f91a4a1c59019b4e4f8c70c Mon Sep 17 00:00:00 2001 From: Goffin Simon Date: Mon, 15 Jun 2015 10:23:03 +0200 Subject: [PATCH] [FIX] base: export translation In css, overflow-x and overflow-y must have the same value. If overflow-x is equal to auto then overflow-y is equal to auto. To solve the problem, the height of the input is removed because it is forced by the Jquery auto-completion plugin according to the wrapper. Without this patch, when you go to Settings > Import/Export > Export Translation and click on the arrow to to show the list of modules you can export, the list is partially hidden. opw:632607 --- addons/web/static/src/css/base.css | 2 +- addons/web/static/src/css/base.sass | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/addons/web/static/src/css/base.css b/addons/web/static/src/css/base.css index e8d07654d97..06eaab19fc3 100644 --- a/addons/web/static/src/css/base.css +++ b/addons/web/static/src/css/base.css @@ -608,7 +608,7 @@ width: 100% !important; } .openerp .oe_tags .text-core { - min-height: 22px; + height: initial !important } .openerp .oe_tags .text-core .text-wrap .text-dropdown .text-list .text-suggestion em { font-style: italic; diff --git a/addons/web/static/src/css/base.sass b/addons/web/static/src/css/base.sass index 9c2ebe28acb..5322db067ad 100644 --- a/addons/web/static/src/css/base.sass +++ b/addons/web/static/src/css/base.sass @@ -549,7 +549,7 @@ $sheet-padding: 16px textarea width: 100% !important .text-core - min-height: 22px + height: initial !important .text-wrap .text-dropdown .text-list .text-suggestion em font-style: italic text-decoration: none