"Fossies" - the Fresh Open Source Software Archive

Member "jitsi-meet-7309/css/_meter.scss" (31 May 2023, 429 Bytes) of package /linux/misc/jitsi-meet-7309.tar.gz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) Sass/SCSS source code syntax highlighting (style: standard) with prefixed line numbers. Alternatively you can here view or download the uninterpreted source code file.

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