44 lines
991 B
CSS
44 lines
991 B
CSS
.pages-recyclebin-action {
|
|
display: grid;
|
|
grid-template-columns: auto 1fr;
|
|
gap: var(--padding);
|
|
align-items: center;
|
|
width: 100%;
|
|
background: var(--color-box);
|
|
box-shadow: var(--shadow-short);
|
|
border-radius: var(--radius);
|
|
padding: 16px;
|
|
}
|
|
.pages-recyclebin-action + .pages-recyclebin-action {
|
|
margin-top: 16px;
|
|
}
|
|
.pages-recyclebin-action-text {
|
|
margin: 16px 0;
|
|
line-height: 1.5;
|
|
}
|
|
.pages-recyclebin-action-text strong {
|
|
display: block;
|
|
margin-bottom: 5px;
|
|
}
|
|
.pages-recyclebin-action-text span {
|
|
color: var(--color-text-dim);
|
|
}
|
|
.pages-recyclebin-action-icon {
|
|
font-size: 18px;
|
|
margin-right: -6px;
|
|
align-self: stretch;
|
|
background: var(--color-box-nested);
|
|
padding: 10px;
|
|
width: 50px;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
border-radius: var(--radius);
|
|
color: var(--color-text);
|
|
}
|
|
.pages-recyclebin-action-icon.is-negative {
|
|
color: var(--color-accent-error);
|
|
}
|
|
.pages-recyclebin-actions content {
|
|
padding-top: 0;
|
|
} |