2020-03-26 11:25:16 +01:00
|
|
|
.settings-content {
|
2020-05-22 13:48:21 +02:00
|
|
|
header {
|
2020-03-26 11:25:16 +01:00
|
|
|
display: flex;
|
2020-05-22 13:48:21 +02:00
|
|
|
flex-direction: column;
|
|
|
|
height: 160px;
|
|
|
|
background-color: $color-white;
|
2020-03-26 11:25:16 +01:00
|
|
|
|
2020-05-22 13:48:21 +02:00
|
|
|
.secondary-menu {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
height: 40px;
|
|
|
|
font-size: $fs14;
|
|
|
|
color: $color-gray-60;
|
2020-03-26 11:25:16 +01:00
|
|
|
|
2020-05-22 13:48:21 +02:00
|
|
|
.icon {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.left {
|
|
|
|
margin-left: 30px;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
.label {
|
|
|
|
margin-left: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
svg {
|
|
|
|
fill: $color-gray-60;
|
|
|
|
width: 14px;
|
|
|
|
height: 14px;
|
|
|
|
transform: rotate(180deg);
|
|
|
|
}
|
2020-03-26 11:25:16 +01:00
|
|
|
}
|
2020-05-22 13:48:21 +02:00
|
|
|
.right {
|
|
|
|
align-items: center;
|
|
|
|
cursor: pointer;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
margin-right: 30px;
|
|
|
|
|
|
|
|
.label {
|
|
|
|
color: $color-primary-dark;
|
|
|
|
margin-right: 15px;
|
|
|
|
}
|
2020-03-26 11:25:16 +01:00
|
|
|
|
2020-05-22 13:48:21 +02:00
|
|
|
svg {
|
|
|
|
fill: $color-primary-dark;
|
|
|
|
width: 14px;
|
|
|
|
height: 14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
.label {
|
|
|
|
color: $color-danger;
|
|
|
|
}
|
|
|
|
svg {
|
|
|
|
fill: $color-danger;
|
|
|
|
}
|
|
|
|
}
|
2020-03-26 11:25:16 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-22 13:48:21 +02:00
|
|
|
h1 {
|
|
|
|
align-items: top;
|
|
|
|
color: $color-gray-60;
|
|
|
|
display: flex;
|
|
|
|
flex-grow: 1;
|
|
|
|
font-size: $fs24;
|
2023-02-22 13:52:45 +01:00
|
|
|
font-weight: $fw400;
|
2020-05-22 13:48:21 +02:00
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
height: 40px;
|
|
|
|
|
|
|
|
.nav-item {
|
|
|
|
align-items: center;
|
|
|
|
color: $color-gray-40;
|
|
|
|
display: flex;
|
|
|
|
flex-basis: 140px;
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
&.current {
|
|
|
|
border-bottom: 3px solid $color-primary;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-03-03 21:25:19 +01:00
|
|
|
}
|
|
|
|
|
2020-05-22 13:48:21 +02:00
|
|
|
.settings-profile {
|
|
|
|
.forms-container {
|
|
|
|
margin-top: 80px;
|
|
|
|
}
|
2016-03-03 21:25:19 +01:00
|
|
|
}
|
|
|
|
|
2020-05-22 13:48:21 +02:00
|
|
|
.avatar-form {
|
|
|
|
flex-basis: 168px;
|
|
|
|
height: 100vh;
|
|
|
|
display: flex;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
.image-change-field {
|
|
|
|
position: relative;
|
|
|
|
width: 120px;
|
|
|
|
height: 120px;
|
|
|
|
|
|
|
|
.update-overlay {
|
|
|
|
opacity: 0;
|
|
|
|
cursor: pointer;
|
|
|
|
position: absolute;
|
|
|
|
width: 121px;
|
|
|
|
height: 121px;
|
|
|
|
border-radius: 50%;
|
|
|
|
font-size: $fs24;
|
|
|
|
color: $color-white;
|
2023-02-24 14:26:44 +01:00
|
|
|
line-height: $lh-500; // Original value was 120px; 120px/24px =500% => $lh-500
|
2020-05-22 13:48:21 +02:00
|
|
|
text-align: center;
|
|
|
|
background: $color-primary-dark;
|
|
|
|
z-index: 14;
|
|
|
|
}
|
|
|
|
|
2022-01-12 11:27:43 +01:00
|
|
|
input[type="file"] {
|
2020-05-22 13:48:21 +02:00
|
|
|
width: 120px;
|
|
|
|
height: 120px;
|
|
|
|
position: absolute;
|
|
|
|
opacity: 0;
|
|
|
|
cursor: pointer;
|
|
|
|
top: 0;
|
|
|
|
z-index: 15;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
2022-01-12 11:27:43 +01:00
|
|
|
img {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.update-overlay {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
2020-05-22 13:48:21 +02:00
|
|
|
}
|
|
|
|
}
|
2016-03-06 12:14:44 +01:00
|
|
|
}
|
|
|
|
|
2020-05-22 13:48:21 +02:00
|
|
|
.profile-form {
|
|
|
|
flex-grow: 1;
|
2020-05-26 13:56:32 +02:00
|
|
|
flex-basis: 390px;
|
2020-03-24 23:25:16 +01:00
|
|
|
display: flex;
|
2020-05-26 13:56:32 +02:00
|
|
|
|
2020-03-24 23:25:16 +01:00
|
|
|
flex-direction: column;
|
2020-05-22 13:48:21 +02:00
|
|
|
|
|
|
|
.change-email {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
2020-10-05 18:20:39 +02:00
|
|
|
font-size: $fs14;
|
2020-05-22 13:48:21 +02:00
|
|
|
color: $color-primary-dark;
|
|
|
|
justify-content: flex-end;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
2020-03-24 23:25:16 +01:00
|
|
|
}
|
2016-03-03 21:25:19 +01:00
|
|
|
|
2020-03-24 23:25:16 +01:00
|
|
|
.avatar-form {
|
|
|
|
img {
|
|
|
|
border-radius: 50%;
|
|
|
|
flex-shrink: 0;
|
|
|
|
height: 120px;
|
2021-10-05 10:16:44 +02:00
|
|
|
margin-right: $size-4;
|
2020-03-24 23:25:16 +01:00
|
|
|
width: 120px;
|
|
|
|
}
|
2020-05-22 13:48:21 +02:00
|
|
|
}
|
2016-03-03 21:25:19 +01:00
|
|
|
|
2020-05-22 13:48:21 +02:00
|
|
|
.options-form,
|
|
|
|
.password-form {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
flex-basis: 368px;
|
|
|
|
|
|
|
|
h2 {
|
|
|
|
font-size: $fs14;
|
2023-02-22 13:52:45 +01:00
|
|
|
font-weight: $fw400;
|
2021-10-05 10:16:44 +02:00
|
|
|
margin-bottom: $size-4;
|
2020-05-22 13:48:21 +02:00
|
|
|
}
|
2016-03-03 21:25:19 +01:00
|
|
|
}
|
|
|
|
}
|