Remove a few empty spaces and line breaks
Most it is done by my editor automatically.
This commit is contained in:
parent
4aebf05918
commit
c2ee058682
8 changed files with 19 additions and 24 deletions
|
@ -12,5 +12,4 @@ export class FixedUiElement extends UIElement {
|
|||
return this._html;
|
||||
}
|
||||
|
||||
|
||||
}
|
|
@ -57,10 +57,10 @@ export class DropDown<T> extends InputElement<T> {
|
|||
for (let i = 0; i < this._values.length; i++) {
|
||||
options += "<option value='" + i + "'>" + this._values[i].shown.InnerRender() + "</option>"
|
||||
}
|
||||
|
||||
return "<form>" +
|
||||
"<label for='dropdown-" + this.id + "'>" + this._label.Render() + " </label>" +
|
||||
"<select name='dropdown-" + this.id + "' id='dropdown-" + this.id + "'>" +
|
||||
|
||||
options +
|
||||
"</select>" +
|
||||
"</form>";
|
||||
|
|
|
@ -387,10 +387,8 @@ a {
|
|||
background-color: var(--background-color);
|
||||
color: var(--foreground-color);
|
||||
|
||||
|
||||
transition: opacity 500ms linear;
|
||||
|
||||
|
||||
text-align: center;
|
||||
horiz-align: center;
|
||||
font-weight: bold;
|
||||
|
|
|
@ -158,8 +158,6 @@ function createManifest(layout: LayoutConfig, relativePath: string) {
|
|||
writeFileSync(path, layout.icon)
|
||||
}
|
||||
|
||||
|
||||
|
||||
const sizes = [72, 96, 120, 128, 144, 152, 180, 192, 384, 512];
|
||||
for (const size of sizes) {
|
||||
const name = createIcon(path, size, layout);
|
||||
|
|
Loading…
Reference in a new issue