morethanwords
5 years ago
17 changed files with 1173 additions and 526 deletions
@ -0,0 +1,52 @@ |
|||||||
|
.popup-avatar { |
||||||
|
$parent: ".popup"; |
||||||
|
|
||||||
|
#{$parent} { |
||||||
|
&-container { |
||||||
|
max-width: 600px; |
||||||
|
//max-height: 600px; |
||||||
|
padding: 15px 16px 16px 24px; |
||||||
|
overflow: hidden; |
||||||
|
display: flex; |
||||||
|
flex-direction: column; |
||||||
|
|
||||||
|
> button { |
||||||
|
position: absolute; |
||||||
|
bottom: 20px; |
||||||
|
right: 20px; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
&-close { |
||||||
|
font-size: 1.5rem; |
||||||
|
margin-top: 4px; |
||||||
|
} |
||||||
|
|
||||||
|
&-header { |
||||||
|
margin-bottom: 1px; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
h6 { |
||||||
|
font-size: 1.25rem; |
||||||
|
text-align: left; |
||||||
|
margin: 0; |
||||||
|
margin-left: 2rem; |
||||||
|
} |
||||||
|
|
||||||
|
.crop { |
||||||
|
max-width: 100%; |
||||||
|
max-height: 100%; |
||||||
|
padding: 24px 54px 46px 46px; |
||||||
|
border-radius: $border-radius; |
||||||
|
|
||||||
|
> img { |
||||||
|
display: none; |
||||||
|
} |
||||||
|
|
||||||
|
img { |
||||||
|
//height: 100%; |
||||||
|
border-radius: $border-radius; |
||||||
|
} |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,150 @@ |
|||||||
|
.popup-send-photo { |
||||||
|
$parent: ".popup"; |
||||||
|
|
||||||
|
#{$parent} { |
||||||
|
&-container { |
||||||
|
width: 420px; |
||||||
|
max-width: 420px; |
||||||
|
overflow: hidden; |
||||||
|
/* padding: 12px 20px 50px; */ |
||||||
|
padding: 12px 20px 32.5px; |
||||||
|
|
||||||
|
&.is-media:not(.is-album) { |
||||||
|
/* max-height: 425px; */ |
||||||
|
|
||||||
|
#{$parent}-photo { |
||||||
|
max-height: 320px; |
||||||
|
margin: 0 auto; |
||||||
|
padding-bottom: 8px; |
||||||
|
|
||||||
|
img { |
||||||
|
object-fit: contain; |
||||||
|
} |
||||||
|
|
||||||
|
> div { |
||||||
|
display: flex; |
||||||
|
justify-content: center; |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
&.is-album { |
||||||
|
#{$parent}-photo { |
||||||
|
margin: 0 auto; |
||||||
|
position: relative; |
||||||
|
|
||||||
|
> div { |
||||||
|
position: absolute; |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
&.is-document, &.is-album { |
||||||
|
#{$parent}-photo { |
||||||
|
img, video { |
||||||
|
object-fit: cover; |
||||||
|
width: 100%; |
||||||
|
height: 100%; |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
&-header { |
||||||
|
justify-content: space-between; |
||||||
|
align-items: center; |
||||||
|
margin-bottom: 9px; |
||||||
|
|
||||||
|
.btn-primary { |
||||||
|
width: 79px; |
||||||
|
height: 36px; |
||||||
|
font-size: 14px; |
||||||
|
font-weight: normal; |
||||||
|
padding: 0; |
||||||
|
padding-top: 2px; |
||||||
|
margin-top: -3px; |
||||||
|
border-radius: $border-radius-medium; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
&-close { |
||||||
|
font-size: 1.5rem; |
||||||
|
margin: -1px 0 0 -4px; |
||||||
|
} |
||||||
|
|
||||||
|
&-title { |
||||||
|
flex: 1; |
||||||
|
padding: 0 2rem 0 1.5rem; |
||||||
|
margin: 0; |
||||||
|
margin-top: -3px; |
||||||
|
font-size: 1.25rem; |
||||||
|
font-weight: 500; |
||||||
|
} |
||||||
|
|
||||||
|
&-photo { |
||||||
|
max-width: 380px; |
||||||
|
//display: flex; |
||||||
|
overflow: hidden; |
||||||
|
//justify-content: center; |
||||||
|
width: fit-content; |
||||||
|
border-radius: $border-radius-medium; |
||||||
|
/* align-items: center; */ |
||||||
|
|
||||||
|
.document { |
||||||
|
max-width: 100%; |
||||||
|
overflow: hidden; |
||||||
|
cursor: default; |
||||||
|
padding-left: 3.75rem; |
||||||
|
height: 4.5rem; |
||||||
|
|
||||||
|
&-name { |
||||||
|
font-weight: normal; |
||||||
|
width: 100%; |
||||||
|
max-width: 100%; |
||||||
|
overflow: hidden; |
||||||
|
text-overflow: ellipsis; |
||||||
|
line-height: 1.5; |
||||||
|
} |
||||||
|
|
||||||
|
&-ico { |
||||||
|
height: 48px; |
||||||
|
width: 48px; |
||||||
|
font-size: 16px; |
||||||
|
font-weight: normal; |
||||||
|
line-height: 11px; |
||||||
|
letter-spacing: 0; |
||||||
|
} |
||||||
|
|
||||||
|
/* &.photo { |
||||||
|
.document-ico { |
||||||
|
border-radius: $border-radius; |
||||||
|
} |
||||||
|
} */ |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
.input-field { |
||||||
|
margin-top: 1rem; |
||||||
|
|
||||||
|
&::placeholder { |
||||||
|
color: #a2acb4; |
||||||
|
} |
||||||
|
|
||||||
|
input { |
||||||
|
height: 54px; |
||||||
|
font-size: 1rem; |
||||||
|
padding: 0 15px; |
||||||
|
border-radius: $border-radius-medium; |
||||||
|
|
||||||
|
&:focus { |
||||||
|
padding: 0 14.5px; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
label { |
||||||
|
font-size: inherit; |
||||||
|
opacity: 0; |
||||||
|
} |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,80 @@ |
|||||||
|
.popup { |
||||||
|
position: fixed!important; |
||||||
|
left: 0; |
||||||
|
top: 0; |
||||||
|
height: 100%; |
||||||
|
max-width: none; |
||||||
|
width: 100%; |
||||||
|
z-index: 3; |
||||||
|
background-color: rgba(0, 0, 0, .3); |
||||||
|
margin: 0; |
||||||
|
padding: 0; |
||||||
|
box-shadow: none; |
||||||
|
opacity: 0; |
||||||
|
visibility: hidden; |
||||||
|
-webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s; |
||||||
|
-moz-transition: opacity 0.3s 0s, visibility 0s 0.3s; |
||||||
|
transition: opacity 0.3s 0s, visibility 0s 0.3s; |
||||||
|
overflow: auto; |
||||||
|
/* text-align: center; */ |
||||||
|
display: flex; |
||||||
|
align-items: center; |
||||||
|
justify-content: center; |
||||||
|
|
||||||
|
&.active { |
||||||
|
opacity: 1; |
||||||
|
visibility: visible; |
||||||
|
-webkit-transition: opacity 0.3s 0s, visibility 0s 0s; |
||||||
|
-moz-transition: opacity 0.3s 0s, visibility 0s 0s; |
||||||
|
transition: opacity 0.3s 0s, visibility 0s 0s; |
||||||
|
|
||||||
|
.popup-container { |
||||||
|
-webkit-transform: translateY(0); |
||||||
|
-moz-transform: translateY(0); |
||||||
|
-ms-transform: translateY(0); |
||||||
|
-o-transform: translateY(0); |
||||||
|
transform: translateY(0); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
&-container { |
||||||
|
position: relative; |
||||||
|
/* max-width: 400px; */ |
||||||
|
border-radius: $border-radius-medium; |
||||||
|
background-color: #fff; |
||||||
|
padding: 1rem; |
||||||
|
-webkit-transform: translateY(-40px); |
||||||
|
-moz-transform: translateY(-40px); |
||||||
|
-ms-transform: translateY(-40px); |
||||||
|
-o-transform: translateY(-40px); |
||||||
|
transform: translateY(-40px); |
||||||
|
backface-visibility: hidden; |
||||||
|
-webkit-backface-visibility: hidden; |
||||||
|
-webkit-transition-property: -webkit-transform; |
||||||
|
-moz-transition-property: -moz-transform; |
||||||
|
transition-property: transform; |
||||||
|
-webkit-transition-duration: 0.3s; |
||||||
|
-moz-transition-duration: 0.3s; |
||||||
|
transition-duration: 0.3s; |
||||||
|
} |
||||||
|
|
||||||
|
&-close { |
||||||
|
cursor: pointer; |
||||||
|
color: $color-gray; |
||||||
|
z-index: 3; |
||||||
|
text-align: center; |
||||||
|
justify-self: center; |
||||||
|
line-height: 1; |
||||||
|
transition: .2s; |
||||||
|
|
||||||
|
&:hover { |
||||||
|
color: #000; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
&-header { |
||||||
|
display: flex; |
||||||
|
margin-bottom: 2rem; |
||||||
|
align-items: center; |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue