mirror of
https://github.com/thomasasfk/sd-webui-aspect-ratio-helper.git
synced 2026-01-26 11:09:55 +00:00
* Implement JavaScript aspect ratios - Add options to enable and specify JavaScript aspect ratios - Add JavaScript to load when enabled, which adds dropdown & functionality - Update docs for JavaScript aspect ratios - Add video to README.md for JavaScript aspect ratios - Update options image on README.md
28 lines
567 B
CSS
28 lines
567 B
CSS
#txt2img_size_toolbox, #img2img_size_toolbox{
|
|
min-width: unset !important;
|
|
gap: 0;
|
|
}
|
|
|
|
#txt2img_ratio, #img2img_ratio {
|
|
padding: 0px;
|
|
min-width: unset;
|
|
max-width: fit-content;
|
|
}
|
|
|
|
#txt2img_ratio select, #img2img_ratio select {
|
|
-o-appearance: none;
|
|
-ms-appearance: none;
|
|
-webkit-appearance: none;
|
|
-moz-appearance: none;
|
|
appearance: none;
|
|
background-image: unset;
|
|
padding-right: unset;
|
|
min-width: 40px;
|
|
max-width: 40px;
|
|
min-height: 40px;
|
|
max-height: 40px;
|
|
line-height: 40px;
|
|
padding: 0;
|
|
text-align: center;
|
|
}
|