Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Cleanup tree-view CSS comments. No changes to code. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
4ee58093dd9e19cbb13701b3b6fa1abd |
| User & Date: | joel 2014-01-06 09:16:36.072 |
Context
|
2014-01-06
| ||
| 23:42 | Add JS for collapsing/expanding directories in tree-view. ... (check-in: b66100d3ed user: joel tags: trunk) | |
| 10:36 | Merge trunk ... (check-in: 99af4d2a12 user: jan.nijtmans tags: sqlite-min-to-3.7.17) | |
| 09:16 | Cleanup tree-view CSS comments. No changes to code. ... (check-in: 4ee58093dd user: joel tags: trunk) | |
| 03:19 | Merge in the csstree branch, providing a better look and more control over the tree-view. ... (check-in: 1264375bb1 user: drh tags: trunk) | |
Changes
Changes to src/style.c.
| ︙ | ︙ | |||
770 771 772 773 774 775 776 |
{ "ul.browser",
"format for the list in the file browser",
@ margin-left: 0.5em;
@ padding-left: 0.5em;
@ white-space: nowrap;
},
{ ".filetree",
| | | | | | | | | | | | 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 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 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 |
{ "ul.browser",
"format for the list in the file browser",
@ margin-left: 0.5em;
@ padding-left: 0.5em;
@ white-space: nowrap;
},
{ ".filetree",
"tree-view file browser",
@ margin: 1em 0;
@ line-height: 1.5;
},
{ ".filetree ul",
"tree-view lists",
@ display: inline;
@ margin: 0;
@ padding: 0;
},
{ ".filetree li",
"tree-view list items",
@ display: inline;
},
{ ".filetree .subdir ul",
"tree-view lists below subdir",
@ position: relative;
@ display: block;
@ margin: 0 0 0 21px;
@ padding: 0;
},
{ ".filetree .subdir li",
"tree-view lists items below subdir",
@ position: relative;
@ display: block;
@ margin: 0;
@ padding: 0;
},
{ ".filetree .subdir li:before",
"tree-view node lines",
@ content: '';
@ position: absolute;
@ top: -.8em;
@ left: -14px;
@ width: 14px;
@ height: 1.5em;
@ border-left: 2px solid #aaa;
@ border-bottom: 2px solid #aaa;
},
{ ".filetree .subdir > ul ul:before",
"tree-view directory lines",
@ content: '';
@ position: absolute;
@ top: -1.5em;
@ bottom: 0;
@ left: -35px;
@ border-left: 2px solid #aaa;
},
{ ".filetree .subdir li:last-child > ul:before",
"hide lines for last-child directories",
@ display: none;
},
{ ".filetree a",
"tree-view links",
@ position: relative;
@ z-index: 1;
@ display: inline-block;
@ min-height: 16px;
@ margin-right: .5em;
@ padding-left: 21px;
@ background-image: url(data:image/gif;base64,R0lGODlhEAAQAJEAAP\/\/\/yEhIf\/\/\/wAAACH5BAEHAAIALAAAAAAQABAAAAIvlIKpxqcfmgOUvoaqDSCxrEEfF14GqFXImJZsu73wepJzVMNxrtNTj3NATMKhpwAAOw==);
@ background-position: center left;
@ background-repeat: no-repeat;
},
{ ".filetree .dir > a",
"tree-view directory links",
@ background-image: url(data:image/gif;base64,R0lGODlhEAAQAJEAAP/WVCIiIv\/\/\/wAAACH5BAEHAAIALAAAAAAQABAAAAInlI9pwa3XYniCgQtkrAFfLXkiFo1jaXpo+jUs6b5Z/K4siDu5RPUFADs=);
},
{ "table.login_out",
"table format for login/out label/input table",
@ text-align: left;
@ margin-right: 10px;
@ margin-left: 10px;
|
| ︙ | ︙ |