/
Loop/Shuffle Dot Indicator

Loop/Shuffle Dot Indicator

Adds a small dot indicator to the loop and shuffle icons in the playback bar, providing clarity when icons are toggled on or off.

Source Code (CSS)
.playback-action-button.action-small.action-active::after {
  content: "";
  display: block;
  margin-top: 2px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: currentColor;
}

.action-small:not(.action-active) > div > svg {
    filter: brightness(0.5);
}