🐛 Fix(custom): fix the release note css under dark mode

This commit is contained in:
Kuingsmile
2026-01-14 10:40:31 +08:00
parent 3cc30c86f7
commit 4ffa72c660
2 changed files with 19 additions and 32 deletions

View File

@@ -2496,33 +2496,3 @@ export default { name: 'SettingPage' }
</script> </script>
<style scoped src="./css/PicgoSetting.css"></style> <style scoped src="./css/PicgoSetting.css"></style>
<style scoped>
.input-with-icon {
position: relative;
display: flex;
align-items: center;
width: 100%;
}
.input-with-icon .form-input {
padding-right: 2.5rem;
}
.icon-btn {
position: absolute;
right: 0.75rem;
top: 50%;
transform: translateY(-50%);
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
color: var(--color-text-secondary);
transition: color 0.2s ease;
}
.icon-btn:hover {
color: var(--color-text-primary);
}
</style>

View File

@@ -3179,8 +3179,8 @@ small {
max-height: 195px; max-height: 195px;
font-size: 0.9375rem; font-size: 0.9375rem;
line-height: 1.5; line-height: 1.5;
background: #f8fafc; background: var(--color-background-tertiary);
color: #475569; color: var(--color-text-secondary);
} }
.notes-body :deep(h1), .notes-body :deep(h1),
@@ -3232,3 +3232,20 @@ small {
padding: 0; padding: 0;
background: transparent; background: transparent;
} }
.icon-btn {
position: absolute;
right: 0.75rem;
top: 50%;
transform: translateY(-50%);
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
color: var(--color-text-secondary);
transition: color 0.2s ease;
}
.icon-btn:hover {
color: var(--color-text-primary);
}