Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Add horizontal lines connecting nodes to their parent directory. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | csstree |
| Files: | files | file ages | folders |
| SHA1: |
19a8ce3732c435f6eb41fd5c7e67d7fb |
| User & Date: | joel 2014-01-05 21:43:03.144 |
Context
|
2014-01-06
| ||
| 02:36 | Lines now go directly from directories to child nodes, do not pass go, do not collect $200. Closed-Leaf check-in: f83e0d2123 user: joel tags: csstree | |
|
2014-01-05
| ||
| 21:43 | Add horizontal lines connecting nodes to their parent directory. check-in: 19a8ce3732 user: joel tags: csstree | |
| 04:18 | Tweak styles. check-in: 272b684d90 user: joel tags: csstree | |
Changes
Changes to src/style.c.
| ︙ | ︙ | |||
788 789 790 791 792 793 794 |
@ display: inline;
},
{ ".filetree .subdir ul",
"file tree lists below subdir",
@ display: block;
@ margin: 0 0 .5em 7px;
@ padding: .2em 0 0 12px;
| | > > > > > > > > > > > | 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 |
@ display: inline;
},
{ ".filetree .subdir ul",
"file tree lists below subdir",
@ display: block;
@ margin: 0 0 .5em 7px;
@ padding: .2em 0 0 12px;
@ border-left: 2px solid #ccc;
},
{ ".filetree .subdir li",
"file tree lists items below subdir",
@ position: relative;
@ display: block;
@ margin: .2em 0;
@ padding: 0;
},
{ ".filetree .subdir li:before",
"file tree horizontal lines connecting children to parent",
@ content: '';
@ position: absolute;
@ top: .5em;
@ left: -12px;
@ margin-top: 1px;
@ width: 10px;
@ border-top: 2px solid #ccc;
},
{ ".filetree a",
"file tree links",
@ margin-right: .5em;
},
{ ".filetree a:before",
"file tree link icons",
@ margin-right: 5px;
|
| ︙ | ︙ |