Skip to content

Commit 0ee4c6a

Browse files
Merge pull request #3736 from OneCommunityGlobal/venkataramanan_fix_greying_out_in_profile_page
Venkataramanan - Change common styling applied to modal-backdrop class to be specific …
2 parents a63d8ee + b8c1117 commit 0ee4c6a

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

src/components/BMDashboard/Issues/IssueDashboard.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ td.text-end .dropdown .dropdown-menu {
9595
left: auto !important;
9696
}
9797

98-
.modal-backdrop {
98+
.issues-modal-backdrop {
9999
position: fixed !important;
100100
top: 0 !important;
101101
left: 0 !important;
@@ -109,7 +109,7 @@ td.text-end .dropdown .dropdown-menu {
109109
}
110110

111111

112-
.modal-dialog {
112+
.issues-modal-backdrop .modal-dialog {
113113
border-radius: 8px;
114114
max-width: 400px;
115115
width: 90%;

src/components/BMDashboard/Issues/IssueDashboard.jsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ export default function IssueDashboard() {
271271

272272
{/* Rename Modal */}
273273
{showRenameModal && (
274-
<div className="modal-backdrop">
274+
<div className="issues-modal-backdrop">
275275
<div className={`modal-dialog `}>
276276
<div className={`modal-content p-3 ${darkMode ? 'bg-oxford-blue text-light' : ''}`}>
277277
<h5>Rename Issue</h5>
@@ -306,7 +306,7 @@ export default function IssueDashboard() {
306306

307307
{/* Delete Modal */}
308308
{showDeleteModal && (
309-
<div className="modal-backdrop">
309+
<div className="issues-modal-backdrop">
310310
<div className={`modal-dialog ${darkMode ? 'bg-dark text-light' : ''}`}>
311311
<div className={`modal-content p-3 ${darkMode ? 'bg-oxford-blue text-light' : ''}`}>
312312
<h5>Confirm Delete</h5>
@@ -338,7 +338,7 @@ export default function IssueDashboard() {
338338

339339
{/* Copy Modal */}
340340
{showCopyModal && (
341-
<div className="modal-backdrop">
341+
<div className="issues-modal-backdrop">
342342
<div className={`modal-dialog ${darkMode ? 'bg-dark text-light' : ''}`}>
343343
<div className={`modal-content p-3 ${darkMode ? 'bg-oxford-blue text-light' : ''}`}>
344344
<h5>Confirm Copy</h5>

0 commit comments

Comments
 (0)