Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Gave the line-number popup (and related popups) a z-level below that of the default skin's hamburger menu. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
bbef8ce398703cb06e79c0659fd1c2cc |
| User & Date: | stephan 2020-08-20 20:40:30.288 |
Context
|
2020-08-20
| ||
| 21:15 | Same as [31af8053] but in src/copybtn.js, upon which code fossil.copybutton.js was apparently based. This other file may be going away soon, but until then, it avoids a warning. ... (check-in: c0cb0b9d33 user: wyoung tags: trunk) | |
| 20:40 | Gave the line-number popup (and related popups) a z-level below that of the default skin's hamburger menu. ... (check-in: bbef8ce398 user: stephan tags: trunk) | |
| 20:25 | Added a "window." reference to a global variable in fossil.dom.js to make explicit where the variable is coming from. All the surrounding code does this, and the fix quiets a complaint from GCC. ... (check-in: 31af805348 user: wyoung tags: trunk) | |
Changes
Changes to src/default.css.
| ︙ | ︙ | |||
1248 1249 1250 1251 1252 1253 1254 |
.fossil-tooltip {
text-align: center;
padding: 0.2em 1em;
border: 1px solid black;
border-radius: 0.25em;
position: absolute;
display: inline-block;
| | | 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 |
.fossil-tooltip {
text-align: center;
padding: 0.2em 1em;
border: 1px solid black;
border-radius: 0.25em;
position: absolute;
display: inline-block;
z-index: 19/*below default skin's hamburger popup*/;
box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.75);
background-color: inherit;
}
.fossil-toast-message {
/* "toast"-style popup message.
See fossil.popupwidget:toast() */
|
| ︙ | ︙ |