Skip to content

Commit 70bff2e

Browse files
committed
Added Dark Mode Support for the Hint Pop-Up in the Customer Portal.
1 parent 2c263cb commit 70bff2e

File tree

3 files changed

+19
-2
lines changed

3 files changed

+19
-2
lines changed

WebApplication2/Customer/Pages/CustomerComponent.aspx

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -437,6 +437,21 @@
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+
447+
.dark-mode .hint-popup .close-btn {
448+
color: #f0f0f0;
449+
}
450+
451+
.dark-mode .hint-popup .close-btn:hover {
452+
color: #ff0000;
453+
}
454+
440455
</style>
441456
</head>
442457
<body class="light-mode">

WebApplication2/Telecom_Customer_Management_System.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -259,6 +259,7 @@
259259
<ItemGroup>
260260
<None Include="packages.config" />
261261
<Content Include="Site.Master" />
262+
<None Include="Properties\PublishProfiles\telecom-customer-app - Web Deploy.pubxml" />
262263
<None Include="Web.Debug.config">
263264
<DependentUpon>Web.config</DependentUpon>
264265
</None>

WebApplication2/Web.config

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
<configuration>
77
<connectionStrings>
88
<add name="Milestone2DB_24"
9-
connectionString="Data Source=(localdb)\MSSQLLocalDB;Initial Catalog=Milestone2DB_24;Integrated Security=True"
10-
providerName="System.Data.SqlClient"/>
9+
connectionString="Server=telecom-db-server.database.windows.net;Database=TelecomCustomerDB;User Id=power-user-yehiarasheed;Password=Ma@rgol_is#5808;"
10+
providerName="System.Data.SqlClient" />
1111
</connectionStrings>
1212
<system.webServer>
1313
<defaultDocument>
@@ -19,6 +19,7 @@
1919
<system.web>
2020
<compilation debug="true" targetFramework="4.8" />
2121
<httpRuntime targetFramework="4.8" />
22+
<customErrors mode="Off"/>
2223
</system.web>
2324
<system.codedom>
2425
<compilers>

0 commit comments

Comments
 (0)