File size: 1,375 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 |
.plugin-common-card__columns {
display: flex;
flex: 1;
}
.plugin-common-card__toggle-container {
margin-block-start: 16px;
> div {
margin: 16px 0;
}
}
.plugin-common-card__left-content {
min-width: 32px;
max-width: 32px;
order: 1;
}
.plugin-common-card__main-content {
flex: 1;
order: 2;
position: relative;
padding: 0 0 0 16px;
width: 70%;
}
.plugin-common-card__right-content {
width: 20px;
order: 3;
}
.plugin-common-card__plugin-icon {
width: 32px;
height: 32px;
}
.plugin-common-card__all-actions {
color: var(--studio-gray-40);
margin: 0 0.1em;
}
.plugin-common-card__overlay {
display: block;
position: absolute;
height: 20px;
width: 20px;
background: linear-gradient(to right, rgb(255 255 255 / 80%) 30%, rgb(255 255 255 / 100%) 100%);
inset-block-start: 2px;
inset-inline-end: 0;
}
.plugin-common-card__site-data {
color: var(--studio-gray-60);
font-size: 0.75rem;
margin: 16px 0;
}
.plugin-common-card__installed-on {
margin: 8px 0;
}
.plugin-common-card__install-button {
.plugin-install-button__install.embed {
position: static;
width: fit-content;
}
}
.plugin-common-card__card.card {
padding: 16px;
&.is-compact:last-child {
box-shadow: none;
/* stylelint-disable-next-line scales/radii */
border-radius: 8px;
}
}
.plugin-common-card__left-checkbox {
input[type="checkbox"] {
margin-top: 8px;
}
}
|