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
 
@@ -1570,23 +1570,22 @@ table.code-difftable td.code pre u:befor
 
  width: 0;
 
}
 
/* CR */
 
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 {
 
  padding-left: 2px;
 
  padding-right: 2px !important;
 
  width: 30px;
kallithea/public/less/kallithea-diff.less
Show inline comments
 
@@ -100,23 +100,22 @@ table.code-difftable td.code pre u:befor
 
  width: 0;
 
}
 
/* CR */
 
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 {
 
  padding-left: 2px;
 
  padding-right: 2px !important;
0 comments (0 inline, 0 general)