Skip to content

Commit

Permalink
comparison-table.html: use '+' and a blank
Browse files Browse the repository at this point in the history
... instead of yes/no.

CSS: make the light mode green darker and yes white text on it. The same
as for dark mode.
  • Loading branch information
bagder committed Mar 22, 2024
1 parent 0346196 commit 3cf6856
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docs/_comparison-table.html
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@
<p> This comparison only involves entirely free and open source
software.

#define YES__ <td class="yes">yes</td>
#define no___ <td class="no">no</td>
#define YES__ <td class="yes">+</td>
#define no___ <td class="no">&nbsp;</td>
#define UNKNO <td class="unknown">?</td>
#define YES_P <td class="yes">yes*</td>
#define no__P <td class="no">no*</td>
Expand Down
4 changes: 3 additions & 1 deletion docs/comparison.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
td.yes {
font-weight: bold;
text-align: center;
background-color: #00ff00;
background-color: #008000;
color: #ffffff;
}

td.no {
Expand All @@ -17,6 +18,7 @@ td.unknown {
@media (prefers-color-scheme: dark) {
td.yes {
background-color: #008000;
color: #ffffff;
}

td.no {
Expand Down

0 comments on commit 3cf6856

Please sign in to comment.