优化脚本
This commit is contained in:
@@ -301,7 +301,7 @@
|
||||
position: relative;
|
||||
min-height: 152px;
|
||||
display: grid;
|
||||
grid-template-columns: 160px minmax(0, 1fr) minmax(220px, 1.1fr) 140px;
|
||||
grid-template-columns: 160px minmax(0, 1fr) minmax(220px, 1.1fr) auto;
|
||||
align-items: center;
|
||||
gap: 28px;
|
||||
padding: 18px 34px 18px 32px;
|
||||
@@ -383,6 +383,37 @@
|
||||
.dashboard-page .segment.warn { background: #ff7219; }
|
||||
.dashboard-page .segment.fail { background: var(--accent-crimson); }
|
||||
|
||||
.dashboard-page .project-actions {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: flex-end;
|
||||
gap: 10px;
|
||||
}
|
||||
.dashboard-page .project-del {
|
||||
width: 42px;
|
||||
height: 42px;
|
||||
display: grid;
|
||||
place-items: center;
|
||||
padding: 0;
|
||||
border: 1px solid rgba(34, 42, 54, 0.10);
|
||||
border-radius: 10px;
|
||||
color: var(--black-alpha-56);
|
||||
background: var(--control);
|
||||
cursor: pointer;
|
||||
font: inherit;
|
||||
transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
|
||||
}
|
||||
.dashboard-page .project-del svg {
|
||||
display: block;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
}
|
||||
.dashboard-page .project-del:hover {
|
||||
color: var(--accent-crimson);
|
||||
border-color: var(--crimson-bd);
|
||||
background: var(--crimson-bg);
|
||||
}
|
||||
|
||||
.dashboard-page .continue-button {
|
||||
height: 42px;
|
||||
min-width: 88px;
|
||||
@@ -421,8 +452,12 @@
|
||||
grid-template-columns: 122px minmax(0, 1fr);
|
||||
min-height: 0;
|
||||
}
|
||||
.dashboard-page .stage,
|
||||
.dashboard-page .continue-button { display: none; }
|
||||
.dashboard-page .stage { display: none; }
|
||||
.dashboard-page .project-actions {
|
||||
grid-column: 1 / -1;
|
||||
justify-content: flex-end;
|
||||
padding-top: 4px;
|
||||
}
|
||||
}
|
||||
@media (max-width: 820px) {
|
||||
.dashboard-page .creation-entry-pair { grid-template-columns: 1fr; }
|
||||
|
||||
Reference in New Issue
Block a user