Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Make sure file names in file browser don't wrap by adding white-space property to default CSS. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
b83278f6ff6a95af77e53f8c222074dd |
| User & Date: | dmitry 2012-11-06 18:38:19.440 |
Context
|
2012-11-06
| ||
| 19:42 | Make sure that pending deletes from "fossil rm" operations are preserved across a "fossil update". ... (check-in: 28272fa125 user: drh tags: trunk) | |
| 18:38 | Make sure file names in file browser don't wrap by adding white-space property to default CSS. ... (check-in: b83278f6ff user: dmitry tags: trunk) | |
| 18:31 | When trying to create a directory, if mkdir fails, make sure the directory doesn't already exist before giving up and reporting an error. ... (check-in: bc74a8171d user: drh tags: trunk) | |
Changes
Changes to src/style.c.
| ︙ | ︙ | |||
665 666 667 668 669 670 671 672 673 674 675 676 677 678 |
@ width: 24% ;
@ vertical-align: top;
},
{ "ul.browser",
"format for the list in the file browser",
@ margin-left: 0.5em;
@ padding-left: 0.5em;
},
{ "table.login_out",
"table format for login/out label/input table",
@ text-align: left;
@ margin-right: 10px;
@ margin-left: 10px;
@ margin-top: 10px;
| > | 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 |
@ width: 24% ;
@ vertical-align: top;
},
{ "ul.browser",
"format for the list in the file browser",
@ margin-left: 0.5em;
@ padding-left: 0.5em;
@ white-space: nowrap;
},
{ "table.login_out",
"table format for login/out label/input table",
@ text-align: left;
@ margin-right: 10px;
@ margin-left: 10px;
@ margin-top: 10px;
|
| ︙ | ︙ |