Skip to content

Commit

Permalink
Merge pull request #2689 from Subhajit-2023-44/color
Browse files Browse the repository at this point in the history
Fixed input text color blends issue in feedback section !
  • Loading branch information
deepeshmlgupta authored Nov 3, 2024
2 parents 3634c35 + 944c6de commit ea32a8b
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
7 changes: 4 additions & 3 deletions faq.html
Original file line number Diff line number Diff line change
Expand Up @@ -732,7 +732,7 @@ <h3 class="faq-title">Submit Your Feedback or Ask a New Question</h3>
.form-input {
padding: 10px;
font-size: 1em;
border: 2px solid #0056b3;
border: 2px solid #0056b3;
border-radius: 5px;
outline: none;
background-color: white;
Expand All @@ -747,8 +747,9 @@ <h3 class="faq-title">Submit Your Feedback or Ask a New Question</h3>
}

.form-input:focus {
border-color: #4caf50; /* Green border on focus */
background-color: white; /* Slightly lighter background on focus */
border-color: #4caf50; /* Green border on focus */
background-color: rgb(0, 85, 160); /* Slightly lighter background on focus */

}

/* Button styles */
Expand Down
10 changes: 10 additions & 0 deletions new.css
Original file line number Diff line number Diff line change
Expand Up @@ -435,6 +435,16 @@ body.dark-mode {
cursor: pointer;
font-size: 1.1em;
transition: background-color 0.3s ease;
}
/* Form input styles */
.form-input {
padding: 10px;
font-size: 1em;
border: 2px solid #0056b3;
border-radius: 5px;
outline: none;
transition: background-color 0.3s ease, border-color 0.3s ease;

}

.submit-btn:hover {
Expand Down

0 comments on commit ea32a8b

Please sign in to comment.