mirror of
https://github.com/easydiffusion/easydiffusion.git
synced 2024-11-27 18:53:10 +01:00
75 lines
1.3 KiB
CSS
75 lines
1.3 KiB
CSS
/* Auto-Settings Styling */
|
|
#auto_save_settings ~ button {
|
|
margin: 5px;
|
|
}
|
|
#auto_save_settings:not(:checked) ~ button {
|
|
display: none;
|
|
}
|
|
|
|
#save-settings-config {
|
|
position: absolute;
|
|
background: rgba(32, 33, 36, 50%);
|
|
top: 0px;
|
|
left: 0px;
|
|
right: 0px;
|
|
bottom: 0px;
|
|
z-index: 1000;
|
|
}
|
|
|
|
#save-settings-config > div {
|
|
background: var(--background-color3);
|
|
max-width: 600px;
|
|
margin: auto;
|
|
margin-top: 50px;
|
|
border-radius: 6px;
|
|
padding: 30px;
|
|
text-align: center;
|
|
}
|
|
|
|
#save-settings-config-table {
|
|
margin: auto;
|
|
}
|
|
|
|
#save-settings-config-table th {
|
|
padding-top: 15px;
|
|
padding-bottom: 5px;
|
|
}
|
|
|
|
#save-settings-config-table td:first-child,
|
|
#save-settings-config-table th:first-child {
|
|
float: right;
|
|
}
|
|
|
|
#save-settings-config-table td:last-child,
|
|
#save-settings-config-table th:last-child {
|
|
float: left;
|
|
}
|
|
|
|
#save-settings-config-table td small {
|
|
color: rgb(153, 153, 153);
|
|
}
|
|
|
|
#save-settings-config-close-btn {
|
|
float: right;
|
|
cursor: pointer;
|
|
padding: 10px;
|
|
transform: translate(50%, -50%) scaleX(130%);
|
|
}
|
|
|
|
#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;
|
|
}
|