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,184 @@
|
|||
import BaseStyle from 'primevue/base/style';
|
||||
|
||||
const theme = ({ dt }) => `
|
||||
.p-tree {
|
||||
background: ${dt('tree.background')};
|
||||
color: ${dt('tree.color')};
|
||||
border-radius: ${dt('rounded.base')};
|
||||
border: 0 none;
|
||||
padding: 1rem;
|
||||
}
|
||||
|
||||
.p-tree-root-children {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
.p-tree-node {
|
||||
padding: 0 0;
|
||||
outline: 0 none;
|
||||
margin: 2px 0;
|
||||
}
|
||||
|
||||
.p-tree-root-children > .p-tree-node:first-child {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.p-tree-root-children > .p-tree-node:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.p-tree-node-content {
|
||||
border-radius: ${dt('rounded.base')};
|
||||
padding: 0.25rem 0.5rem;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
outline-color: transparent;
|
||||
color: ${dt('tree.node.color')};
|
||||
transition: background-color ${dt('transition.duration')}, color ${dt('transition.duration')}, outline-color ${dt('transition.duration')};
|
||||
}
|
||||
|
||||
.p-tree-node:focus-visible > .p-tree-node-content {
|
||||
outline: 1px solid ${dt('focus.ring.color')};
|
||||
outline-offset: -2px;
|
||||
}
|
||||
|
||||
.p-tree-node-content.p-tree-node-selected {
|
||||
background: ${dt('highlight.background')};
|
||||
color: ${dt('highlight.color')};
|
||||
}
|
||||
|
||||
.p-tree-node-toggle-button {
|
||||
cursor: pointer;
|
||||
user-select: none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
flex-shrink: 0;
|
||||
margin: 0 0.5rem 0 0;
|
||||
width: 1.75rem;
|
||||
height: 1.75rem;
|
||||
color: ${dt('tree.toggle.color')};
|
||||
border: 0 none;
|
||||
background: transparent;
|
||||
border-radius: 50%;
|
||||
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;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.p-tree-node-toggle-button:enabled:hover {
|
||||
background: ${dt('tree.toggle.hover.background')};
|
||||
color: ${dt('tree.toggle.hover.color')};
|
||||
}
|
||||
|
||||
.p-tree-node-content.p-tree-node-selected .p-tree-node-toggle-button,
|
||||
.p-tree-node-content.p-tree-node-selected .p-tree-node-toggle-icon {
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
.p-tree-node-content.p-tree-node-selected .p-tree-node-toggle-button:hover {
|
||||
background: ${dt('tree.toggle.highlight.hover.background')};
|
||||
}
|
||||
|
||||
.p-tree-node-content.p-tree-node-selectable:not(.p-tree-node-selected):hover {
|
||||
background: ${dt('tree.node.hover.background')};
|
||||
color: ${dt('tree.node.hover.color')};
|
||||
}
|
||||
|
||||
.p-tree-node-content.p-tree-node-selectable:not(.p-tree-node-selected):hover .p-tree-node-toggle-button {
|
||||
color: ${dt('tree.toggle.hover.color')};
|
||||
}
|
||||
|
||||
.p-tree-node-content.p-tree-node-selectable:not(.p-tree-node-selected):hover .p-tree-node-icon {
|
||||
color: ${dt('tree.icon.hover.color')};
|
||||
}
|
||||
|
||||
.p-tree-node-children {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
padding: 0 0 0 1rem;
|
||||
}
|
||||
|
||||
.p-tree-root {
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
.p-tree-node-selectable {
|
||||
cursor: pointer;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
.p-tree-node-leaf > .p-tree-node-content .p-tree-node-toggle-button {
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
.p-tree-node-icon {
|
||||
margin-right: 0.5rem;
|
||||
color: ${dt('tree.icon.color')};
|
||||
transition: color ${dt('transition.duration')};
|
||||
}
|
||||
|
||||
.p-tree-node-content .p-checkbox {
|
||||
margin-right: 0.5rem;
|
||||
}
|
||||
|
||||
.p-tree-filter-input {
|
||||
width: 100%;
|
||||
padding-right: 1.75rem;
|
||||
}
|
||||
|
||||
.p-tree-filter-container {
|
||||
position: relative;
|
||||
display: block;
|
||||
width: 100%;
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
.p-tree-filter-icon {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
margin-top: -0.5rem;
|
||||
right: 0.75rem;
|
||||
color: ${dt('tree.filter.icon.color')};
|
||||
}
|
||||
|
||||
.p-tree-loading {
|
||||
position: relative;
|
||||
min-height: 4rem;
|
||||
}
|
||||
|
||||
.p-tree-loading-icon {
|
||||
font-size: 2rem;
|
||||
width: 2rem;
|
||||
height: 2rem;
|
||||
}
|
||||
|
||||
.p-tree-mask {
|
||||
position: absolute;
|
||||
z-index: 1;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-tree-flex-scrollable {
|
||||
display: flex;
|
||||
flex: 1;
|
||||
height: 100%;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-tree-flex-scrollable .p-tree-root {
|
||||
flex: 1;
|
||||
}
|
||||
`;
|
||||
|
||||
const classes = {
|
||||
root: ({ props }) => [
|
||||
'p-tree p-component',
|
||||
|
@ -36,5 +215,6 @@ const classes = {
|
|||
|
||||
export default BaseStyle.extend({
|
||||
name: 'tree',
|
||||
theme,
|
||||
classes
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue