123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286 |
- /**
- * Shared style for full screen local track based dialogs/modals.
- */
- .premeeting-screen {
- position: absolute;
- left: 0;
- right: 0;
- top: 0;
- bottom: 0;
- }
-
- .premeeting-screen {
- align-items: stretch;
- background: radial-gradient(50% 50% at 50% 50%, #2A3A4B 20.83%, #1E2A36 100%);
- display: flex;
- flex-direction: column;
- font-size: 1.3em;
- z-index: $toolbarZ + 1;
-
- &-avatar {
- background-color: #A4B8D1;
- margin-bottom: 24px;
-
- text {
- fill: black;
- font-size: 26px;
- font-weight: 400;
- }
- }
-
- .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-radius: 3px;
- align-items: center;
- display: flex;
- height: 100%;
- justify-content: center;
- position: absolute;
- right: 0;
- top: 0;
- width: 36px;
-
- &:hover {
- background-color: #0262B6;
- }
-
- svg {
- pointer-events: none;
- }
- }
- }
-
- .content {
- align-items: center;
- display: flex;
- flex: 1;
- flex-direction: column;
- justify-content: flex-end;
- padding-bottom: 24px;
- 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 {
- background: rgba(28, 32, 37, 0.5);
- border-radius: 4px;
- display: flex;
- padding: 8px 10px;
- transition: background 0.16s ease-out;
-
- &:hover {
- background: #1C2025;
- }
-
- &.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: white;
- border: none;
- outline: none;
- border-radius: 3px;
- font-size: 15px;
- line-height: 24px;
- color: #1C2025;
- padding: 8px 0;
- text-align: center;
- width: 320px;
-
- &.error {
- box-shadow: 0px 0px 4px 3px rgba(225, 45, 45, 0.4);
- }
-
- &.focused {
- box-shadow: 0px 0px 4px 3px #0376DA;
- }
- }
- }
-
- .media-btn-container {
- display: flex;
- justify-content: center;
- margin: 24px 0 16px 0;
- width: 100%;
-
- &> div {
- margin: 0 12px;
- }
- }
- }
-
- #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: 0 auto;
- }
-
- video {
- height: 100%;
- object-fit: cover;
- position: absolute;
- width: 100%;
- }
- }
-
- @mixin flex-centered() {
- align-items: center;
- display: flex;
- justify-content: center;
- }
-
- @mixin icon-container($bg, $fill) {
- .toggle-button-icon-container {
- background: $bg;
-
- svg {
- fill: $fill
- }
- }
- }
-
- .toggle-button {
- border-radius: 3px;
- cursor: pointer;
- color: #fff;
- font-size: 13px;
- height: 40px;
- margin: 0 auto;
- transition: background 0.16s ease-out;
- width: 320px;
-
- @include flex-centered();
-
- svg {
- fill: transparent;
- }
-
- &:hover {
- background: rgba(255, 255, 255, 0.1);
-
- .toggle-button-icon-container {
- display: none;
- }
- }
-
- &-container {
- position: relative;
-
- @include flex-centered();
- }
-
- &-icon-container {
- border-radius: 50%;
- left: -22px;
- padding: 2px;
- position: absolute;
- }
-
- &--toggled {
- @include icon-container(white, #1C2025);
-
- &:hover {
- .toggle-button-icon-container {
- display: block;
- }
- }
-
- .toggle-button-icon-container {
- display: block;
- }
- }
- }
|