Changeset - 7b7b59416910
[Not reviewed]
default
0 2 0
domruf - 8 years ago 2017-10-26 23:58:26
dominikruf@gmail.com
less: remove line-through for <del>

- line-through makes it hard to read
- since the text is already red it is kinda redundant
- it gets overriden by kallithea-diff.less line 87 anyway
2 files changed with 1 insertions and 6 deletions:
0 comments (0 inline, 0 general)
kallithea/public/css/style.css
Show inline comments
 
@@ -17,27 +17,24 @@ body pre {
 
  padding: inherit;
 
  margin: inherit;
 
  font-size: inherit;
 
  line-height: inherit;
 
  color: inherit;
 
  word-break: inherit;
 
  word-wrap: inherit;
 
  background-color: inherit;
 
  border: inherit;
 
  border-radius: inherit;
 
  overflow: inherit;
 
}
 
del {
 
  text-decoration: line-through;
 
}
 
a {
 
  color: #577632;
 
  text-decoration: none;
 
}
 
a:hover {
 
  color: #576622;
 
  text-decoration: underline;
 
}
 
code,
 
.code pre,
 
.linenos pre,
 
div.readme pre,
kallithea/public/less/style.less
Show inline comments
 
@@ -18,27 +18,25 @@ body pre {
 
  padding: inherit;
 
  margin: inherit;
 
  font-size: inherit;
 
  line-height: inherit;
 
  color: inherit;
 
  word-break: inherit;
 
  word-wrap: inherit;
 
  background-color: inherit;
 
  border: inherit;
 
  border-radius: inherit;
 
  overflow: inherit;
 
}
 
del {
 
  text-decoration: line-through;
 
}
 

	
 
a {
 
  color: #577632;
 
  text-decoration: none;
 
}
 
a:hover {
 
  color: #576622;
 
  text-decoration: underline;
 
}
 
code,
 
.code pre,
 
.linenos pre,
 
div.readme pre,
0 comments (0 inline, 0 general)