验证20%
This commit is contained in:
@@ -543,6 +543,68 @@
|
||||
box-shadow: 0 24px 60px rgba(57, 48, 36, .11);
|
||||
}
|
||||
|
||||
.module-card.is-unavailable {
|
||||
cursor: not-allowed;
|
||||
opacity: .68;
|
||||
}
|
||||
|
||||
.module-card.is-unavailable:after {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.module-card.is-unavailable .pill {
|
||||
display: inline-flex;
|
||||
margin-top: 12px;
|
||||
color: #6b542d;
|
||||
background: #fff0cf;
|
||||
}
|
||||
|
||||
.module-nav-unavailable {
|
||||
padding: 14px 16px;
|
||||
border-radius: 14px;
|
||||
color: var(--muted);
|
||||
background: #f4f1eb;
|
||||
font-weight: 900;
|
||||
}
|
||||
|
||||
.profile-path {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
margin: 0 0 18px;
|
||||
color: #6f766f;
|
||||
font-size: 14px;
|
||||
font-weight: 800;
|
||||
}
|
||||
|
||||
.profile-path a {
|
||||
color: var(--red);
|
||||
}
|
||||
|
||||
.profile-path a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.profile-path span {
|
||||
color: #a89f91;
|
||||
}
|
||||
|
||||
.profile-path strong {
|
||||
min-width: 0;
|
||||
overflow: hidden;
|
||||
color: var(--ink);
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.module-nav-unavailable small {
|
||||
display: block;
|
||||
margin-top: 4px;
|
||||
color: #8a5a3b;
|
||||
font-size: 12px;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.module-card.is-selected {
|
||||
border-color: rgba(200, 59, 50, .5);
|
||||
background: #fff6f1;
|
||||
@@ -825,6 +887,10 @@
|
||||
}
|
||||
|
||||
@media (max-width: 720px) {
|
||||
.page-profile-module .module-nav {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.module-title-row {
|
||||
display: grid;
|
||||
}
|
||||
@@ -833,10 +899,6 @@
|
||||
font-size: 38px;
|
||||
}
|
||||
|
||||
.module-nav {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.lineage-filter-toolbar {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
+32
-1
@@ -33,6 +33,7 @@
|
||||
|
||||
.profile-card,
|
||||
.profile-stats,
|
||||
.profile-next-card,
|
||||
.panel,
|
||||
.side-card {
|
||||
border: 1px solid rgba(224, 211, 189, .84);
|
||||
@@ -94,6 +95,13 @@
|
||||
line-height: 1.9;
|
||||
}
|
||||
|
||||
.profile-info .profile-load-status {
|
||||
margin: 14px 0 0;
|
||||
color: var(--muted);
|
||||
font-size: 14px;
|
||||
font-weight: 800;
|
||||
}
|
||||
|
||||
.profile-tags,
|
||||
.mini-actions {
|
||||
display: flex;
|
||||
@@ -118,6 +126,29 @@
|
||||
gap: 14px;
|
||||
}
|
||||
|
||||
.profile-next-card {
|
||||
padding: 32px;
|
||||
}
|
||||
|
||||
.profile-next-card .eyebrow {
|
||||
margin-bottom: 14px;
|
||||
}
|
||||
|
||||
.profile-next-card h2 {
|
||||
margin-bottom: 12px;
|
||||
font-size: 30px;
|
||||
}
|
||||
|
||||
.profile-next-card p {
|
||||
margin-bottom: 22px;
|
||||
color: var(--muted);
|
||||
line-height: 1.8;
|
||||
}
|
||||
|
||||
.profile-hero-actions {
|
||||
margin-top: 22px;
|
||||
}
|
||||
|
||||
.profile-stats div {
|
||||
min-height: 116px;
|
||||
padding: 20px;
|
||||
@@ -610,4 +641,4 @@
|
||||
.logout-actions {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -186,6 +186,39 @@ img {
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.profile-current-genealogy {
|
||||
min-width: 0;
|
||||
max-width: 240px;
|
||||
display: grid;
|
||||
gap: 2px;
|
||||
margin-left: auto;
|
||||
padding: 7px 12px;
|
||||
border: 1px solid rgba(255, 248, 230, .28);
|
||||
border-radius: 12px;
|
||||
color: #fff8e6;
|
||||
background: rgba(79, 29, 26, .18);
|
||||
line-height: 1.2;
|
||||
}
|
||||
|
||||
.profile-current-genealogy span {
|
||||
color: rgba(255, 248, 230, .72);
|
||||
font-size: 11px;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.profile-current-genealogy strong {
|
||||
overflow: hidden;
|
||||
color: #fff8e6;
|
||||
font-size: 14px;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.profile-mobile-menu-toggle,
|
||||
.profile-mobile-menu {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.btn {
|
||||
min-width: 118px;
|
||||
height: 44px;
|
||||
@@ -790,6 +823,78 @@ textarea {
|
||||
background: #fff4ef;
|
||||
}
|
||||
|
||||
@media (max-width: 1320px) {
|
||||
.page-profile .nav-links,
|
||||
.page-profile-module .nav-links {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.profile-mobile-menu-toggle {
|
||||
min-width: 58px;
|
||||
height: 38px;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 0 12px;
|
||||
border: 1px solid rgba(255, 248, 230, .38);
|
||||
border-radius: 10px;
|
||||
color: #fff8e6;
|
||||
background: rgba(79, 29, 26, .2);
|
||||
font: inherit;
|
||||
font-size: 13px;
|
||||
font-weight: 800;
|
||||
}
|
||||
|
||||
.page-profile .nav-actions,
|
||||
.page-profile-module .nav-actions {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.profile-mobile-menu.is-open {
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: 100%;
|
||||
right: 0;
|
||||
left: 0;
|
||||
padding: 14px 0 18px;
|
||||
border-bottom: 1px solid rgba(255, 253, 248, .24);
|
||||
background: rgba(121, 42, 35, .99);
|
||||
box-shadow: 0 22px 38px rgba(83, 32, 26, .28);
|
||||
}
|
||||
|
||||
.profile-mobile-menu-inner {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.profile-mobile-menu a,
|
||||
.profile-mobile-menu button {
|
||||
min-height: 46px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
padding: 10px 14px;
|
||||
border: 1px solid rgba(255, 248, 230, .16);
|
||||
border-radius: 10px;
|
||||
color: #fff8e6;
|
||||
background: rgba(255, 253, 248, .08);
|
||||
font: inherit;
|
||||
font-weight: 800;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.profile-mobile-menu button {
|
||||
width: 100%;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.profile-mobile-menu a.is-current {
|
||||
border-color: rgba(255, 241, 202, .76);
|
||||
color: #fff7d8;
|
||||
background: rgba(255, 253, 248, .2);
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 1120px) {
|
||||
.nav-links {
|
||||
display: none;
|
||||
@@ -819,6 +924,57 @@ textarea {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.page-profile-module .nav,
|
||||
.page-profile .nav {
|
||||
height: 70px;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.page-profile-module .brand,
|
||||
.page-profile .brand {
|
||||
padding: 7px 10px;
|
||||
}
|
||||
|
||||
.page-profile-module .brand-logo,
|
||||
.page-profile .brand-logo {
|
||||
width: 114px;
|
||||
}
|
||||
|
||||
.page-profile-module .brand-logo-mark {
|
||||
width: 38px;
|
||||
height: 38px;
|
||||
}
|
||||
|
||||
.page-profile-module .brand-text {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.page-profile-module .nav-actions {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.profile-current-genealogy {
|
||||
max-width: 112px;
|
||||
padding: 7px 9px;
|
||||
}
|
||||
|
||||
.profile-current-genealogy span {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.profile-current-genealogy strong {
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
.profile-mobile-menu-toggle {
|
||||
min-width: 50px;
|
||||
padding: 0 9px;
|
||||
}
|
||||
|
||||
.profile-mobile-menu-inner {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.inner-hero .container {
|
||||
padding: 46px 0 54px;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user