@@ -391,12 +391,12 @@ function show_custom_zoom_window() {
391391 $fieldset . append ( `
392392 <legend>${ localize ( "Zoom to" ) } </legend>
393393 <div class="fieldset-body">
394- <input type="radio" name="custom-zoom-radio" id="zoom-option-1" aria-keyshortcuts="Alt+1 1" value="1"/><label for="zoom-option-1">${ display_hotkey ( "&100%" ) } </label>
395- <input type="radio" name="custom-zoom-radio" id="zoom-option-2" aria-keyshortcuts="Alt+2 2" value="2"/><label for="zoom-option-2">${ display_hotkey ( "&200%" ) } </label>
396- <input type="radio" name="custom-zoom-radio" id="zoom-option-4" aria-keyshortcuts="Alt+4 4" value="4"/><label for="zoom-option-4">${ display_hotkey ( "&400%" ) } </label>
397- <input type="radio" name="custom-zoom-radio" id="zoom-option-6" aria-keyshortcuts="Alt+6 6" value="6"/><label for="zoom-option-6">${ display_hotkey ( "&600%" ) } </label>
398- <input type="radio" name="custom-zoom-radio" id="zoom-option-8" aria-keyshortcuts="Alt+8 8" value="8"/><label for="zoom-option-8">${ display_hotkey ( "&800%" ) } </label>
399- <input type="radio" name="custom-zoom-radio" id="zoom-option-really-custom" value="really-custom"/><label for="zoom-option-really-custom"><input type="number" min="10" max="1000" name="really-custom-zoom-input" class="inset-deep no-spinner" value=""/>%</label>
394+ <div class="radio-field">< input type="radio" name="custom-zoom-radio" id="zoom-option-1" aria-keyshortcuts="Alt+1 1" value="1"/><label for="zoom-option-1">${ display_hotkey ( "&100%" ) } </label></div >
395+ <div class="radio-field">< input type="radio" name="custom-zoom-radio" id="zoom-option-2" aria-keyshortcuts="Alt+2 2" value="2"/><label for="zoom-option-2">${ display_hotkey ( "&200%" ) } </label></div >
396+ <div class="radio-field">< input type="radio" name="custom-zoom-radio" id="zoom-option-4" aria-keyshortcuts="Alt+4 4" value="4"/><label for="zoom-option-4">${ display_hotkey ( "&400%" ) } </label></div >
397+ <div class="radio-field">< input type="radio" name="custom-zoom-radio" id="zoom-option-6" aria-keyshortcuts="Alt+6 6" value="6"/><label for="zoom-option-6">${ display_hotkey ( "&600%" ) } </label></div >
398+ <div class="radio-field">< input type="radio" name="custom-zoom-radio" id="zoom-option-8" aria-keyshortcuts="Alt+8 8" value="8"/><label for="zoom-option-8">${ display_hotkey ( "&800%" ) } </label></div >
399+ <div class="radio-field">< input type="radio" name="custom-zoom-radio" id="zoom-option-really-custom" value="really-custom"/><label for="zoom-option-really-custom"><input type="number" min="10" max="1000" name="really-custom-zoom-input" class="inset-deep no-spinner" value=""/>%</label></div >
400400 </div>
401401 ` ) ;
402402 let is_custom = true ;
@@ -2866,9 +2866,9 @@ function image_attributes() {
28662866 const $units = $ ( E ( "fieldset" ) ) . appendTo ( $main ) . append ( `
28672867 <legend>${ localize ( "Units" ) } </legend>
28682868 <div class="fieldset-body">
2869- <input type="radio" name="units" id="unit-in" value="in" aria-keyshortcuts="Alt+I I"><label for="unit-in">${ display_hotkey ( localize ( "&Inches" ) ) } </label>
2870- <input type="radio" name="units" id="unit-cm" value="cm" aria-keyshortcuts="Alt+M M"><label for="unit-cm">${ display_hotkey ( localize ( "C&m" ) ) } </label>
2871- <input type="radio" name="units" id="unit-px" value="px" aria-keyshortcuts="Alt+P P"><label for="unit-px">${ display_hotkey ( localize ( "&Pixels" ) ) } </label>
2869+ <div class="radio-field">< input type="radio" name="units" id="unit-in" value="in" aria-keyshortcuts="Alt+I I"><label for="unit-in">${ display_hotkey ( localize ( "&Inches" ) ) } </label></div >
2870+ <div class="radio-field">< input type="radio" name="units" id="unit-cm" value="cm" aria-keyshortcuts="Alt+M M"><label for="unit-cm">${ display_hotkey ( localize ( "C&m" ) ) } </label></div >
2871+ <div class="radio-field">< input type="radio" name="units" id="unit-px" value="px" aria-keyshortcuts="Alt+P P"><label for="unit-px">${ display_hotkey ( localize ( "&Pixels" ) ) } </label></div >
28722872 </div>
28732873 ` ) ;
28742874 $units . find ( `[value=${ current_unit } ]` ) . attr ( { checked : true } ) ;
@@ -2882,17 +2882,17 @@ function image_attributes() {
28822882 const $colors = $ ( E ( "fieldset" ) ) . appendTo ( $main ) . append ( `
28832883 <legend>${ localize ( "Colors" ) } </legend>
28842884 <div class="fieldset-body">
2885- <input type="radio" name="colors" id="attribute-monochrome" value="monochrome" aria-keyshortcuts="Alt+B B"><label for="attribute-monochrome">${ display_hotkey ( localize ( "&Black and white" ) ) } </label>
2886- <input type="radio" name="colors" id="attribute-polychrome" value="polychrome" aria-keyshortcuts="Alt+L L"><label for="attribute-polychrome">${ display_hotkey ( localize ( "Co&lors" ) ) } </label>
2885+ <div class="radio-field">< input type="radio" name="colors" id="attribute-monochrome" value="monochrome" aria-keyshortcuts="Alt+B B"><label for="attribute-monochrome">${ display_hotkey ( localize ( "&Black and white" ) ) } </label></div >
2886+ <div class="radio-field">< input type="radio" name="colors" id="attribute-polychrome" value="polychrome" aria-keyshortcuts="Alt+L L"><label for="attribute-polychrome">${ display_hotkey ( localize ( "Co&lors" ) ) } </label></div >
28872887 </div>
28882888 ` ) ;
28892889 $colors . find ( `[value=${ monochrome ? "monochrome" : "polychrome" } ]` ) . attr ( { checked : true } ) ;
28902890
28912891 const $transparency = $ ( E ( "fieldset" ) ) . appendTo ( $main ) . append ( `
28922892 <legend>${ localize ( "Transparency" ) } </legend>
28932893 <div class="fieldset-body">
2894- <input type="radio" name="transparency" id="attribute-transparent" value="transparent"><label for="attribute-transparent">${ localize ( "Transparent" ) } </label>
2895- <input type="radio" name="transparency" id="attribute-opaque" value="opaque"><label for="attribute-opaque">${ localize ( "Opaque" ) } </label>
2894+ <div class="radio-field">< input type="radio" name="transparency" id="attribute-transparent" value="transparent"><label for="attribute-transparent">${ localize ( "Transparent" ) } </label></div >
2895+ <div class="radio-field">< input type="radio" name="transparency" id="attribute-opaque" value="opaque"><label for="attribute-opaque">${ localize ( "Opaque" ) } </label></div >
28962896 </div>
28972897 ` ) ;
28982898 $transparency . find ( `[value=${ transparency ? "transparent" : "opaque" } ]` ) . attr ( { checked : true } ) ;
0 commit comments