2024-08-13 12:48:52 +03:00
|
|
|
.container {
|
|
|
|
border-radius: 4px;
|
|
|
|
background: white;
|
|
|
|
padding: 15px;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
grid-gap: 0px;
|
|
|
|
}
|
|
|
|
|
2024-08-14 16:08:42 +03:00
|
|
|
.filesPageContainer {
|
|
|
|
width: 100%;
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 0.75fr 1.5fr 0.75fr;
|
|
|
|
grid-gap: 30px;
|
|
|
|
flex-grow: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul {
|
|
|
|
list-style-type: none; /* Removes bullet points */
|
2024-08-20 11:46:24 +02:00
|
|
|
margin: 0; /* Removes default margin */
|
|
|
|
padding: 0; /* Removes default padding */
|
2024-08-14 16:08:42 +03:00
|
|
|
}
|
|
|
|
|
2024-08-15 15:35:37 +03:00
|
|
|
li {
|
|
|
|
list-style-type: none; /* Removes the bullets */
|
|
|
|
margin: 0; /* Removes any default margin */
|
|
|
|
padding: 0; /* Removes any default padding */
|
|
|
|
}
|
|
|
|
|
2024-08-14 16:08:42 +03:00
|
|
|
.wrap {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
grid-gap: 15px;
|
|
|
|
}
|
|
|
|
|
2024-08-13 12:48:52 +03:00
|
|
|
.files {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
width: 100%;
|
|
|
|
grid-gap: 15px;
|
|
|
|
max-height: 350px;
|
|
|
|
overflow: auto;
|
|
|
|
padding: 0 5px 0 0;
|
|
|
|
margin: 0 -5px 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.files::-webkit-scrollbar {
|
|
|
|
width: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.files::-webkit-scrollbar-track {
|
2024-08-20 11:46:24 +02:00
|
|
|
background-color: rgba(0, 0, 0, 0.15);
|
2024-08-13 12:48:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.files::-webkit-scrollbar-thumb {
|
|
|
|
max-width: 10px;
|
|
|
|
border-radius: 2px;
|
|
|
|
background-color: #4c82a3;
|
|
|
|
cursor: grab;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fileItem {
|
|
|
|
transition: ease 0.2s;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
grid-gap: 10px;
|
|
|
|
border-radius: 4px;
|
|
|
|
overflow: hidden;
|
|
|
|
background: #ffffff;
|
|
|
|
padding: 5px 10px;
|
|
|
|
align-items: center;
|
2024-08-20 11:46:24 +02:00
|
|
|
color: rgba(0, 0, 0, 0.5);
|
2024-08-13 12:48:52 +03:00
|
|
|
cursor: pointer;
|
|
|
|
flex-grow: 1;
|
|
|
|
font-size: 16px;
|
|
|
|
font-weight: 500;
|
2024-08-20 11:46:24 +02:00
|
|
|
min-height: 45px;
|
2024-08-14 16:08:42 +03:00
|
|
|
|
2024-08-14 12:24:15 +03:00
|
|
|
&.active {
|
|
|
|
background: #4c82a3;
|
|
|
|
color: white;
|
|
|
|
}
|
2024-08-13 12:48:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.fileItem:hover {
|
|
|
|
background: #4c82a3;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
2024-08-15 15:35:37 +03:00
|
|
|
.fileInfo {
|
|
|
|
flex-grow: 1;
|
|
|
|
font-size: 16px;
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
|
2024-08-13 12:48:52 +03:00
|
|
|
.fileName {
|
|
|
|
display: -webkit-box;
|
|
|
|
-webkit-box-orient: vertical;
|
|
|
|
overflow: hidden;
|
|
|
|
-webkit-line-clamp: 1;
|
2024-08-20 11:46:24 +02:00
|
|
|
line-clamp: 1;
|
2024-08-13 12:48:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.fileNumber {
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: 500;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2024-08-15 15:35:37 +03:00
|
|
|
width: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fileVisual {
|
|
|
|
display: flex;
|
|
|
|
flex-shrink: 0;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
height: 25px;
|
|
|
|
width: 25px;
|
2024-08-20 11:46:24 +02:00
|
|
|
}
|