mirror of
https://github.com/fromchat-messenger/web.git
synced 2026-09-23 19:45:05 +03:00
208 lines
5.0 KiB
SCSS
208 lines
5.0 KiB
SCSS
@use "../../../css/colors" as *;
|
|
@use "../../../css/material" as *;
|
|
@use "sass:color";
|
|
|
|
// Profile Dialog Specific Styles
|
|
// Base dialog styles are now in _styled-dialog.scss
|
|
|
|
.styled-dialog-content {
|
|
align-items: center;
|
|
|
|
.error-message {
|
|
color: $color-dark-error;
|
|
font-size: small;
|
|
}
|
|
|
|
.profile-picture-section {
|
|
position: relative;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
margin: 16px;
|
|
|
|
.profile-picture {
|
|
width: 120px;
|
|
height: 120px;
|
|
border-radius: 60px;
|
|
object-fit: cover;
|
|
border: 3px solid $color-dark-outline;
|
|
}
|
|
|
|
.profile-picture-edit-overlay {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
border-radius: 60px;
|
|
background: rgba(0, 0, 0, 0.6);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
opacity: 0;
|
|
transition: opacity 0.2s ease;
|
|
cursor: pointer;
|
|
|
|
&:hover {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
}
|
|
|
|
.username-section {
|
|
text-align: center;
|
|
|
|
.username-with-badge {
|
|
gap: 0;
|
|
|
|
.username-input {
|
|
background: none;
|
|
border: none;
|
|
font-size: 1.5rem;
|
|
font-weight: 500;
|
|
color: $color-dark-on-surface;
|
|
text-align: center;
|
|
outline: none;
|
|
padding: 8px;
|
|
border-radius: 4px;
|
|
transition: background-color 0.2s ease;
|
|
cursor: text;
|
|
}
|
|
}
|
|
}
|
|
|
|
.online-status-section {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 8px;
|
|
|
|
.online-indicator {
|
|
width: 8px;
|
|
height: 8px;
|
|
border-radius: 50%;
|
|
background: $color-dark-primary;
|
|
|
|
&.offline {
|
|
background: $color-dark-on-surface-variant;
|
|
}
|
|
}
|
|
|
|
.status-text {
|
|
font-size: 0.875rem;
|
|
color: $color-dark-on-surface;
|
|
}
|
|
}
|
|
|
|
.profile-sections {
|
|
margin: 16px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 4px;
|
|
width: calc(100% - (16px * 2));
|
|
box-sizing: border-box;
|
|
|
|
.section {
|
|
$edge-radius: 24px;
|
|
|
|
background: $color-dark-surface-container-high;
|
|
border-radius: 10px;
|
|
padding: 8px 16px;
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: 16px;
|
|
align-items: center;
|
|
transition: outline 0.1s ease;
|
|
outline: 0px solid transparent;
|
|
outline-offset: -1px;
|
|
|
|
.content-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 4px;
|
|
width: 100%;
|
|
|
|
.label {
|
|
font-size: small;
|
|
color: $color-dark-on-surface-variant;
|
|
user-select: none;
|
|
}
|
|
|
|
.value {
|
|
color: $color-dark-on-surface;
|
|
font-size: medium;
|
|
width: 100%;
|
|
line-height: 1.4;
|
|
font-family: inherit;
|
|
cursor: text;
|
|
outline: none;
|
|
background: transparent;
|
|
border: none;
|
|
caret-color: $color-dark-primary;
|
|
|
|
&::placeholder {
|
|
color: $color-dark-on-surface-variant;
|
|
}
|
|
}
|
|
}
|
|
|
|
// First and last section
|
|
&:first-child {
|
|
border-top-left-radius: $edge-radius;
|
|
border-top-right-radius: $edge-radius;
|
|
}
|
|
|
|
&:last-child {
|
|
border-bottom-left-radius: $edge-radius;
|
|
border-bottom-right-radius: $edge-radius;
|
|
}
|
|
|
|
&.error {
|
|
outline: 1px solid $color-dark-error;
|
|
|
|
.error-message {
|
|
margin-top: 4px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.styled-dialog {
|
|
.profile-dialog-fab {
|
|
position: absolute;
|
|
bottom: 24px;
|
|
right: 24px;
|
|
z-index: 1002;
|
|
transform: translateY(100px);
|
|
transition: transform 0.3s ease;
|
|
|
|
&.visible {
|
|
transform: translateY(0);
|
|
}
|
|
}
|
|
|
|
// Admin Actions Section
|
|
.admin-actions-section {
|
|
margin-top: 24px;
|
|
padding-top: 24px;
|
|
border-top: 1px solid #e0e0e0;
|
|
}
|
|
|
|
.admin-actions-header {
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
margin: 0 0 16px 0;
|
|
color: #f44336;
|
|
}
|
|
|
|
.admin-buttons {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 12px;
|
|
}
|
|
|
|
.admin-buttons mdui-button {
|
|
width: 100%;
|
|
}
|
|
} |