模式显示
This commit is contained in:
parent
c61f3b735a
commit
33c968cdb5
|
|
@ -106,14 +106,25 @@
|
||||||
.meetingGrayButton {
|
.meetingGrayButton {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
background-color: #31353A;
|
background-color: #31353A;
|
||||||
color: #EEEEEE;
|
|
||||||
width: 140px;
|
width: 140px;
|
||||||
height: 36px;
|
height: 36px;
|
||||||
line-height: 36px;
|
line-height: 36px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
margin-right: 20px;
|
margin-right: 20px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
|
||||||
|
>span {
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
|
color: #EEEEEE;
|
||||||
|
}
|
||||||
|
|
||||||
|
>img {
|
||||||
|
width: 16px;
|
||||||
|
margin-right: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
background-color: lighten(#31353A, 4%);
|
background-color: lighten(#31353A, 4%);
|
||||||
|
|
|
||||||
|
|
@ -762,9 +762,11 @@ const Meeting: React.FC = () => {
|
||||||
open={modeOpen}
|
open={modeOpen}
|
||||||
onOpenChange={() => setModeOpen(true)}
|
onOpenChange={() => setModeOpen(true)}
|
||||||
>
|
>
|
||||||
<div className={styles.meetingGrayButton}>{getMeetingContentBodyLeftModeText()}</div>
|
<div className={styles.meetingGrayButton}>
|
||||||
|
{meetingMode === 'StandardMode' ? <img src={ImageUrl.icon43} alt="" /> : <img src={ImageUrl.icon44} alt="" />}
|
||||||
|
<span>{getMeetingContentBodyLeftModeText()}</span>
|
||||||
|
</div>
|
||||||
</Popover>
|
</Popover>
|
||||||
{/* <div className={styles.meetingGrayButton} onClick={changeSpeakerMode}>{getMeetingContentBodyLeftModeText()}</div> */}
|
|
||||||
<Operation></Operation>
|
<Operation></Operation>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue