Skip to content

Commit

Permalink
Refactor CSS color assignment for .done class
Browse files Browse the repository at this point in the history
Update the background color for the '.done' class, swapping the color values
between the '.WAIT' and '.done' classes to ensure consistent styling across
files.
  • Loading branch information
Fabrice Niessen committed Jan 27, 2025
1 parent 786e263 commit 05ce36b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions src/readtheorg_theme/css/readtheorg.css
Original file line number Diff line number Diff line change
Expand Up @@ -1084,15 +1084,15 @@ h2.footnotes{
}

.WAIT, .nilWAIT{
background-color: #6AB097;
}

.done{
background-color: #6ab0de;
padding: 0px 4px;
color: #fff;
}

.done{
background-color: #6AB097;
}

.tag span {
background-color: #EDEDED;
border: 1px solid #EDEDED;
Expand Down
8 changes: 4 additions & 4 deletions src/readtheorg_theme/readtheorg.org
Original file line number Diff line number Diff line change
Expand Up @@ -1253,15 +1253,15 @@ h2.footnotes{
}

.WAIT, .nilWAIT{
background-color: #6AB097;
}

.done{
background-color: #6ab0de;
padding: 0px 4px;
color: #fff;
}

.done{
background-color: #6AB097;
}

.tag span {
background-color: #EDEDED;
border: 1px solid #EDEDED;
Expand Down

0 comments on commit 05ce36b

Please sign in to comment.