"Fossies" - the Fresh Open Source Software Archive

Member "jitsi-meet-7561/css/modals/security/_security.scss" (29 Sep 2023, 1348 Bytes) of package /linux/misc/jitsi-meet-7561.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 .security {
    2     &-dialog {
    3         color: #fff;
    4         font-size: 15px;
    5         line-height: 24px;
    6 
    7         &.password-section {
    8             display: flex;
    9             flex-direction: column;
   10 
   11             .description {
   12                 font-size: 13px;
   13             }
   14 
   15             .password {
   16                 align-items: flex-start;
   17                 display: flex;
   18                 justify-content: flex-start;
   19                 margin-top: 15px;
   20                 flex-direction: column;
   21 
   22                 &-actions {
   23                     margin-top: 10px;
   24                     button {
   25                         cursor: pointer;
   26                         text-decoration: none;
   27                         font-size: 14px;
   28                         color: #6FB1EA;
   29                     }
   30 
   31                     & > :not(:last-child) {
   32                         margin-right: 24px;
   33                     }
   34                 }
   35             }
   36         }
   37 
   38         .separator-line {
   39             margin: 24px 0 24px -20px;
   40             padding: 0 20px;
   41             width: 100%;
   42             height: 1px;
   43             background: #5E6D7A;
   44 
   45             &:last-child {
   46                 display: none;
   47             }
   48         }
   49     }
   50 }
   51 
   52 .new-toolbox .toolbox-content .toolbox-icon.toggled.security-toolbar-button {
   53     border-width: 0;
   54 
   55     &:not(:hover) {
   56         background: unset;
   57     }
   58 }