fix: background color of BatchUpgrader in dark mode (#554)

This commit is contained in:
WangYK 2024-09-16 13:33:17 +08:00 committed by GitHub
parent 44c3180df7
commit a14f16eeef
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -239,16 +239,18 @@ async function performUpgrade() {
</AModal>
</template>
<style scoped lang="less">
<style lang="less">
.dark {
:deep(.core-upgrade-log-container) {
.core-upgrade-log-container {
background-color: rgba(0, 0, 0, 0.84);
}
}
</style>
<style scoped lang="less">
:deep(.core-upgrade-log-container) {
height: 320px;
overflow: scroll;
overflow-y: auto;
background-color: #f3f3f3;
border-radius: 4px;
margin-top: 15px;