primereact
Version:
[](https://gitter.im/primefaces/primereact?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
44 lines (36 loc) • 743 B
CSS
.ui-panel {
padding: 0.2em;
}
.ui-panel .ui-panel-titlebar {
padding: .5em .75em;
}
.ui-panel .ui-panel-titlebar-icon {
float: right;
cursor: pointer;
}
.ui-panel .ui-panel-titlebar-icon {
margin-left: 0.2em;
margin-top: -0.1em;
}
.ui-panel .ui-panel-content {
border: 0;
background: none;
padding: .5em .75em;
}
.ui-panel .ui-panel-footer {
border-width: 1px 0 0;
padding: .25em .5em;
text-align:left;
}
.ui-panel-content-wrapper-collapsed {
overflow: hidden;
max-height: 0;
transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}
.ui-panel-content-wrapper-expanded {
max-height: 1000px;
transition: max-height 1s ease-in-out;
}
.ui-panel-content-wrapper-expanding {
overflow: hidden;
}