minor cosmetic fix filter (#5927)

This commit is contained in:
Eugenio Romano 2020-07-29 17:15:53 +01:00 committed by GitHub
parent f1a98cc6d6
commit f6bf60eb49
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 8 deletions

View File

@ -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 {

View File

@ -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",