UI: обновлены профиль/связи, статусы отношений и фикс верхней панели (работает)

This commit is contained in:
AidarKC
2026-04-26 19:13:08 +03:00
parent 28bbdb8b7c
commit da12521517
6 changed files with 111 additions and 34 deletions
+66 -13
View File
@@ -1336,6 +1336,7 @@ textarea.input {
.network-stage {
position: relative;
height: calc(100dvh - 74px);
overflow: hidden;
}
.network-board--full {
@@ -1347,12 +1348,17 @@ textarea.input {
}
.network-header-overlay {
position: absolute;
top: 8px;
position: sticky;
top: max(8px, env(safe-area-inset-top));
left: 8px;
right: 8px;
margin-bottom: 0;
z-index: 3;
z-index: 12;
pointer-events: none;
}
.network-header-overlay .icon-btn {
pointer-events: auto;
}
.network-header-overlay .page-title {
@@ -1584,13 +1590,35 @@ textarea.input {
}
.user-rel-row {
display: flex;
justify-content: space-between;
display: grid;
grid-template-columns: minmax(0, 1fr) auto;
align-items: center;
gap: 10px;
min-height: 38px;
padding: 6px 8px;
border-radius: 10px;
border: 1px solid rgba(255, 255, 255, 0.08);
background: rgba(8, 14, 24, 0.34);
color: #d8e3ff;
font-size: 14px;
}
.user-rel-text {
min-height: 1em;
color: #dbe8ff;
line-height: 1.3;
}
.user-rel-action {
min-height: 32px;
padding: 5px 10px;
white-space: nowrap;
}
.user-rel-row.is-empty .user-rel-text {
color: transparent;
}
.tabs {
display: grid;
grid-template-columns: repeat(2, 1fr);
@@ -3700,7 +3728,7 @@ textarea.input {
background: #05070A;
color: rgba(255, 255, 255, 0.9);
min-height: 100%;
gap: 6px;
gap: 4px;
}
.profile-screen::before {
@@ -3729,13 +3757,13 @@ textarea.input {
.profile-top-actions {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 6px;
grid-template-columns: 1.6fr 1fr 1fr;
gap: 5px;
}
.profile-top-action-btn {
min-height: 30px;
padding: 5px 8px;
min-height: 28px;
padding: 4px 8px;
font-size: 12px;
text-align: center;
white-space: nowrap;
@@ -3744,8 +3772,8 @@ textarea.input {
}
.profile-main-card {
padding: 10px;
gap: 8px;
padding: 8px;
gap: 6px;
}
.profile-status-row {
@@ -3757,15 +3785,40 @@ textarea.input {
flex: 1 1 auto;
min-height: 16px;
margin: 0;
line-height: 1.2;
}
.profile-refresh-btn {
min-height: 30px;
min-height: 28px;
padding: 5px 8px;
font-size: 12px;
line-height: 1.1;
}
.profile-main-card > .row {
margin: 0;
}
.profile-main-card .profile-identity-lines {
gap: 2px;
}
.profile-main-card .profile-identity-line {
font-size: 15px;
}
.profile-main-card .profile-identity-login {
font-size: 17px;
}
.profile-main-card .profile-param-list {
gap: 6px;
}
.profile-main-card .profile-param-item {
padding: 8px 9px;
}
.profile-screen .primary-btn {
background: rgba(212, 175, 55, 0.2);
border: 1px solid rgba(212, 175, 55, 0.45);
+5
View File
@@ -52,6 +52,11 @@ body::before {
padding-bottom: calc(24px + env(safe-area-inset-bottom));
}
.screen-content.network-scroll-lock {
overflow: hidden;
padding: 0;
}
.toolbar-slot {
position: absolute;