forked from CITKParus/P8-Panels
34 lines
715 B
CSS
34 lines
715 B
CSS
.entity__wrapper {
|
|
width: 100%;
|
|
height: 100%;
|
|
border: 1px solid var(--border-color-dark);
|
|
border-radius: 6px;
|
|
box-shadow: var(--shadow-entity);
|
|
overflow: hidden;
|
|
background-color: white;
|
|
}
|
|
|
|
.entity__wrapper[data-selected="true"] {
|
|
outline: 1px solid var(--outline-color);
|
|
border-color: var(--outline-color);
|
|
}
|
|
|
|
.entity__title {
|
|
width: 100%;
|
|
height: 50px;
|
|
align-content: center;
|
|
border-bottom: 1px solid var(--border-color);
|
|
font-weight: 900;
|
|
text-align: center;
|
|
background-color: var(--entity-title-bg);
|
|
cursor: move;
|
|
}
|
|
|
|
.entity__name {
|
|
width: 100%;
|
|
align-content: center;
|
|
text-align: center;
|
|
font-size: 0.8rem;
|
|
color: gray;
|
|
}
|