Migrated column filter
parent
e4ab2b164d
commit
b764ab4df8
|
@ -233,11 +233,7 @@ export default {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
gap: 0.5rem;
|
||||||
|
|
||||||
.p-column-filter-menu {
|
|
||||||
display: inline-flex;
|
|
||||||
margin-left: auto;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-column-filter-row .p-column-filter-element {
|
.p-column-filter-row .p-column-filter-element {
|
||||||
|
@ -245,7 +241,46 @@ export default {
|
||||||
width: 1%;
|
width: 1%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-column-filter-menu-button,
|
.p-column-filter-menu-button {
|
||||||
|
display: inline-flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
cursor: pointer;
|
||||||
|
text-decoration: none;
|
||||||
|
overflow: hidden;
|
||||||
|
position: relative;
|
||||||
|
width: 1.75rem;
|
||||||
|
height: 1.75rem;
|
||||||
|
color: var(--p-datatable-filter-menu-button-text-color);
|
||||||
|
border: 0 none;
|
||||||
|
background: transparent;
|
||||||
|
border-radius: 50%;
|
||||||
|
transition: background-color var(--p-transition-duration), color var(--p-transition-duration), border-color var(--p-transition-duration), box-shadow var(--p-transition-duration), outline-color var(--p-transition-duration);
|
||||||
|
outline-color: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
.p-column-filter-menu-button:hover {
|
||||||
|
background: var(--p-datatable-filter-menu-button-background-hover);
|
||||||
|
color: var(--p-datatable-filter-menu-button-text-color-hover);
|
||||||
|
}
|
||||||
|
|
||||||
|
.p-column-filter-menu-button.p-column-filter-menu-button-open,
|
||||||
|
.p-column-filter-menu-button.p-column-filter-menu-button-open:hover {
|
||||||
|
background: var(--p-datatable-filter-menu-button-background-open);
|
||||||
|
color: var(--p-datatable-filter-menu-button-text-color-open);
|
||||||
|
}
|
||||||
|
|
||||||
|
.p-column-filter-menu-button.p-column-filter-menu-button-active,
|
||||||
|
.p-column-filter-menu-button.p-column-filter-menu-button-active:hover {
|
||||||
|
background: var(--p-datatable-filter-menu-button-background-active);
|
||||||
|
color: var(--p-datatable-filter-menu-button-text-color-active);
|
||||||
|
}
|
||||||
|
|
||||||
|
.p-column-filter-menu-button:focus-visible {
|
||||||
|
outline: var(--p-focus-ring-width) var(--p-focus-ring-style) var(--p-focus-ring-color);
|
||||||
|
outline-offset: var(--p-focus-ring-offset);
|
||||||
|
}
|
||||||
|
|
||||||
.p-column-filter-clear-button {
|
.p-column-filter-clear-button {
|
||||||
display: inline-flex;
|
display: inline-flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
@ -254,16 +289,81 @@ export default {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
width: 1.75rem;
|
||||||
|
height: 1.75rem;
|
||||||
|
color: var(--p-datatable-filter-clear-button-text-color);
|
||||||
|
border: 0 none;
|
||||||
|
background: transparent;
|
||||||
|
border-radius: 50%;
|
||||||
|
transition: background-color var(--p-transition-duration), color var(--p-transition-duration), border-color var(--p-transition-duration), box-shadow var(--p-transition-duration), outline-color var(--p-transition-duration);
|
||||||
|
outline-color: transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-column-filter-row-items {
|
.p-column-filter-clear-button:hover {
|
||||||
margin: 0;
|
background: var(--p-datatable-filter-clear-button-background-hover);
|
||||||
|
color: var(--p-datatable-filter-clear-button-text-color-hover);
|
||||||
|
}
|
||||||
|
|
||||||
|
.p-column-filter-clear-button:focus-visible {
|
||||||
|
outline: var(--p-focus-ring-width) var(--p-focus-ring-style) var(--p-focus-ring-color);
|
||||||
|
outline-offset: var(--p-focus-ring-offset);
|
||||||
|
}
|
||||||
|
|
||||||
|
.p-column-filter-menu {
|
||||||
|
display: inline-flex;
|
||||||
|
margin-left: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.p-column-filter-operator {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
list-style: none;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-column-filter-row-item {
|
.p-column-filter-constraints {
|
||||||
cursor: pointer;
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 0.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.p-column-filter-constraint {
|
||||||
|
padding: 0;
|
||||||
|
border-bottom: 1px solid var(--p-datatable-filter-constraint-border-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
.p-column-filter-constraint:last-child {
|
||||||
|
border-bottom: 0 none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.p-column-filter-matchmode-dropdown {
|
||||||
|
margin-bottom: 0.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.p-column-filter-remove-button {
|
||||||
|
margin-top: 0.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.p-column-filter-constraint:last-child .p-column-filter-remove-button {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.p-column-filter-overlay-menu {
|
||||||
|
background: var(--p-datatable-filter-overlay-background);
|
||||||
|
color: var(--p-datatable-filter-overlay-text-color);
|
||||||
|
border: 1px solid var(--p-datatable-filter-overlay-border-color);
|
||||||
|
border-radius: var(--p-rounded-base);
|
||||||
|
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
|
||||||
|
min-width: 12.5rem;
|
||||||
|
padding: 0.75rem;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 0.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.p-column-filter-add-rule {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.p-column-filter-buttonbar {
|
||||||
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-column-filter-add-button,
|
.p-column-filter-add-button,
|
||||||
|
|
|
@ -45,6 +45,30 @@ export default {
|
||||||
backgroundHoverHighlight: '{surface.0}',
|
backgroundHoverHighlight: '{surface.0}',
|
||||||
color: '{surface.500}',
|
color: '{surface.500}',
|
||||||
colorHover: '{surface.500}'
|
colorHover: '{surface.500}'
|
||||||
|
},
|
||||||
|
filter: {
|
||||||
|
menuButton: {
|
||||||
|
backgroundHover: '{surface.100}',
|
||||||
|
backgroundOpen: '{surface.100}',
|
||||||
|
backgroundActive: '{highlight.background}',
|
||||||
|
textColor: '{surface.500}',
|
||||||
|
textColorOpen: '{surface.500}',
|
||||||
|
textColorHover: '{surface.600}',
|
||||||
|
textColorActive: '{highlight.textColor}'
|
||||||
|
},
|
||||||
|
clearButton: {
|
||||||
|
backgroundHover: '{surface.100}',
|
||||||
|
textColor: '{surface.500}',
|
||||||
|
textColorHover: '{surface.600}'
|
||||||
|
},
|
||||||
|
overlay: {
|
||||||
|
background: '{surface.0}',
|
||||||
|
borderColor: '{surface.200}',
|
||||||
|
textColor: '{surface.700}'
|
||||||
|
},
|
||||||
|
contraint: {
|
||||||
|
borderColor: '{surface.200}'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
dark: {
|
dark: {
|
||||||
|
@ -92,6 +116,30 @@ export default {
|
||||||
backgroundHoverHighlight: '{surface.900}',
|
backgroundHoverHighlight: '{surface.900}',
|
||||||
color: '{surface.400}',
|
color: '{surface.400}',
|
||||||
colorHover: '{surface.300}'
|
colorHover: '{surface.300}'
|
||||||
|
},
|
||||||
|
filter: {
|
||||||
|
menuButton: {
|
||||||
|
backgroundHover: '{surface.800}',
|
||||||
|
backgroundOpen: '{surface.800}',
|
||||||
|
backgroundActive: '{highlight.background}',
|
||||||
|
textColor: '{surface.400}',
|
||||||
|
textColorOpen: '{surface.300}',
|
||||||
|
textColorHover: '{surface.300}',
|
||||||
|
textColorActive: '{highlight.textColor}'
|
||||||
|
},
|
||||||
|
clearButton: {
|
||||||
|
backgroundHover: '{surface.800}',
|
||||||
|
textColor: '{surface.400}',
|
||||||
|
textColorHover: '{surface.300}'
|
||||||
|
},
|
||||||
|
overlay: {
|
||||||
|
background: '{surface.900}',
|
||||||
|
borderColor: '{surface.700}',
|
||||||
|
textColor: '{surface.0}'
|
||||||
|
},
|
||||||
|
contraint: {
|
||||||
|
borderColor: '{surface.700}'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue