样式优化

This commit is contained in:
yj 2024-08-23 11:03:19 +08:00
parent f425ac144b
commit f03f589854
3 changed files with 10 additions and 10 deletions

View File

@ -153,7 +153,7 @@ const InvitingPersonnelModal = forwardRef((props: any, ref: any) => {
<span>{item.userName}{item.account === user.account ? '(我)' : ''}</span> <span>{item.userName}{item.account === user.account ? '(我)' : ''}</span>
</div> </div>
<div> <div>
{item.disabled ? <span style={{ color: '#02B188', marginRight: '4px' }}></span> : null} {item.disabled ? <span style={{ color: '#ea5514', marginRight: '15px' }}></span> : null}
<span style={{ color: item.isOnline ? '#02B188' : 'rgb(221 11 11)' }}>{item.isOnline ? '在线' : '离线'}</span> <span style={{ color: item.isOnline ? '#02B188' : 'rgb(221 11 11)' }}>{item.isOnline ? '在线' : '离线'}</span>
</div> </div>
</div>) : <span style={{ display: 'block', textAlign: 'center', color: 'white', padding: '30px 0' }}></span>} </div>) : <span style={{ display: 'block', textAlign: 'center', color: 'white', padding: '30px 0' }}></span>}

View File

@ -166,8 +166,8 @@
left: 50%; left: 50%;
transform: translate(-50%, 0%); transform: translate(-50%, 0%);
cursor: pointer; cursor: pointer;
font-size: 30px; font-size: 25px;
color: white; color: #5673f3;
z-index: 3; z-index: 3;
} }
@ -176,8 +176,8 @@
top: 50%; top: 50%;
transform: translate(0, -50%); transform: translate(0, -50%);
cursor: pointer; cursor: pointer;
font-size: 30px; font-size: 25px;
color: white; color: #5673f3;
z-index: 3; z-index: 3;
} }

View File

@ -884,7 +884,7 @@ const Meeting: React.FC = () => {
} }
}) })
} else { } else {
message.error('申请已提交,请勿重复点击'); message.error('申请太频繁了,请稍后重试');
} }
break; break;
case '会议监控': case '会议监控':
@ -1191,15 +1191,15 @@ const Meeting: React.FC = () => {
switch (meetingMode) { switch (meetingMode) {
case 'StandardMode': case 'StandardMode':
if (isVideoFullScreen) { if (isVideoFullScreen) {
return <CaretDownOutlined className={`${styles.standardModeIcon} drag`} style={{ top: '-10px' }} title='展开' onClick={() => setIsVideoFullScreen(false)} /> //下 return <CaretDownOutlined className={`${styles.standardModeIcon} drag`} style={{ top: '-8px' }} title='展开' onClick={() => setIsVideoFullScreen(false)} /> //下
} else { } else {
return <CaretUpOutlined className={`${styles.standardModeIcon} drag`} style={{ top: '148px' }} title='收起' onClick={() => setIsVideoFullScreen(true)} /> //上 return <CaretUpOutlined className={`${styles.standardModeIcon} drag`} style={{ top: '152px' }} title='收起' onClick={() => setIsVideoFullScreen(true)} /> //上
} }
case 'SpeakerMode': case 'SpeakerMode':
if (isVideoFullScreen) { if (isVideoFullScreen) {
return <CaretRightOutlined className={`${styles.speakerModeIcon} drag`} style={{ left: '-10px' }} title='展开' onClick={() => setIsVideoFullScreen(false)} /> //右 return <CaretRightOutlined className={`${styles.speakerModeIcon} drag`} style={{ left: '-8px' }} title='展开' onClick={() => setIsVideoFullScreen(false)} /> //右
} else { } else {
return <CaretLeftOutlined className={`${styles.speakerModeIcon} drag`} style={{ left: 'calc(18% - 12px)' }} title='收起' onClick={() => setIsVideoFullScreen(true)} /> //左 return <CaretLeftOutlined className={`${styles.speakerModeIcon} drag`} style={{ left: 'calc(18% - 8px)' }} title='收起' onClick={() => setIsVideoFullScreen(true)} /> //左
} }
} }
} }