Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Add CSS rules to limit the width of input and textarea items to 95% of the available screen width. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
dbcfcef7acedd355b5bcaef2315b7ad8 |
| User & Date: | drh 2020-05-22 00:27:03.361 |
Context
|
2020-05-22
| ||
| 12:26 | For Download links, only include the tail-name of the file in the Content-Disposition header. ... (check-in: 0feb412869 user: drh tags: trunk) | |
| 00:27 | Add CSS rules to limit the width of input and textarea items to 95% of the available screen width. ... (check-in: dbcfcef7ac user: drh tags: trunk) | |
|
2020-05-21
| ||
| 23:59 | Change a case of isalnum() to fossil_isalnum(). ... (check-in: 02e7c86b3f user: drh tags: trunk) | |
Changes
Changes to src/default_css.txt.
| ︙ | ︙ | |||
858 859 860 861 862 863 864 |
// border: 1px solid black;
// vertical-align: top;
// }
// #setup_skinedit_css_defaults > tbody > tr > td:nth-of-type(2) > div {
// max-width: 30em;
// overflow: auto;
// }
| > > > > > > | 858 859 860 861 862 863 864 865 866 867 868 869 870 |
// border: 1px solid black;
// vertical-align: top;
// }
// #setup_skinedit_css_defaults > tbody > tr > td:nth-of-type(2) > div {
// max-width: 30em;
// overflow: auto;
// }
input {
max-width: 95%;
}
textarea {
max-width: 95%;
}
|