"Fossies" - the Fresh Open Source Software Archive

Member "jitsi-meet-7329/css/filmstrip/_tile_view_overrides.scss" (9 Jun 2023, 1009 Bytes) of package /linux/misc/jitsi-meet-7329.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 /**
    2  * Various overrides outside of the filmstrip to style the app to support a
    3  * tiled thumbnail experience.
    4  */
    5 .tile-view,
    6 .whiteboard-container,
    7 .stage-filmstrip {
    8     /**
    9      * Let the avatar grow with the tile.
   10      */
   11     .avatar-container {
   12         max-height: initial;
   13         max-width: initial;
   14     }
   15 
   16     /**
   17      * Hide various features that should not be displayed while in tile view.
   18      */
   19     #dominantSpeaker,
   20     #largeVideoElementsContainer,
   21     #sharedVideo,
   22     .stage-participant-label {
   23         display: none;
   24     }
   25 
   26     /**
   27      * The follow styling uses !important to override inline styles set with
   28      * javascript.
   29      *
   30      * TODO: These overrides should be more easy to remove and should be removed
   31      * when the components are in react so their rendering done declaratively,
   32      * making conditional styling easier to apply.
   33      */
   34     #largeVideoElementsContainer,
   35     #remoteConnectionMessage,
   36     #remotePresenceMessage {
   37         display: none !important;
   38     }
   39 }