Files
mixtape/zero.Web.UI/Sass/Modules/_tree.scss
T
2020-09-05 17:35:47 +02:00

49 lines
730 B
SCSS

.app-tree
{
width: 340px;
background: var(--color-bg-bright);
padding: 0;
position: relative;
overflow-y: auto;
height: 100vh;
height: calc(100vh - 20px);
margin: 10px 0 10px 10px;
border-radius: var(--radius);
box-shadow: var(--color-shadow-short);
.ui-header-bar + .ui-tree
{
margin-top: -10px;
}
.ui-dot-button
{
margin-right: -8px;
}
.ui-tree-item.is-active:before
{
background: var(--color-bg-dim);
}
}
.app-tree-resizable
{
position: absolute;
top: 0;
bottom: 0;
background: var(--color-fg);
opacity: 0;
right: 0;
width: 6px;
cursor: ew-resize;
transition: opacity 0.15s ease 0s;
&:hover
{
transition-delay: 0.2s;
opacity: 0.04;
}
}