diff --git a/web/app/components/comment/__score/_view/_negative/comment__score_view_negative.scss b/web/app/components/comment/__score/_view/_negative/comment__score_view_negative.scss deleted file mode 100644 index 6d80a2c7..00000000 --- a/web/app/components/comment/__score/_view/_negative/comment__score_view_negative.scss +++ /dev/null @@ -1,3 +0,0 @@ -.comment__score_view_negative { - color: #cc0606; -} diff --git a/web/app/components/comment/__score/_view/_positive/comment__score_view_positive.scss b/web/app/components/comment/__score/_view/_positive/comment__score_view_positive.scss deleted file mode 100644 index 9fe0f848..00000000 --- a/web/app/components/comment/__score/_view/_positive/comment__score_view_positive.scss +++ /dev/null @@ -1,3 +0,0 @@ -.comment__score_view_positive { - color: #259e06; -} diff --git a/web/app/components/comment/_theme/_dark/comment_theme_dark.scss b/web/app/components/comment/_theme/_dark/comment_theme_dark.scss index b6b83644..bf5c6d30 100644 --- a/web/app/components/comment/_theme/_dark/comment_theme_dark.scss +++ b/web/app/components/comment/_theme/_dark/comment_theme_dark.scss @@ -48,6 +48,14 @@ color: #c4c4c4; } + .comment__score_view_negative { + color: #cc0606; + } + + .comment__score_view_positive { + color: #259e06; + } + .comment__status { color: #999; } diff --git a/web/app/components/comment/_theme/_light/comment_theme_light.scss b/web/app/components/comment/_theme/_light/comment_theme_light.scss index 860f2f46..42fb5dc2 100644 --- a/web/app/components/comment/_theme/_light/comment_theme_light.scss +++ b/web/app/components/comment/_theme/_light/comment_theme_light.scss @@ -48,6 +48,14 @@ color: #c4c4c4; } + .comment__score_view_negative { + color: #cc0606; + } + + .comment__score_view_positive { + color: #259e06; + } + .comment__status { color: #999; } diff --git a/web/app/components/comment/index.js b/web/app/components/comment/index.js index e6489d92..deb63a1b 100644 --- a/web/app/components/comment/index.js +++ b/web/app/components/comment/index.js @@ -14,19 +14,17 @@ require('./__action/_type/_delete/comment__action_type_delete.scss'); require('./__edit-timer/comment__edit-timer.scss'); require('./__body/comment__body.scss'); + require('./__control/comment__control.scss'); require('./__control/_select/comment__control_select.scss'); require('./__control/_select-label/comment__control_select-label.scss'); require('./__control/_view/_inactive/comment__control_view_inactive.scss'); + require('./__controls/comment__controls.scss'); require('./__info/comment__info.scss'); require('./__input/comment__input.scss'); require('./__link-to-parent/comment__link-to-parent.scss'); - require('./__score/comment__score.scss'); -require('./__score/_view/_negative/comment__score_view_negative.scss'); -require('./__score/_view/_positive/comment__score_view_positive.scss'); - require('./__score-value/comment__score-value.scss'); require('./__status/comment__status.scss'); require('./__text/comment__text.scss');