Add email list section with bookmark hearts and linked names
This commit is contained in:
@@ -246,6 +246,92 @@ main {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.email-hint {
|
||||
color: var(--muted);
|
||||
font-size: 14px;
|
||||
padding-top: 16px;
|
||||
padding-bottom: 2px;
|
||||
}
|
||||
|
||||
.email-table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.email-table th {
|
||||
text-align: left;
|
||||
color: var(--muted);
|
||||
font-weight: 500;
|
||||
font-size: 13px;
|
||||
background: #f8f9fa;
|
||||
}
|
||||
|
||||
.email-table th,
|
||||
.email-table td {
|
||||
border: 1px solid var(--line);
|
||||
padding: 9px 12px;
|
||||
}
|
||||
|
||||
.email-table tbody tr:nth-child(even) {
|
||||
background: #fafbfb;
|
||||
}
|
||||
|
||||
.email-num {
|
||||
color: #b6bcc2;
|
||||
font-size: 12px;
|
||||
width: 34px;
|
||||
}
|
||||
|
||||
.email-name {
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.email-name a {
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.email-name a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.email-heart {
|
||||
width: 40px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.row-heart {
|
||||
border: 0;
|
||||
background: none;
|
||||
padding: 2px;
|
||||
cursor: pointer;
|
||||
color: #b6bcc2;
|
||||
display: inline-flex;
|
||||
}
|
||||
|
||||
.row-heart svg {
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
stroke: currentColor;
|
||||
fill: none;
|
||||
stroke-width: 1.5;
|
||||
stroke-linecap: round;
|
||||
stroke-linejoin: round;
|
||||
}
|
||||
|
||||
.row-heart:hover {
|
||||
color: var(--brand);
|
||||
}
|
||||
|
||||
.row-heart.active {
|
||||
color: var(--brand);
|
||||
}
|
||||
|
||||
.row-heart.active svg {
|
||||
fill: currentColor;
|
||||
}
|
||||
|
||||
.profile-heading {
|
||||
font-size: 24px;
|
||||
font-weight: 700;
|
||||
|
||||
Reference in New Issue
Block a user