Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
123456789101112131415161718192021222324252627282930 |
- .jitsi-icon {
- &.metr {
- display: inline-block;
-
- & > svg {
- fill: #4E5E6C;
- width: 38px;
- }
- }
-
- &.metr--disabled {
- & > svg {
- fill: #4E5E6C;
- }
- }
- }
-
- .metr-l-0 {
- rect:first-child {
- fill: #31B76A;
- }
- }
-
- @for $i from 1 through 7 {
- .metr-l-#{$i} {
- rect:nth-child(-n+#{$i+1}) {
- fill: #31B76A;
- }
- }
- }
|