_verification_level.scss 840 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. /*
  2. * Verification level.
  3. */
  4. .verification-dots {
  5. div {
  6. display: inline-block;
  7. height: 11px;
  8. width: 11px;
  9. border-radius: 50%;
  10. background-color: #e0e0e0;
  11. margin-right: 2px;
  12. }
  13. &.level1 {
  14. div {
  15. &:nth-of-type(1) {
  16. background-color: $status-error;
  17. }
  18. }
  19. }
  20. &.level2 {
  21. div {
  22. &:nth-of-type(1),
  23. &:nth-of-type(2) {
  24. background-color: $status-warning;
  25. }
  26. }
  27. &.work {
  28. div {
  29. &:nth-of-type(1),
  30. &:nth-of-type(2) {
  31. background-color: $work-blue;
  32. }
  33. }
  34. }
  35. }
  36. &.level3 {
  37. div {
  38. background-color: $status-ok;
  39. }
  40. &.work {
  41. div {
  42. &:nth-of-type(1),
  43. &:nth-of-type(2),
  44. &:nth-of-type(3) {
  45. background-color: $work-blue;
  46. }
  47. }
  48. }
  49. }
  50. }