2021-12-13 00:43:53 -05:00
|
|
|
.layout-grid-item {
|
|
|
|
height: var(--nitro-grid-column-min-height, 45px);
|
|
|
|
background-position: center;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-color: $grid-bg-color;
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
border-color: $grid-active-border-color !important;
|
2022-02-22 00:24:45 -05:00
|
|
|
background-color: $grid-active-bg-color;
|
2021-12-13 00:43:53 -05:00
|
|
|
}
|
|
|
|
|
2022-01-11 23:01:59 -05:00
|
|
|
&.disabled {
|
|
|
|
cursor: not-allowed;
|
|
|
|
|
|
|
|
img {
|
|
|
|
opacity: .5;
|
|
|
|
filter: grayscale(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-13 00:43:53 -05:00
|
|
|
&.unseen {
|
|
|
|
background-color: rgba($success, 0.4);
|
|
|
|
}
|
2022-01-03 00:10:55 -05:00
|
|
|
|
|
|
|
.avatar-image {
|
|
|
|
background-position-y: -35px;
|
|
|
|
}
|
2022-02-22 00:24:45 -05:00
|
|
|
|
|
|
|
&.has-highlight {
|
|
|
|
|
|
|
|
&:after {
|
|
|
|
content: "";
|
|
|
|
z-index: 2;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
height: 50%;
|
|
|
|
background-color: $white;
|
|
|
|
opacity: 0.1;
|
|
|
|
}
|
|
|
|
}
|
2021-12-13 00:43:53 -05:00
|
|
|
}
|