"Fossies" - the Fresh Open Source Software Archive

Member "jitsi-meet-7688/css/modals/desktop-picker/_desktop-picker.scss" (1 Dec 2023, 1326 Bytes) of package /linux/misc/jitsi-meet-7688.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 .desktop-picker-pane {
    2     height: 320px;
    3     overflow-x: hidden;
    4     overflow-y: auto;
    5     width: 100%;
    6 
    7     &.source-type-screen {
    8         .desktop-picker-source {
    9             margin-left: auto;
   10             margin-right: auto;
   11             width: 50%;
   12         }
   13 
   14         .desktop-source-preview-thumbnail {
   15             width: 100%;
   16         }
   17 
   18         .desktop-source-preview-label {
   19             display: none;
   20         }
   21     }
   22 
   23     &.source-type-window {
   24         .desktop-picker-source {
   25             display: inline-block;
   26             width: 30%;
   27         }
   28     }
   29 
   30     &-spinner {
   31         justify-content: center;
   32         display: flex;
   33         height: 100%;
   34         align-items: center;
   35     }
   36 }
   37 
   38 .desktop-picker-source {
   39     margin-top: 10px;
   40     text-align: center;
   41 
   42     &.is-selected {
   43         .desktop-source-preview-image-container {
   44             background: rgba(255,255,255,0.3);
   45             border-radius: $borderRadius;
   46         }
   47     }
   48 }
   49 
   50 .desktop-source-preview-label {
   51     margin-top: 3px;
   52     overflow: hidden;
   53     text-overflow: ellipsis;
   54     white-space: nowrap;
   55 }
   56 
   57 .desktop-source-preview-thumbnail {
   58     box-shadow: 5px 5px 5px grey;
   59     height: auto;
   60     max-width: 100%;
   61 }
   62 
   63 .desktop-source-preview-image-container {
   64     padding: 10px;
   65 }
   66 
   67 .desktop-picker-tabs-container {
   68     width: 65%;
   69     margin-top: 3px;
   70 }