Changeset - d44232c8d76a
[Not reviewed]
default
0 2 0
Mads Kiilerich - 8 years ago 2017-11-05 13:49:22
mads@kiilerich.com
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.
2 files changed with 2 insertions and 0 deletions:
0 comments (0 inline, 0 general)
kallithea/public/css/style.css
Show inline comments
 
@@ -15,6 +15,7 @@ body pre {
 
  background-color: inherit;
 
  border: inherit;
 
  border-radius: inherit;
 
  overflow: inherit;
 
}
 
del {
 
  text-decoration: line-through;
kallithea/public/less/style.less
Show inline comments
 
@@ -15,6 +15,7 @@ body pre {
 
  background-color: inherit;
 
  border: inherit;
 
  border-radius: inherit;
 
  overflow: inherit;
 
}
 
del {
 
  text-decoration: line-through;
0 comments (0 inline, 0 general)