123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- .tui-conversation {
- width: 100%;
- height: 100%;
- flex: 1;
- overflow: hidden;
- display: flex;
- flex-direction: column;
- &-list {
- overflow: auto;
- }
- .header {
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: space-around;
- border-bottom: 1px solid #f4f4f4;
- padding: 5px;
- }
- .item {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- position: relative;
- }
- }
- .tui-conversation-header {
- width: 100%;
- position: relative;
- .list {
- display: flex;
- align-items: center;
- border-bottom: 1px solid #F4F5F9;
- padding: 7px 0;
- &-item {
- flex: 1;
- display: flex;
- position: relative;
- padding: 7px;
- cursor: pointer;
- user-select: none;
- }
- }
- &-item {
- flex: 1;
- display: flex;
- align-items: center;
- &-title {
- padding: 0 8px;
- font-size: 16px;
- font-weight: normal;
- }
- }
- &-children {
- position: absolute;
- top: 100%;
- z-index: 3;
- padding: 7px 9px;
- border-bottom: none;
- background-color: #fff;
- box-shadow: 0 3px 7px 0 #0003;
- flex-direction: column;
- }
- }
- .network {
- padding: 0 12px;
- display: flex;
- align-items: center;
- .icon-error {
- display: flex;
- justify-content: center;
- align-items: center;
- width: 15px;
- height: 15px;
- border-radius: 15px;
- background: red;
- color: #fff;
- font-style: normal;
- }
- &-content {
- padding: 5px;
- font-size: 12px;
- line-height: 22px;
- }
- }
- .plus {
- display: inline-block;
- width: 30px;
- height: 30px;
- position: relative;
- }
- .plus::before,
- .plus::after {
- content: "";
- position: absolute;
- background-color: #232832;
- border-radius: 0.5px;
- width: 1px;
- height: 14px;
- left: 0;
- right: 0;
- top: 0;
- bottom: 0;
- margin: auto;
- }
- .plus::after {
- transform: rotate(90deg);
- width: 0.5px;
- }
|