mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-11 01:42:34 +00:00
Update theme config with theme.base
, theme.preset
and theme.options
This commit is contained in:
parent
4053bbf4b9
commit
b5df82f247
308 changed files with 12926 additions and 97 deletions
183
components/lib/themes/primeone/base/tree/index.js
Normal file
183
components/lib/themes/primeone/base/tree/index.js
Normal file
|
@ -0,0 +1,183 @@
|
|||
export default {
|
||||
css: `
|
||||
.p-tree {
|
||||
background: var(--p-tree-background);
|
||||
color: var(--p-tree-text-color);
|
||||
border-radius: var(--p-rounded-base);
|
||||
border: 0 none;
|
||||
padding: 1rem;
|
||||
}
|
||||
|
||||
.p-tree-container {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
.p-treenode {
|
||||
padding: 0 0;
|
||||
outline: 0 none;
|
||||
margin: 2px 0;
|
||||
}
|
||||
|
||||
.p-tree-container > .p-treenode:first-child {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.p-tree-container > .p-treenode:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.p-treenode-content {
|
||||
border-radius: var(--p-rounded-base);
|
||||
padding: 0.25rem 0.5rem;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
outline-color: transparent;
|
||||
color: var(--p-tree-node-text-color);
|
||||
transition: background-color var(--p-transition-duration), color var(--p-transition-duration), outline-color var(--p-transition-duration);
|
||||
}
|
||||
|
||||
.p-treenode:focus-visible > .p-treenode-content {
|
||||
outline: 1px solid var(--p-focus-ring-color);
|
||||
outline-offset: -2px;
|
||||
}
|
||||
|
||||
.p-treenode-content.p-highlight {
|
||||
background: var(--p-highlight-background);
|
||||
color: var(--p-highlight-text-color);
|
||||
}
|
||||
|
||||
.p-tree-toggler {
|
||||
cursor: pointer;
|
||||
user-select: none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
flex-shrink: 0;
|
||||
margin-right: 0.5rem;
|
||||
width: 1.75rem;
|
||||
height: 1.75rem;
|
||||
color: var(--p-tree-toggle-color);
|
||||
border: 0 none;
|
||||
background: transparent;
|
||||
border-radius: 50%;
|
||||
transition: background-color var(--p-transition-duration), color var(--p-transition-duration), border-color var(--p-transition-duration), box-shadow var(--p-transition-duration), outline-color var(--p-transition-duration);
|
||||
outline-color: transparent;
|
||||
}
|
||||
|
||||
.p-tree-toggler:enabled:hover {
|
||||
background: var(--p-tree-toggle-background-hover);
|
||||
color: var(--p-tree-toggle-color-hover);
|
||||
}
|
||||
|
||||
.p-treenode-content.p-highlight .p-tree-toggler,
|
||||
.p-treenode-content.p-highlight .p-treenode-icon {
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
.p-treenode-content.p-highlight .p-tree-toggler:hover {
|
||||
background: var(--p-tree-toggle-background-hover-highlight);
|
||||
}
|
||||
|
||||
.p-treenode-content.p-treenode-selectable:not(.p-highlight):hover {
|
||||
background: var(--p-tree-node-background-hover);
|
||||
color: var(--p-tree-node-text-color-hover);
|
||||
}
|
||||
|
||||
.p-treenode-content.p-treenode-selectable:not(.p-highlight):hover .p-tree-toggler {
|
||||
color: var(--p-tree-toggle-color-hover);
|
||||
}
|
||||
|
||||
.p-treenode-content.p-treenode-selectable:not(.p-highlight):hover .p-treenode-icon {
|
||||
color: var(--p-tree-node-icon-color-hover);
|
||||
}
|
||||
|
||||
.p-treenode-children {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
padding: 0 0 0 1rem;
|
||||
}
|
||||
|
||||
.p-tree-wrapper {
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
.p-treenode-selectable {
|
||||
cursor: pointer;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
.p-treenode-leaf > .p-treenode-content .p-tree-toggler {
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
.p-treenode-icon {
|
||||
margin-right: 0.5rem;
|
||||
color: var(--p-tree-node-icon-color);
|
||||
transition: color var(--p-transition-duration);
|
||||
}
|
||||
|
||||
.p-treenode-content .p-checkbox {
|
||||
margin-right: 0.5rem;
|
||||
}
|
||||
|
||||
.p-treenode-content .p-checkbox.p-indeterminate .p-checkbox-icon {
|
||||
color: var(--p-tree-indeterminate-color);
|
||||
}
|
||||
|
||||
.p-tree-filter {
|
||||
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: #94a3b8;
|
||||
}
|
||||
|
||||
.p-tree-loading {
|
||||
position: relative;
|
||||
min-height: 4rem;
|
||||
}
|
||||
|
||||
.p-tree-loading-icon {
|
||||
font-size: 2rem;
|
||||
width: 2rem;
|
||||
height: 2rem;
|
||||
}
|
||||
|
||||
.p-tree-loading-overlay {
|
||||
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-wrapper {
|
||||
flex: 1;
|
||||
}
|
||||
`
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue