Skip to content

Commit

Permalink
Merge pull request #1175 from Smankusors/gh-pages
Browse files Browse the repository at this point in the history
Improve dark mode contrast on licenses page
  • Loading branch information
mlinksva authored Dec 28, 2023
2 parents 005b3df + ee6461b commit 1827f5f
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
24 changes: 12 additions & 12 deletions assets/css/application.scss
Original file line number Diff line number Diff line change
Expand Up @@ -15,36 +15,36 @@ body {
background: #212121;
color: #d0c8c1;
}

h1, h2, h3, h5 {
color: #dadada !important;
}
.site-footer {
color: #ccc !important;

.license-overview-description, .site-footer {
color: #ccc !important;
}
.site-footer a {
color: #ddd !important;

.license-rules li:hover, .site-footer a {
color: #ddd !important;
}

.home h2 {
color: #c7cdce !important;
}

.license-body pre {
background-color: #131313 !important;
border: 1px solid #3e3e3e !important;
}

.note {
color: #9fa5a6 !important;
}

strong {
color: #bdbdbd !important;
}

button, input, optgroup, select, textarea {
color: black !important;
}
Expand Down
2 changes: 1 addition & 1 deletion script/check-approval
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ current = license_ids.include?(license)
rows << ['Current license', current]

rows << :separator
eligible = (!current && spdx && approved_licenses.include?(license))
eligible = !current && spdx && approved_licenses.include?(license)
rows << ['Eligible', eligible]

puts Terminal::Table.new title: "License: #{license}", rows: rows
Expand Down

0 comments on commit 1827f5f

Please sign in to comment.