Members filter UI refinements

- changed copy for label filter relation
- fixed darkmode bug
- unified label dropdown tag colors
This commit is contained in:
Peter Zimon 2021-09-10 15:01:59 +02:00
parent 50b102ef33
commit c0a5d25c46
3 changed files with 19 additions and 7 deletions

View File

@ -56,8 +56,8 @@ const FILTER_RELATIONS_OPTIONS = {
{label: 'is not', name: 'is-not'}
],
label: [
{label: 'is in', name: 'is'},
{label: 'is not in', name: 'is-not'}
{label: 'is', name: 'is'},
{label: 'is not', name: 'is-not'}
],
email_count: [
{label: 'is', name: 'is'},

View File

@ -981,3 +981,15 @@ input:focus,
top: 0;
right: -2px;
}
.gh-list-scrolling thead th {
background: linear-gradient(90deg, rgba(21,23,25,1) 90%, rgba(21,23,25,0) 100%);
}
.gh-list-scrolling tbody .gh-list-data:first-child {
background: linear-gradient(90deg, rgba(21,23,25,1) 90%, rgba(21,23,25,0) 100%);
}
.gh-filter-builder .gh-filters {
background: var(--whitegrey);
}

View File

@ -205,12 +205,12 @@
.ember-power-select-multiple-option {
margin: 2px;
padding: 2px 6px;
border: 1px solid var(--black-20);
border-radius: 3px;
font-size: 0.93em;
font-weight: 500;
color: white;
background: var(--black);
border: 1px solid var(--whitegrey-d1);
color: var(--darkgrey);
background: var(--whitegrey-d1);
}
.ember-power-select-multiple-remove-btn {
@ -227,9 +227,9 @@
}
.ember-power-select-multiple-remove-btn svg path {
stroke: white;
stroke-width: 2px;
fill: white;
stroke: var(--black);
fill: var(--black);
}
.ember-power-select-trigger-multiple-input {