1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- /*
- * Verification level.
- */
- .verification-dots {
- div {
- display: inline-block;
- height: 11px;
- width: 11px;
- border-radius: 50%;
- background-color: #e0e0e0;
- margin-right: 2px;
- }
- &.level1 {
- div {
- &:nth-of-type(1) {
- background-color: $status-error;
- }
- }
- }
- &.level2 {
- div {
- &:nth-of-type(1),
- &:nth-of-type(2) {
- background-color: $status-warning;
- }
- }
- &.work {
- div {
- &:nth-of-type(1),
- &:nth-of-type(2) {
- background-color: $work-blue;
- }
- }
- }
- }
- &.level3 {
- div {
- background-color: $status-ok;
- }
- &.work {
- div {
- &:nth-of-type(1),
- &:nth-of-type(2),
- &:nth-of-type(3) {
- background-color: $work-blue;
- }
- }
- }
- }
- }
|