Changeset - b983522e7c13
[Not reviewed]
default
0 2 0
domruf - 8 years ago 2017-10-26 19:41:21
dominikruf@gmail.com
less: use same color for spaces characters

The light ones were barely visible and the others looked almost like normal
characters.
Also be more explicit and use border-color instead of color.
2 files changed with 4 insertions and 6 deletions:
0 comments (0 inline, 0 general)
kallithea/public/css/style.css
Show inline comments
 
@@ -1573,17 +1573,16 @@ table.code-difftable td.code pre u:befor
 
table.code-difftable td.code pre u.cr:before {
 
  content: "\21a4";
 
  display: inline-block;
 
  color: rgba(0, 0, 0, 0.5);
 
}
 
/* whitespace characters */
 
table.code-difftable td.code pre u {
 
  color: rgba(0, 0, 0, 0.15);
 
  color: rgba(0, 0, 0, 0.3);
 
}
 
/* trailing spaces */
 
table.code-difftable td.code pre i {
 
  border-style: solid;
 
  border-width: 0 0 0 1px;
 
  color: rgba(0, 0, 0, 0.5);
 
  border-color: rgba(0, 0, 0, 0.3);
 
}
 
/** LINE NUMBERS **/
 
table.code-difftable .lineno {
kallithea/public/less/kallithea-diff.less
Show inline comments
 
@@ -103,17 +103,16 @@ table.code-difftable td.code pre u:befor
 
table.code-difftable td.code pre u.cr:before {
 
  content: "\21a4";
 
  display: inline-block;
 
  color: rgba(0, 0, 0, 0.5);
 
}
 
/* whitespace characters */
 
table.code-difftable td.code pre u {
 
  color: rgba(0, 0, 0, 0.15);
 
  color: rgba(0, 0, 0, 0.3);
 
}
 
/* trailing spaces */
 
table.code-difftable td.code pre i {
 
  border-style: solid;
 
  border-width: 0 0 0 1px;
 
  color: rgba(0, 0, 0, 0.5);
 
  border-color: rgba(0, 0, 0, 0.3);
 
}
 

	
 
/** LINE NUMBERS **/
0 comments (0 inline, 0 general)