Adding meta to scale for mobile, disabling other options before set

This commit is contained in:
Jean Viscogliosi-Pate 2025-01-26 22:27:22 -08:00
parent 5db032a9db
commit da4af3b7db
1 changed files with 11 additions and 10 deletions

View File

@ -4,6 +4,7 @@
<head>
<link href='popup.css' rel='stylesheet' type='text/css'>
<script src="popup.js" type="text/javascript"></script>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
@ -43,52 +44,52 @@
<ul id="other" class="flat reveal-slow">
<li>
<label for="subjective">Subjective</label>
<input type="text" id="subjective" name="subjective" placeholder="e.g. he, they">
<input type="text" id="subjective" name="subjective" placeholder="e.g. he, they" disabled>
</li>
<li>
<label for="objective">Objective</label>
<input type="text" id="objective" name="objective" placeholder="e.g. her, them">
<input type="text" id="objective" name="objective" placeholder="e.g. her, them" disabled>
</li>
<li>
<label for="possessive">Possessive</label>
<input type="text" id="possessive" name="possessive" placeholder="e.g. his, their">
<input type="text" id="possessive" name="possessive" placeholder="e.g. his, their" disabled>
</li>
<li>
<label for="adjective">Adjective</label>
<input type="text" id="adjective" name="adjective" placeholder="e.g. hers, theirs">
<input type="text" id="adjective" name="adjective" placeholder="e.g. hers, theirs" disabled>
</li>
<li>
<label for="reflexive">Reflexive</label>
<input type="text" id="reflexive" name="reflexive" placeholder="e.g. himself, themself">
<input type="text" id="reflexive" name="reflexive" placeholder="e.g. himself, themself" disabled>
</li>
<li>
<label for="honorific-abbr">Honorific abbr.</label>
<input type="text" id="abbr" name="honorific-abbr" placeholder="e.g. Ms., Mx.">
<input type="text" id="abbr" name="honorific-abbr" placeholder="e.g. Ms., Mx." disabled>
</li>
<li>
<label for="honorific">Honorific</label>
<input type="text" id="honorific" name="honorific" placeholder="e.g. mister, mix">
<input type="text" id="honorific" name="honorific" placeholder="e.g. mister, mix" disabled>
</li>
<li>
<label for="noun-adult">Adult noun</label>
<input type="text" id="adult" name="adult-noun" placeholder="e.g. woman, person">
<input type="text" id="adult" name="adult-noun" placeholder="e.g. woman, person" disabled>
</li>
<li>
<label for="noun-child">Child noun</label>
<input type="text" id="child" name="child-noun" placeholder="e.g. boy, kid">
<input type="text" id="child" name="child-noun" placeholder="e.g. boy, kid" disabled>
</li>
<li id="other-final">
<label for="plurality">Conjugates</label>
<select id="plurality" name="conjugates">
<select id="plurality" name="conjugates" disabled>
<option value="singular">singular</option>
<option value="plural">plural</option>
</select>