File size: 796 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
.features-helper__current-features.card {
display: none;
}
.features-helper__feature-header {
margin-top: 15px;
margin-bottom: 10px;
white-space: nowrap;
overflow: hidden;
}
.features-helper__feature-item {
text-transform: initial;
margin-top: 5px;
font-weight: 600;
white-space: nowrap;
overflow: hidden;
}
.features-helper__feature-item-enabled {
color: var(--studio-green-70);
}
.features-helper__feature-item-disabled {
color: var(--studio-red-70);
}
.environment.is-features:hover .features-helper__current-features {
display: block;
background: var(--color-surface);
box-shadow: 0 0 0 1px var(--color-border-subtle);
padding: 16px;
max-height: 80vh;
overflow-y: scroll;
position: absolute;
bottom: 100%;
right: 0;
margin: 0;
font-size: $font-body-extra-small;
}
|