Commit 70227d70 authored by mhw's avatar mhw

icon颜色

parent bcd6a934
...@@ -170,7 +170,12 @@ export default { ...@@ -170,7 +170,12 @@ export default {
container.style.border = '1px solid lightgray' container.style.border = '1px solid lightgray'
fullDom.classList.remove('el-icon-close') fullDom.classList.remove('el-icon-close')
fullDom.classList.add('el-icon-full-screen') fullDom.classList.add('el-icon-full-screen')
document.querySelector('.full').style.color = '#000'
document.querySelector('.down').style.color = '#000'
} else { } else {
document.querySelector('.full').style.color = '#fff'
document.querySelector('.down').style.color = '#fff'
fullDom.classList.remove('el-icon-full-screen') fullDom.classList.remove('el-icon-full-screen')
fullDom.classList.add('el-icon-close') fullDom.classList.add('el-icon-close')
container.style.height = '100%'; container.style.height = '100%';
...@@ -245,24 +250,24 @@ export default { ...@@ -245,24 +250,24 @@ export default {
.full{ .full{
width: 20px; width: 20px;
height: 20px; height: 20px;
background: #0092FF; /* background: #0092FF; */
position: absolute; position: absolute;
right: 10px; right: 10px;
top: 10px; top: 10px;
font-size: 20px; font-size: 20px;
color: #fff; /* color: #fff; */
border-radius: 5px; border-radius: 5px;
/* transition: all 0.5s; */ /* transition: all 0.5s; */
} }
.down{ .down{
width: 20px; width: 20px;
height: 20px; height: 20px;
background: #0092FF; /* background: #0092FF; */
position: absolute; position: absolute;
right: 40px; right: 40px;
top: 10px; top: 10px;
font-size: 20px; font-size: 20px;
color: #fff; /* color: #fff; */
border-radius: 5px; border-radius: 5px;
} }
</style> </style>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment