LANCommander/LANCommander.Client/Styles/_list.scss
Pat Hartl 20d2fa008f Disable text selection on everything
This can change in the future. Allowing selection should happen on a case-by-case basis.
2024-07-12 22:40:48 -05:00

31 lines
682 B
SCSS

.ant-card-body > .ant-list {
border: none;
border-radius: 0;
margin: -24px;
}
.ant-list-clickable {
.ant-list-item {
cursor: pointer;
position: relative;
&:hover,
&.selected {
background: #262626;
&::after {
background: linear-gradient(270deg, rgba(38,38,38,1) 0%, rgba(38,38,38,0) 100%);
}
}
&::after {
content: '';
position: absolute;
top: 0;
right: 0;
bottom: 0;
width: 24px;
background: linear-gradient(270deg, rgba(20,20,20,1) 0%, rgba(20,20,20,0) 100%);
}
}
}