Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Add a box-shadow to the default CSS for tooltips. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | tooltip-experiments |
| Files: | files | file ages | folders |
| SHA3-256: |
22082e3ff2f905bb1e226fa0f5e7ea45 |
| User & Date: | drh 2019-05-23 01:55:31.989 |
Context
|
2019-05-23
| ||
| 02:25 | Avoid changing "r=TAG" into "t=TAG" and "rel" in the URL of a /timeline. ... (check-in: c3b223b71d user: drh tags: tooltip-experiments) | |
| 01:55 | Add a box-shadow to the default CSS for tooltips. ... (check-in: 22082e3ff2 user: drh tags: tooltip-experiments) | |
|
2019-05-22
| ||
| 23:24 | Add a non-linked "type" name in front of all tooltips. Style the foreground color and border color based on the default font color. ... (check-in: 2bfa69a301 user: drh tags: tooltip-experiments) | |
Changes
Changes to src/default_css.txt.
| ︙ | ︙ | |||
200 201 202 203 204 205 206 207 208 209 210 211 212 213 |
.tl-tooltip {
text-align: center;
padding: 5px 1em;
border: 1px solid black;
border-radius: 6px;
position: absolute;
z-index: 100;
}
span.tagDsp {
font-weight: bold;
}
span.wikiError {
font-weight: bold;
| > | 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 |
.tl-tooltip {
text-align: center;
padding: 5px 1em;
border: 1px solid black;
border-radius: 6px;
position: absolute;
z-index: 100;
box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.75);
}
span.tagDsp {
font-weight: bold;
}
span.wikiError {
font-weight: bold;
|
| ︙ | ︙ |