File tree Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ iframe {
59
59
border : 0 ;
60
60
flex-grow : 1 ;
61
61
margin : 0 ;
62
- min-height : 800 px ;
62
+ min-height : 600 px ;
63
63
padding : 0 ;
64
64
}
65
65
# unsavedWarning {
Original file line number Diff line number Diff line change @@ -131,7 +131,6 @@ body.needReload #refresh {
131
131
font-size : 1em ;
132
132
font-weight : normal;
133
133
margin : 0.5em 0 0.25em 0 ;
134
- text-transform : capitalize;
135
134
}
136
135
# rulesetStats .rulesetDetails p {
137
136
color : var (--ink-2 );
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ import {
33
33
} from './ext.js' ;
34
34
35
35
import { dom , qs$ } from './dom.js' ;
36
- import { i18n$ } from './i18n.js' ;
36
+ import { i18n , i18n $ } from './i18n.js' ;
37
37
import punycode from './punycode.js' ;
38
38
39
39
/******************************************************************************/
@@ -306,7 +306,7 @@ async function init() {
306
306
const parent = qs$ ( '#rulesetStats' ) ;
307
307
for ( const details of popupPanelData . rulesetDetails || [ ] ) {
308
308
const div = dom . clone ( '#templates .rulesetDetails' ) ;
309
- dom . text ( qs$ ( div , 'h1' ) , details . name ) ;
309
+ qs$ ( div , 'h1' ) . append ( i18n . patchUnicodeFlags ( details . name ) ) ;
310
310
const { rules, filters, css } = details ;
311
311
let ruleCount = rules . plain + rules . regex ;
312
312
if ( popupPanelData . hasOmnipotence ) {
You can’t perform that action at this time.
0 commit comments