changeset 6969:d44232c8d76a

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.
author Mads Kiilerich <mads@kiilerich.com>
date Sun, 05 Nov 2017 13:49:22 +0100
parents 205daed7185b
children 9b4ebc0b2742
files kallithea/public/css/style.css kallithea/public/less/style.less
diffstat 2 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/kallithea/public/css/style.css	Wed Oct 11 19:37:03 2017 +0200
+++ b/kallithea/public/css/style.css	Sun Nov 05 13:49:22 2017 +0100
@@ -15,6 +15,7 @@
   background-color: inherit;
   border: inherit;
   border-radius: inherit;
+  overflow: inherit;
 }
 del {
   text-decoration: line-through;
--- a/kallithea/public/less/style.less	Wed Oct 11 19:37:03 2017 +0200
+++ b/kallithea/public/less/style.less	Sun Nov 05 13:49:22 2017 +0100
@@ -15,6 +15,7 @@
   background-color: inherit;
   border: inherit;
   border-radius: inherit;
+  overflow: inherit;
 }
 del {
   text-decoration: line-through;