Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Added clear:both to HR elements, primarily to fix right-floating README.txt on the /dir page in some skins. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
a4c1b36ee6e0d875e05ae56c73f26cb9 |
| User & Date: | stephan 2020-08-12 12:07:02.621 |
Context
|
2020-08-12
| ||
| 12:56 | Improved detection of potential read/write txn conflicts. Hold a write transaction on the server-side for the duration of an /xfer request, to avoid unexpected SQLITE_BUSY errors. ... (check-in: d9543f4c2c user: drh tags: trunk) | |
| 12:07 | Added clear:both to HR elements, primarily to fix right-floating README.txt on the /dir page in some skins. ... (check-in: a4c1b36ee6 user: stephan tags: trunk) | |
| 11:44 | Minor style consistency/layout tweaks to wikiedit and fileedit. ... (check-in: e7c348f1d9 user: stephan tags: trunk) | |
Changes
Changes to src/default.css.
| ︙ | ︙ | |||
946 947 948 949 950 951 952 953 954 955 956 957 958 959 |
textarea {
max-width: 95%;
}
img {
max-width: 100%;
height: auto;
}
/**
.tab-xxx: styles for fossil.tabs.js.
*/
.tab-container {
width: 100%;
display: flex;
| > > > > | 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 |
textarea {
max-width: 95%;
}
img {
max-width: 100%;
height: auto;
}
hr {
/* Needed to keep /dir README.txt from floating right in some skins */
clear: both;
}
/**
.tab-xxx: styles for fossil.tabs.js.
*/
.tab-container {
width: 100%;
display: flex;
|
| ︙ | ︙ |