Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fixed (removed) wrapping of .input-with-label elements. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | wikiedit-wysiwyg-legacy |
| Files: | files | file ages | folders |
| SHA3-256: |
b012ecb7143707b29b9ef4d3a1f7698f |
| User & Date: | stephan 2020-08-30 15:50:22.418 |
Context
|
2020-08-30
| ||
| 15:57 | fossil.dom.attr(target,key,val) now supports any number of key/value pairs to set in a single call. ... (check-in: a89f116e11 user: stephan tags: wikiedit-wysiwyg-legacy) | |
| 15:50 | Fixed (removed) wrapping of .input-with-label elements. ... (check-in: b012ecb714 user: stephan tags: wikiedit-wysiwyg-legacy) | |
| 13:47 | Some wysiwyg code reduction, balanced out by more docs ;). ... (check-in: 79cb2df73c user: stephan tags: wikiedit-wysiwyg-legacy) | |
Changes
Changes to src/default.css.
| ︙ | ︙ | |||
1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 |
.input-with-label {
border: 1px inset #808080;
border-radius: 0.25em;
padding: 0.25em 0.4em;
margin: 0 0.5em;
display: inline-block;
cursor: default;
}
.input-with-label > * {
vertical-align: middle;
}
.input-with-label > label {
display: inline; /* some skins set label display to block! */
}
| > | 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 |
.input-with-label {
border: 1px inset #808080;
border-radius: 0.25em;
padding: 0.25em 0.4em;
margin: 0 0.5em;
display: inline-block;
cursor: default;
white-space: nowrap;
}
.input-with-label > * {
vertical-align: middle;
}
.input-with-label > label {
display: inline; /* some skins set label display to block! */
}
|
| ︙ | ︙ |