You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_meter.css 429B

123456789101112131415161718192021222324252627282930
  1. .jitsi-icon {
  2. &.metr {
  3. display: inline-block;
  4. & > svg {
  5. fill: #4E5E6C;
  6. width: 38px;
  7. }
  8. }
  9. &.metr--disabled {
  10. & > svg {
  11. fill: #4E5E6C;
  12. }
  13. }
  14. }
  15. .metr-l-0 {
  16. rect:first-child {
  17. fill: #31B76A;
  18. }
  19. }
  20. @for $i from 1 through 7 {
  21. .metr-l-#{$i} {
  22. rect:nth-child(-n+#{$i+1}) {
  23. fill: #31B76A;
  24. }
  25. }
  26. }