easydiffusion/ui/media/css/auto-save.css

65 lines
1.1 KiB
CSS
Raw Normal View History

/* Auto-Settings Styling */
2022-10-20 06:12:01 +02:00
#auto_save_settings ~ button {
margin: 5px;
}
#auto_save_settings:not(:checked) ~ button {
display: none;
}
2022-10-29 03:25:54 +02:00
.form-table {
margin: auto;
}
2022-10-29 03:25:54 +02:00
.form-table th {
2022-10-20 06:12:01 +02:00
padding-top: 15px;
padding-bottom: 5px;
}
2022-10-29 03:25:54 +02:00
.form-table td:first-child > *,
.form-table th:first-child > * {
float: right;
2022-10-29 03:25:54 +02:00
white-space: nowrap;
}
2022-10-29 03:25:54 +02:00
.form-table td:last-child > *,
.form-table th:last-child > * {
float: left;
}
2022-10-29 03:25:54 +02:00
.form-table small {
color: rgb(153, 153, 153);
}
2022-10-20 06:12:01 +02:00
#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;
}
2022-10-29 03:25:54 +02:00
#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;
}