mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-10-29 01:52:26 -05:00
[feature] Move + alias account via settings panel (#2519)
* [feature] Move + alias account via settings panel * lint * type a bit more diligently
This commit is contained in:
parent
c36f9ac37b
commit
486585890d
12 changed files with 476 additions and 57 deletions
|
|
@ -51,7 +51,8 @@ ul li::before {
|
|||
border-radius: $br;
|
||||
max-width: 100%;
|
||||
|
||||
& > div, & > form {
|
||||
& > div,
|
||||
& > form {
|
||||
border-left: 0.2rem solid $border-accent;
|
||||
padding-left: 0.4rem;
|
||||
display: flex;
|
||||
|
|
@ -59,13 +60,14 @@ ul li::before {
|
|||
gap: 0.5rem;
|
||||
margin: 1rem 0;
|
||||
|
||||
h2 {
|
||||
h1, h2 {
|
||||
margin: 0;
|
||||
margin-top: 0.1rem;
|
||||
}
|
||||
|
||||
&:only-child {
|
||||
border-left: none;
|
||||
padding-left: none;
|
||||
}
|
||||
|
||||
&:first-child {
|
||||
|
|
@ -76,7 +78,8 @@ ul li::before {
|
|||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
&.without-border {
|
||||
&.without-border,
|
||||
.without-border {
|
||||
border-left: 0;
|
||||
padding-left: 0;
|
||||
}
|
||||
|
|
@ -410,6 +413,19 @@ section.with-sidebar > div, section.with-sidebar > form {
|
|||
}
|
||||
}
|
||||
|
||||
/*
|
||||
Normalize mock profile and make profile
|
||||
header preview pop a bit nicer.
|
||||
*/
|
||||
.profile {
|
||||
padding: 0;
|
||||
|
||||
& > .profile-header {
|
||||
margin-bottom: 0;
|
||||
border: 0.1rem solid $gray1;
|
||||
}
|
||||
}
|
||||
|
||||
.user-profile {
|
||||
.overview {
|
||||
display: grid;
|
||||
|
|
@ -418,14 +434,6 @@ section.with-sidebar > div, section.with-sidebar > form {
|
|||
grid-template-rows: 100%;
|
||||
gap: 1rem;
|
||||
|
||||
.profile {
|
||||
padding: 0;
|
||||
|
||||
.header {
|
||||
border: 0.1rem solid $gray1;
|
||||
}
|
||||
}
|
||||
|
||||
.files {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
|
|
@ -451,6 +459,36 @@ section.with-sidebar > div, section.with-sidebar > form {
|
|||
}
|
||||
}
|
||||
|
||||
.migration-details {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 1rem;
|
||||
|
||||
background-color: $gray2;
|
||||
padding: 1rem;
|
||||
max-width: fit-content;
|
||||
border-radius: $br;
|
||||
|
||||
& > div {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.25rem;
|
||||
|
||||
& > dd {
|
||||
font-weight: bold;
|
||||
word-wrap: anywhere;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.user-migration-alias {
|
||||
.aliases {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.5rem;
|
||||
}
|
||||
}
|
||||
|
||||
form {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue