Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Set margin and padding to zero on tree-view list items. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
f06b592815b84e36b1746551aeb4ed2d |
| User & Date: | joel 2014-02-11 16:03:56.998 |
Context
|
2014-02-11
| ||
| 17:02 | Clarify the meaning of "Plaintext for timeline comments" on the Admin/Timeline configuration page. ... (check-in: 3587e4589e user: drh tags: trunk) | |
| 16:03 | Set margin and padding to zero on tree-view list items. ... (check-in: f06b592815 user: joel tags: trunk) | |
| 04:53 | Update the built-in SQLite to the version 3.8.3.1 release candidate. ... (check-in: 34aef781b5 user: drh tags: trunk) | |
Changes
Changes to src/style.c.
| ︙ | ︙ | |||
792 793 794 795 796 797 798 799 800 801 802 803 804 805 |
"tree-view lists below the root",
@ position: relative;
@ margin: 0 0 0 21px;
},
{ ".filetree li",
"tree-view lists items",
@ position: relative;
},
{ ".filetree li li:before",
"tree-view node lines",
@ content: '';
@ position: absolute;
@ top: -.8em;
@ left: -14px;
| > > | 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 |
"tree-view lists below the root",
@ position: relative;
@ margin: 0 0 0 21px;
},
{ ".filetree li",
"tree-view lists items",
@ position: relative;
@ margin: 0;
@ padding: 0;
},
{ ".filetree li li:before",
"tree-view node lines",
@ content: '';
@ position: absolute;
@ top: -.8em;
@ left: -14px;
|
| ︙ | ︙ |