Skip to content

Commit

Permalink
fix text select css
Browse files Browse the repository at this point in the history
  • Loading branch information
1kuceraj committed Sep 24, 2024
1 parent 4599cc2 commit 9244420
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion css/cursor.css
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,18 @@ input[type="checkbox"], input[type="radio"], input[type="file"] {
cursor: url('../img/assets/custom_cursor_pointer.png'), auto;
}

/* Ensure text selection still shows the text cursor */
/* Text selection styles */
::selection {
background-color: #b3d4fc; /* Light blue background */
color: #000; /* Black text color */
text-shadow: none; /* Remove any text shadow */
cursor: text;
}

::-moz-selection {
background-color: #b3d4fc; /* Light blue background */
color: #000; /* Black text color */
text-shadow: none; /* Remove any text shadow */
cursor: text;
}

Expand Down

0 comments on commit 9244420

Please sign in to comment.