comparison nuklear_ui/blastem_nuklear.c @ 2617:ad9e074c8901

Fix border style for web file chooser
author Michael Pavone <pavone@retrodev.com>
date Fri, 21 Feb 2025 00:50:31 -0800
parents cbf5a01e429e
children 07faf0f5466f
comparison
equal deleted inserted replaced
2616:cbf5a01e429e 2617:ad9e074c8901
119 container.id = 'chooser'; 119 container.id = 'chooser';
120 container.style.position = 'absolute'; 120 container.style.position = 'absolute';
121 container.style.display = 'none'; 121 container.style.display = 'none';
122 container.style.borderWidth = '2px'; 122 container.style.borderWidth = '2px';
123 container.style.borderColor = 'black'; 123 container.style.borderColor = 'black';
124 container.style.borderStyle = 'solid';
124 titleEl = document.createElement('h3'); 125 titleEl = document.createElement('h3');
125 titleEl.id = 'chooser_title'; 126 titleEl.id = 'chooser_title';
126 container.appendChild(titleEl); 127 container.appendChild(titleEl);
127 fileIn = document.createElement('input'); 128 fileIn = document.createElement('input');
128 fileIn.type = 'file'; 129 fileIn.type = 'file';