From 12793c111080eec8b622bfafd5f3fa2a16056327 Mon Sep 17 00:00:00 2001 From: Vyrtsev Mikhail Date: Sun, 30 Jun 2019 04:10:41 +0300 Subject: [PATCH] make level5+ lines more dimmed --- frontend/app/components/comment/_level/comment_level.scss | 7 ++++++- .../comment/_theme/_dark/comment_theme_dark.scss | 4 ++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/frontend/app/components/comment/_level/comment_level.scss b/frontend/app/components/comment/_level/comment_level.scss index c859322d..6cb80cbf 100644 --- a/frontend/app/components/comment/_level/comment_level.scss +++ b/frontend/app/components/comment/_level/comment_level.scss @@ -2,6 +2,11 @@ padding-left: 17px; border-left: 1px dotted rgba(0, 0, 0, 0.15); } -.thread_level_4 .thread > .thread { + +.thread_level_4 .thread { padding-left: 5px; } + +.thread_level_5 > .thread_level_5 { + border-left: 1px dotted rgba(0, 0, 0, 0.08); +} diff --git a/frontend/app/components/comment/_theme/_dark/comment_theme_dark.scss b/frontend/app/components/comment/_theme/_dark/comment_theme_dark.scss index 630273a8..31f855b3 100644 --- a/frontend/app/components/comment/_theme/_dark/comment_theme_dark.scss +++ b/frontend/app/components/comment/_theme/_dark/comment_theme_dark.scss @@ -101,4 +101,8 @@ & ~ .thread { border-left-color: rgba(255, 255, 255, 0.35); } + + & ~ .thread_level_5 > .thread_level_5 { + border-left-color: rgba(255, 255, 255, 0.2); + } }