Overview
| Comment: | Fix CSS selector | 
|---|---|
| Timelines: | family | ancestors | descendants | both | trunk | 
| Files: | files | file ages | folders | 
| SHA3-256: | 74bf6fa00dbc59649c694bca4d7adead | 
| User & Date: | joel on 2019-06-20 00:33:41 | 
| Other Links: | manifest | tags | 
Context
| 2019-06-20 | ||
| 01:16 | Add space between list items (CSS) check-in: 3912ae79 user: joel tags: trunk | |
| 00:33 | Fix CSS selector check-in: 74bf6fa0 user: joel tags: trunk | |
| 00:20 | Fix disposition links in article headings when they appear in listings check-in: 4206e0ac user: joel tags: trunk | |
Changes
Modified web-extra/martin.css.pp from [8583f65e] to [b0c400f6].
| ︙ | ︙ | |||
| 753 754 755 756 757 758 759 | 
        section.entry-content {
            grid-area: main;
            /* Prevent content from overriding grid column sizing */
            /* See https://css-tricks.com/preventing-a-grid-blowout/ */
            min-width: 0;
        }
 | | | 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 | 
        section.entry-content {
            grid-area: main;
            /* Prevent content from overriding grid column sizing */
            /* See https://css-tricks.com/preventing-a-grid-blowout/ */
            min-width: 0;
        }
        section.entry-content > :first-child {
            margin-top: 0 !important;
        }
        article>:last-child::after {
            content: none;
            margin 0;
            display: none;
 | 
| ︙ | ︙ |