keanu-weblite/src/assets/css/sendattachments.scss

628 lines
12 KiB
SCSS
Raw Normal View History

2025-06-09 09:44:37 +02:00
@use "@/assets/css/variables" as *;
2025-06-10 16:50:19 +02:00
$background: #000000;
2025-07-03 15:45:49 +02:00
$backgroundSection: #333333E5;
2025-06-09 09:44:37 +02:00
$backgroundHilite: #383739;
2025-07-03 15:45:49 +02:00
$backgroundDark: #242424;
2025-06-10 16:50:19 +02:00
$text: #ffffff;
2025-06-09 09:44:37 +02:00
$hiliteColor: #4642f1;
.send-attachments {
font-family: "Inter", sans-serif;
z-index: 10;
position: absolute;
top: 0px;
left: 0;
right: 0;
bottom: 0;
margin: 0;
2025-07-03 15:45:49 +02:00
padding: 0;
2025-06-09 09:44:37 +02:00
background-color: $background;
color: $text;
overflow: hidden;
display: flex;
flex-direction: column;
text-align: center;
2025-07-03 15:45:49 +02:00
.title {
font-family: "Inter", sans-serif;
font-weight: 700;
font-size: 14px;
line-height: 125%;
letter-spacing: 0.4px;
text-align: center;
vertical-align: bottom;
color: white;
flex: 0 0 50px;
background-color: $backgroundSection;
display: flex;
align-items: center;
justify-content: center;
}
2025-06-09 09:44:37 +02:00
.v-btn {
font-family: "Inter", sans-serif;
font-weight: 700;
font-size: 11.54 * $chat-text-size;
line-height: 140%;
color: white;
background-color: $hiliteColor !important;
border-radius: $small-button-height * 0.5;
min-height: 0;
height: $small-button-height !important;
margin-top: $chat-standard-padding-xs;
margin-bottom: $chat-standard-padding-xs;
2025-06-09 09:44:37 +02:00
&.large {
padding: 16px 23px;
height: $large-button-height;
border-radius: $large-button-height * 0.5;
}
}
.back-button {
position: absolute;
2025-07-03 15:45:49 +02:00
top: 8px;
left: 16px;
margin: 0;
z-index: 1;
2025-07-03 15:45:49 +02:00
background-color: transparent !important;
}
2025-06-09 09:44:37 +02:00
textarea {
color: rgba($text, 80%) !important;
}
2025-06-09 09:44:37 +02:00
textarea::placeholder {
color: rgba($text, 80%) !important;
}
2025-07-03 15:45:49 +02:00
.send-attachments__selecting__current-item,
.gallery-current-item {
2025-06-09 09:44:37 +02:00
width: 100%;
2025-06-10 16:50:19 +02:00
flex: 1 1 100%;
2025-06-09 09:44:37 +02:00
background-color: $backgroundSection;
display: flex;
2025-07-17 11:22:26 +02:00
position: relative;
2025-06-09 09:44:37 +02:00
&.drop-target {
background-color: $backgroundHilite;
}
2025-07-03 15:45:49 +02:00
//border-radius: 19px;
2025-06-09 09:44:37 +02:00
overflow: hidden;
2025-06-09 09:44:37 +02:00
.v-img {
width: 100%;
height: 100%;
object-fit: cover;
}
2025-07-17 11:22:26 +02:00
.send-attachments__selecting__current-item__preparing {
position: absolute;
right: 8px;
bottom: 4px;
2025-06-09 09:44:37 +02:00
display: flex;
flex-direction: column;
2025-07-17 11:22:26 +02:00
align-items: end;
justify-content: end;
2025-06-09 09:44:37 +02:00
}
}
2025-07-03 15:45:49 +02:00
.file-drop-thumbnail-container,
.gallery-thumbnail-container {
2025-06-09 09:44:37 +02:00
width: 100%;
2025-07-03 15:45:49 +02:00
background-color: $backgroundSection;
padding: 16px 20px 24px 20px;
2025-06-10 16:50:19 +02:00
flex: 0 0 74px;
2025-06-09 09:44:37 +02:00
overflow-x: auto;
overflow-y: hidden;
white-space: nowrap;
text-align: start;
/* Hide scrollbar for Chrome, Safari and Opera */
&::-webkit-scrollbar {
display: none;
}
2025-06-09 09:44:37 +02:00
/* Hide scrollbar for IE, Edge and Firefox */
-ms-overflow-style: none;
/* IE and Edge */
scrollbar-width: none;
/* Firefox */
2025-06-09 09:44:37 +02:00
.v-badge {
2025-07-03 15:45:49 +02:00
//margin-right: 8px;
}
.v-badge__badge {
top: 0;
width: 12px;
height: 12px;
padding: 0;
2025-06-12 11:03:31 +02:00
min-width: 12px;
user-select: none;
2025-06-12 11:03:31 +02:00
span {
width: 100%;
height: 100%;
}
}
2025-06-09 09:44:37 +02:00
.file-drop-thumbnail {
width: 46px;
height: 46px;
border-radius: 9px;
overflow: hidden;
2025-07-03 15:45:49 +02:00
background-color: $backgroundDark;
2025-06-09 09:44:37 +02:00
border: 2px solid white;
display: inline-block;
position: relative;
2025-06-09 09:44:37 +02:00
&.current {
border: 2px solid #4642f1;
}
2025-06-09 09:44:37 +02:00
&.noborder {
2025-07-03 15:45:49 +02:00
border: 2px solid $backgroundDark;
2025-06-09 09:44:37 +02:00
}
2025-06-09 09:44:37 +02:00
.v-img {
width: 100%;
height: 100%;
object-fit: cover;
}
2025-06-09 09:44:37 +02:00
margin-right: 8px;
.add,
.remove {
2025-06-10 16:50:19 +02:00
color: $text;
2025-06-09 09:44:37 +02:00
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: flex;
align-items: center;
justify-content: center;
2025-06-09 09:44:37 +02:00
.v-icon {
width: 14px;
height: 15.75px;
}
}
2025-06-09 09:44:37 +02:00
.remove {
// Slight background to make visible
background-color: rgba(black, 0.2);
}
}
}
.file-drop-section {
margin-top: 20px;
padding: 16px 18px;
background-color: $backgroundSection;
2025-07-03 15:45:49 +02:00
//border-radius: 19px;
2025-06-09 09:44:37 +02:00
}
2025-06-10 16:50:19 +02:00
.file-drop-input-container {
flex: 1 1 auto;
2025-07-03 15:45:49 +02:00
width: 100%;
position: relative;
padding: 0 16px 16px 16px;
display: flex;
flex-direction: row;
background-color: $backgroundSection;
.file-drop-input-container__input {
background-color: $backgroundDark;
border-radius: 22px;
flex: 1 1 auto;
position: relative;
margin-right: 15px;
height: 42px;
overflow: hidden;
}
.send-button {
margin: 0;
padding: 0;
position: absolute;
top: 3px;
right: 3px;
}
.info-button {
background-color: $backgroundDark !important;
margin: 0;
2025-07-03 18:17:43 +02:00
width: 44px !important;
height: 44px !important;
border-radius: 22px !important;
2025-07-03 15:45:49 +02:00
}
2025-06-10 16:50:19 +02:00
}
2025-06-09 09:44:37 +02:00
.file-drop-sending-input-container,
.file-drop-sent-input-container {
position: relative;
width: 100%;
min-height: 100px;
background-color: $backgroundSection;
display: flex;
flex-direction: column;
2025-06-09 09:44:37 +02:00
.input-container__buttons {
position: absolute;
right: 8px;
bottom: 10px;
display: flex;
&>*:not(:first-child) {
2025-06-09 09:44:37 +02:00
margin-left: 8px;
}
}
}
.input-area-text {
flex: 0 0 auto;
width: 100%;
margin-bottom: 50px;
2025-07-03 15:45:49 +02:00
//padding: 6px 8px;
font-family: "Inter", sans-serif;
font-weight: 300;
2025-07-03 15:45:49 +02:00
input {
color: white !important;
padding-right: 50px;
}
.v-field {
background-color: transparent !important;
}
}
2025-06-09 09:44:37 +02:00
@keyframes fadeInStackItem {
from {
opacity: 0;
}
to {
opacity: 1;
}
2025-06-09 09:44:37 +02:00
}
// Sending
//
.file-drop-sent-stack {
width: 100%;
height: 30%;
display: flex;
align-items: center;
justify-content: center;
2025-06-09 09:44:37 +02:00
.no-items {
display: flex;
align-items: center;
justify-content: center;
2025-06-09 09:44:37 +02:00
div {
position: absolute;
}
2025-06-09 09:44:37 +02:00
.file-drop-stack-item {
transform: rotate(-4.4deg);
}
2025-06-09 09:44:37 +02:00
color: #fff;
text-align: center;
font-size: 21 * $chat-text-size;
font-family: "Poppins",
sans-serif;
2025-06-09 09:44:37 +02:00
font-weight: 700;
letter-spacing: 0.34px;
}
2025-06-09 09:44:37 +02:00
.items-sent {
z-index: 1000;
display: flex;
align-items: center;
justify-content: center;
div,
.v-icon {
2025-06-09 09:44:37 +02:00
position: absolute;
}
.v-icon,
.v-icon__component {
2025-06-09 09:44:37 +02:00
width: 30%;
height: 30%;
}
}
2025-06-09 09:44:37 +02:00
.file-drop-stack-item {
background: #3a3a3c;
position: absolute;
overflow: hidden;
opacity: 0;
2025-06-09 09:44:37 +02:00
.v-img {
width: 100%;
height: 100%;
object-fit: cover;
}
2025-06-09 09:44:37 +02:00
&.direct {
opacity: 1 !important;
}
2025-06-09 09:44:37 +02:00
&.animated {
animation-name: fadeInStackItem;
animation-fill-mode: both;
animation-duration: 1.5s;
}
}
}
.file-drop-sending-container {
width: 100%;
2025-08-25 11:38:41 +02:00
padding: 13px 10px 15px 10px;
2025-06-09 09:44:37 +02:00
height: 50%;
overflow-x: hidden;
overflow-y: auto;
white-space: nowrap;
text-align: start;
/* Hide scrollbar for Chrome, Safari and Opera */
&::-webkit-scrollbar {
display: none;
}
2025-06-09 09:44:37 +02:00
/* Hide scrollbar for IE, Edge and Firefox */
-ms-overflow-style: none;
/* IE and Edge */
scrollbar-width: none;
/* Firefox */
2025-06-09 09:44:37 +02:00
.file-drop-sending-item {
width: 100%;
height: 64px;
overflow: hidden;
background-color: $backgroundSection;
border-radius: 12px;
position: relative;
padding: 8px;
2025-06-09 09:44:37 +02:00
.v-img {
width: $min-touch-target;
height: $min-touch-target;
border-radius: 8px;
object-fit: cover;
flex: 0 0 $min-touch-target;
margin-right: 8px;
}
2025-06-09 09:44:37 +02:00
margin-bottom: 8px;
display: flex;
align-items: center;
2025-06-09 09:44:37 +02:00
.filename {
position: absolute;
top: 18px;
left: 8px;
font-size: 0.7em;
}
2025-06-09 09:44:37 +02:00
.v-progress-linear {
align-self: flex-end;
}
2025-06-09 09:44:37 +02:00
.file-drop-cancel {
position: absolute;
right: 8px;
width: 17px;
height: 17px;
color: green !important;
background: #2e2e3b;
border-radius: 8.5px;
display: flex;
align-items: center;
justify-content: center;
}
}
}
.file-drop-sending-input-container {
2025-08-25 11:38:41 +02:00
padding: 10px;
2025-06-09 09:44:37 +02:00
.v-btn {
.v-progress-circular {
margin-left: 8px;
}
background: linear-gradient(0deg, #000 0%, #000 100%),
#4642f1;
2025-06-09 09:44:37 +02:00
}
}
.file-drop-files-sent {
width: 100%;
color: $text;
text-align: center;
font-size: 21 * $chat-text-size;
font-family: "Poppins", sans-serif;
font-weight: 700;
letter-spacing: 0.34px;
text-align: center;
}
.file-drop-sent-input-container {
2025-08-25 11:38:41 +02:00
padding: 10px;
2025-06-09 09:44:37 +02:00
background-color: transparent;
2025-06-09 09:44:37 +02:00
.v-btn {
left: 8px;
2025-08-25 11:38:41 +02:00
right: 8px;
2025-06-09 09:44:37 +02:00
&.close {
background: $hiliteColor !important;
}
}
}
2025-06-12 11:03:31 +02:00
}
2025-07-03 18:12:36 +02:00
.send-attachments-info-popup {
background-color: rgba(0, 0, 0, 0.9);
2025-07-03 18:12:36 +02:00
.done-button {
padding: 14px 24px;
}
.left-right-arrow {
background-color: transparent !important;
.v-btn__overlay {
display: none;
}
}
.title {
font-family: "Inter", sans-serif;
font-weight: 400;
font-size: 12px;
line-height: 125%;
letter-spacing: 0.4px;
text-align: center;
vertical-align: middle;
text-overflow: ellipsis;
height: 36px;
display: flex;
align-items: center;
justify-content: center;
}
}
2025-06-12 11:03:31 +02:00
.attachment-info {
text-align: start;
position: relative;
2025-07-03 18:12:36 +02:00
.attachment-info__quality {
.attachment-info__quality__title {
font-family: "Inter", sans-serif;
font-weight: 600;
font-size: 16px;
line-height: 125%;
letter-spacing: 0.4px;
vertical-align: middle;
}
.attachment-info__quality__class {
font-family: "Inter", sans-serif;
font-weight: 600;
font-size: 16px;
line-height: 125%;
letter-spacing: 0.4px;
vertical-align: middle;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
width: 156px;
padding: 10px 2px;
background-color: #242424;
border-radius: 8px;
border: 2px solid #242424;
2025-07-03 18:12:36 +02:00
&.selected {
border: 2px solid #4642F1;
}
.attachment-info__quality__class-name {
margin: 4px 0 3px 0;
}
.attachment-info__quality__class-size {
font-family: "Inter", sans-serif;
font-weight: 400;
font-size: 12px;
line-height: 125%;
letter-spacing: 0.4px;
text-align: center;
vertical-align: middle;
}
&:not(:last-of-type) {
margin-right: 8px;
}
2025-06-12 11:03:31 +02:00
2025-07-03 18:12:36 +02:00
&:not(:first-of-type) {
margin-left: 8px;
}
}
.attachment-info__quality__info {
margin-top: 24px;
font-family: "Inter", sans-serif;
font-weight: 400;
font-size: 14px;
line-height: 125%;
letter-spacing: 0.4px;
text-align: center;
}
2025-06-12 11:03:31 +02:00
}
.attachment-info__detail-box {
margin-top: 32px;
padding: 16px;
border-radius: 8px;
background-color: $backgroundDark;
.detail-title {
font-family: "Inter", sans-serif;
font-weight: 600;
font-size: 16px;
line-height: 125%;
letter-spacing: 0.4px;
2025-07-11 14:36:58 +02:00
display: flex;
align-items: center;
justify-content: space-between;
white-space: nowrap;
.v-icon {
flex: 0 0 24px;
width: 24px;
height: 24px;
}
}
2025-07-03 15:45:49 +02:00
.detail-subtitle {
font-family: "Inter", sans-serif;
font-weight: 400;
font-size: 14px;
line-height: 125%;
letter-spacing: 0.4px;
margin-top: 8px;
padding-bottom: 4px;
a, a:visited {
font-weight: 700;
color: #8A87FF;
text-decoration: none !important;
}
}
.detail-row {
margin-top: 12px;
font-family: "Inter", sans-serif;
font-weight: 400;
font-size: 14px;
line-height: 125%;
letter-spacing: 0.4px;
color: rgba(255, 255, 255, 0.9);
.v-icon {
margin-right: 8px;
}
2025-06-12 11:03:31 +02:00
}
}
}