mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42:36 +00:00
Fixed z-index issue
This commit is contained in:
parent
6c0ca33e38
commit
5284b61a13
3 changed files with 20 additions and 6 deletions
|
@ -19,10 +19,17 @@ const theme = ({ dt }) => `
|
|||
transition: background ${dt('transition.duration')}, color ${dt('transition.duration')}, border-color ${dt('transition.duration')}, outline-color ${dt('transition.duration')}, box-shadow ${dt('transition.duration')};
|
||||
border-radius: ${dt('togglebutton.border.radius')};
|
||||
outline-color: transparent;
|
||||
gap: ${dt('togglebutton.gap')};
|
||||
font-weight: ${dt('togglebutton.font.weight')};
|
||||
}
|
||||
|
||||
.p-togglebutton-content {
|
||||
position: relative;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: ${dt('togglebutton.gap')};
|
||||
}
|
||||
|
||||
.p-togglebutton-label,
|
||||
.p-togglebutton-icon {
|
||||
position: relative;
|
||||
|
@ -100,6 +107,7 @@ const classes = {
|
|||
'p-invalid': props.invalid
|
||||
}
|
||||
],
|
||||
content: 'p-togglebutton-content',
|
||||
icon: 'p-togglebutton-icon',
|
||||
label: 'p-togglebutton-label'
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue