Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d6480016 authored by Alexandre Flament's avatar Alexandre Flament
Browse files

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

parent bfd4e1b3
Loading
Loading
Loading
Loading
+15 −0
Original line number Diff line number Diff line
@@ -888,3 +888,18 @@ 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;
}
+20 −0
Original line number Diff line number Diff line
@@ -861,6 +861,21 @@ 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;
}
/*Global*/
body {
  background: #1d1f21 none !important;
@@ -1084,3 +1099,8 @@ p.btn.btn-default {
.highlight {
  background-color: transparent !important;
}
/* engine tooltip */
.engine-tooltip {
  border: 1px solid #3d3f43;
  background: #1d1f21;
}
+0 −0

File changed.

Preview suppressed by a .gitattributes entry or the file's encoding is unsupported.

Loading