Skip to content

Commit

Permalink
updated css for tooltips
Browse files Browse the repository at this point in the history
  • Loading branch information
polarwinkel committed Apr 19, 2021
1 parent 9893061 commit ff7be67
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion mdtex2html/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
block-equations need to start with $$ or \[
inline-equations start with \( or $
version 1.2.0beta1
version 1.2.0
(c) 2020-2021 by Dirk Winkel
Expand Down
8 changes: 6 additions & 2 deletions static/polar.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* v1.1.1 */
/* for proper form-sizing */
* {
box-sizing: border-box;
Expand Down Expand Up @@ -63,10 +64,13 @@ textarea {
}
/* tooltips */
.tooltip .tooltiptext {
visibility: hidden;
display: none;
}
.tooltip:hover .tooltiptext {
visibility: visible;
display: inline;
border-radius: 0.3em;
background-color: #777;
position: fixed;
}
/* print */
@page {
Expand Down

0 comments on commit ff7be67

Please sign in to comment.