Overview
Comment:Better fix for pre blocks
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk | stable
Files: files | file ages | folders
SHA3-256: 1e18a005b5b35ee8ed881c21bc1de84c088072c304bd03f7a1714f4a55e4d205
User & Date: bohwaz on 2022-07-19 00:04:07
Other Links: manifest | tags
Context
2022-07-19
00:04
Improve website forms check-in: 995682c1d3 user: bohwaz tags: trunk, stable
00:04
Better fix for pre blocks check-in: 1e18a005b5 user: bohwaz tags: trunk, stable
2022-07-18
23:56
Add scroll to code blocks check-in: 25b1abc1db user: bohwaz tags: trunk, stable
Changes

Modified src/www/skel-dist/content.css from [bee3718580] to [5332555b7f].

56
57
58
59
60
61
62
63
64
65
66
67
68

69
70
71
72
73

74
75
76
77
78
79
80
    display: grid;
    grid-template-columns: .1fr .9fr;
    border-top: 2px solid #999;
    margin-top: 1rem;
    padding-top: 1rem;
}

.web-content code {
    background: rgba(100, 100, 100, 0.2);
    padding: .2rem;
}

.web-content pre code {

    display: block;
}

.web-content pre, .web-content table {
    overflow-x: auto;

}

.web-content dl.footnotes dd {
    margin: 0;
    margin-bottom: 1rem;
}








|





>
|




>







56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
    display: grid;
    grid-template-columns: .1fr .9fr;
    border-top: 2px solid #999;
    margin-top: 1rem;
    padding-top: 1rem;
}

.web-content code, .web-content pre {
    background: rgba(100, 100, 100, 0.2);
    padding: .2rem;
}

.web-content pre code {
    background: unset;
    padding: unset;
}

.web-content pre, .web-content table {
    overflow-x: auto;
    max-width: 100%;
}

.web-content dl.footnotes dd {
    margin: 0;
    margin-bottom: 1rem;
}