Files
mixtape/zero.Backoffice.UI/app/styles/Modules/_tree.scss
T

54 lines
799 B
SCSS
Raw Normal View History

2020-08-15 18:27:36 +02:00
.app-tree
{
width: 340px;
background: var(--color-tree);
2020-08-15 18:27:36 +02:00
padding: 0;
position: relative;
overflow-y: auto;
2021-08-25 10:57:04 +02:00
height: 100vh;
box-shadow: var(--shadow-short);
2020-08-15 18:27:36 +02:00
2020-10-07 11:58:48 +02:00
.theme-rounded &
{
height: calc(100vh - 20px);
margin: 10px 0 10px 10px;
border-radius: var(--radius);
2021-09-21 22:26:28 +02:00
box-shadow: var(--shadow-short);
2020-10-07 11:58:48 +02:00
}
2020-08-15 18:27:36 +02:00
.ui-header-bar + .ui-tree
{
margin-top: -10px;
}
.ui-dot-button
{
margin-right: -8px;
}
.ui-tree-item.is-active:before
{
background: var(--color-tree-selected);
2020-08-15 18:27:36 +02:00
}
}
.app-tree-resizable
{
position: absolute;
top: 0;
bottom: 0;
background: var(--color-text);
2020-08-15 18:27:36 +02:00
opacity: 0;
right: 0;
width: 6px;
cursor: ew-resize;
transition: opacity 0.15s ease 0s;
&:hover
{
transition-delay: 0.2s;
opacity: 0.04;
}
}