2024-10-22 08:19:21 +08:00
|
|
|
.d-admin-table {
|
2024-10-23 05:50:07 +08:00
|
|
|
@include breakpoint("tablet") {
|
2024-10-22 08:19:21 +08:00
|
|
|
border-collapse: collapse;
|
|
|
|
margin-bottom: var(--space-3);
|
|
|
|
}
|
|
|
|
|
|
|
|
thead {
|
2024-10-23 05:50:07 +08:00
|
|
|
@include breakpoint("tablet") {
|
2024-10-22 08:19:21 +08:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
th {
|
|
|
|
color: var(--primary-high);
|
|
|
|
}
|
|
|
|
|
|
|
|
.d-admin-row__content {
|
|
|
|
position: relative;
|
|
|
|
padding: var(--space-1) 0;
|
|
|
|
|
2024-10-23 05:50:07 +08:00
|
|
|
@include breakpoint("tablet") {
|
2024-10-22 08:19:21 +08:00
|
|
|
display: block;
|
|
|
|
margin-bottom: var(--space-3);
|
|
|
|
box-shadow: var(--shadow-card);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
td {
|
2024-10-24 06:26:21 +08:00
|
|
|
vertical-align: top;
|
|
|
|
padding-top: var(--space-3);
|
|
|
|
padding-bottom: var(--space-3);
|
|
|
|
|
2024-10-23 05:50:07 +08:00
|
|
|
@include breakpoint("tablet") {
|
2024-10-22 08:19:21 +08:00
|
|
|
display: block;
|
2024-10-24 06:26:21 +08:00
|
|
|
border-top: 1px solid var(--primary-low);
|
2024-10-22 08:19:21 +08:00
|
|
|
}
|
|
|
|
|
2024-10-24 06:26:21 +08:00
|
|
|
&:first-child {
|
2024-10-23 05:50:07 +08:00
|
|
|
@include breakpoint("tablet") {
|
2024-10-22 08:19:21 +08:00
|
|
|
border-top: 0;
|
|
|
|
}
|
|
|
|
}
|
2024-10-24 06:26:21 +08:00
|
|
|
|
|
|
|
&.d-admin-row__detail {
|
|
|
|
@include breakpoint("tablet") {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
}
|
2024-10-22 08:19:21 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.d-admin-row__overview {
|
2024-10-24 06:26:21 +08:00
|
|
|
width: 55%;
|
|
|
|
|
|
|
|
@include breakpoint("tablet") {
|
|
|
|
width: auto;
|
|
|
|
border-top: 0;
|
|
|
|
}
|
|
|
|
|
2024-10-22 08:19:21 +08:00
|
|
|
&-name {
|
|
|
|
font-weight: 700;
|
|
|
|
max-width: 80%;
|
2024-10-24 06:26:21 +08:00
|
|
|
margin-bottom: var(--space-1);
|
2024-10-22 08:19:21 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&-author {
|
2024-10-24 06:26:21 +08:00
|
|
|
font-size: var(--font-down-1);
|
|
|
|
margin-bottom: var(--space-1);
|
2024-10-22 08:19:21 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&-about {
|
2024-10-24 06:26:21 +08:00
|
|
|
padding-right: var(--space-4);
|
|
|
|
|
|
|
|
@include breakpoint("tablet") {
|
|
|
|
padding-top: var(--space-1);
|
|
|
|
}
|
|
|
|
|
2024-10-22 08:19:21 +08:00
|
|
|
.d-icon {
|
|
|
|
font-size: var(--font-down-3);
|
|
|
|
margin-bottom: 0.1em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-10-24 06:26:21 +08:00
|
|
|
.d-admin-row__controls {
|
2024-10-23 05:50:07 +08:00
|
|
|
@include breakpoint("tablet") {
|
2024-10-24 06:26:21 +08:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
2024-10-22 08:19:21 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&-options {
|
|
|
|
text-align: right;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
gap: 0.5em;
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
|
|
|
.fk-d-menu__trigger {
|
|
|
|
font-size: var(--font-down-1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.d-admin-row__mobile-label {
|
|
|
|
display: none;
|
|
|
|
|
2024-10-23 05:50:07 +08:00
|
|
|
@include breakpoint("tablet") {
|
2024-10-22 08:19:21 +08:00
|
|
|
display: inline-flex;
|
2024-10-23 05:50:07 +08:00
|
|
|
color: var(--primary-high);
|
2024-10-22 08:19:21 +08:00
|
|
|
}
|
|
|
|
}
|