Skip to content

Commit

Permalink
fix(prompt-field/toolbox-icons): Improve colors for disabled buttons
Browse files Browse the repository at this point in the history
- Ensure disabled prompt field buttons (like attach files) have appropriate colors and styles

Changes summary:
    - Made small improvements to the colors and styles of disabled prompt field buttons, such as the attach files button, for better visual feedback.
  • Loading branch information
itsmartashub committed Dec 21, 2024
1 parent be7f1e9 commit 2493c5f
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/sass/elements/_right--textarea.scss
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,22 @@ main form {
background-color: hsla(var(--accent-hsl) / 0.13) !important;
}

/* Disabled Attach files btn in Temporary chat */
button.h-8.rounded-lg[aria-disabled="true"]:has(svg) {
background-color: transparent;

// svg.text-white {
// color: orange !important;
// }

svg {
color: var(--c-txt) !important;
transition: none !important;
// color: red !important;
}
}


// span > button[aria-pressed="true"][aria-label="Search the web"]:has(svg) {
// svg {
// color: currentColor !important;
Expand Down

0 comments on commit 2493c5f

Please sign in to comment.