This commit is contained in:
parent
7fcbbfce56
commit
076b6021c8
|
|
@ -258,6 +258,10 @@
|
|||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.boxShadow {
|
||||
box-shadow: 0px 0px 10px 0px #7B96FF;
|
||||
}
|
||||
|
||||
.meetingContentSwiperCardVdeio {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
|
|
|
|||
|
|
@ -936,7 +936,7 @@ const Meeting: React.FC = () => {
|
|||
<div className={`${styles.meetingContentBodyLeft} drag`}>
|
||||
<div className={getMeetingContentBodyLeftModeClass()} >
|
||||
{roomUserList.map((item: any, index: number) => {
|
||||
return <div
|
||||
return (index <= 19 ? <div
|
||||
className={`${styles.meetingContentSwiperCard}`}
|
||||
key={index}
|
||||
onClick={() => {
|
||||
|
|
@ -948,7 +948,7 @@ const Meeting: React.FC = () => {
|
|||
}
|
||||
}}
|
||||
>
|
||||
<div className={`${styles.meetingContentSwiperCardVdeio} ${currentVideoId === item.uid ? styles.active : ''}`} id={`video-${item.uid}`}>
|
||||
<div className={`${styles.meetingContentSwiperCardVdeio} ${currentVideoId === item.uid ? styles.active : ''} ${item.roleId === '1' || item.isRoomManager ? styles.boxShadow : ''}`} id={`video-${item.uid}`}>
|
||||
<div className={styles.meetingContentSwiperCardVdeioLoading}>
|
||||
<Avatar name={item.userName} />
|
||||
</div>
|
||||
|
|
@ -1029,7 +1029,7 @@ const Meeting: React.FC = () => {
|
|||
<div className={styles.meetingContentSwiperCardBorder}>
|
||||
{item.enableMicr ? <div id={`micr-${item.uid}`}></div> : null}
|
||||
</div>
|
||||
</div>
|
||||
</div> : null)
|
||||
}
|
||||
)}
|
||||
{currentLookUserStatus === 0 && currentLookUserAccount ?
|
||||
|
|
|
|||
Loading…
Reference in New Issue