2024-07-26 10:42:15 +02:00
|
|
|
@import '../../styles/colors.scss';
|
2024-04-18 16:12:11 +05:00
|
|
|
|
2024-08-16 11:08:03 +02:00
|
|
|
.flexWrap {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
gap: 15px;
|
2024-08-28 16:51:02 +02:00
|
|
|
|
|
|
|
container-type: inline-size;
|
2024-08-16 11:08:03 +02:00
|
|
|
}
|
|
|
|
|
2024-08-19 08:30:22 +02:00
|
|
|
.orderedFilesList {
|
|
|
|
counter-reset: item;
|
|
|
|
list-style-type: none;
|
|
|
|
margin: 0;
|
|
|
|
|
|
|
|
li {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
transition: ease 0.4s;
|
|
|
|
border-radius: 4px;
|
|
|
|
background: #ffffff;
|
|
|
|
padding: 7px 10px;
|
|
|
|
color: rgba(0, 0, 0, 0.5);
|
|
|
|
min-height: 45px;
|
|
|
|
cursor: pointer;
|
|
|
|
gap: 10px;
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
content: counter(item) ' ';
|
|
|
|
counter-increment: item;
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
:nth-child(1) {
|
|
|
|
flex-grow: 1;
|
|
|
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
button {
|
|
|
|
color: $primary-main;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&.active,
|
|
|
|
&:focus-within {
|
|
|
|
background: $primary-main;
|
|
|
|
color: white;
|
|
|
|
|
|
|
|
button {
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-08-20 09:23:42 +02:00
|
|
|
.uploadFileText {
|
|
|
|
margin-left: 12px;
|
|
|
|
}
|
|
|
|
|
2024-08-16 11:08:03 +02:00
|
|
|
.paperGroup {
|
|
|
|
border-radius: 4px;
|
|
|
|
background: white;
|
|
|
|
padding: 15px;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
gap: 15px;
|
2024-08-19 08:30:22 +02:00
|
|
|
overflow-x: hidden;
|
|
|
|
overflow-y: auto;
|
2024-05-14 14:27:05 +05:00
|
|
|
}
|
2024-04-18 16:12:11 +05:00
|
|
|
|
2024-08-19 08:30:22 +02:00
|
|
|
.inputWrapper {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2024-08-30 17:39:32 +02:00
|
|
|
flex-shrink: 0;
|
2024-08-19 08:30:22 +02:00
|
|
|
|
2024-09-04 17:35:54 +02:00
|
|
|
height: 36px;
|
2024-08-19 08:30:22 +02:00
|
|
|
overflow: hidden;
|
|
|
|
border-radius: 4px;
|
|
|
|
outline: solid 1px #dddddd;
|
|
|
|
background: white;
|
|
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
&:focus-within {
|
|
|
|
outline-color: $primary-main;
|
|
|
|
}
|
2024-05-20 00:08:41 +05:00
|
|
|
}
|
|
|
|
|
2024-09-04 17:35:54 +02:00
|
|
|
.addCounterpart {
|
|
|
|
flex-shrink: 0;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: start;
|
|
|
|
gap: 10px;
|
|
|
|
background: white;
|
|
|
|
border-radius: 0 0 4px 4px;
|
|
|
|
padding: 15px;
|
|
|
|
|
|
|
|
> .inputWrapper {
|
|
|
|
flex-shrink: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-08-30 17:39:32 +02:00
|
|
|
.users {
|
|
|
|
flex-shrink: 0;
|
|
|
|
max-height: 33vh;
|
2024-09-04 17:35:54 +02:00
|
|
|
|
|
|
|
border-bottom-left-radius: 0;
|
|
|
|
border-bottom-right-radius: 0;
|
2024-09-04 17:37:01 +02:00
|
|
|
margin-bottom: -15px;
|
2024-08-30 17:39:32 +02:00
|
|
|
}
|
|
|
|
|
2024-08-19 08:30:22 +02:00
|
|
|
.user {
|
|
|
|
display: flex;
|
|
|
|
gap: 10px;
|
2024-05-14 14:27:05 +05:00
|
|
|
|
2024-08-19 08:30:22 +02:00
|
|
|
font-size: 14px;
|
|
|
|
text-align: start;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2024-05-14 14:27:05 +05:00
|
|
|
|
2024-08-19 08:30:22 +02:00
|
|
|
a:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.avatar {
|
|
|
|
flex-grow: 1;
|
2024-08-20 11:46:24 +02:00
|
|
|
min-width: 0;
|
2024-08-19 08:30:22 +02:00
|
|
|
|
|
|
|
&:first-child {
|
2024-08-20 11:46:24 +02:00
|
|
|
margin-left: 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
img {
|
|
|
|
// Override the default avatar size
|
|
|
|
width: 30px;
|
|
|
|
height: 30px;
|
2024-04-18 16:12:11 +05:00
|
|
|
}
|
2024-08-15 18:57:40 +02:00
|
|
|
}
|
2024-08-19 14:55:26 +02:00
|
|
|
|
|
|
|
.fileName {
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
flex-grow: 1;
|
|
|
|
}
|
2024-08-19 18:05:14 +02:00
|
|
|
|
|
|
|
.toolbox {
|
|
|
|
display: grid;
|
2024-08-28 16:51:02 +02:00
|
|
|
grid-template-columns: 1fr;
|
|
|
|
|
|
|
|
@container (min-width: 204px) {
|
2024-08-28 18:05:30 +02:00
|
|
|
grid-template-columns: repeat(2, 1fr);
|
2024-08-28 16:51:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@container (min-width: 309px) {
|
2024-08-28 18:05:30 +02:00
|
|
|
grid-template-columns: repeat(3, 1fr);
|
2024-08-28 16:51:02 +02:00
|
|
|
}
|
|
|
|
|
2024-08-19 18:05:14 +02:00
|
|
|
gap: 15px;
|
|
|
|
|
|
|
|
overflow-x: hidden;
|
|
|
|
overflow-y: auto;
|
2024-08-28 16:51:02 +02:00
|
|
|
|
|
|
|
container-type: inline-size;
|
2024-08-19 18:05:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.toolItem {
|
|
|
|
transition: ease 0.2s;
|
2024-08-28 16:51:02 +02:00
|
|
|
display: flex;
|
2024-08-19 18:05:14 +02:00
|
|
|
flex-direction: column;
|
|
|
|
gap: 5px;
|
|
|
|
border-radius: 4px;
|
|
|
|
padding: 10px 5px 5px 5px;
|
|
|
|
background: rgba(0, 0, 0, 0.05);
|
|
|
|
color: rgba(0, 0, 0, 0.5);
|
2024-08-28 16:51:02 +02:00
|
|
|
|
|
|
|
text-align: center;
|
2024-08-19 18:05:14 +02:00
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
font-size: 14px;
|
|
|
|
cursor: pointer;
|
|
|
|
-webkit-user-select: none;
|
|
|
|
user-select: none;
|
|
|
|
|
|
|
|
&.selected {
|
|
|
|
background: $primary-main;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
2024-08-28 16:51:02 +02:00
|
|
|
&:not(.selected, .comingSoon) {
|
2024-08-19 18:05:14 +02:00
|
|
|
&:hover {
|
|
|
|
background: $primary-light;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.comingSoon {
|
|
|
|
opacity: 0.5;
|
|
|
|
cursor: not-allowed;
|
|
|
|
}
|
|
|
|
}
|