[mod] preferences: a tooltip is shown when the mouse is over the engine names

This commit is contained in:
Alexandre Flament 2021-03-16 16:47:05 +01:00
parent bfd4e1b342
commit d648001688
21 changed files with 178 additions and 19 deletions

View file

@ -239,3 +239,9 @@ p.btn.btn-default{
.highlight {
background-color: transparent !important;
}
/* engine tooltip */
.engine-tooltip {
border: 1px solid #3d3f43;
background: #1d1f21 ;
}

View file

@ -13,3 +13,19 @@ p {
input.cursor-text {
margin: 10px 0;
}
.engine-tooltip {
display: none;
position: absolute;
padding: 0.5rem 1rem;
margin: 0rem 0 0 2rem;
border: 1px solid #ddd;
background: white;
font-size: 14px;
font-weight: normal;
z-index: 1000000;
}
th:hover .engine-tooltip, .engine-tooltip:hover {
display: inline-block;
}

View file

@ -1,3 +1,19 @@
.table > tbody > tr > td, .table > tbody > tr > th {
vertical-align: middle !important;
}
.engine-tooltip {
display: none;
position: absolute;
padding: 0.5rem 1rem;
margin: 0rem 0 0 2rem;
border: 1px solid #ddd;
background: white;
font-size: 14px;
font-weight: normal;
z-index: 1000000;
}
th:hover .engine-tooltip, .engine-tooltip:hover {
display: inline-block;
}