authorgravatar for pfg@pfg.pwpfg <pfg@pfg.pw> 2021-10-01 16:23:58-04:00
committergravatar for pfg@pfg.pwpfg <pfg@pfg.pw> 2021-10-01 16:23:58-04:00
logebdd9e871944051bbd1eaab1103bf2474690e919
tree1a49a38a16b881baece8a695d95968d132ddff4b
parentd5c5824c8031bedeb8c2394099fcf66d1b4efb79

fix style in th


1 files changed, 19 insertions(+), 13 deletions(-)

doc/langref.html.in+19-13
...@@ -196,6 +196,25 @@...@@ -196,6 +196,25 @@
196 visibility: visible;196 visibility: visible;
197 }197 }
198198
199 pre {
200 counter-reset: line;
201 }
202 pre span.line:before {
203 counter-increment: line;
204 content: counter(line);
205 display: inline-block;
206 padding-right: 1em;
207 width: 2em;
208 text-align: right;
209 color: #999;
210 }
211 th pre code {
212 background: none;
213 }
214 th span.line:before {
215 display: none;
216 }
217
199 @media (prefers-color-scheme: dark) {218 @media (prefers-color-scheme: dark) {
200 body{219 body{
201 background:#121212;220 background:#121212;
...@@ -274,19 +293,6 @@...@@ -274,19 +293,6 @@
274 color: #fff;293 color: #fff;
275 }294 }
276 }295 }
277
278 pre {
279 counter-reset: line;
280 }
281 pre span.line:before {
282 counter-increment: line;
283 content: counter(line);
284 display: inline-block;
285 padding-right: 1em;
286 width: 2em;
287 text-align: right;
288 color: #999;
289 }
290 </style>296 </style>
291</head>297</head>
292<body>298<body>