From 0f4b11105153fdd0a76f60b0ef2715bc9f1bbb1b Mon Sep 17 00:00:00 2001 From: "Antony K. S" Date: Fri, 29 Dec 2023 02:31:22 +0700 Subject: [PATCH 1/4] remove unnecessary spaces --- assets/css/application.scss | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/assets/css/application.scss b/assets/css/application.scss index b8d4f7b..074d8e6 100644 --- a/assets/css/application.scss +++ b/assets/css/application.scss @@ -15,36 +15,36 @@ body { background: #212121; color: #d0c8c1; } - + h1, h2, h3, h5 { color: #dadada !important; } - + .site-footer { - color: #ccc !important; + color: #ccc !important; } - + .site-footer a { - color: #ddd !important; + 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; } From b8f914d82d18c3f0d904bfb2e4141cc1f2d69a2d Mon Sep 17 00:00:00 2001 From: "Antony K. S" Date: Fri, 29 Dec 2023 02:32:01 +0700 Subject: [PATCH 2/4] improve dark mode contrast for license description --- assets/css/application.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/css/application.scss b/assets/css/application.scss index 074d8e6..c85515b 100644 --- a/assets/css/application.scss +++ b/assets/css/application.scss @@ -20,7 +20,7 @@ body { color: #dadada !important; } - .site-footer { + .license-overview-description, .site-footer { color: #ccc !important; } From ff17268d1a58363c4cc8ed31f27f03caae514237 Mon Sep 17 00:00:00 2001 From: "Antony K. S" Date: Fri, 29 Dec 2023 02:49:16 +0700 Subject: [PATCH 3/4] improve dark mode contrast on hovering license rules --- assets/css/application.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/css/application.scss b/assets/css/application.scss index c85515b..3c6cda5 100644 --- a/assets/css/application.scss +++ b/assets/css/application.scss @@ -24,7 +24,7 @@ body { color: #ccc !important; } - .site-footer a { + .license-rules li:hover, .site-footer a { color: #ddd !important; } From ee6461ba9f8958b9f75890e5cdaf2a303bc74083 Mon Sep 17 00:00:00 2001 From: Mike Linksvayer Date: Thu, 28 Dec 2023 12:13:28 -0800 Subject: [PATCH 4/4] rubocop Style/RedundantParentheses --- script/check-approval | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/check-approval b/script/check-approval index 4574c2d..453da28 100755 --- a/script/check-approval +++ b/script/check-approval @@ -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