user_circles: Remove unused .user_circle_empty_line selector and styles.

This commit is contained in:
Karl Stolley 2024-08-09 14:29:52 -04:00 committed by Tim Abbott
parent 933870f2fd
commit 3e7aedf59f
1 changed files with 1 additions and 15 deletions

View File

@ -1,7 +1,6 @@
.user_circle_green, .user_circle_green,
.user_circle_idle, .user_circle_idle,
.user_circle_empty, .user_circle_empty {
.user_circle_empty_line {
border-radius: 50%; border-radius: 50%;
border: 1px solid; border: 1px solid;
} }
@ -28,16 +27,3 @@
background-color: transparent; background-color: transparent;
border-color: hsl(0deg 0% 50%); border-color: hsl(0deg 0% 50%);
} }
.user_circle_empty_line {
border-color: hsl(0deg 0% 50%);
&::after {
content: "";
background: hsl(0deg 0% 50%);
height: 1.5px; /* 1px is too thin, 2px is too thick */
width: 6px;
display: block;
margin: 3.25px auto 0; /* (total height - line height) / 2 = 3.25px */
}
}