File size: 1,697 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 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 |
@import "@automattic/color-studio/dist/color-variables";
@import "@automattic/typography/styles/variables";
@import "@wordpress/base-styles/breakpoints";
.subscription-manager__pending-list {
margin: 0;
.row {
border-bottom: 1px solid var(--color-border-subtle);
display: flex;
align-items: center;
flex-direction: row;
padding-top: 20px;
padding-bottom: 20px;
* {
flex: 1;
}
&.header {
padding-bottom: $font-code;
padding-top: 0;
}
.title-box {
display: flex;
align-items: center;
flex: 1.83;
min-width: 0;
.site-icon {
max-width: 40px;
}
.title-column {
display: flex;
flex-direction: column;
min-width: 0;
padding-left: 12px;
.name {
font-weight: 600;
font-size: $font-code;
line-height: 22px;
color: $studio-gray-100;
letter-spacing: -0.24px;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
padding-right: 10px;
&:hover {
text-decoration: underline;
}
}
.url {
font-weight: 400;
font-size: $font-body-extra-small;
line-height: 18px;
color: $studio-gray-40;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
&:hover {
text-decoration: underline;
}
}
}
}
.title-box,
.date {
font-weight: 400;
font-size: $font-body-small;
line-height: 20px;
letter-spacing: -0.15px;
color: $studio-gray-60;
}
.actions {
flex-basis: 36px;
flex-grow: initial;
.gridicon {
fill: $studio-gray-50;
}
}
&:last-child {
border-bottom: none;
}
}
@media (max-width: $break-small) {
.date {
display: none;
}
}
}
|