webui/src/Sass/selectableList.scss

23 lines
419 B
SCSS

.selectable-list {
padding-left: 0rem;
list-style: none;
width: $mailtemplateNameListWidth;
li {
cursor: pointer;
padding: 0.5rem 0.75rem;
border-radius: 4px;
transition: background-color 0.2s ease;
&:hover {
background-color: rgba(0, 0, 0, 0.05);
}
&.selected {
background-color: #0078d4;
color: white;
font-weight: 500;
}
}
}