样式修改
This commit is contained in:
parent
f0d65cab8b
commit
24ac5ecad4
Binary file not shown.
|
After Width: | Height: | Size: 963 B |
Binary file not shown.
|
After Width: | Height: | Size: 647 B |
Binary file not shown.
|
After Width: | Height: | Size: 700 B |
|
|
@ -132,9 +132,6 @@ const Index: React.FC = () => {
|
||||||
<Button type="primary"
|
<Button type="primary"
|
||||||
iconPosition={'end'}
|
iconPosition={'end'}
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
// window.electron.oepnWindow({
|
|
||||||
// url: location.origin + '/#/userVideo'
|
|
||||||
// })
|
|
||||||
joinSettingRef.current.changeModal(item.roomNum)
|
joinSettingRef.current.changeModal(item.roomNum)
|
||||||
}}
|
}}
|
||||||
icon={<img src={ImageUrl.icon9} alt="" />}
|
icon={<img src={ImageUrl.icon9} alt="" />}
|
||||||
|
|
|
||||||
|
|
@ -593,7 +593,7 @@
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
background-color: #07090B;
|
background-color: #07090B;
|
||||||
padding: 10px 50px;
|
padding: 4px 50px;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
|
|
||||||
>div {
|
>div {
|
||||||
|
|
@ -601,6 +601,8 @@
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
|
||||||
>div {
|
>div {
|
||||||
|
padding: 6px 0;
|
||||||
|
border-radius: 6px;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
|
@ -635,17 +637,14 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
>span {
|
background-color: #161A29;
|
||||||
color: #4096ff;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
&:active {
|
&:active {
|
||||||
>span {
|
background-color: darken(#161A29, 10%) !important;
|
||||||
color: darken(#4096ff, 10%) !important;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -52,6 +52,12 @@ const Meeting: React.FC = () => {
|
||||||
iconActive: ImageUrl.icon23Active,
|
iconActive: ImageUrl.icon23Active,
|
||||||
active: false,
|
active: false,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
title: '申请发言',
|
||||||
|
icon: ImageUrl.icon47,
|
||||||
|
iconActive: ImageUrl.icon47Active,
|
||||||
|
active: false,
|
||||||
|
},
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
{
|
{
|
||||||
|
|
@ -69,6 +75,11 @@ const Meeting: React.FC = () => {
|
||||||
icon: ImageUrl.icon26,
|
icon: ImageUrl.icon26,
|
||||||
active: false,
|
active: false,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
title: '会议监控',
|
||||||
|
icon: ImageUrl.icon48,
|
||||||
|
active: false,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
title: '录制',
|
title: '录制',
|
||||||
icon: ImageUrl.icon27,
|
icon: ImageUrl.icon27,
|
||||||
|
|
@ -745,6 +756,21 @@ const Meeting: React.FC = () => {
|
||||||
case '共享文件':
|
case '共享文件':
|
||||||
sharedFilesModelRef.current.getData()
|
sharedFilesModelRef.current.getData()
|
||||||
break;
|
break;
|
||||||
|
case '申请发言':
|
||||||
|
footerListTemplate[itemIndex][rowIndex].title = '结束发言'
|
||||||
|
footerListTemplate[itemIndex][rowIndex].active = true
|
||||||
|
setFooterList(footerListTemplate)
|
||||||
|
break;
|
||||||
|
case '结束发言':
|
||||||
|
footerListTemplate[itemIndex][rowIndex].title = '申请发言'
|
||||||
|
footerListTemplate[itemIndex][rowIndex].active = false
|
||||||
|
setFooterList(footerListTemplate)
|
||||||
|
break;
|
||||||
|
case '会议监控':
|
||||||
|
// window.electron.oepnWindow({
|
||||||
|
// url: location.origin + '/#/userVideo'
|
||||||
|
// })
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// 停止录制
|
// 停止录制
|
||||||
|
|
|
||||||
|
|
@ -58,6 +58,9 @@ import icon44 from '@/assets/icon44.png'
|
||||||
import icon45 from '@/assets/icon45.png'
|
import icon45 from '@/assets/icon45.png'
|
||||||
import icon45Active from '@/assets/icon45-active.png'
|
import icon45Active from '@/assets/icon45-active.png'
|
||||||
import icon46 from '@/assets/icon46.png'
|
import icon46 from '@/assets/icon46.png'
|
||||||
|
import icon47 from '@/assets/icon47.png'
|
||||||
|
import icon47Active from '@/assets/icon47-active.png'
|
||||||
|
import icon48 from '@/assets/icon48.png'
|
||||||
export default {
|
export default {
|
||||||
error,
|
error,
|
||||||
icon,
|
icon,
|
||||||
|
|
@ -119,4 +122,7 @@ export default {
|
||||||
icon45,
|
icon45,
|
||||||
icon45Active,
|
icon45Active,
|
||||||
icon46,
|
icon46,
|
||||||
|
icon47,
|
||||||
|
icon47Active,
|
||||||
|
icon48,
|
||||||
}
|
}
|
||||||
|
|
@ -347,3 +347,27 @@ $pagination-hover-background-color: #5575F2;
|
||||||
background-color: $btn-background-color;
|
background-color: $btn-background-color;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ant-notification
|
||||||
|
.ant-notification {
|
||||||
|
.ant-notification-notice-wrapper {
|
||||||
|
background-color: #1F2022;
|
||||||
|
|
||||||
|
.ant-notification-notice-message {
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ant-notification-notice-description {
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ant-notification-notice-close {
|
||||||
|
color: #ccc;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
color: white;
|
||||||
|
background-color: #0f0f10;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue