| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157 | 
							- .use-new-toolbox {
 -     font-size: 14px;
 - }
 - 
 - .info-dialog {
 -     cursor: default;
 -     display: flex;
 - 
 -     .info-dialog-action-link {
 -         display: inline-block;
 -         line-height: 1.5em;
 - 
 -         a {
 -             cursor: pointer;
 -             vertical-align: middle;
 -         }
 -     }
 - 
 -     .info-dialog-action-link:before {
 -         color: $linkFontColor;
 -         content: '\2022';
 -         font-size: 1.5em;
 -         padding: 0 10px;
 -         vertical-align: middle;
 -     }
 - 
 -     .info-dialog-action-link:first-child:before {
 -         content: '';
 -         padding: 0;
 -     }
 - 
 -     .info-dialog-action-links {
 -         font-weight: bold;
 -         margin-top: 10px;
 -         white-space: nowrap;
 -     }
 - 
 -     .info-dialog-action-separator {
 -         display: inline-block;
 -     }
 - 
 -     .info-dialog-copy-element {
 -         opacity: 0;
 -         pointer-events: none;
 -         position: absolute;
 -         -webkit-user-select: text;
 -         user-select: text;
 -     }
 - 
 -     .info-dialog-column {
 -         margin-right: 10px;
 -         overflow: hidden;
 - 
 -         a,
 -         a:active,
 -         a:focus,
 -         a:hover {
 -             text-decoration: none;
 -         }
 -     }
 - 
 -     .info-dialog-conference-url,
 -     .info-dialog-live-stream-url {
 -         width: max-content;
 -         width: -moz-max-content;
 -         width: -webkit-max-content;
 -         word-break: break-all;
 -         max-width: 400px;
 -     }
 - 
 -     .info-dialog-dial-in {
 -         white-space: nowrap;
 - 
 -         .conference-id,
 -         .phone-number {
 -             user-select: text;
 -         }
 -     }
 - 
 -     .info-dialog-icon {
 -         color: #6453C0;
 -         font-size: 16px;
 -     }
 - 
 -     .info-dialog-url-text,
 -     .info-dialog-url-text:hover {
 -         color: inherit;
 -         cursor: inherit;
 -     }
 - 
 -     .info-dialog-title {
 -         font-weight: bold;
 -         margin-bottom: 10px;
 -     }
 - 
 -     .info-dialog-password,
 -     .info-password,
 -     .info-password-form {
 -         align-items: baseline;
 -         display: flex;
 -     }
 - 
 -     .info-label {
 -         font-weight: bold;
 -     }
 - 
 -     .info-password-field {
 -         overflow: hidden;
 -         text-overflow: ellipsis;
 -         white-space: nowrap;
 -     }
 - 
 -     .info-password-none,
 -     .info-password-remote {
 -         opacity: 0.5;
 -     }
 - 
 -     .info-password-input {
 -         background-color: transparent;
 -         border: none;
 -         color: inherit;
 -         padding-left: 0;
 -     }
 - 
 -     .info-password-local {
 -         user-select: text;
 -     }
 - }
 - 
 - .dial-in-page {
 -     align-items: center;
 -     display: flex;
 -     flex-direction: column;
 -     font-size: 24px;
 -     height: 100%;
 -     justify-content: center;
 -     width: 100%;
 - 
 -     .dial-in-numbers-list {
 -         font-size: 24px;
 -         margin-top: 20px;
 -     }
 - 
 -     .dial-in-conference-id {
 -         text-align: center;
 -         width: 30%;
 -     }
 - }
 - 
 - .info-dialog,
 - .dial-in-page {
 -     * {
 -         user-select: text;
 -         -moz-user-select: text;
 -         -webkit-user-select: text;
 -     }
 - }
 
 
  |