Skip to content

Commit 5c33e1c

Browse files
committed
Added Dark Mode Support for the Hint Pop-Up in the Customer Portal and Updated the font color for the Customer Login Panel Hint Pop-Up to dark black to make it more visible to the users.
1 parent 45ebf96 commit 5c33e1c

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

WebApplication2/Customer/Pages/CustomerComponent.aspx

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,7 @@
406406
}
407407
}
408408
409-
.hint-popup {
409+
.hint-popup {
410410
position: fixed;
411411
bottom: 20px;
412412
right: 20px;
@@ -437,6 +437,18 @@
437437
color: #ff0000;
438438
}
439439
440+
/* Dark mode styles for hint-popup */
441+
.dark-mode .hint-popup {
442+
background-color: #2b2b2b;
443+
border: 1px solid #555;
444+
color: #f0f0f0;
445+
}
446+
.dark-mode .hint-popup .close-btn {
447+
color: #f0f0f0;
448+
}
449+
.dark-mode .hint-popup .close-btn:hover {
450+
color: #ff0000;
451+
}
440452
</style>
441453
</head>
442454
<body class="light-mode">

WebApplication2/Customer/Pages/login.aspx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,7 @@
118118
padding: 20px;
119119
z-index: 1000;
120120
display: none; /* Initially hidden */
121+
color: #000;
121122
}
122123
123124
.hint-popup-content {

0 commit comments

Comments
 (0)