# HG changeset patch # User Mads Kiilerich # Date 2017-11-05 13:49:22 # Node ID d44232c8d76aab82157a9ccd336612118d91b566 # Parent 205daed7185bf2ba476952902d3732e399fd4778 less: fix displaying +/- signs in code-difftable 35d3a85fc650 introduced the Bootstrap default overflow:auto styling of pre. That made overflow hidden instead of visible, and thus broke our display of +/- as a :before with relative positioning outside the pre. To undo that, add overflow to the list of Bootstrap pre styling we override. Based on another fix by Dominik Ruf. diff --git a/kallithea/public/css/style.css b/kallithea/public/css/style.css --- a/kallithea/public/css/style.css +++ b/kallithea/public/css/style.css @@ -15,6 +15,7 @@ body pre { background-color: inherit; border: inherit; border-radius: inherit; + overflow: inherit; } del { text-decoration: line-through; diff --git a/kallithea/public/less/style.less b/kallithea/public/less/style.less --- a/kallithea/public/less/style.less +++ b/kallithea/public/less/style.less @@ -15,6 +15,7 @@ body pre { background-color: inherit; border: inherit; border-radius: inherit; + overflow: inherit; } del { text-decoration: line-through;