Change input icon button style

This commit is contained in:
Saoud Rizwan
2024-09-15 14:52:30 -04:00
parent 4a5e4bb35a
commit bff66a760b
3 changed files with 45 additions and 31 deletions

View File

@@ -125,3 +125,20 @@ vscode-dropdown::part(listbox) {
transition: none;
scrollbar-color: var(--vscode-scrollbarSlider-background) transparent;
}
/* Faded icon buttons in textfields */
.input-icon-button {
cursor: pointer;
opacity: 0.65;
}
.input-icon-button:hover {
opacity: 1;
}
.input-icon-button.disabled {
cursor: not-allowed;
opacity: 0.4;
}
.input-icon-button.disabled:hover {
opacity: 0.4;
}