From: Denis Ledoux Date: Mon, 1 Dec 2014 17:23:34 +0000 (+0100) Subject: [FIX] website: responsive images in table for Firefox only X-Git-Url: http://git.inspyration.org/?a=commitdiff_plain;h=6f21306dbaf26fd87c208d9473bf8e7c7ab4331b;p=odoo%2Fodoo.git [FIX] website: responsive images in table for Firefox only It looks there is a bug in Firefox concerning responsive images in table. See bugzilla https://bugzilla.mozilla.org/show_bug.cgi?id=975632 Bootstrap advises to use width: 100% for .img-responsive as workaround were needed. The @moz-document is to apply this for Mozilla only. opw-617582 opw-618659 --- diff --git a/addons/website/static/src/css/website.css b/addons/website/static/src/css/website.css index e58d2b7..54faf97 100644 --- a/addons/website/static/src/css/website.css +++ b/addons/website/static/src/css/website.css @@ -194,6 +194,11 @@ footer { width: 100%; } +@-moz-document url-prefix() { + .table .img-responsive { + width: 100%; + } +} /* ---- HACK FOR COVERING UP CK EDITOR BOGUS P INSERTION --- */ .oe_structure.oe_editable.oe_empty:empty, .oe_editable[data-oe-type=html]:empty, .oe_structure.oe_editable.oe_empty > .oe_drop_zone.oe_insert:only-child, [data-oe-type=html] > .oe_drop_zone.oe_insert:only-child { background-image: url("/website/static/src/img/drag_here.png") !important; diff --git a/addons/website/static/src/css/website.sass b/addons/website/static/src/css/website.sass index 8f322c5..fc11a0c 100644 --- a/addons/website/static/src/css/website.sass +++ b/addons/website/static/src/css/website.sass @@ -147,6 +147,10 @@ footer float: left width: 100% +@-moz-document url-prefix() + .table .img-responsive + width: 100% + /* ---- HACK FOR COVERING UP CK EDITOR BOGUS P INSERTION --- */ .oe_structure.oe_editable.oe_empty:empty, .oe_editable[data-oe-type=html]:empty, .oe_structure.oe_editable.oe_empty > .oe_drop_zone.oe_insert:only-child, [data-oe-type=html] > .oe_drop_zone.oe_insert:only-child