Skip to content

Commit 294056a

Browse files
committed
fixed z-index bug
1 parent e802431 commit 294056a

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

app/components/ServicesDashboard.jsx

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,6 @@ const ServicesDashboard = (props) => {
3636
return buttonStore;
3737
};
3838

39-
const tooltipWriteup = 'Please provide separate databases for additional microservice applications.';
40-
4139
return (
4240
<div className="servicesDashboardContainer">
4341
<div className="left">
@@ -46,10 +44,6 @@ const ServicesDashboard = (props) => {
4644
<div className="left-top">
4745
<h2 className="dashboardHeader">
4846
Your Databases
49-
<sup className="tooltip">
50-
&#9432;
51-
<div className="tooltiptext">{tooltipWriteup}</div>
52-
</sup>
5347
</h2>
5448
{renderServiceList(serviceList)}
5549
</div>

app/index.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -384,6 +384,7 @@ select {
384384
width: 100%;
385385
height: 100%;
386386
background:rgba(0,0,0,.5);
387+
z-index: 1;
387388
}
388389

389390
#modalContent {
@@ -392,7 +393,7 @@ select {
392393
left: 50%;
393394
margin-left: -500px;
394395
margin-top: -380px;
395-
z-index: 1;
396+
z-index: 2;
396397
width: 1000px;
397398
height: 760px;
398399
background: #333;

0 commit comments

Comments
 (0)