Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Explicit font color inheritance fix for .fossil-tooltip elements to fix it for a couple skins, and added some contrast to those widgets in the default skin. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
e05bbdec0a62ffe0a488180764294082 |
| User & Date: | stephan 2020-08-30 19:07:06.432 |
Context
|
2020-08-30
| ||
| 19:16 | Nigh-imperceptible alignment tweak on the help buttons. ... (check-in: 28b1718bfc user: stephan tags: trunk) | |
| 19:07 | Explicit font color inheritance fix for .fossil-tooltip elements to fix it for a couple skins, and added some contrast to those widgets in the default skin. ... (check-in: e05bbdec0a user: stephan tags: trunk) | |
| 18:58 | Reintroduced the legacy wysiwyg wiki editor as an optional element which can be plugged in via the skin if desired. Several semi-related "code-adjacent" tweaks and improvements. ... (check-in: 03a64a39ad user: stephan tags: trunk) | |
Changes
Changes to skins/default/css.txt.
| ︙ | ︙ | |||
222 223 224 225 226 227 228 |
}
span.submenuctrl {
white-space: nowrap;
}
div.submenu label {
white-space: nowrap;
}
| > > | | 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 |
}
span.submenuctrl {
white-space: nowrap;
}
div.submenu label {
white-space: nowrap;
}
.fossil-tooltip.help-buttonlet-content {
background-color: lightyellow;
}
@media screen and (max-width: 600px) {
/* Spacing for mobile */
body {
padding-left: 4px;
padding-right: 4px;
}
.title {
|
| ︙ | ︙ |
Changes to src/default.css.
| ︙ | ︙ | |||
1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 |
border: 1px solid black;
border-radius: 0.25em;
position: absolute;
display: inline-block;
z-index: 19/*below default skin's hamburger popup*/;
box-shadow: -0.15em 0.15em 0.2em rgba(0, 0, 0, 0.75);
background-color: inherit;
}
.fossil-toast-message {
/* "toast"-style popup message.
See fossil.popupwidget:toast() */
position: absolute;
display: block;
| > | 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 |
border: 1px solid black;
border-radius: 0.25em;
position: absolute;
display: inline-block;
z-index: 19/*below default skin's hamburger popup*/;
box-shadow: -0.15em 0.15em 0.2em rgba(0, 0, 0, 0.75);
background-color: inherit;
color: inherit;
}
.fossil-toast-message {
/* "toast"-style popup message.
See fossil.popupwidget:toast() */
position: absolute;
display: block;
|
| ︙ | ︙ | |||
1368 1369 1370 1371 1372 1373 1374 |
selector here to be certain that this class's style overrides
that of fossil-tooltip.
*/
.fossil-tooltip.help-buttonlet-content {
cursor: default;
text-align: left;
border-style: outset;
| < | 1369 1370 1371 1372 1373 1374 1375 1376 |
selector here to be certain that this class's style overrides
that of fossil-tooltip.
*/
.fossil-tooltip.help-buttonlet-content {
cursor: default;
text-align: left;
border-style: outset;
}
|