adding tooltip with which class has conflicts

This commit is contained in:
Sriram Hariharan
2023-03-22 22:48:14 -05:00
parent 2ddfde2642
commit ad85c2b816
6 changed files with 71 additions and 11 deletions

View File

@@ -21,8 +21,37 @@
.isConflict {
* {
color: $speedway_brick;
text-decoration: line-through !important;
color: $speedway_brick !important;
font-weight: normal !important;
text-decoration: line-through !important;
}
}
.row {
.conflictTooltip {
position: relative;
display: none;
.body {
position: absolute;
left: 40px;
display: flex;
flex-direction: column;
background: black;
padding: 8px;
width: 120px;
border-radius: 0px 5px 5px 0px;
opacity: 0.5;
div {
color: white !important;
text-decoration: none !important;
font-weight: normal !important;
}
}
}
&:hover {
.conflictTooltip {
display: initial;
}
}
}