34 lines
572 B
CSS
34 lines
572 B
CSS
![]() |
.trash-modal-button {
|
||
|
margin-left: 5px;
|
||
|
margin-right: 5px;
|
||
|
}
|
||
|
|
||
|
/* this is the confirm button so it should be separated */
|
||
|
.trash-modal-button:last-of-type {
|
||
|
float: right;
|
||
|
}
|
||
|
|
||
|
.trash-modal-file-links {
|
||
|
overflow-y: scroll;
|
||
|
max-height: 30vw;
|
||
|
margin: 1vw;
|
||
|
}
|
||
|
|
||
|
.trash-modal-link {
|
||
|
color: var(--text-accent);
|
||
|
text-decoration: underline;
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
|
||
|
.trash-modal-link:hover {
|
||
|
color: var(--text-accent-hover, var(--text-accent));
|
||
|
}
|
||
|
|
||
|
.nuke-orphans-pass {
|
||
|
color: lightgreen !important;
|
||
|
}
|
||
|
|
||
|
.nuke-orphans-fail {
|
||
|
color: red !important;
|
||
|
}
|