Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Removed some hard tabs in CSS injected by copy/paste from the browser dev tools. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
1bfa36867dd94b07a20f5ab82bc741ee |
| User & Date: | stephan 2020-08-25 07:07:45.798 |
Context
|
2020-08-25
| ||
| 13:47 | Separately show original and edited user/date ... (check-in: 39a550c8d5 user: andygoth tags: trunk) | |
| 07:07 | Removed some hard tabs in CSS injected by copy/paste from the browser dev tools. ... (check-in: 1bfa36867d user: stephan tags: trunk) | |
| 07:00 | The fossil.XYZ.js-using pages now include all of those APIs when running in bundled JS mode, as that provides far lower aggregate over-the-wire and HTTP request counts. Added ? popup help buttons in wikiedit/fileedit to replace title-attribute hoverhelp (popup positioning can still be improved, though). ... (check-in: 34f7fd72c6 user: stephan tags: trunk) | |
Changes
Changes to src/default.css.
| ︙ | ︙ | |||
1307 1308 1309 1310 1311 1312 1313 |
child content (plain text and/or DOM elements) gets moved out of
the DOM and shown in a singleton popup when they are clicked. They
may be SPAN elements if their children are all inline elements,
otherwise they must be DIVs (block elements) so that nesting of
block-element content is legal.
*/
.help-buttonlet {
| | | | | | | | | | | | | | | | 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 |
child content (plain text and/or DOM elements) gets moved out of
the DOM and shown in a singleton popup when they are clicked. They
may be SPAN elements if their children are all inline elements,
otherwise they must be DIVs (block elements) so that nesting of
block-element content is legal.
*/
.help-buttonlet {
display: inline-block;
min-width: 1rem;
max-width: 1rem;
min-height: 1rem;
max-height: 1rem;
font-size: 0.9em;
border-radius: 0.5rem;
background-color: rgba(54, 54, 255,1);
color: rgb(255, 255, 255);
cursor: pointer;
font-family: monspace;
text-align: center;
margin: 0 0 0 0.35em;
border-width: 1px;
border-style: outset;
font-weight: 700;
overflow: hidden;
}
.help-buttonlet::before {
content: "?";
}
|
| ︙ | ︙ |