123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220 |
- .invite-more {
- &-container {
- margin-bottom: 8px;
- transition: margin-bottom 0.3s;
-
- &.elevated {
- margin-bottom: 36px;
- }
- }
-
- &-content {
- display: flex;
- flex-direction: column;
- align-items: center;
- padding: 16px;
- background: rgba(0, 0, 0, 0.7);
- border-radius: 8px;
- color: #fff;
- font-size: 14px;
- line-height: 24px;
- font-weight: 600;
- }
-
- &-header {
- max-width: 100%;
- margin-bottom: 16px;
- text-overflow: ellipsis;
- overflow: hidden;
- white-space: nowrap;
- }
-
- &-button {
- display: flex;
- max-width: 100%;
- height: 40px;
- box-sizing: border-box;
- padding: 8px 16px;
- background: #0376DA;
- border-radius: 3px;
- cursor: pointer;
-
- @media (hover: hover) and (pointer: fine) {
- &:hover {
- background: #278ADF;
- }
- }
-
- &-text {
- margin-left: 8px;
- text-overflow: ellipsis;
- overflow: hidden;
- white-space: nowrap;
- }
- }
- &-dialog {
- color: #fff;
- font-size: 15px;
- line-height: 24px;
-
- &.separator {
- margin: 24px 0 24px -20px;
- padding: 0 20px;
- width: 100%;
- height: 1px;
- background: #5E6D7A;
- }
-
- &.email-container {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 8px 8px 8px 16px;
- margin-top: 24px;
- width: calc(100% - 26px);
- height: 22px;
-
- background: #2A3A4B;
- border: 1px solid #5E6D7A;
- border-radius: 3px;
- cursor: pointer;
-
- &.active {
- border-radius: 3px 3px 0 0;
- }
- }
-
- &.icon-container {
- display: none;
-
- &.active {
- display: flex;
- width: calc(100% - 26px);
- padding: 8px 8px 8px 16px;
-
- background: #2A3A4B;
- border: 1px solid #5E6D7A;
- border-top: none;
- border-radius: 0 0 3px 3px;
-
- & > * {
- display: flex;
- justify-content: center;
- align-items: center;
- height: 40px;
- width: 40px;
- border-radius: 4px;
- cursor: pointer;
- }
-
- &:hover > div:hover {
- background-color: rgba(255, 255, 255, 0.2);
- }
-
- & > :not(:last-child) {
- margin-right: 16px;
- }
-
- .copy-invite-icon > div > svg > path {
- fill: #A4B8D1;
- }
- }
- }
-
- &.dial-in-display {
- .info-label {
- color: #A4B8D1;
- }
-
- .dial-in-copy {
- display: inline-block;
- vertical-align: middle;
- cursor: pointer;
- }
- }
-
- &.invite-buttons {
- width: 100%;
- text-align: right;
- margin-top: 8px;
-
- & > a {
- display: inline-block;
- height: 24px;
- width: 48px;
- border-radius: 3px;
- text-align: center;
- text-decoration: none;
- cursor: pointer;
- }
-
- &-cancel {
- margin-right: 16px;
- padding: 7px 15px;
- background: #2A3A4B;
- border: 1px solid #5E6D7A;
- }
-
- &-add {
- padding: 8px 16px;
- background: #0376DA;
- }
-
- &.disabled {
- & > a {
- pointer-events: none;
- }
- }
- }
-
- &.stream {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 8px 8px 8px 16px;
- margin-top: 8px;
- width: calc(100% - 26px);
- height: 22px;
-
- background: #2A3A4B;
- border: 1px solid #5E6D7A;
- border-radius: 3px;
- cursor: pointer;
-
- &:hover {
- font-weight: 600;
- }
-
- &-text {
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- max-width: 292px;
-
- &.selected {
- font-weight: 600;
- }
- }
-
- &.clicked {
- background: #31B76A;
- border: 1px solid #31B76A;
- }
-
- & > div > svg > path {
- fill: #fff;
- }
- }
- }
- }
-
- .mobile-browser {
- .invite-more-content {
- font-size: 16px;
- }
-
- .invite-more-button {
- height: 48px;
- padding: 12px 16px;
- }
- }
|