[FIX] website: responsive images in table for Firefox only
authorDenis Ledoux <dle@odoo.com>
Mon, 1 Dec 2014 17:23:34 +0000 (18:23 +0100)
committerDenis Ledoux <dle@odoo.com>
Mon, 1 Dec 2014 17:28:18 +0000 (18:28 +0100)
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

addons/website/static/src/css/website.css
addons/website/static/src/css/website.sass

index e58d2b7..54faf97 100644 (file)
@@ -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;
index 8f322c5..fc11a0c 100644 (file)
@@ -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