diff --git a/client/core/src/drop-down/drop-down.html b/client/core/src/drop-down/drop-down.html index 61a16921f..59a7622de 100644 --- a/client/core/src/drop-down/drop-down.html +++ b/client/core/src/drop-down/drop-down.html @@ -20,7 +20,7 @@ ng-if="$ctrl.loadMore" class="dropdown__loadMore" tabIndex="-1" - ng-class="{'active': $ctrl.itemsFiltered.length === $ctrl.activeOption}" + ng-class="{'active': $ctrl.itemsFiltered.length === $ctrl.activeOption, 'noMore' : !$ctrl.showLoadMore}" ng-click="$ctrl.loadItems()" translate="{{$ctrl.showLoadMore ? 'Show More' : 'No more results'}}" > diff --git a/client/core/src/drop-down/style.scss b/client/core/src/drop-down/style.scss index f66d23ea6..e65fd4e6e 100644 --- a/client/core/src/drop-down/style.scss +++ b/client/core/src/drop-down/style.scss @@ -39,6 +39,11 @@ vn-drop-down { color: rgb(255,171,64); font-weight: 700; } + &.dropdown__loadMore.noMore{ + color:#424242; + font-weight: 700; + opacity: 0.7; + } input[type=checkbox]{ float: left; margin: 5px 5px 0 0;