Ensure join words are not bold

This commit is contained in:
Matt-Yorkley
2020-05-02 12:11:28 +02:00
parent a75d3276a4
commit 82b11d6947
2 changed files with 5 additions and 1 deletions

View File

@@ -84,7 +84,7 @@ Darkswarm.controller "ProductsCtrl", ($scope, $sce, $filter, $rootScope, Product
).join($scope.filtersJoinWord()) if $scope.activeProperties?
$scope.filtersJoinWord = ->
$sce.trustAsHtml(" <span>#{t('products_or')}</span> ")
$sce.trustAsHtml(" <span class='join-word'>#{t('products_or')}</span> ")
$scope.clearAll = ->
$scope.clearQuery()

View File

@@ -148,6 +148,10 @@
&.applied-taxons, &.applied-properties {
color: $clr-blue;
font-weight: bold;
.join-word {
font-weight: normal;
}
}
&.applied-search {