mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42:36 +00:00
Fixed #5667 - Remove base option from theme config
This commit is contained in:
parent
6d688ef675
commit
0979dde96d
438 changed files with 10872 additions and 11957 deletions
|
@ -1,5 +1,27 @@
|
|||
import BaseStyle from 'primevue/base/style';
|
||||
|
||||
const theme = ({ dt }) => `
|
||||
.p-picklist {
|
||||
display: flex;
|
||||
gap: 1.125rem;
|
||||
}
|
||||
|
||||
.p-picklist-controls {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
gap: 0.5rem;
|
||||
}
|
||||
|
||||
.p-picklist-list-container {
|
||||
flex: 1 1 50%;
|
||||
}
|
||||
|
||||
.p-picklist .p-listbox {
|
||||
height: 100%;
|
||||
}
|
||||
`;
|
||||
|
||||
const classes = {
|
||||
root: 'p-picklist p-component',
|
||||
sourceControls: 'p-picklist-controls p-picklist-source-controls',
|
||||
|
@ -11,5 +33,6 @@ const classes = {
|
|||
|
||||
export default BaseStyle.extend({
|
||||
name: 'picklist',
|
||||
theme,
|
||||
classes
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue