123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- .invite-more {
- &-dialog {
- color: #fff;
- font-size: 15px;
- line-height: 24px;
-
- &.separator {
- margin: 24px 0 24px -20px;
- padding: 0 20px;
- width: 100%;
- height: 1px;
- background: #5E6D7A;
- }
-
- &.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;
- }
- }
- }
- }
|