123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203 |
- /**
- * Shared style for full screen local track based dialogs/modals.
- */
- .premeeting-screen {
- align-items: stretch;
- background: #1C2025;
- bottom: 0;
- display: flex;
- flex-direction: column;
- font-size: 1.3em;
- left: 0;
- position: absolute;
- right: 0;
- top: 0;
- z-index: $toolbarZ + 1;
-
- .action-btn {
- border-radius: 3px;
- color: #fff;
- cursor: pointer;
- display: inline-block;
- font-size: 15px;
- line-height: 24px;
- margin-top: 16px;
- padding: 7px 16px;
- position: relative;
- text-align: center;
- width: 286px;
-
- &.primary {
- background: #0376DA;
- border: 1px solid #0376DA;
- }
-
- &.secondary {
- background: transparent;
- border: 1px solid #5E6D7A;
- }
-
- &.text {
- width: auto;
- font-size: 13px;
- margin: 0;
- padding: 0;
- }
-
- &.disabled {
- background: #5E6D7A;
- border: 1px solid #5E6D7A;
- color: #AFB6BC;
- cursor: initial;
-
- .icon {
- & > svg {
- fill: #AFB6BC;
- }
- }
-
- .options {
- border-left: 1px solid #AFB6BC;
- }
- }
-
- .options {
- align-items: center;
- border-left: 1px solid #fff;
- display: flex;
- height: 100%;
- justify-content: center;
- position: absolute;
- right: 0;
- top: 0;
- width: 40px;
- }
- }
-
- .content {
- align-items: center;
- background-image: linear-gradient(transparent, black);
- display: flex;
- flex: 1;
- flex-direction: column;
- justify-content: flex-end;
- z-index: $toolbarZ + 2;
-
- .title {
- color: #fff;
- font-size: 24px;
- line-height: 32px;
- margin-bottom: 16px;
- }
-
- .copy-meeting {
- align-items: center;
- cursor: pointer;
- color: #fff;
- display: flex;
- flex-direction: row;
- font-size: 15px;
- font-weight: 300;
- justify-content: center;
- line-height: 24px;
- margin-bottom: 16px;
-
- .url {
- display: flex;
- padding: 8px 10px;
-
- &:hover {
- background: #1C2025;
- border-radius: 4px;
- }
-
- &.done {
- background: #31B76A;
- }
-
- .jitsi-icon {
- margin-left: 10px;
- }
- }
-
- .copy-meeting-text {
- width: 266px;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
-
- &:hover {
- align-self: stretch;
- }
-
- textarea {
- border-width: 0;
- height: 0;
- opacity: 0;
- padding: 0;
- width: 0;
- }
- }
-
- input.field {
- background-color: transparent;
- border: 1px solid transparent;
- color: white;
- outline-width: 0;
- padding: 8px 0;
- text-align: center;
- width: 100%;
-
- &.focused {
- border-bottom: 1px solid white;
- }
-
- &.error::placeholder {
- color: $defaultWarningColor;
- }
- }
- }
-
- .media-btn-container {
- display: flex;
- justify-content: center;
- margin: 32px 0;
- width: 100%;
-
- &> div {
- margin: 0 12px;
- }
-
- .settings-button-small-icon {
- right: -8px;
-
- &--hovered {
- right: -10px;
- }
- }
- }
- }
-
- #preview {
- height: 100%;
- position: absolute;
- width: 100%;
-
- &.no-video {
- background: radial-gradient(50% 50% at 50% 50%, #5B6F80 0%, #365067 100%), #FFFFFF;
- text-align: center;
- }
-
- .avatar {
- background: #A4B8D1;
- margin: 200px auto 0 auto;
- }
-
- video {
- height: 100%;
- object-fit: cover;
- position: absolute;
- width: 100%;
- }
- }
|