Overview
| Comment: | Fix CSS selector | 
|---|---|
| Timelines: | family | ancestors | descendants | both | trunk | 
| Files: | files | file ages | folders | 
| SHA3-256: | d637a2767f994a2b8d3bba7f9b61f42f | 
| User & Date: | joel on 2019-04-14 15:35:35 | 
| Other Links: | manifest | tags | 
Context
| 2019-04-16 | ||
| 03:02 | Tweak dialogue/say tag output check-in: 9922a46b user: joel tags: trunk | |
| 2019-04-14 | ||
| 15:35 | Fix CSS selector check-in: d637a276 user: joel tags: trunk | |
| 15:34 | Prevent dt tag from being auto-wrapped in p tag check-in: cde7f02c user: joel tags: trunk | |
Changes
Modified web-extra/martin.css.pp from [dfbb1609] to [8dbe8d2a].
| ︙ | ︙ | |||
| 665 666 667 668 669 670 671 | 
        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;
        }
 | | | 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 | 
        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;
 | 
| ︙ | ︙ |