From fece8b9416a9fe0e9b2451fe90756af03f40093c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Pani=C4=87?= Date: Sun, 23 Sep 2018 12:38:08 +0200 Subject: [PATCH 1/2] Made info suggestions easier to see --- app/assets/stylesheets/dark.css.scss | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/assets/stylesheets/dark.css.scss b/app/assets/stylesheets/dark.css.scss index 90c7fc0..6885cd4 100644 --- a/app/assets/stylesheets/dark.css.scss +++ b/app/assets/stylesheets/dark.css.scss @@ -103,3 +103,6 @@ textarea { .notice { color:white; } +.info-suggestions a:not(:hover) { + color: gray; +} -- 2.45.2 From 7382cd91bd1e00aa2979d8aedbc17d2d67c5fa94 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Pani=C4=87?= Date: Sun, 23 Sep 2018 12:50:00 +0200 Subject: [PATCH 2/2] Made line in info suggestions white instead of black --- app/assets/stylesheets/dark.css.scss | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/app/assets/stylesheets/dark.css.scss b/app/assets/stylesheets/dark.css.scss index 6885cd4..12d232f 100644 --- a/app/assets/stylesheets/dark.css.scss +++ b/app/assets/stylesheets/dark.css.scss @@ -103,6 +103,12 @@ textarea { .notice { color:white; } -.info-suggestions a:not(:hover) { - color: gray; +.info-suggestions { + a:not(:hover) { + color: gray; + } + + a:first-child { + border-right: 1px solid white !important; + } } -- 2.45.2