diff --git a/desktop/desktop.scss b/desktop/desktop.scss index 83db0ac..4c9706c 100644 --- a/desktop/desktop.scss +++ b/desktop/desktop.scss @@ -24,6 +24,19 @@ box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 0 0 0 rgba(0, 0, 0, 0.12); } +//add shadow behind the list of topics on right in Category and Latest View +//add shadow behind list of categories on left in Category and Latest View +//add shadow behind topics in Latest view +.category-list, +.topic-list:not(.categories), +.latest-topic-list{ + -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12); + -moz-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12); + box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12); + background-color: lighten($secondary, 10%); + border-collapse: collapse; + } + //underline navigation links .nav-pills>li.active>a, .nav-pills>li>a.active { @@ -48,16 +61,6 @@ } } -//add shadow behind the list of topics, but not categories -.category-list, -.topic-list:not(.categories) { - -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12); - -moz-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12); - box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12); - background-color: lighten($secondary, 10%); - border-collapse: collapse; -} - //create conversation cards .topic-body { -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);