diff --git a/lib/content-services/src/lib/search/components/search-header/search-header.component.scss b/lib/content-services/src/lib/search/components/search-header/search-header.component.scss index bd6aa2b3b2..7adfe3a365 100644 --- a/lib/content-services/src/lib/search/components/search-header/search-header.component.scss +++ b/lib/content-services/src/lib/search/components/search-header/search-header.component.scss @@ -15,6 +15,10 @@ &-active { color: mat-color($primary); } + + .mat-badge-active { + border: 2px solid mat-color($background, card) !important; + } } .mat-icon { @@ -34,6 +38,7 @@ display: flex; flex-direction: column; padding: 15px 15px 10px; + color: mat-color($foreground, text, 0.87) !important; .adf-facet-buttons { display: none; @@ -42,27 +47,28 @@ .adf-search-check-list { padding: 5px 0; } + + input { + background: 2px solid mat-color($background, card) !important; + } } &-title { font-size: 1.1em; padding-bottom: 5px; + color: mat-color($foreground, text, 0.87); } &-actions { - background-color: mat-color($background, background); display: flex; justify-content: flex-end; padding: 15px; + background-color: mat-color($background, hover); > button { font-size: 0.9em; } } - - &-apply-button { - background-color: mat-color($background, hover); - } } .mat-menu-panel.adf-filter-menu .mat-menu-content { diff --git a/package.json b/package.json index 0333027c96..aec1067fdb 100644 --- a/package.json +++ b/package.json @@ -35,9 +35,9 @@ "stylelint": "stylelint ./**/*.scss --config stylelint-config.json", "04": "echo -------------------------------------------- Demo Shell -----------------------------------------------", "04s": "", - "start": "ng lint demoshell && npm run validate-config && concurrently \"ng serve demoshell --open\" \"npm run style:dev --watch\" ", - "start:prod": "ng lint demoshell && npm run validate-config && ng serve demoshell --prod --open", - "build": "npm run validate-config && npm run style:dev && ng build demoshell", + "start": "npm run validate-config && concurrently \"ng serve demoshell --open\" \"npm run style:dev -- --watch >&-\" ", + "start:prod": "npm run validate-config && ng serve demoshell --prod --open", + "build": "npm run validate-config && npm run style:dev && ng build demoshell", "build:prod": "npm run validate-config && node --max-old-space-size=12000 node_modules/@angular/cli/bin/ng build demoshell --prod", "style:dev": "npm run webpack -- --config ./lib/config/webpack.style.js --progress --profile --bail", "test": "npm run validate-config && ng test demoshell --watch=false",