From dea62c8394cf942de0cb1cd134756c6efd70a380 Mon Sep 17 00:00:00 2001 From: FinnStutzenstein Date: Tue, 6 Feb 2018 15:53:24 +0100 Subject: [PATCH] Fixed wrong css hierachy --- openslides/motions/static/css/motions/_site.scss | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/openslides/motions/static/css/motions/_site.scss b/openslides/motions/static/css/motions/_site.scss index c2160111c..44c9e6cb9 100644 --- a/openslides/motions/static/css/motions/_site.scss +++ b/openslides/motions/static/css/motions/_site.scss @@ -19,7 +19,7 @@ } /* Styles for annotating the original motion text with change recommendations */ -.motion-text-holder { +#content .motion-text-holder { position: relative; .change-recommendation-list { @@ -35,19 +35,19 @@ width: 4px; cursor: pointer; - & > li.insert { + &.insert { background-color: #00aa00; } - & > li.delete { + &.delete { background-color: #aa0000; } - & > li.replace { + &.replace { background-color: #0333ff; } - & > li.other { + &.other { background-color: #777777; } }