Minor tweaks.

- Set value to thumbnail quality in javascript.
- Fixed button style color bug.
This commit is contained in:
Christian Bastian
2024-07-19 18:10:31 -04:00
parent 73f10c7da1
commit 2cdb62a587
2 changed files with 1 additions and 2 deletions

View File

@@ -82,7 +82,6 @@
.model-manager input { .model-manager input {
padding: 4px 8px; padding: 4px 8px;
margin: 0; margin: 0;
border: 2px solid var(--border-color);
} }
.model-manager button:disabled, .model-manager button:disabled,

View File

@@ -143,7 +143,7 @@ const PREVIEW_NONE_URI = imageUri();
const PREVIEW_THUMBNAIL_WIDTH = 320; const PREVIEW_THUMBNAIL_WIDTH = 320;
const PREVIEW_THUMBNAIL_HEIGHT = 480; const PREVIEW_THUMBNAIL_HEIGHT = 480;
const PREVIEW_THUMBNAIL_FORMAT = "JPEG"; const PREVIEW_THUMBNAIL_FORMAT = "JPEG";
const PREVIEW_THUMBNAIL_QUALITY = undefined; const PREVIEW_THUMBNAIL_QUALITY = 75;
/** /**
* @param {(...args) => void} callback * @param {(...args) => void} callback