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,95 @@
|
|||
import BaseStyle from 'primevue/base/style';
|
||||
|
||||
const theme = ({ dt }) => `
|
||||
.p-menu {
|
||||
padding: 0.25rem 0.25rem;
|
||||
background: ${dt('menu.background')};
|
||||
color: ${dt('menu.color')};
|
||||
border: 1px solid ${dt('menu.border.color')};
|
||||
border-radius: ${dt('rounded.base')};
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
|
||||
.p-menu-list {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.p-menu-item {
|
||||
margin: 2px 0;
|
||||
}
|
||||
|
||||
.p-menu-item:first-child {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.p-menu-item:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.p-menu-item-link {
|
||||
cursor: pointer;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
color: inherit;
|
||||
padding: 0.5rem 0.75rem;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
.p-menu-item-content {
|
||||
transition: background-color ${dt('transition.duration')}, color ${dt('transition.duration')};
|
||||
border-radius: ${dt('rounded.sm')};
|
||||
color: ${dt('menu.item.color')};
|
||||
}
|
||||
|
||||
.p-menu-item-label {
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
.p-menu-item-icon {
|
||||
color: ${dt('menu.item.icon.color')};
|
||||
margin-right: 0.5rem;
|
||||
}
|
||||
|
||||
.p-menu-item.p-focus .p-menu-item-content {
|
||||
color: ${dt('menu.item.focus.color')};
|
||||
background: ${dt('menu.item.focus.background')};
|
||||
}
|
||||
|
||||
.p-menu-item.p-focus .p-menu-item-icon {
|
||||
color: ${dt('menu.item.icon.focus.color')};
|
||||
}
|
||||
|
||||
.p-menu-item:not(.p-disabled) .p-menu-item-content:hover {
|
||||
color: ${dt('menu.item.focus.color')};
|
||||
background: ${dt('menu.item.focus.background')};
|
||||
}
|
||||
|
||||
.p-menu-item:not(.p-disabled) .p-menu-item-content:hover .p-menu-item-icon {
|
||||
color: ${dt('menu.item.icon.focus.color')};
|
||||
}
|
||||
|
||||
.p-menu-overlay {
|
||||
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.p-menu-submenu-item {
|
||||
margin: 0;
|
||||
padding: 0.5rem 0.75rem;
|
||||
color: ${dt('menu.submenu.header.color')};
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.p-menu-separator {
|
||||
border-top: 1px solid ${dt('menu.separator.border.color.color')};
|
||||
margin: 2px 0;
|
||||
}
|
||||
`;
|
||||
|
||||
const classes = {
|
||||
root: ({ instance, props }) => [
|
||||
'p-menu p-component',
|
||||
|
@ -28,5 +118,6 @@ const classes = {
|
|||
|
||||
export default BaseStyle.extend({
|
||||
name: 'menu',
|
||||
theme,
|
||||
classes
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue