mirror of
https://github.com/easydiffusion/easydiffusion.git
synced 2024-11-23 08:43:42 +01:00
65 lines
1.1 KiB
CSS
65 lines
1.1 KiB
CSS
/* Auto-Settings Styling */
|
|
#auto_save_settings ~ button {
|
|
margin: 5px;
|
|
}
|
|
#auto_save_settings:not(:checked) ~ button {
|
|
display: none;
|
|
}
|
|
|
|
.form-table {
|
|
margin: auto;
|
|
}
|
|
|
|
.form-table th {
|
|
padding-top: 15px;
|
|
padding-bottom: 5px;
|
|
}
|
|
|
|
.form-table td:first-child > *,
|
|
.form-table th:first-child > * {
|
|
float: right;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.form-table td:last-child > *,
|
|
.form-table th:last-child > * {
|
|
float: left;
|
|
}
|
|
|
|
.form-table small {
|
|
color: rgb(153, 153, 153);
|
|
}
|
|
|
|
#reset-image-settings {
|
|
cursor: pointer;
|
|
float: right;
|
|
padding: 8px;
|
|
opacity: 1;
|
|
transition: opacity 0.5;
|
|
}
|
|
|
|
.collapsible:not(.active) #reset-image-settings {
|
|
display: none;
|
|
}
|
|
|
|
#reset-image-settings.hidden {
|
|
opacity: 0;
|
|
pointer-events: none;
|
|
}
|
|
|
|
#system-settings .form-table td {
|
|
height: 24px;
|
|
}
|
|
|
|
#system-settings .form-table td:last-child div {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
#system-settings .form-table td:last-child div > :not([type="checkbox"]):first-child {
|
|
margin-left: 3px;
|
|
}
|
|
|
|
#system-settings .form-table td:last-child div small {
|
|
padding-left: 5px;
|
|
text-align: left;
|
|
} |