mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 08:52:34 +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,110 @@
|
|||
import BaseStyle from 'primevue/base/style';
|
||||
|
||||
const theme = ({ dt }) => `
|
||||
.p-checkbox {
|
||||
position: relative;
|
||||
display: inline-flex;
|
||||
user-select: none;
|
||||
vertical-align: bottom;
|
||||
width: ${dt('checkbox.width')};
|
||||
height: ${dt('checkbox.height')};
|
||||
}
|
||||
|
||||
.p-checkbox-input {
|
||||
cursor: pointer;
|
||||
appearance: none;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
opacity: 0;
|
||||
z-index: 1;
|
||||
outline: 0 none;
|
||||
border: 1px solid transparent;
|
||||
border-radius: ${dt('checkbox.border.radius')};
|
||||
}
|
||||
|
||||
.p-checkbox-box {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
border-radius: ${dt('checkbox.border.radius')};
|
||||
border: 1px solid ${dt('checkbox.border.color')};
|
||||
background: ${dt('checkbox.background')};
|
||||
width: ${dt('checkbox.width')};
|
||||
height: ${dt('checkbox.width')};
|
||||
transition: background-color ${dt('transition.duration')}, color ${dt('transition.duration')}, border-color ${dt('transition.duration')}, box-shadow ${dt('transition.duration')}, outline-color ${dt('transition.duration')};
|
||||
outline-color: transparent;
|
||||
box-shadow: ${dt('checkbox.box.shadow')};
|
||||
}
|
||||
|
||||
.p-checkbox-icon {
|
||||
transition-duration: ${dt('transition.duration')};
|
||||
color: ${dt('checkbox.icon.color')};
|
||||
font-size: ${dt('checkbox.icon.size')};
|
||||
width: ${dt('checkbox.icon.size')};
|
||||
height: ${dt('checkbox.icon.size')};
|
||||
}
|
||||
|
||||
.p-checkbox:not(.p-disabled):has(.p-checkbox-input:hover) .p-checkbox-box {
|
||||
border-color: ${dt('checkbox.hover.border.color')};
|
||||
}
|
||||
|
||||
.p-checkbox-checked .p-checkbox-box {
|
||||
border-color: ${dt('checkbox.checked.border.color')};
|
||||
background: ${dt('checkbox.checked.background')};
|
||||
}
|
||||
|
||||
.p-checkbox-checked .p-checkbox-icon {
|
||||
color: ${dt('checkbox.icon.checked.color')};
|
||||
}
|
||||
|
||||
.p-checkbox-checked:not(.p-disabled):has(.p-checkbox-input:hover) .p-checkbox-box {
|
||||
background: ${dt('checkbox.checked.hover.background')};
|
||||
border-color: ${dt('checkbox.checked.hover.border.color')};
|
||||
}
|
||||
|
||||
.p-checkbox-checked:not(.p-disabled):has(.p-checkbox-input:hover) .p-checkbox-icon {
|
||||
color: ${dt('checkbox.icon.checked.hover.color')};
|
||||
}
|
||||
|
||||
.p-checkbox:not(.p-disabled):has(.p-checkbox-input:focus-visible) .p-checkbox-box {
|
||||
outline: ${dt('focus.ring.width')} ${dt('focus.ring.style')} ${dt('focus.ring.color')};
|
||||
outline-offset: ${dt('focus.ring.offset')};
|
||||
}
|
||||
|
||||
.p-checkbox.p-invalid > .p-checkbox-box {
|
||||
border-color: ${dt('checkbox.invalid.border.color')};
|
||||
}
|
||||
|
||||
.p-checkbox.p-variant-filled .p-checkbox-box {
|
||||
background: ${dt('checkbox.filled.background')};
|
||||
}
|
||||
|
||||
.p-checkbox-checked.p-variant-filled .p-checkbox-box {
|
||||
background: ${dt('checkbox.checked.background')};
|
||||
}
|
||||
|
||||
.p-checkbox-checked.p-variant-filled:not(.p-disabled):has(.p-checkbox-input:hover) .p-checkbox-box {
|
||||
background: ${dt('checkbox.checked.hover.background')};
|
||||
}
|
||||
|
||||
.p-checkbox.p-disabled {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.p-checkbox.p-disabled .p-checkbox-box {
|
||||
background: ${dt('checkbox.disabled.background')};
|
||||
}
|
||||
|
||||
.p-checkbox.p-disabled .p-checkbox-box .p-checkbox-icon {
|
||||
color: ${dt('checkbox.icon.disabled.color')};
|
||||
}
|
||||
`;
|
||||
|
||||
const classes = {
|
||||
root: ({ instance, props }) => [
|
||||
'p-checkbox p-component',
|
||||
|
@ -17,5 +122,6 @@ const classes = {
|
|||
|
||||
export default BaseStyle.extend({
|
||||
name: 'checkbox',
|
||||
theme,
|
||||
classes
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue