"Fossies" - the Fresh Open Source Software Archive

Member "jitsi-meet-7312/css/_mini_toolbox.scss" (1 Jun 2023, 628 Bytes) of package /linux/misc/jitsi-meet-7312.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 .filmstrip-toolbox,
    2 .always-on-top-toolbox {
    3     background-color: $newToolbarBackgroundColor;
    4     border-radius: 3px;
    5     display: flex;
    6     z-index: $toolbarZ;
    7 
    8     .toolbox-icon {
    9         cursor: pointer;
   10         padding: 7px;
   11         width: 22px;
   12         height : 22px;
   13 
   14         &.toggled {
   15             background: none;
   16         }
   17 
   18         &.disabled {
   19             cursor: initial;
   20         }
   21     }
   22 }
   23 
   24 .always-on-top-toolbox {
   25     flex-direction: row;
   26     left: 50%;
   27     position: absolute;
   28     bottom: 10px;
   29     transform: translateX(-50%);
   30     padding: 3px !important;
   31 }
   32 
   33 .filmstrip-toolbox {
   34     flex-direction: column;
   35 }