초기 PM 소스 전체 업로드
444
views/main/composition-tab.html
Normal file
@@ -0,0 +1,444 @@
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html lang="ko">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>구성</title>
|
||||
<link rel="stylesheet" href="/main/css/reset.css" />
|
||||
|
||||
<style>
|
||||
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");
|
||||
|
||||
* {
|
||||
font-family: 'Pretendard Variable', 'Pretendard';
|
||||
font-size: 1rem;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
html, body {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
margin: 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.composition-modal{
|
||||
display: flex;
|
||||
position: fixed;
|
||||
inset: 0;
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
background: transparent;
|
||||
align-items: stretch;
|
||||
justify-content: stretch;
|
||||
}
|
||||
|
||||
.composition-modal .modal-wrap{
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
max-width: none;
|
||||
max-height: none;
|
||||
margin: 0;
|
||||
border-radius: 0;
|
||||
border: 0;
|
||||
overflow: hidden;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.composition-modal .modal-wrap h3 {
|
||||
font-size: 0.875rem;
|
||||
font-weight: 500;
|
||||
line-height: 1.25rem;
|
||||
letter-spacing: -0.0175rem;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.composition-modal .modal-wrap h5 {
|
||||
font-size: 0.75rem;
|
||||
font-weight: 500;
|
||||
line-height: 1.25rem;
|
||||
letter-spacing: -0.0175rem;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.composition-modal .modal-wrap h6 {
|
||||
font-size: 0.75rem;
|
||||
font-weight: 300;
|
||||
line-height: 1.25rem;
|
||||
letter-spacing: -0.0175rem;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.composition-modal .modal-wrap .head {
|
||||
display: flex;
|
||||
padding: 0.5rem 0.5rem 0.5rem 1rem;
|
||||
border-bottom: 0.0625rem solid #ddd;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
background: #fff;
|
||||
flex: 0 0 auto;
|
||||
}
|
||||
|
||||
.composition-modal .modal-wrap .head i {
|
||||
min-width: 1rem;
|
||||
min-height: 1rem;
|
||||
background: url(/main/img/archive/close.svg) no-repeat center / contain;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.composition-modal .modal-wrap > ul {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
overflow: auto;
|
||||
line-height: 1.25rem;
|
||||
letter-spacing: -0.0175rem;
|
||||
}
|
||||
|
||||
.composition-modal .modal-wrap > ul > li {
|
||||
padding: 0.5rem 1rem 0 1rem;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.25rem;
|
||||
color: var(--primary-lv-6, #1E5149);
|
||||
min-width: 14.5rem;
|
||||
max-width: 14.5rem;
|
||||
border-right: 0.0625rem solid #eee;
|
||||
}
|
||||
|
||||
.composition-modal .modal-wrap > ul > li:last-child {
|
||||
padding-right: 0.5rem;
|
||||
}
|
||||
|
||||
.composition-modal .modal-wrap > ul > li > ul {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.5rem;
|
||||
}
|
||||
|
||||
.composition-modal .modal-wrap > ul > li > ul > li {
|
||||
border-bottom: 0.0625rem solid var(--primary-lv-0, #E9EEED);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.25rem;
|
||||
}
|
||||
|
||||
.composition-modal .modal-wrap > ul > li > ul > li:last-child {
|
||||
padding-bottom: 0.5rem;
|
||||
border: none;
|
||||
}
|
||||
|
||||
.composition-modal .modal-wrap > ul > li > ul > li > ul {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.25rem;
|
||||
color: #111;
|
||||
padding-bottom: 0.25rem;
|
||||
}
|
||||
|
||||
.composition-modal .modal-wrap > ul > li > ul > li > ul > li {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.25rem;
|
||||
}
|
||||
|
||||
.composition-modal .modal-wrap > ul > li > ul > li > ul > li > i {
|
||||
min-width: 1rem;
|
||||
min-height: 1rem;
|
||||
background: url(/main/img/archive/folder-bullet.svg) no-repeat center / contain;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.composition-modal .modal-wrap > ul > li > ul > li > ul > li > h6:last-child {
|
||||
color: var(--primary-lv-3, #789792);
|
||||
margin-left: auto;
|
||||
min-width: 1.625rem;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.composition-modal .modal-wrap > ul > li:nth-child(even) {
|
||||
background-color: #f6f8f8;
|
||||
}
|
||||
|
||||
._scrollbar {
|
||||
scrollbar-width: thin;
|
||||
scrollbar-color: #888 #f1f1f1;
|
||||
}
|
||||
|
||||
._scrollbar::-webkit-scrollbar { height: 8px; width: 8px; }
|
||||
._scrollbar::-webkit-scrollbar-track { background: #f1f1f1; }
|
||||
._scrollbar::-webkit-scrollbar-thumb { background: #888; border-radius: 4px; }
|
||||
._scrollbar::-webkit-scrollbar-thumb:hover { background: #555; }
|
||||
|
||||
.loading {
|
||||
padding: 1rem;
|
||||
color: #666;
|
||||
}
|
||||
|
||||
/*hover*/
|
||||
.composition-modal .modal-wrap > ul > li > h3:hover,
|
||||
.composition-modal .modal-wrap > ul > li > ul > li > ul > li:hover {
|
||||
background-color: rgba(30, 81, 73, 0.08);
|
||||
transition: background-color 0.2s;
|
||||
}
|
||||
|
||||
.composition-modal .modal-wrap > ul > li > ul > li > ul > li:hover h6 {
|
||||
color: #1E5149;
|
||||
font-weight: 500;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<article class="composition-modal">
|
||||
<div class="modal-wrap">
|
||||
<div class="head">
|
||||
<h3>구성</h3>
|
||||
<i id="btnClose"></i>
|
||||
</div>
|
||||
|
||||
<ul class="_scrollbar" id="composition-list">
|
||||
<li class="loading">데이터를 불러오는 중...</li>
|
||||
</ul>
|
||||
</div>
|
||||
</article>
|
||||
|
||||
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
|
||||
<script>
|
||||
// 탭 닫기
|
||||
document.getElementById('btnClose')?.addEventListener('click', () => window.close());
|
||||
|
||||
let userInfoString, storageType, allTreeObject, path_name;
|
||||
let isDataReceived = false;
|
||||
|
||||
// 부모 창으로부터 데이터 수신
|
||||
window.addEventListener('message', (event) => {
|
||||
|
||||
if (event.origin !== window.location.origin) return;
|
||||
|
||||
if (event.data.type === 'INIT_DATA') {
|
||||
const { data } = event.data;
|
||||
|
||||
userInfoString = data.userInfoString;
|
||||
storageType = data.storageType;
|
||||
allTreeObject = data.allTreeObject;
|
||||
path_name = data.path_name;
|
||||
|
||||
isDataReceived = true;
|
||||
|
||||
// 데이터 수신 후 렌더링
|
||||
renderCompositionData();
|
||||
}
|
||||
});
|
||||
|
||||
// 정렬 함수
|
||||
function naturalSort(a, b) {
|
||||
const regex = /(\d+)|(\D+)/g;
|
||||
const aParts = String(a).match(regex) || [];
|
||||
const bParts = String(b).match(regex) || [];
|
||||
|
||||
for (let i = 0; i < Math.min(aParts.length, bParts.length); i++) {
|
||||
const aPart = aParts[i];
|
||||
const bPart = bParts[i];
|
||||
|
||||
const aNum = Number(aPart);
|
||||
const bNum = Number(bPart);
|
||||
|
||||
if (!Number.isNaN(aNum) && !Number.isNaN(bNum)) {
|
||||
const diff = aNum - bNum;
|
||||
if (diff !== 0) return diff;
|
||||
} else {
|
||||
if (aPart !== bPart) return aPart.localeCompare(bPart);
|
||||
}
|
||||
}
|
||||
return aParts.length - bParts.length;
|
||||
}
|
||||
|
||||
// 구성 데이터 렌더링
|
||||
async function renderCompositionData() {
|
||||
const listWrap = document.getElementById('composition-list');
|
||||
listWrap.innerHTML = '';
|
||||
|
||||
if (!allTreeObject || !userInfoString) {
|
||||
listWrap.innerHTML = '<li class="loading">데이터를 불러올 수 없습니다.</li>';
|
||||
return;
|
||||
}
|
||||
|
||||
const user = JSON.parse(userInfoString);
|
||||
const tabList = Object.keys(allTreeObject.folder || {}).sort(naturalSort);
|
||||
|
||||
for (const tab of tabList) {
|
||||
const getTreeObjectParams = {
|
||||
userInfoString: JSON.stringify(user),
|
||||
storageType: storageType,
|
||||
resourcePath: tab
|
||||
};
|
||||
|
||||
try {
|
||||
const getTreeObjectRes = await axios.get(`${path_name}/getTreeObject`, {
|
||||
params: { params: getTreeObjectParams }
|
||||
});
|
||||
|
||||
if (getTreeObjectRes.data.message === 'getTreeObject_success') {
|
||||
const treeData = getTreeObjectRes.data.currentTreeObject;
|
||||
|
||||
const tabLi = document.createElement('li');
|
||||
|
||||
const tabTitle = document.createElement('h3');
|
||||
tabTitle.textContent = tab;
|
||||
tabTitle.style.cursor = 'pointer';
|
||||
// 탭 클릭 시 해당 탭으로 이동
|
||||
tabTitle.addEventListener('click', () => {
|
||||
navigateToPath(tab);
|
||||
});
|
||||
tabLi.appendChild(tabTitle);
|
||||
|
||||
const categoryUl = document.createElement('ul');
|
||||
|
||||
if (treeData && treeData.folder && Object.keys(treeData.folder).length > 0) {
|
||||
const categories = Object.keys(treeData.folder).sort(naturalSort);
|
||||
|
||||
categories.forEach(category => {
|
||||
const categoryLi = document.createElement('li');
|
||||
|
||||
const categoryTitle = document.createElement('h5');
|
||||
categoryTitle.textContent = category;
|
||||
categoryLi.appendChild(categoryTitle);
|
||||
|
||||
const folderUl = document.createElement('ul');
|
||||
|
||||
const folders = treeData.folder[category] || {};
|
||||
const folderObj = folders.child?.folder || {};
|
||||
const folderKeys = Object.keys(folderObj).sort(naturalSort);
|
||||
|
||||
if (folderKeys.length === 0) {
|
||||
// 빈 폴더 처리
|
||||
} else {
|
||||
folderKeys.forEach(folderName => {
|
||||
const folderData = folderObj[folderName];
|
||||
let fileCount = 0;
|
||||
|
||||
fileCount += Object.keys(folderData.child?.file || {}).length;
|
||||
|
||||
if (folderData.child?.folder) {
|
||||
Object.keys(folderData.child.folder).forEach(subFolderName => {
|
||||
const subFolder = folderData.child.folder[subFolderName];
|
||||
if (subFolder.child?.file) {
|
||||
fileCount += Object.keys(subFolder.child.file).length;
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
const folderLi = document.createElement('li');
|
||||
folderLi.style.cursor = 'pointer';
|
||||
|
||||
// 폴더 전체 클릭 가능하도록
|
||||
folderLi.addEventListener('click', () => {
|
||||
navigateToPath(`${tab}/${category}/${folderName}`);
|
||||
});
|
||||
|
||||
const folderIcon = document.createElement('i');
|
||||
folderLi.appendChild(folderIcon);
|
||||
|
||||
const folderNameEl = document.createElement('h6');
|
||||
folderNameEl.textContent = folderName;
|
||||
folderLi.appendChild(folderNameEl);
|
||||
|
||||
const folderCountEl = document.createElement('h6');
|
||||
folderCountEl.textContent = fileCount > 0 ? String(fileCount) : '-';
|
||||
folderLi.appendChild(folderCountEl);
|
||||
|
||||
folderUl.appendChild(folderLi);
|
||||
});
|
||||
}
|
||||
|
||||
categoryLi.appendChild(folderUl);
|
||||
categoryUl.appendChild(categoryLi);
|
||||
});
|
||||
} else {
|
||||
// 탭은 있는데 폴더가 비어있는 경우
|
||||
const emptyCategoryLi = document.createElement('li');
|
||||
const emptyCategoryTitle = document.createElement('h5');
|
||||
emptyCategoryTitle.textContent = '-';
|
||||
emptyCategoryLi.appendChild(emptyCategoryTitle);
|
||||
|
||||
const emptyFolderUl = document.createElement('ul');
|
||||
const emptyFolderLi = document.createElement('li');
|
||||
|
||||
const emptyIcon = document.createElement('i');
|
||||
emptyFolderLi.appendChild(emptyIcon);
|
||||
|
||||
const emptyName = document.createElement('h6');
|
||||
emptyName.textContent = '-';
|
||||
emptyFolderLi.appendChild(emptyName);
|
||||
|
||||
const emptyCount = document.createElement('h6');
|
||||
emptyCount.textContent = '-';
|
||||
emptyFolderLi.appendChild(emptyCount);
|
||||
|
||||
emptyFolderUl.appendChild(emptyFolderLi);
|
||||
emptyCategoryLi.appendChild(emptyFolderUl);
|
||||
categoryUl.appendChild(emptyCategoryLi);
|
||||
}
|
||||
|
||||
tabLi.appendChild(categoryUl);
|
||||
listWrap.appendChild(tabLi);
|
||||
}
|
||||
} catch (error) {
|
||||
console.error('데이터 로드 오류:', error);
|
||||
}
|
||||
}
|
||||
|
||||
// 높이 동기화
|
||||
setTimeout(() => {
|
||||
const allLis = listWrap.querySelectorAll(':scope > li');
|
||||
if (allLis.length === 0) return;
|
||||
|
||||
let maxHeight = 0;
|
||||
allLis.forEach(li => {
|
||||
const height = li.scrollHeight;
|
||||
if (height > maxHeight) maxHeight = height;
|
||||
});
|
||||
|
||||
allLis.forEach(li => {
|
||||
li.style.minHeight = `${maxHeight}px`;
|
||||
});
|
||||
}, 0);
|
||||
}
|
||||
|
||||
// 원본 탭에 경로 이동 요청
|
||||
function navigateToPath(path) {
|
||||
if (!window.opener || window.opener.closed) {
|
||||
alert('원본 페이지를 찾을 수 없습니다.');
|
||||
return;
|
||||
}
|
||||
|
||||
try {
|
||||
// postMessage로 경로 이동 요청 전송
|
||||
window.opener.postMessage({
|
||||
type: 'NAVIGATE_TO_PATH',
|
||||
path: path
|
||||
}, window.location.origin);
|
||||
|
||||
} catch (error) {
|
||||
console.error('페이지 이동 오류:', error);
|
||||
alert('페이지 이동 중 오류가 발생했습니다.');
|
||||
}
|
||||
}
|
||||
|
||||
// 페이지 로드 시 데이터가 아직 수신되지 않았다면 대기
|
||||
window.addEventListener('load', () => {
|
||||
// 일정 시간 후에도 데이터가 수신되지 않으면 에러 메시지 표시
|
||||
setTimeout(() => {
|
||||
if (!isDataReceived) {
|
||||
document.getElementById('composition-list').innerHTML =
|
||||
'<li class="loading">데이터를 불러올 수 없습니다. 페이지를 새로고침해주세요.</li>';
|
||||
}
|
||||
}, 3000);
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
17
views/main/css/font.css
Normal file
@@ -0,0 +1,17 @@
|
||||
/* 폰트 */
|
||||
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");
|
||||
@import url("https://fonts.googleapis.com/css2?family=Aldrich&display=swap");
|
||||
/* @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
|
||||
@import url('https://fonts.cdnfonts.com/css/arial-2');
|
||||
@import url('https://fonts.cdnfonts.com/css/konexy-personal-use');
|
||||
@import url('https://fonts.cdnfonts.com/css/toxigenesis');
|
||||
|
||||
/* @font-face {
|
||||
font-family: 'S-CoreDream-3Light';
|
||||
src: url('../font/S-CoreDream-3Light.woff') format('woff');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
} */
|
||||
|
||||
/* 폰트적용 */
|
||||
/* * { font-family: 'Noto Sans KR', 'Protest Riot', 'Gowun Dodum', sans-serif; } */
|
||||
90
views/main/css/reset.css
Normal file
@@ -0,0 +1,90 @@
|
||||
@charset "utf-8";
|
||||
|
||||
/* Copyright Ⓒ Hanmaceng Corp. All Rights Reserved. */
|
||||
/* 기술개발센터 김건우A 연구원 b25013@hanmaceng.co.kr */
|
||||
|
||||
/* -- ↓ -- style -- ↓ -- */
|
||||
|
||||
/* html, body 초기화 ===== ===== ===== ===== ===== */
|
||||
html, body { overflow: hidden; margin: 0; width: 100%; height: 100%; position: fixed;}
|
||||
|
||||
/* 이미지 드래그 방지 ===== ===== ===== ===== ===== */
|
||||
img { pointer-events: none; user-select: none; }
|
||||
|
||||
/* 기존 reset.css에 있던 내용 ===== ===== ===== ===== ===== */
|
||||
img, picture, video, canvas, svg { display: block; max-width:100%; }
|
||||
|
||||
/* 여백 초기화 ===== ===== ===== ===== ===== */
|
||||
body,
|
||||
div,
|
||||
ul,
|
||||
li,
|
||||
dl,
|
||||
dd,
|
||||
dt,
|
||||
ol,
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6,
|
||||
input,
|
||||
fieldset,
|
||||
legend,
|
||||
p,
|
||||
select,
|
||||
table,
|
||||
th,
|
||||
td,
|
||||
tr,
|
||||
textarea,
|
||||
button,
|
||||
form,
|
||||
figure,
|
||||
figcaption { margin: 0; padding: 0; line-height: 1; }
|
||||
|
||||
/* a 링크 초기화 ===== ===== ===== ===== ===== */
|
||||
a { color: inherit; text-decoration: inherit; }
|
||||
|
||||
/* 폰트 스타일 초기화 (기울임) ===== ===== ===== ===== ===== */
|
||||
em,
|
||||
address { font-style: normal; }
|
||||
|
||||
/* 블릿기호 초기화 ===== ===== ===== ===== ===== */
|
||||
ul,
|
||||
li,
|
||||
ol { list-style: none; }
|
||||
|
||||
/* 제목 태그 초기화 ===== ===== ===== ===== ===== */
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 { font-size: inherit; font-weight: inherit; }
|
||||
|
||||
/* 버튼 초기화 ===== ===== ===== ===== ===== */
|
||||
button, input { border: none; font: inherit; }
|
||||
button { background: #fff; }
|
||||
|
||||
/* 테이블 테두리 초기화 ===== ===== ===== ===== ===== */
|
||||
table { border-collapse: collapse; border-spacing: 0; }
|
||||
|
||||
/* 콜아웃 초기화 ===== ===== ===== ===== ===== */
|
||||
blockquote,
|
||||
q {quotes: none; }
|
||||
|
||||
/* 콜아웃 따옴표 초기화 ===== ===== ===== ===== ===== */
|
||||
blockquote:before,
|
||||
blockquote:after,
|
||||
q:before,
|
||||
q:after {content: '';content: none; }
|
||||
|
||||
/* box-sizing 초기화 ===== ===== ===== ===== ===== */
|
||||
*,
|
||||
*::before,
|
||||
*::after { box-sizing: border-box; }
|
||||
|
||||
/* 요소 스타일 초기화 ===== ===== ===== ===== ===== */
|
||||
article, aside, footer, header, nav, section { display: block; }
|
||||
418
views/main/css/style.css
Normal file
@@ -0,0 +1,418 @@
|
||||
@import url('/main/css/reset.css');
|
||||
@import url('/main/css/font.css');
|
||||
@import url('/main/css/style_archive.css');
|
||||
@import url('/main/css/style_official_doc.css');
|
||||
@import url('/main/css/style_overview.css');
|
||||
|
||||
|
||||
|
||||
html { font-size: 1rem; }
|
||||
|
||||
|
||||
|
||||
@media screen and (max-width: 1920px) {
|
||||
html { font-size: 0.8333333vw; }
|
||||
}
|
||||
|
||||
@media screen and (max-width: 1024px) {
|
||||
html { font-size: 1.3333333vw; }
|
||||
body > .footer .right { display: none !important; }
|
||||
}
|
||||
|
||||
|
||||
|
||||
:root {
|
||||
--color-red: #F21D0D;
|
||||
--color-pink: #E8175E;
|
||||
--color-magenta: #B92ED1;
|
||||
--color-purple: #6D3DC2;
|
||||
--color-navy: #4255bd;
|
||||
--color-blue: #0D8DF2;
|
||||
--color-cyan: #03AEFC;
|
||||
--color-green: #4DB251;
|
||||
--color-yellow: #FFBF00;
|
||||
--color-orange: #FF9800;
|
||||
--color-dahong: #FF3D00;
|
||||
--color-brown: #A0705F;
|
||||
--color-iron: #7F7F7F;
|
||||
--color-steel: #688897;
|
||||
|
||||
--color-red-light: #FEE9E7;
|
||||
--color-pink-light: #FDE8EF;
|
||||
--color-magenta-light: #F8EBFB;
|
||||
--color-purple-light: #F1ECF9;
|
||||
--color-navy-light: #EDEEF9;
|
||||
--color-blue-light: #E7F4FE;
|
||||
--color-cyan-light: #E6F7FF;
|
||||
--color-green-light: #EEF8EE;
|
||||
--color-yellow-light: #FFF9E6;
|
||||
--color-orange-light: #FFF5E6;
|
||||
--color-dahong-light: #FFECE6;
|
||||
--color-brown-light: #F6F1EF;
|
||||
--color-iron-light: #F3F3F3;
|
||||
--color-steel-light: #F0F4F5;
|
||||
|
||||
--color-red-medium: #FAA59E;
|
||||
--color-pink-medium: #F6A2BF;
|
||||
--color-magenta-medium: #E3ABEC;
|
||||
--color-purple-medium: #C5B1E7;
|
||||
--color-navy-medium: #B3BBE5;
|
||||
--color-blue-medium: #9ED1FA;
|
||||
--color-cyan-medium: #9ADFFE;
|
||||
--color-green-medium: #B8E0B9;
|
||||
--color-yellow-medium: #FFE599;
|
||||
--color-orange-medium: #FFD699;
|
||||
--color-dahong-medium: #FFB199;
|
||||
--color-brown-medium: #D9C6BF;
|
||||
--color-iron-medium: #CCCCCC;
|
||||
--color-steel-medium: #C3CFD5;
|
||||
|
||||
/* 프라이머리컬러스케일 */
|
||||
--primary-lv0: #E9EEED;
|
||||
--primary-lv1: #D2DCDB;
|
||||
--primary-lv2: #A5B9B6;
|
||||
--primary-lv3: #789792;
|
||||
--primary-lv4: #4B746D;
|
||||
--primary-lv5: #1E5149;
|
||||
--primary-lv6: #1B443D;
|
||||
--primary-lv7: #193833;
|
||||
--primary-lv8: #162A27;
|
||||
--primary-lv9: #141E1D;
|
||||
|
||||
--header-scrollbar-thumb-color: #E9EEED00; --header-scrollbar-thumb-hover-color: var(--primary-lv0);
|
||||
--box-shadow: #0c0c0db3 0rem 0.5rem 1rem -0.25rem;
|
||||
--text-shadow-color-fff: #fff;
|
||||
--text-shadow-fff: -0.0625rem 0rem var(--text-shadow-color-fff), 0rem 0.0625rem var(--text-shadow-color-fff), 0.0625rem 0rem var(--text-shadow-color-fff), 0rem -0.0625rem var(--text-shadow-color-fff), -0.0625rem -0.0625rem var(--text-shadow-color-fff), 0.0625rem 0.0625rem var(--text-shadow-color-fff), 0.0625rem -0.0625rem var(--text-shadow-color-fff), -0.0625rem 0.0625rem var(--text-shadow-color-fff);
|
||||
--text-shadow-color-000: #000;
|
||||
--text-shadow-000: -0.0625rem 0rem var(--text-shadow-color-000), 0rem 0.0625rem var(--text-shadow-color-000), 0.0625rem 0rem var(--text-shadow-color-000), 0rem -0.0625rem var(--text-shadow-color-000), -0.0625rem -0.0625rem var(--text-shadow-color-000), 0.0625rem 0.0625rem var(--text-shadow-color-000), 0.0625rem -0.0625rem var(--text-shadow-color-000), -0.0625rem 0.0625rem var(--text-shadow-color-000);
|
||||
|
||||
--log-highlight: none;
|
||||
|
||||
/* --thumbnail-gap: 0.5rem; */
|
||||
--thumbnail-gap: 1.25rem;
|
||||
--thumbnail-size: 0 0 calc((100% - 4 * var(--thumbnail-gap)) / 5);
|
||||
--thumbnail-size-value: 5;
|
||||
/* --thumbnail-aspect-ratio: 1 / 1; */
|
||||
--thumbnail-aspect-ratio: 1.4141 / 1;
|
||||
--thumbnail-ratio: contain;
|
||||
|
||||
--overlay-scale-transform: none;
|
||||
--expired-warn: expired-warn 1.5s ease-in-out infinite;
|
||||
}
|
||||
|
||||
* { font-family: 'Pretendard Variable', 'Pretendard'; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; }
|
||||
|
||||
|
||||
|
||||
.icon { width: 1rem; height: 1rem; }
|
||||
|
||||
|
||||
|
||||
/* 유저 마우스 커서 */
|
||||
.cursor { position: absolute; width: 1.875rem; height: 1.875rem; pointer-events: none; z-index: 30; }
|
||||
.cursor .wrap { display: flex; justify-content: center; align-items: center; position: absolute; width: max-content; height: 100%; top: 0.9375rem; left: 100%; }
|
||||
.cursor .wrap .user-text { font-size: 0.875rem; font-weight: bold; color: #fff; padding: 0.25rem 0.4rem; border-radius: 0.25rem; }
|
||||
|
||||
|
||||
|
||||
/* 위치 이동 커버 */
|
||||
.relocate-cover { display: none; height: 100%; position: absolute; z-index: 50; background: #000000cc; }
|
||||
|
||||
.relocate-cover.list-viewer-cover .container { display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 5rem; width: 100%; height: 100%; }
|
||||
.relocate-cover.list-viewer-cover .container * { color: #fff; font-size: 1rem; }
|
||||
.relocate-cover.list-viewer-cover .container .notice-wrap .text { font-size: 1.25rem; font-weight: bold; }
|
||||
.relocate-cover.list-viewer-cover .container .path-wrap { display: flex; flex-direction: column; align-items: center; gap: 3rem; }
|
||||
.relocate-cover.list-viewer-cover .container .path-wrap .path { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
|
||||
.relocate-cover.list-viewer-cover .container .path-wrap .path .key { font-size: 1.25rem; font-weight: bold; }
|
||||
.relocate-cover.list-viewer-cover .container .path-wrap .path .value { white-space: pre-wrap; }
|
||||
.relocate-cover.list-viewer-cover .container .btn-wrap { display: flex; gap: 1rem; }
|
||||
.relocate-cover.list-viewer-cover .container .btn-wrap .btn { width: 9.375rem; padding: 0.5rem; border: 0.0625rem solid #555; border-radius: 0.25rem; cursor: pointer; text-align: center; font-weight: bold; }
|
||||
.relocate-cover.list-viewer-cover .container .btn-wrap .btn.confirm-btn { background: linear-gradient(180deg, #1e5149 0%, #12312c 100%); }
|
||||
.relocate-cover.list-viewer-cover .container .btn-wrap .btn.confirm-btn:hover { background: linear-gradient(0deg, #1e5149 0%, #12312c 100%); }
|
||||
.relocate-cover.list-viewer-cover .container .btn-wrap .btn.cancel-btn { background: #fff; color: #000; }
|
||||
.relocate-cover.list-viewer-cover .container .btn-wrap .btn.cancel-btn:hover { background: #000; color: #fff; }
|
||||
|
||||
|
||||
|
||||
/* 마르퀴 효과 */
|
||||
.marquee-track-wrap { display: flex; align-items: center; flex-wrap: nowrap; gap: 0; width: fit-content; height: inherit; animation: scroll-marquee var(--duration, 10s) linear infinite; will-change: transform; }
|
||||
|
||||
.marquee-track { display: flex; align-items: center; flex-shrink: 0; gap: 0.5rem; margin: 0; padding: 0 2rem; white-space: nowrap; }
|
||||
.marquee-track img { max-width: none; height: 0.75rem; }
|
||||
/* .marquee-track .pm { opacity: 0.6; }
|
||||
.marquee-track .category { opacity: 0.6; } */
|
||||
.marquee-track .project-name { color: #fff; font-weight: 600; }
|
||||
.marquee-track .text { opacity: 0.6; color: #fff; font-family: "Aldrich"; padding-top: 0.125rem; }
|
||||
|
||||
|
||||
|
||||
/* 프로젝트 비활성화 표시 */
|
||||
body > .project-inactive-sign { display: none; justify-content: center; align-items: center; width: 100%; height: 100%; position: absolute; border: 0.3rem solid #f00; z-index: 999999; pointer-events: none; }
|
||||
body > .project-inactive-sign .text { font-size: 5rem; font-weight: bold; color: #f003; }
|
||||
|
||||
/* 배너 공지 */
|
||||
body > .banner-notice-area { display: none; justify-content: center; align-items: center; width: 100vw; height: 2.25rem; min-height: 2.25rem; max-height: 2.25rem; background: #000; position: relative; top: 0; z-index: 10; overflow: hidden; white-space: nowrap; }
|
||||
/* body > .banner-notice-area .background { width: 100%; height: 100%; background: repeating-linear-gradient(-45deg, #ffd700, #ffd700 2rem, #000000 2rem, #000000 4rem); background-size: 5.5rem 5.5rem; animation: hazard-stripe-flow 2s ease-in infinite; border: 0.0625rem solid #000; position: absolute; z-index: 11; } */
|
||||
/* body > .banner-notice-area .background { width: 100%; height: 100%; background: repeating-linear-gradient(-45deg, #ffd700, #ffd700 2rem, #000000 2rem, #000000 4rem); animation: hazard-stripe-pulse 5s ease-in infinite; border: 0.0625rem solid #000; position: absolute; z-index: 11; } */
|
||||
body > .banner-notice-area .background { width: 100%; height: 100%; background: repeating-linear-gradient(-45deg, #ffd700, #ffd700 2rem, #000000 2rem, #000000 4rem); animation: hazard-stripe-pulse 3s ease-in infinite; border: 0.0625rem solid #000; position: absolute; z-index: 11; }
|
||||
body > .banner-notice-area .content { position: relative; z-index: 12; }
|
||||
body > .banner-notice-area .content .text-wrap { display: flex; align-items: center; justify-content: flex-start; flex-shrink: 0; }
|
||||
body > .banner-notice-area .content .text-wrap .text { padding: 0.1rem 0.4rem; background: #000; border-radius: 0.25rem; font-size: 1.2rem; font-weight: 600; color: #fff; white-space: nowrap; text-shadow: var(--text-shadow-000); }
|
||||
|
||||
|
||||
|
||||
/* 헤더 */
|
||||
body > .header { display: flex; justify-content: space-between; align-items: center; width: 100vw; height: 2.25rem; min-height: 2.25rem; max-height: 2.25rem; background: var(--primary-lv5); position: fixed; top: 0; z-index: 10; }
|
||||
|
||||
body > .header * { color: #FFF; }
|
||||
|
||||
body > .header > .left { display: flex; align-items: center; width: 16.25rem; height: inherit; padding: 0 1rem; }
|
||||
body > .header > .left .title { display: flex; overflow: hidden; position: relative; width: 100%; height: inherit; white-space: nowrap; cursor: pointer; }
|
||||
|
||||
body > .header > .center { display: flex; justify-content: space-between; align-items: center; flex: 1; min-width: 0; height: inherit; border-left: 0.0625rem solid #4b746d; background: #1e5149; z-index: 20; }
|
||||
body > .header > .center .wrap { display: flex; align-items: center; }
|
||||
body > .header > .center .wrap .menu-tab { display: flex; align-items: center; height: 100%; padding-top: 0.25rem; position: relative; }
|
||||
body > .header > .center .wrap .menu-tab .btn { display: flex; align-items: center; height: 100%; margin: 0 0.125rem; position: relative; }
|
||||
body > .header > .center .wrap .menu-tab .btn:first-child { margin-left: 0; }
|
||||
body > .header > .center .wrap .menu-tab .btn:last-child { margin-right: 0; }
|
||||
body > .header > .center .wrap .menu-tab .btn:hover { cursor: pointer; }
|
||||
body > .header > .center .wrap .menu-tab .btn:not(.selected):hover .wrap { background: #4b746d; }
|
||||
body > .header > .center .wrap .menu-tab .btn .wrap { display: flex; align-items: center; gap: 0.25rem; position: relative; width: max-content; height: 100%; padding: 0.09375rem 0.25rem; pointer-events: none; border-radius: 0.25rem; }
|
||||
body > .header > .center .wrap .menu-tab .btn .wrap .image { width: 1rem; height: 1rem; }
|
||||
body > .header > .center .wrap .menu-tab .btn .wrap .name-text { flex: 1; min-width: 0; font-size: 0.875rem; color: #fff; white-space: pre-wrap; }
|
||||
body > .header > .center .wrap .menu-tab .btn.selected .wrap { background: #e9eeed; }
|
||||
body > .header > .center .wrap .menu-tab .btn.selected .wrap .name-text { color: #1e5149; }
|
||||
body > .header > .center .wrap .menu-tab .overview-btn .wrap .image { background: url('/main/img/header/header-page-icon.svg') no-repeat center/contain; }
|
||||
body > .header > .center .wrap .menu-tab .folder-btn .wrap .image { background: url('/main/img/header/header-folder-icon.svg') no-repeat center/contain; }
|
||||
body > .header > .center .wrap .menu-tab .official-doc-btn .wrap .image { background: url('/main/img/header/header-official-doc.svg') no-repeat center/contain; }
|
||||
body > .header > .center .wrap .menu-tab .model-btn .wrap .image { background: url('/main/img/header/header-model.svg') no-repeat center/contain; }
|
||||
body > .header > .center .wrap .menu-tab .overview-btn,
|
||||
body > .header > .center .wrap .menu-tab .official-doc-btn,
|
||||
body > .header > .center .wrap .menu-tab .model-btn { display: none; }
|
||||
body > .header > .center .wrap .menu-tab .overview-btn.disabled { cursor: none; pointer-events: none; }
|
||||
body > .header > .center .wrap .menu-tab .overview-btn.disabled .wrap { background: #999; }
|
||||
body > .header > .center .wrap .menu-tab .overview-btn.disabled .wrap .name-text { color: #ccc; }
|
||||
|
||||
body > .header > .center .left.wrap { align-items: flex-end; gap: 1rem; flex: 1; min-width: 0; height: inherit; padding-left: 1rem; border-right: 0.0625rem solid #4b746d; position: relative; }
|
||||
|
||||
body > .header > .center .left.wrap .menu-tab { overflow-x: scroll; overflow-y: hidden; }
|
||||
body > .header > .center .left.wrap .menu-add { display: none; align-items: center; min-width: 1.25rem; max-width: 1.25rem; height: inherit; }
|
||||
body > .header > .center .left.wrap .menu-add .add-btn { display: flex; justify-content: center; align-items: center; width: 1.25rem; height: 1.25rem; background: #35635c; border: 0.0625rem solid #4b746d; border-radius: 0.25rem; }
|
||||
body > .header > .center .left.wrap .menu-add .add-btn:hover { cursor: pointer; background: #3e8d80; }
|
||||
body > .header > .center .left.wrap .menu-add .add-btn .image { width: 1rem; height: 1rem; background: url('/main/img/header/header-menu-add.svg') no-repeat center/contain; pointer-events: none; }
|
||||
|
||||
body > .header > .center .right.wrap { justify-content: flex-end; gap: 0.375rem; width: max-content; height: inherit; padding: 0 1rem; position: relative; }
|
||||
|
||||
body > .header > .center .right.wrap .menu-tab { padding-bottom: 0.25rem; }
|
||||
body > .header > .center .right.wrap .menu-tab .official-doc-btn .ai-logo { width: 1.75rem; height: 1.25rem; background: url('/main/img/ai_logo.svg') no-repeat center/contain; }
|
||||
|
||||
body > .header > .right { display: flex; justify-content: space-between; align-items: center; width: max-content; height: inherit; border-left: 0.0625rem solid #4b746d; }
|
||||
body > .header > .right .connected-users { display: flex; justify-content: space-between; align-items: center; gap: 0.5rem; flex: 1; min-width: 0; height: 100%; padding: 0 1rem; background: #18413A; }
|
||||
body > .header > .right .connected-users .title { color: #789792; font-size: 0.75rem; pointer-events: none; }
|
||||
body > .header > .right .connected-users .count { color: #ccc; font-size: 0.75rem; pointer-events: none; }
|
||||
body > .header > .right .connected-users:hover { cursor: pointer; }
|
||||
body > .header > .right .connected-users:hover .count { color: #fff; text-decoration: underline; }
|
||||
|
||||
/* 헤더 가로 스크롤바 */
|
||||
.header-scrollbar::-webkit-scrollbar { width: 0.25rem; height: 0.25rem; }
|
||||
.header-scrollbar::-webkit-scrollbar-track { background-color: transparent; }
|
||||
.header-scrollbar::-webkit-scrollbar-thumb { background-color: var(--header-scrollbar-thumb-color); border-radius: 1rem; background-clip: content-box; border: 0.0625rem solid transparent; }
|
||||
.header-scrollbar::-webkit-scrollbar-thumb:hover { background-color: var(--header-scrollbar-thumb-hover-color); cursor: pointer; }
|
||||
.header-scrollbar::-webkit-scrollbar-corner { background: transparent; }
|
||||
|
||||
/* 헤더 스크롤 버튼 */
|
||||
.scroll-btn { display: none; justify-content: center; align-items: center; width: 1.25rem; height: 1.25rem; background: #35635c; border: 0.0625rem solid #4b746d; border-radius: 0.25rem; position: absolute; top: 50%; transform: translate(0, -50%); z-index: 11; }
|
||||
.scroll-btn:hover { cursor: pointer; background: #3e8d80; }
|
||||
.scroll-left { right: 2.75rem; }
|
||||
.scroll-right { right: 1rem; }
|
||||
.scroll-left .image { width: 1rem; height: 1rem; background: url('/main/img/archive/scroll_x_angle_left.svg') no-repeat center/contain; }
|
||||
.scroll-right .image { width: 1rem; height: 1rem; background: url('/main/img/archive/scroll_x_angle_left.svg') no-repeat center/contain; transform: rotate(180deg); }
|
||||
|
||||
|
||||
|
||||
/* 메인 */
|
||||
body > .main { display: none; width: 100%; height: calc(100dvh - 2.25rem - 2.25rem); position: absolute; top: 2.25rem; color: #111; }
|
||||
|
||||
/* 전체 스크롤바 */
|
||||
.scrollbar::-webkit-scrollbar { width: 0.25rem; height: 0.25rem; }
|
||||
.scrollbar::-webkit-scrollbar-track { background-color: transparent; }
|
||||
.scrollbar::-webkit-scrollbar-thumb { background-color: #999; border-radius: 1rem; background-clip: content-box; }
|
||||
.scrollbar::-webkit-scrollbar-thumb:hover { background-color: #666; cursor: pointer; }
|
||||
.scrollbar::-webkit-scrollbar-corner { background: transparent; }
|
||||
|
||||
|
||||
|
||||
/* 푸터 */
|
||||
body > .footer { display: flex; justify-content: space-between; align-items: center; gap: 1rem; width: 100vw; height: 2.25rem; min-height: 2.25rem; max-height: 2.25rem; padding: 0 1rem; background: #fff; border-top: 0.0625rem solid #ddd; position: fixed; bottom: 0; z-index: 10; }
|
||||
|
||||
body > .footer * { font-size: 0.75rem; }
|
||||
|
||||
body > .footer .left { display: flex; align-items: center; flex: 1; gap: 1rem; min-width: 0; height: 100%; }
|
||||
|
||||
body > .footer .left .footer-separator { height: 0.75rem; border-right: 0.0625rem solid #777; }
|
||||
|
||||
body > .footer .left .wrap { display: flex; align-items: center; height: 100%; }
|
||||
|
||||
/* body > .footer .left .wrap .title { font-weight: 600; color: #444; }
|
||||
body > .footer .left .wrap .title:hover { cursor: pointer; text-decoration: underline; } */
|
||||
|
||||
body > .footer .left .wrap .title { font-weight: 600; color: #444; }
|
||||
body > .footer .left .wrap .title:hover { cursor: pointer; text-decoration: underline; }
|
||||
|
||||
body > .footer .left .wrap.size-wrap { justify-content: center; gap: 0.5rem; }
|
||||
body > .footer .left .wrap.size-wrap .size-text { display: flex; align-items: center; gap: 0.2rem; }
|
||||
body > .footer .left .wrap.size-wrap .size-text div { color: #777; }
|
||||
body > .footer .left .wrap.size-wrap .size-text .numerator.over { color: #f00; }
|
||||
body > .footer .left .wrap.size-wrap .size-bar .base { width: 6.25rem; height: 0.25rem; background: #e4e4e4; border-radius: 0.25rem; }
|
||||
body > .footer .left .wrap.size-wrap .size-bar .value { width: 0; height: 0.25rem; background: #777; border-radius: 0.25rem; }
|
||||
body > .footer .left .wrap.size-wrap .size-bar .value.over { background: #f00; }
|
||||
body > .footer .left .wrap.size-wrap .size-percent { color: #777; text-shadow: var(--text-shadow-fff); }
|
||||
body > .footer .left .wrap.size-wrap .size-percent.over { color: #f00; }
|
||||
|
||||
body > .footer .left .wrap.log-wrap { gap: 0.5rem; flex: 1; min-width: 0; }
|
||||
body > .footer .left .wrap.log-wrap .latest-log { display: flex; align-items: center; flex: 1; min-width: 0; }
|
||||
body > .footer .left .wrap.log-wrap .latest-log .log-item { display: flex; align-items: center; width: 100%; gap: 0.375rem; animation: var(--log-highlight); }
|
||||
body > .footer .left .wrap.log-wrap .latest-log .log-item > div { display: flex; }
|
||||
body > .footer .left .wrap.log-wrap .latest-log .log-item .text { color: #777; }
|
||||
body > .footer .left .wrap.log-wrap .latest-log .log-item > .log-separator { height: 0.75rem; border-right: 0.0625rem solid #ccc; }
|
||||
body > .footer .left .wrap.log-wrap .latest-log .log-item .log { flex-direction: column; gap: 0.2rem; flex: 1; min-width: 0; }
|
||||
body > .footer .left .wrap.log-wrap .latest-log .log-item .log .text { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
|
||||
|
||||
body > .footer .right { display: flex; justify-content: space-between; align-items: center; gap: 0.5rem; width: max-content; }
|
||||
body > .footer .right p { color: #777; }
|
||||
|
||||
|
||||
|
||||
/* 초기 프로그레스 */
|
||||
/* 원래는 none인데 flex로 변경?? */
|
||||
.init-progress { z-index: 99999; display: flex; flex-direction: column; justify-content: center; align-items: center; position: absolute; top: 0rem; left: 0rem; width: 100%; height: 100%; background: #eeeeee99; backdrop-filter: blur(0.2rem); -webkit-backdrop-filter: blur(0.2rem); overflow: hidden; }
|
||||
.init-progress .text { display: flex; flex-direction: row; align-items: center; gap: 0.5rem; }
|
||||
.init-progress .text span { color: #111; font-size: 1rem; font-weight: 500; }
|
||||
.init-progress .text img { width: 1.5rem; height: 1.5rem; }
|
||||
|
||||
/* 파일 프로그래스(임시) */
|
||||
.file-progress { z-index: 99999; display: none; position: absolute; top: 0rem; left: 0rem; width: 100%; height: 100%; animation: progress-background 3s infinite; overflow: hidden; }
|
||||
.file-progress .file-progress-wrap { display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 1rem; width: 100%; height: 100%; }
|
||||
.file-progress .file-progress-wrap .title { display: flex; flex-direction: column; align-items: center; gap: 0.25rem; }
|
||||
.file-progress .file-progress-wrap .title .title-wrap { display: flex; flex-direction: row; align-items: center; gap: 0.5rem; }
|
||||
.file-progress .file-progress-wrap .title .title-wrap span { color: #111; font-size: 1rem; font-weight: 500; }
|
||||
.file-progress .file-progress-wrap .title .title-wrap img { width: 1rem; height: 1rem; }
|
||||
.file-progress .file-progress-wrap .title .warn { display: none; }
|
||||
.file-progress .file-progress-wrap .title .warn span { color: #777; font-size: 0.875rem; font-weight: 300; }
|
||||
.file-progress .file-progress-wrap .text { display: flex; flex-direction: column; align-items: center; }
|
||||
.file-progress .file-progress-wrap .text span { color: #111; font-size: 1rem; font-weight: 300; }
|
||||
.file-progress .file-progress-wrap .size-progress { display: flex; flex-direction: column; align-items: center; }
|
||||
.file-progress .file-progress-wrap .size-progress .size { display: flex; align-items: flex-start; gap: 1rem; }
|
||||
.file-progress .file-progress-wrap .size-progress .percentage { display: flex; align-items: center; }
|
||||
.file-progress .file-progress-wrap .size-progress > div > span { color: #111; font-size: 0.875rem; font-weight: 300; }
|
||||
|
||||
|
||||
|
||||
.permission-min-dev { display: none; }
|
||||
.permission-min-sub-master { display: none; }
|
||||
.permission-min-security-worker { display: none; }
|
||||
.permission-min-worker { display: none; }
|
||||
|
||||
|
||||
|
||||
/* 다운로드 폴더 스타일 ===== ===== ===== ===== ===== ===== ===== ===== ===== ===== */
|
||||
body>.header>.center .wrap .menu-tab .download-btn .wrap .image { background: url('/main/img/header/icon__download-folder--primary-lv-3.svg') no-repeat center/contain; }
|
||||
body>.header>.center .wrap .menu-tab .download-btn .wrap .download-reddot { background: url('/main/img/header/icon__download-reddot--color-dahong.svg') no-repeat center/contain; width: 0.375rem; height: 0.375rem; position: absolute; top: 0; right: -0.125rem; }
|
||||
|
||||
/* // 다운로드 폴더 스타일 ===== ===== ===== ===== ===== ===== ===== ===== ===== ===== */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* 모달-다운로드창 ===== ===== ===== ===== ===== ===== ===== ===== ===== ===== */
|
||||
.download-modal { display: flex; justify-content: center; align-items: center; position: absolute; z-index: 61; width: 100%; height: 100%; background: #00000099; }
|
||||
.download-modal-wrap { display: flex; flex-direction: column; position: relative; background: #fff; border: 0.0625rem solid #aaa; margin: auto; border-radius: 0.25rem; width: 30rem; height: 40rem; box-shadow: 0 0.5rem 1.5rem 0 rgba(0, 0, 0, 0.16); }
|
||||
.download-modal__head { display: flex; align-items: center; padding: 0.5rem 0.5rem 0.5rem 1rem; gap: 1rem; border-bottom: 0.0625rem solid #ddd; }
|
||||
.download-modal__head_subtitle { flex-grow: 1; }
|
||||
.download-modal__head_close:hover { cursor: pointer; }
|
||||
.download-modal__body { flex-grow: 1; height: 0; display: flex; flex-direction: column; }
|
||||
.download-modal__body_top { display: flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; border-bottom: 0.0625rem solid #ddd; }
|
||||
.download-modal__body_top_name { flex-grow: 1; }
|
||||
.download-modal__body_top_time { width: 5.625rem; }
|
||||
.download-modal__body_top_status { width: 2rem; text-align: right; }
|
||||
.download-modal__body_list { display: flex; flex-direction: column; overflow-y: scroll; overflow-x: hidden; padding-right: 0.5rem; padding-left: 1rem; height: 0; flex-grow: 1; }
|
||||
.download-modal__body_list_item { padding: 0.5rem 0; display: flex; align-items: flex-start; gap: 0.5rem; border-bottom: 0.0625rem solid #ddd; }
|
||||
.download-modal__body_list_item_text { flex-grow: 1; width: 17.5rem; word-break: break-all; }
|
||||
.download-modal__body_list_item_time { width: 5.625rem; color: #FF3D00; }
|
||||
.download-modal__body_list_item_status { font-size: 0.75rem; font-weight: 300; line-height: 1.25rem; letter-spacing: -0.0175rem; width: 2rem; display: flex; justify-content: flex-end; }
|
||||
.download-modal__foot { display: flex; align-items: center; justify-content: center; padding: 1rem; border-top: 0.0625rem solid #ddd; }
|
||||
|
||||
.download-modal__head_title { font-size: 0.875rem; font-weight: 500; line-height: 1.25rem; letter-spacing: -0.0175rem; }
|
||||
.download-modal__head_subtitle { font-size: 0.75rem; font-weight: 300; line-height: 1.25rem; letter-spacing: -0.0175rem; color: #777; }
|
||||
.download-modal__body_top_name { font-size: 0.75rem; font-weight: 500; line-height: 1.25rem; letter-spacing: -0.0175rem; }
|
||||
.download-modal__body_top_time { font-size: 0.75rem; font-weight: 500; line-height: 1.25rem; letter-spacing: -0.0175rem; }
|
||||
.download-modal__body_top_status { font-size: 0.75rem; font-weight: 500; line-height: 1.25rem; letter-spacing: -0.0175rem; }
|
||||
.download-modal__body_list_item_text_title { font-size: 0.875rem; font-weight: 300; line-height: 1.25rem; letter-spacing: -0.0175rem; }
|
||||
.download-modal__body_list_item_text_subtitle { font-size: 0.75rem; font-weight: 300; line-height: 1.25rem; letter-spacing: -0.0175rem; color: #777; }
|
||||
.download-modal__body_list_item_time { font-size: 0.75rem; font-weight: 300; line-height: 1.25rem; letter-spacing: -0.0175rem; }
|
||||
|
||||
/* // 모달-다운로드창 ===== ===== ===== ===== ===== ===== ===== ===== ===== ===== */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* --재사용 컴포넌트 ===== ===== ===== ===== ===== ===== ===== ===== ===== ===== */
|
||||
.--text__color-dahong { font-weight: 500; color: #FF3D00; }
|
||||
.--button__xsmall-icon { display: flex; align-items: center; justify-content: center; padding: 0.125rem; background-color: #fff; border-radius: 0.25rem; border: 0.0625rem solid #ddd; pointer-events: auto;}
|
||||
.--button__xsmall-icon:hover { cursor: pointer; }
|
||||
.--button__medium { display: flex; align-items: center; justify-content: center; padding: 0.5rem; width: 10rem; background-color: #fff; border: 0.0625rem solid #ddd; border-radius: 0.25rem; font-size: 0.875rem; font-weight: 500; line-height: 1.25rem; letter-spacing: -0.0175rem; pointer-events: auto;}
|
||||
.--button__medium:hover { cursor: pointer; }
|
||||
.--disable { opacity: 20%; }
|
||||
.--disable:hover { cursor: not-allowed; pointer-events: auto;}
|
||||
.--icon { width: 1rem; height: 1rem; pointer-events: auto;}
|
||||
|
||||
/* // --재사용 컴포넌트 ===== ===== ===== ===== ===== ===== ===== ===== ===== ===== */
|
||||
|
||||
|
||||
@keyframes scroll-marquee {
|
||||
from { transform: translateX(0); }
|
||||
to { transform: translateX(var(--translateX)); }
|
||||
}
|
||||
|
||||
@keyframes rotate-image {
|
||||
100% { transform: rotate(-360deg); }
|
||||
}
|
||||
|
||||
@keyframes vibration {
|
||||
from { transform: translateX(-0.0625rem); }
|
||||
to { transform: translateX(0.0625rem); }
|
||||
}
|
||||
|
||||
@keyframes progress-background {
|
||||
0% { background-color: #fff; }
|
||||
50% { background-color: #d2dcdb; }
|
||||
100% { background-color: #fff; }
|
||||
}
|
||||
|
||||
@keyframes log-highlight {
|
||||
0% { opacity: 1; }
|
||||
100% { opacity: 0.1; }
|
||||
}
|
||||
|
||||
@keyframes hazard-stripe-flow {
|
||||
0% { background-position: 0 0; }
|
||||
100% { background-position: -5.5rem 0; }
|
||||
}
|
||||
|
||||
@keyframes hazard-stripe-pulse {
|
||||
0%, 100% { opacity: 0; }
|
||||
30%, 70% { opacity: 1; }
|
||||
}
|
||||
|
||||
@keyframes fadeIn {
|
||||
from { opacity: 0; }
|
||||
to { opacity: 1; }
|
||||
}
|
||||
@keyframes fadeOut {
|
||||
from { opacity: 1; }
|
||||
to { opacity: 0; }
|
||||
}
|
||||
|
||||
@keyframes expired-warn {
|
||||
0% { background: #f9613b; }
|
||||
50% { background: #e9eeed; }
|
||||
100% { background: #f9613b; }
|
||||
}
|
||||
1342
views/main/css/style_archive.css
Normal file
427
views/main/css/style_official_doc.css
Normal file
@@ -0,0 +1,427 @@
|
||||
/******************************************************************************************************************************************************************/
|
||||
/***************************************************************************************************************************************************** main *******/
|
||||
/******************************************************************************************************************************************************************/
|
||||
/* main */
|
||||
.official-doc-main { height: calc(100dvh - 4.5rem); width: 100dvw; position: absolute; top: 2.25rem; overflow-y: hidden; overflow-x: auto; }
|
||||
|
||||
/* 디테일 */
|
||||
.official-doc-main ul { display: flex; flex-direction: column; height: calc(100% - 4.625rem); overflow-y: scroll; overflow-x: hidden; padding: 0.0625rem; }
|
||||
.official-doc-main li { display: flex; flex-direction: column; margin-left: 0.2875rem; margin-right: 0.0625rem; }
|
||||
.official-doc-main hr { margin: 0; border: none; border-top: 0.0625rem solid #ddd; }
|
||||
.official-doc-main p { font-size: 0.75rem; font-weight: 350; line-height: 1.25rem; color: #777; }
|
||||
.official-doc-main h2 { font-size: 0.875rem; font-weight: 350; line-height: 1.25rem; }
|
||||
.official-doc-main h3 { font-size: 0.875rem; font-weight: 550; line-height: 1.25rem; }
|
||||
.official-doc-main h4 { font-size: 0.875rem; font-weight: 350; line-height: 1.25rem; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; width: 100%; }
|
||||
.official-doc-main h5 { font-size: 0.75rem; font-weight: 550; line-height: 1.25rem; }
|
||||
.official-doc-main h6 { font-size: 0.75rem; font-weight: 350; line-height: 1.25rem; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
|
||||
|
||||
.official-doc-title { gap: 0.5rem; color: var(--primary-lv5); align-items: center; }
|
||||
.official-doc-title h3 { color: var(--primary-lv5); font-size: 0.875rem; font-weight: 500; }
|
||||
.official-doc-subtitle { gap: 0.5rem; }
|
||||
.official-doc-subtitle h6,
|
||||
.official-doc-subtitle .official-doc-tone-down { color: #8FA8A4; }
|
||||
|
||||
/* 파일 리스트 컨테이너 */
|
||||
.official-doc-list-container { flex-grow: 1; z-index: 12; }
|
||||
/* 파일 리스트 바디 영역 */
|
||||
.official-doc-main-body { height: 100%; }
|
||||
/* 파일 리스트 영역 */
|
||||
.official-doc-file { flex-grow: 1; height: calc(100% - 2.25rem); position: relative; }
|
||||
/* 수/발신영역 */
|
||||
.official-doc-top,
|
||||
.official-doc-bottom { min-width: 71.125rem; height: calc(50% - 0.25rem); background-color: #fff; }
|
||||
/* 파일 리스트 미리보기 영역 */
|
||||
.official-doc-preview { display: flex; flex-direction: column; width: 100%; min-width: 40rem; max-width: 40rem; height: 100%; border-left: 0.0625rem solid #ddd; }
|
||||
/* 모달 미리보기 영역 */
|
||||
.official-doc-modal-preview { background-color: #eee; border-radius: 0 0.25rem 0.25rem 0; }
|
||||
|
||||
|
||||
.official-doc-select-group { display: flex; gap: 0.8rem; }
|
||||
.official-doc-select-group-item { display: flex; gap: 0.2rem; }
|
||||
.official-doc-select-group-item select { min-width: 10rem; padding: 0 0.25rem; font-size: 0.8rem; }
|
||||
.official-doc-select-group-item option { font-size: 0.8rem; }
|
||||
|
||||
.official-doc-header { justify-content: space-between; padding: 0.5rem 1rem; border-bottom: 0.0625rem solid #1E5149; position: relative; z-index: 1; background-color: #fff; }
|
||||
.official-doc-header--left,
|
||||
.official-doc-header--right { gap: 1rem; }
|
||||
|
||||
.official-doc-main li,
|
||||
.official-doc-title,
|
||||
.official-doc-subtitle,
|
||||
.official-doc-header,
|
||||
.official-doc-header--left,
|
||||
.official-doc-header--right,
|
||||
.official-doc-category { display: flex; }
|
||||
|
||||
/* .official-doc-file--number,
|
||||
.official-doc-file--office-number,
|
||||
.official-doc-file--date,
|
||||
.official-doc-file--state { display: flex; } */
|
||||
|
||||
.official-doc-file--number,
|
||||
.official-doc-file--office-number,
|
||||
.official-doc-file--date,
|
||||
.official-doc-file--from,
|
||||
.official-doc-file--to,
|
||||
.official-doc-file--state { display: flex; align-items: center; }
|
||||
|
||||
.official-doc-file--number { width: 2.75rem; padding-left: 0.5rem !important; }
|
||||
.official-doc-file--office-number { width: 6rem; }
|
||||
.official-doc-file--date { width: 6rem; }
|
||||
.official-doc-file--office-number,
|
||||
.official-doc-file--date { gap: 0.25rem; padding: 0.5rem; }
|
||||
.official-doc-file--from { width: 4rem; padding: 0.5rem; }
|
||||
.official-doc-file--to { width: 4rem; padding: 0.5rem; }
|
||||
.official-doc-file--title { flex-grow: 1; width: 0; padding: 0.5rem; display: flex; align-items: center; }
|
||||
.official-doc-file--state { min-width: 5.5rem; padding: 0.25rem; padding-right: 1rem; }
|
||||
|
||||
.doc-required-info { font-size: 0.875rem; margin-bottom: 0.5rem; }
|
||||
.doc-required-star { color: #FF3D00; }
|
||||
|
||||
.official-doc-file--state .official-doc-file--stateText { display: flex; align-items: center; font-weight: bold; pointer-events: none; text-shadow: var(--text-shadow-fff); padding: 0.5rem 0; }
|
||||
.official-doc-file--state .official-doc-file--stateText.viewable { color: #4db251; font-size: 0.875rem; }
|
||||
.official-doc-file--state .official-doc-file--stateText.unsupport { color: #f21d0d; font-size: 0.875rem; }
|
||||
|
||||
.official-doc-border { border-bottom: 0.0625rem solid #ddd; margin: 0 0.5rem; }
|
||||
|
||||
.official-doc-list { display: flex; gap: 0.5rem; font-size: 0.75rem; position: relative; background-color: #fff; margin-left: 0.325rem; margin-right: 0.25rem; }
|
||||
.official-doc-main li.box-selected { box-shadow: #789792 0 0 0 0.0625rem, #0c0c0d0d 0 0 0.25rem 0.0625rem, #0c0c0d38 0 1rem 1rem -0.5rem; z-index: 3; }
|
||||
.official-doc-main .doc-list-item.item-selected { background-color: #BCCBC8 !important; }
|
||||
.official-doc-main .doc-list-item:hover { cursor: pointer; background: #e9eeed; }
|
||||
.official-doc-main .official-doc-file-info { display: flex; gap: 0.5rem; }
|
||||
.official-doc-file .attach-item-wrap { display: flex; justify-content: space-between; align-items: center; padding: 0.5rem 1rem; }
|
||||
.official-doc-file .attach-item-wrap .info { display: flex; align-items: end; gap: 0.5rem; }
|
||||
.attach-item-wrap.attach .doc-attach--left .symbol { margin-right: 0.5rem; }
|
||||
.attach-item-wrap.attach .doc-attach--left .text--doc-attach { font-size: 0.75rem; font-weight: 500; padding: 0 0.25rem; border-radius: 0.25rem; background-color: #fff; color: #6d3dc2; border: 0.0625rem solid #c5b1e7; line-height: 1.25rem; }
|
||||
.attach-item-wrap.attach .doc-attach--left .text--doc-version { font-size: 0.75rem; font-weight: bold; padding: 0 0.25rem; border-radius: 0.25rem; background-color: #fff; color: #0d8df2; border: 0.0625rem solid #9ed1fa; line-height: 1.25rem; }
|
||||
.attach-item-wrap.attach .doc-attach--right { margin-left: 0.25rem; }
|
||||
.official-doc-file--attach { min-width: 4.5rem; padding: 0.5rem; padding-right: 1rem; }
|
||||
|
||||
.attach-item-wrap .state { min-width: 4.25rem; }
|
||||
.attach-item-wrap .state .state-text { font-size: 0.875rem; font-weight: bold; pointer-events: none; text-shadow: var(--text-shadow-fff); }
|
||||
.attach-item-wrap .state.viewable .state-text { color: #4db251; }
|
||||
.attach-item-wrap .state.unsupport .state-text { color: #f21d0d; }
|
||||
.attach-item-wrap .state .convert-btn { display: flex; justify-content: center; align-items: center; width: auto; outline: 1px solid #ccc; border-radius: 4px; background: #fff; padding: 0.2rem 0.3rem; transition: 0.3s; }
|
||||
.attach-item-wrap .state .convert-btn div { pointer-events: none; }
|
||||
.attach-item-wrap .state .convert-btn .convert-btn-image { width: 1rem; height: 1rem; background: url('/main/img/archive/convert_gray.svg') no-repeat center/contain; }
|
||||
.attach-item-wrap .state .convert-btn .convert-btn-text { color: #000; font-weight: bold; padding-left: 2px; font-size: 0.75rem; }
|
||||
.attach-item-wrap .state .convert-btn:hover,
|
||||
.attach-item-wrap .state.working .convert-btn { background: #000; }
|
||||
.attach-item-wrap .state .convert-btn:hover .convert-btn-image,
|
||||
.attach-item-wrap .state.working .convert-btn .convert-btn-image { background: url('/main/img/archive/convert_white.svg') no-repeat center/contain; }
|
||||
.attach-item-wrap .state.working .convert-btn .convert-btn-image { animation: rotate-image 1.5s linear infinite; }
|
||||
.attach-item-wrap .state .convert-btn:hover .convert-btn-text,
|
||||
.attach-item-wrap .state.working .convert-btn .convert-btn-text { color: #fff; }
|
||||
|
||||
.official-doc-list > div { font-weight: bold; }
|
||||
.official-doc-list > div:hover { background: #bccbc8; cursor: pointer; }
|
||||
.official-doc-list > .doc-sort-asc::after { content: ''; width: 1rem; height: 1rem; background: url('/main/img/archive/icon__arrow-up--777.svg') no-repeat center/contain; }
|
||||
.official-doc-list > .doc-sort-desc::after { content: ''; width: 1rem; height: 1rem; transform: rotate(180deg); background: url('/main/img/archive/icon__arrow-up--777.svg') no-repeat center/contain; }
|
||||
|
||||
/* 초기화면 도움말 */
|
||||
.official-doc-main .official-doc-instructions { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; justify-content: center; align-items: center; flex-direction: column; z-index: 99; background-color: #000000b8; }
|
||||
.official-doc-main .official-doc-instructions img { max-width: 90vw; max-height: 88vh; width: auto; height: auto; object-fit: contain; }
|
||||
.official-doc-main .official-doc-instructions .doc-instructions-close-btn { display: flex; align-items: center; position: absolute; top: 1rem; right: 1rem; z-index: 99; }
|
||||
.official-doc-main .official-doc-instructions .doc-instructions-close-btn .instructions-radio { display: flex; justify-content: end; align-items: center; margin-right: 1rem; gap: 0.35rem; color: #fff; }
|
||||
.official-doc-main .official-doc-instructions .doc-instructions-close-btn .instructions-radio .custom-checkbox input[type="checkbox"] { display: none; }
|
||||
.official-doc-main .official-doc-instructions .doc-instructions-close-btn .instructions-radio .custom-checkbox span { position: relative; width: 1.25rem; height: 1.25rem; margin-top: 0.25rem; border: 0.0625rem solid #ddd; border-radius: 0.25rem; background-color: #fff; display: inline-block; background-size: contain; background-position: center; background-repeat: no-repeat; }
|
||||
.official-doc-main .official-doc-instructions .doc-instructions-close-btn .instructions-radio .custom-checkbox input[type="checkbox"]:checked + span { background-image: url(/main/img/officialDoc/icon-checkbox-bccbc8.svg); width: 1.25rem; height: 1.25rem; }
|
||||
.official-doc-main .official-doc-instructions .doc-instructions-close-btn .xs-btn-instructions { cursor: pointer; display: flex; justify-content: center; align-items: center; background-color: #fff; min-height: 2rem; max-height: 2rem; min-width: 2rem; max-width: 2rem; border-radius: 0.25rem; border: 0.15rem solid #1e5149; }
|
||||
|
||||
/* 맨 위에 공통헤더 */
|
||||
.official-doc-main-header { display: flex; align-items: center; height: 2.3rem; padding: 0.5rem 0.5rem 0.5rem 1rem; background-color: #E9EEED; border-bottom: 0.0625rem solid #a5b9b6; color: #1E5149; justify-content: space-between; }
|
||||
.official-doc-main-header .official-doc-head { display: flex; align-items: center; height: 2.25rem; padding: 0.5rem 0.5rem 0.5rem 1rem; background-color: #E9EEED; border-bottom: 0.0625rem solid #BCCBC8; justify-content: space-between; }
|
||||
.official-doc-main-header .official-doc-head--left { display: flex; gap: 1rem; }
|
||||
.official-doc-main-header .official-doc-head-space,
|
||||
.official-doc-head--right { display: flex; gap: 0.5rem; align-items: center; }
|
||||
.official-doc-head--right { color: #000; }
|
||||
.official-doc-main-header .official-doc-head--right-line { height: 2.25rem; width: 0.0625rem; background-color: #BCCBC8; }
|
||||
.official-doc-main-header .doc-custom-select-wrapper { min-width: 5rem; position: relative; font-family: sans-serif; color: #111; font-size: 0.75rem; font-weight: 500; font-family: 'pretendard'; }
|
||||
.official-doc-main-header .doc-custom-select { display: flex; justify-content: space-between; align-items: center; background-color: #fff; border: 0.0625rem solid #ddd; border-radius: 0.25rem; cursor: pointer; padding: 0.25rem 0.5rem; position: relative; }
|
||||
.official-doc-main-header .doc-custom-select .selected { display: block; padding-left: 0.25rem; font-size: 0.75rem; }
|
||||
.official-doc-main-header .doc-custom-select>.icon { position: absolute; right: 0.25rem; top: 50%; transform: translateY(-50%); width: 1rem; height: 1rem; }
|
||||
.official-doc-main-header .doc-custom-select .options { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; border: 0.0625rem solid #ddd; border-top: none; border-radius: 0 0 0.25rem 0.25rem; z-index: 10; }
|
||||
.official-doc-main-header .doc-custom-select.open .options { display: block; }
|
||||
.official-doc-main-header .option { padding: 0.5rem; cursor: pointer; font-size: 0.75rem; }
|
||||
.official-doc-main-header .option:hover { background-color: #eee; }
|
||||
.official-doc-main-header .xs-btn-type { background-color: #fff; border-radius: 0.25rem; border: 0.0625rem solid #ddd; padding: 0 0.25rem; min-height: 1.25rem; max-height: 1.25rem; max-width: fit-content; min-width: fit-content; cursor: pointer; display: flex; align-items: center; }
|
||||
.official-doc-main-header .xs-btn-type-icon { display: flex; justify-content: center; align-items: center; background-color: #fff; border-radius: 0.25rem; border: 0.0625rem solid #ddd; padding: 0 0.25rem 0 0.125rem; gap: 0.125rem; min-height: 1.25rem; max-height: 1.25rem; max-width: fit-content; min-width: fit-content; cursor: pointer; }
|
||||
.official-doc-main-header .official-doc-tab-on { background-color: #1E5149; color: #fff; }
|
||||
|
||||
/* 드래그앤드롭 영역 */
|
||||
.official-doc-main-body .doc-dnd-area { z-index: 41; display: none; flex-direction: column; justify-content: center; align-items: center; height: calc(100% - 2.25rem - 2.25rem - 2.25rem); gap: 0.5rem; position: absolute; background: #e9eeeddd; border: 0.125rem solid #a5b9b6; border-radius: 0.25rem; }
|
||||
.official-doc-main-body .doc-dnd-area .doc-image { width: 3rem; height: 3rem; background: url('/main/img/archive/upload_out_dnd.svg') no-repeat center/contain; pointer-events: none; }
|
||||
.official-doc-main-body .doc-dnd-area .doc-text { color: #a5b9b6; font-size: 0.875rem; font-weight: 500; pointer-events: none; }
|
||||
.official-doc-main-body .doc-dnd-area .doc-warn { color: #a5b9b6; font-weight: 500; pointer-events: none; }
|
||||
|
||||
/* ai 로딩 페이지 */
|
||||
.doc-ai-loading { z-index: 10000; display: none; flex-direction: column; justify-content: center; align-items: center; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: #eee; overflow: hidden; }
|
||||
.doc-ai-loading .text { display: flex; flex-direction: row; align-items: center; margin-top: 1.5rem; color: #1e5149; font-weight: bold; justify-content: center; }
|
||||
|
||||
|
||||
/* 화면 위아래 슬라이더 */
|
||||
.official-doc-file .official-doc-center-division { min-width: 71.125rem; /* max-width: 71.125rem; */ height: 0.5rem; background-color: #D2DCDB; position: relative; z-index: 2; width: 100%; transform: translate(0rem, 0rem); }
|
||||
.official-doc-file .official-doc-center-xs-division { height: 0.5rem; background-color: #BCCBC8; position: absolute; z-index: 1; width: 100%; transform: translate(0rem, 0rem); }
|
||||
|
||||
/* 버튼 */
|
||||
.official-doc-file .official-doc-division-button { position: relative; top: 50%; left: 50%; transform: translate(-50%, -50%); padding: 0.25rem; border-radius: 0.25rem; background-color: #D2DCDB; width: 1.625rem; height: 1.625rem; z-index: 15; cursor: ns-resize; }
|
||||
.official-doc-file .official-doc-division-xs-button { position: relative; top: 100%; left: 50%; transform: translate(-50%, -50%); padding: 0.25rem; border-radius: 0.25rem; background-color: #BCCBC8; width: 2rem; height: 1rem; z-index: 1; display: flex; align-items: center; justify-content: center; cursor: pointer; }
|
||||
|
||||
|
||||
/******************************************************************************************************************************************************************/
|
||||
/**************************************************************************************************************************************************** modal *******/
|
||||
/******************************************************************************************************************************************************************/
|
||||
/* 모달 공통 */
|
||||
.official-doc-modal { display: none; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 53; border: 0.0625rem solid #111; border-radius: 0.25rem; background-color: #fff; box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.16); /* min-width: 40rem; */ }
|
||||
.official-doc-modal-background { display: none; z-index: 52; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgb(17, 17, 17, 0.6); overflow: hidden; }
|
||||
|
||||
.official-doc-modal ul { display: flex; flex-direction: column; height: calc(100% - 4.625rem); overflow-y: auto; overflow-x: hidden; }
|
||||
.official-doc-modal li { display: flex; flex-direction: column; }
|
||||
.official-doc-modal hr { margin: 0; border: none; border-top: 0.0625rem solid #ddd; }
|
||||
.official-doc-modal p { font-size: 0.75rem; font-weight: 350; line-height: 1.25rem; color: #777; }
|
||||
.official-doc-modal h2 { font-size: 0.875rem; font-weight: 350; line-height: 1.25rem; }
|
||||
.official-doc-modal h3 { font-size: 0.875rem; font-weight: 550; line-height: 1.25rem; }
|
||||
.official-doc-modal h4 { font-size: 0.875rem; font-weight: 350; line-height: 1.25rem; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
|
||||
.official-doc-modal h5 { font-size: 0.75rem; font-weight: 550; line-height: 1.25rem; }
|
||||
.official-doc-modal h6 { font-size: 0.75rem; font-weight: 350; line-height: 1.25rem; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
|
||||
|
||||
.official-doc-modal,
|
||||
.official-doc-modal-wraper,
|
||||
.official-doc-modal-block,
|
||||
.official-doc-modal-body,
|
||||
.official-doc-modal-header,
|
||||
.official-doc-type-wrap { display: flex; }
|
||||
|
||||
.official-doc-modal>.icon { position: absolute; right: 0.5rem; top: 0.5rem; cursor: pointer; }
|
||||
.official-doc-modal .official-doc-modal-block { flex-direction: column; min-width: 26rem; width: 30dvw; }
|
||||
.official-doc-modal .official-doc-modal-body { flex-direction: column; flex-grow: 1; gap: 0.5rem; padding: 0.5rem 1rem; }
|
||||
.official-doc-modal .official-doc-modal-header { color: #111; gap: 0.5rem; padding: 0.5rem; border-bottom: 0.0625rem solid #ddd; align-items: center; }
|
||||
.official-doc-modal .official-doc-modal-header .official-doc-modal-header--end img { pointer-events: auto; cursor: pointer; width: 1rem; height: 1rem; }
|
||||
.official-doc-modal .official-doc-modal-header .text-green { color: #1E5149; }
|
||||
.official-doc-modal .official-doc-modal-footer { padding: 1rem 0; text-align: center; }
|
||||
.official-doc-modal .official-doc-modal-preview { min-width: 26rem; width: 30dvw; border-left: 0.0625rem solid #ddd; }
|
||||
.official-doc-modal .official-doc-modal-preview iframe { flex-grow: 1; }
|
||||
|
||||
.official-doc-modal .radio-wrapper { display: flex; gap: 0.5rem; cursor: pointer; user-select: none; margin: 0.125rem 0; align-items: center; min-width: 6rem; }
|
||||
.official-doc-modal .radio-wrapper input[type="radio"] { display: none; }
|
||||
.official-doc-modal .custom-radio { width: 1rem; height: 1rem; border: 0.0625rem solid #ddd; border-radius: 100%; position: relative; }
|
||||
.official-doc-modal .radio-wrapper input[type="radio"]:checked+.custom-radio { border-color: #1E5149; }
|
||||
.official-doc-modal .custom-radio::after { content: ""; position: absolute; display: none; top: 20%; left: 20%; width: 0.5rem; height: 0.5rem; border-radius: 100%; background-color: #1E5149; }
|
||||
.official-doc-modal .radio-wrapper input[type="radio"]:checked+.custom-radio::after { display: block; }
|
||||
.official-doc-modal .radio-wrapper .custom-radio-text { font-size: 0.875rem; font-weight: 350; line-height: 1.25rem; }
|
||||
.official-doc-modal .radio-wrapper.disabled { cursor: not-allowed; }
|
||||
.official-doc-modal .radio-wrapper input[type="radio"]:disabled + .custom-radio + .custom-radio-text { opacity: 0.5; pointer-events: none; cursor: not-allowed; }
|
||||
|
||||
.official-doc-modal .official-doc-negative-btn,
|
||||
.official-doc-modal .official-doc-positive-btn { width: 10rem; padding: 0.5rem 1rem; border-radius: 0.25rem; cursor: pointer; font-size: 0.875rem; font-weight: 500; line-height: 1.25rem; height: 2.25rem; }
|
||||
.official-doc-modal .official-doc-negative-btn { background-color: #fff; border: 0.0625rem solid #ddd; }
|
||||
.official-doc-modal .official-doc-positive-btn { background: linear-gradient(180deg, #1e5149 0%, #12312c 100%); }
|
||||
.official-doc-modal .official-doc-positive-btn h3 { color: #fff; }
|
||||
.official-doc-modal .doc-close { width: 1rem; height: 1rem; background: url(/main/img/officialDoc/icon-close.svg) no-repeat center / contain; cursor: pointer; transition: 0.2s; }
|
||||
|
||||
/* 공문 ai 선택 모달 */
|
||||
.official-doc-modal.official-doc-ai-choice-modal { display: none; }
|
||||
|
||||
/* 공문 파일 추가/수정/입력 모달 */
|
||||
.official-doc-modal.official-doc-upsert-modal { display: none; }
|
||||
.official-doc-modal .official-doc-type-wrap { align-items: center; }
|
||||
.official-doc-modal .official-doc-type-wrap p { min-width: 5rem; }
|
||||
.official-doc-modal .official-doc-type-wrap input { color: #FF3D00; font-size: 0.875rem; font-weight: 300; line-height: 1.25rem; width: 100%; }
|
||||
.official-doc-modal .official-doc-type-wrap input:focus { outline: 0.125rem solid #414141; }
|
||||
.official-doc-modal .official-doc-type-wrap input[type="text"] { border: 0.0625rem solid #ddd; border-radius: 0.25rem; padding: 0.125rem 0.5rem; font-size: 0.75rem; width: 100%; font-weight: 300; }
|
||||
.official-doc-modal .official-doc-type-wrap input[type="date"] { position: relative; -webkit-appearance: none; appearance: none; -moz-appearance: none; background: url(/main/img/officialDoc/icon__calendar--aaa.svg) no-repeat; background-position: right 0.25rem center; padding-right: 0.5rem; background-size: 1rem 1rem; padding-right: 2rem; border: 0.0625rem solid #ddd; box-sizing: border-box; height: 1.75rem; border-radius: 0.25rem; width: 100%; padding: 0.125rem 0.5rem; font-size: 0.75rem; font-weight: 300; }
|
||||
.official-doc-modal .official-doc-type-wrap input[type="date"]::-webkit-calendar-picker-indicator, .official-doc-modal input[type=time]::-webkit-calendar-picker-indicator { position: absolute; right: 0; top: 0; width: 100%; height: 100%; background: transparent; }
|
||||
.official-doc-modal .official-doc-type-wrap input[type="date"]:hover { border: 0.063rem solid #111; cursor: pointer; background-color: #eee; }
|
||||
|
||||
.official-doc-modal .official-doc-type-wrap input:read-only { color: #111; }
|
||||
.official-doc-modal .official-doc-type-wrap input:read-only:focus { outline: none; }
|
||||
.official-doc-modal .official-doc-type-wrap textarea { border: 0.0625rem solid #ddd; border-radius: 0.25rem; padding: 0.125rem 0.5rem; color: #FF3D00; font-size: 0.75rem; font-weight: 300; line-height: 1.25rem; width: 100%; /* min-width: 81.5%; max-width: 81.5%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; */ }
|
||||
|
||||
.official-doc-modal .doc-modal-custom-select-wrap { position: relative; font-family: sans-serif; color: #111; font-size: 0.75rem; font-weight: 500; font-family: 'pretendard'; }
|
||||
.official-doc-modal .doc-modal-custom-select-wrap .doc-modal-custom-select { display: flex; justify-content: space-between; background-color: #fff; border: 0.0625rem solid #ddd; border-radius: 0.25rem; cursor: pointer; padding: 0.25rem 0.5rem; position: relative; margin-left: 0.5rem; width: 9.5rem; }
|
||||
|
||||
.official-doc-modal .doc-modal-custom-select-wrap .doc-modal-custom-select { display: flex; align-items: center; }
|
||||
.official-doc-modal .doc-modal-custom-select-wrap .doc-modal-custom-select .selected { display: block; font-size: 0.75rem; color: #FF3D00; font-weight: 300; }
|
||||
.official-doc-modal .doc-modal-custom-select-wrap .doc-modal-custom-select > .icon { position: absolute; right: 0.25rem; top: 50%; transform: translateY(-50%); width: 1rem; height: 1rem; }
|
||||
.official-doc-modal .doc-modal-custom-select-wrap .doc-modal-custom-select .options { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; border: 0.0625rem solid #ddd; border-top: none; border-radius: 0 0 0.25rem 0.25rem; z-index: 51; }
|
||||
.official-doc-modal .doc-modal-custom-select-wrap .doc-modal-custom-select.open .options { display: block; z-index: 51; }
|
||||
.official-doc-modal .doc-select-icon-wrap { min-width: 1rem; min-height: 1rem; }
|
||||
.official-doc-modal .option { padding: 0.5rem; cursor: pointer; font-size: 0.75rem; color: #FF3D00; font-weight: 300; }
|
||||
.official-doc-modal .option:hover { background-color: #eee; }
|
||||
|
||||
/* 공문 설정 세팅 모달 */
|
||||
.official-doc-modal.official-doc-setting-modal { display: none; flex-direction: column; }
|
||||
.official-doc-setting-modal-header { color: #111; gap: 0.5rem; padding: 0.5rem; border-bottom: 0.0625rem solid #aaa; }
|
||||
.official-doc-dori { display: flex; justify-content: space-between; padding-left: 1rem; font-size: 0.875rem; font-weight: 500; }
|
||||
.official-doc-dori>img { cursor: pointer; }
|
||||
.official-doc-modal-body-s { display: flex; flex-direction: column; gap: 0.5rem; padding: 0.5rem 1rem; font-size: 0.875rem; font-weight: 300; }
|
||||
.official-doc-cell-div { display: flex; margin-bottom: 0.5rem; }
|
||||
.official-doc-cell-0--title p { padding: 0 2rem 0 0; min-height: 2.7rem; }
|
||||
.official-doc-cell-0--title.top { margin-top: 2.1875rem; }
|
||||
.official-doc-cell-0--title.top p { margin-top: 2.85rem; }
|
||||
.official-doc-cell-0--title.bottom p { margin-top: 1.785rem; }
|
||||
.official-doc-cell-1--title,
|
||||
.official-doc-cell-2--title { padding-bottom: 0.55rem; }
|
||||
.official-doc-cell-division-border { margin: 1rem 0; width: 11rem; height: 0.0625rem; background-color: #ddd; }
|
||||
.official-doc-short-border { width: 5rem !important; }
|
||||
.official-doc-long-border { width: 100% !important; }
|
||||
.official-doc-cell-1,
|
||||
.official-doc-cell-2 { display: flex; flex-direction: column; gap: 0.85rem; width: 10rem; }
|
||||
.official-doc-cell-1 hr,
|
||||
.official-doc-cell-2 hr { width: 100%; height: 0.0625rem; background-color: #ddd; }
|
||||
.official-doc-cell-1--body-1,
|
||||
.official-doc-cell-1--body-2,
|
||||
.official-doc-cell-2--body-1,
|
||||
.official-doc-cell-2--body-2 { display: flex; gap: 1rem; }
|
||||
.official-doc-cell-1--body-1 p,
|
||||
.official-doc-cell-1--body-2 p,
|
||||
.official-doc-cell-2--body-1 p,
|
||||
.official-doc-cell-2--body-2 p { min-width: 4.5rem; }
|
||||
|
||||
.official-doc-cell-center-division { background-color: #ddd; width: 0.1rem; margin-right: 1.8rem; }
|
||||
.official-doc-inline-list { display: flex; flex-direction: column; gap: 0.5rem; width: 10rem; }
|
||||
.official-doc-inline { display: flex; align-items: center; gap: 0.5rem; }
|
||||
.official-doc-inline input { outline: none; box-shadow: none; background-color: inherit; border: none; }
|
||||
.official-doc-inline input[type="text"] { color: #FF3D00; border: 0.0625rem solid #ddd; border-radius: 0.25rem; padding: 0.25rem 1rem; font-size: 0.875rem; width: 8.25rem; font-weight: 300; }
|
||||
.official-doc-inline input[type="text"]:focus { color: #FF3D00; outline: 0.0625rem solid #111; }
|
||||
.official-doc-inline input::placeholder { color: #FF3D00; font-weight: 300; line-height: 1.25rem; }
|
||||
.official-doc-inline-add-btn { /* width: 13.875rem; */ background-color: #E9EEED; border-radius: 0.25rem; border: 0.0625rem solid #BCCBC8; display: flex; align-items: center; justify-content: center; color: #1E5149; padding: 0.125rem 0; cursor: pointer; margin-right: 1.75rem; font-size: 0.875rem; font-weight: 300; }
|
||||
.official-doc-line-text { display: flex; gap: 0.5rem; }
|
||||
.official-doc-line-set { min-width: 100%; height: 0.0625rem; background-color: #ddd; }
|
||||
.official-doc-line-icon { display: flex; padding-left: 3.675rem; }
|
||||
.official-doc-line-icon img { height: 1.125rem; }
|
||||
|
||||
.official-doc-modal .custom-checkbox input[type="checkbox"] { display: none; }
|
||||
.official-doc-modal .custom-checkbox span { position: relative; width: 1.25rem; height: 1.25rem; margin-top: 0.25rem; border: 0.0625rem solid #ddd; border-radius: 0.25rem; background-color: #fff; display: inline-block; background-size: contain; background-position: center; background-repeat: no-repeat; }
|
||||
.official-doc-modal .custom-checkbox input[type="checkbox"]:checked + span { background-image: url(/main/img/officialDoc/icon-checkbox.svg); width: 1.25rem; height: 1.25rem; }
|
||||
.official-doc-setting-modal .xs-btn { display: flex; justify-content: center; align-items: center; background-color: #fff; min-height: 1.25rem; max-height: 1.25rem; min-width: 1.25rem; max-width: 1.25rem; border-radius: 0.25rem; border: 0.0625rem solid #ddd; cursor: pointer; }
|
||||
|
||||
.order-base { display: flex; flex-direction: column; gap: 0.5rem; }
|
||||
.order-target { display: flex; flex-direction: column; gap: 0.5rem; }
|
||||
.other-order-base { display: flex; flex-direction: column; gap: 0.5rem; }
|
||||
.other-order-target { display: flex; flex-direction: column; gap: 0.5rem; }
|
||||
|
||||
/* 공문 컨텍스트메뉴 모달 */
|
||||
.official-doc-modal.official-doc-context-modal .official-doc-modal-block { width: 100%; }
|
||||
.official-doc-modal.official-doc-context-modal .official-doc-modal-block .official-doc-modal-body { display: flex; text-align: center; align-items: center; }
|
||||
.official-doc-modal.official-doc-context-modal .official-doc-modal-block .official-doc-modal-body .text-wrap { display: flex; flex-direction: column; align-items: center; text-align: center; font-size: 0.875rem; line-height: 1.6; }
|
||||
.official-doc-modal.official-doc-context-modal .official-doc-modal-block .official-doc-modal-body input { width: 30rem; padding: 0.3125rem; color: #FF3D00; outline: 0.0625rem solid #ddd; border-radius: 0.25rem; border: none; }
|
||||
.official-doc-modal.official-doc-context-modal .official-doc-modal-block .official-doc-modal-body input:focus { outline: 0.125rem solid #414141; }
|
||||
.official-doc-modal.official-doc-context-modal .official-doc-modal-block .official-doc-modal-body .input-wrap .warn { font-size: 0.875rem; margin-top: 0.5rem; color: #f21d0d; font-weight: bold; text-align: center; white-space: pre; line-height: 1.2; animation: vibration 0.1s; animation-iteration-count: 6; }
|
||||
|
||||
/* 파일 미리보기 영역 */
|
||||
.official-doc-preview .official-doc-preview--notice { display: flex; width: 100%; height: 100%; justify-content: center; align-items: center; text-align: center; color: #777; font-size: 1.125rem; font-weight: bold; }
|
||||
|
||||
.official-doc-preview .official-doc-preview--container { height: 100%; display: none; flex-direction: column; }
|
||||
|
||||
.official-doc-preview .official-doc-preview--container .viewer-header { width: 100%; background: #e9eeed; border-bottom: 0.0625rem solid #a5b9b6; padding: 0 1rem; }
|
||||
.official-doc-preview .official-doc-preview--container .viewer-header .wrap { display: flex; justify-content: space-between; align-items: center; width: 100%; min-height: 2.25rem; }
|
||||
.official-doc-preview .official-doc-preview--container .viewer-header .text-wrap { display: flex; align-items: center; gap: 0.5rem; }
|
||||
.official-doc-preview .official-doc-preview--container .viewer-header .text-wrap .title { font-weight: bold; color: #1E5149; }
|
||||
.official-doc-preview .official-doc-preview--container .viewer-header .btn { display: flex; align-items: center; height: 1.25rem; background: #fff; outline: 0.0625rem solid #ddd; border-radius: 0.25rem; padding: 0.2rem; transition: 0.3s; }
|
||||
.official-doc-preview .official-doc-preview--container .viewer-header .btn:hover { background: #000; cursor: pointer; }
|
||||
.official-doc-preview .official-doc-preview--container .viewer-header .btn:hover .text { color: #fff; }
|
||||
|
||||
.official-doc-preview .official-doc-preview--container .viewer-wrap { display: flex; height: 100%; }
|
||||
.official-doc-preview .official-doc-preview--container .viewer-wrap .viewer { display: flex; justify-content: center; align-items: center; width: 100%; height: 100%; }
|
||||
.official-doc-preview .official-doc-preview--container .viewer-wrap .viewer iframe { width: 100%; height: 100%; border: none; }
|
||||
.official-doc-preview .official-doc-preview--container .viewer-wrap .viewer iframe body { background-color: 383838; }
|
||||
.official-doc-preview .official-doc-preview--container .viewer-wrap .viewer .viewer-unsupport-wrap { display: flex; justify-content: center; align-items: center; width: 100%; height: 100%; }
|
||||
.official-doc-preview .official-doc-preview--container .viewer-wrap .viewer .viewer-unsupport-wrap .text { color: #777; font-size: 1.25rem; font-weight: bold; }
|
||||
.official-doc-preview .official-doc-preview--container .viewer-wrap .viewer .viewer-convert-wrap { display: flex; flex-direction: column; justify-content: center; align-items: center; width: 100%; height: 100%; }
|
||||
.official-doc-preview .official-doc-preview--container .viewer-wrap .viewer .viewer-convert-wrap .text { color: #777; font-size: 1.25rem; font-weight: bold; }
|
||||
.official-doc-preview .official-doc-preview--container .viewer-wrap .viewer .viewer-text-wrap { display: flex; justify-content: center; align-items: center; padding: 0.125rem 1rem; width: 100%; height: 100%; overflow-y: scroll; }
|
||||
.official-doc-preview .official-doc-preview--container .viewer-wrap .viewer .viewer-text-wrap .viewer-text { width: 100%; height: 100%; padding: 0 1rem; white-space: pre-wrap; font-size: 0.875rem; }
|
||||
|
||||
.official-doc-preview .official-doc-preview--container .info-wrap { display: flex; flex-direction: column; width: 100%; position: relative; transition: 0.3s; max-height: 500px; }
|
||||
.official-doc-preview .official-doc-preview--container .info-wrap.close { max-height: 0px; }
|
||||
.official-doc-preview .official-doc-preview--container .info-wrap.open { max-height: 500px; }
|
||||
|
||||
.official-doc-preview .official-doc-preview--container .info-wrap .separator { position: absolute; width: 100%; border-top: 0.0625rem solid #A5B9B6; z-index: 20; }
|
||||
.official-doc-preview .official-doc-preview--container .info-wrap .separator .toggle-btn { display: flex; align-items: center; justify-content: center; gap: 0.25rem; position: absolute; left: 50%; bottom: 0; transform: translate(-50%, 0); padding: 0 0.25rem; background: #E9EEED; border: 0.0625rem solid #A5B9B6; border-top-left-radius: 0.25rem; border-top-right-radius: 0.25rem; transition: 0.2s; }
|
||||
.official-doc-preview .official-doc-preview--container .info-wrap .separator .toggle-btn .image { width: 1rem; height: 1rem; background: url('/main/img/archive/toggle_bottom_darkgreen.svg') no-repeat center/contain; transition: 0.2s; pointer-events: none; transform: rotate(0deg); }
|
||||
.official-doc-preview .official-doc-preview--container .info-wrap .separator .toggle-btn .text { color: #1E5149; transition: 0.2s; }
|
||||
.official-doc-preview .official-doc-preview--container .info-wrap.close .separator .toggle-btn .image { transform: rotate(180deg); }
|
||||
.official-doc-preview .official-doc-preview--container .info-wrap .separator .toggle-btn:hover { cursor: pointer; background: #bccbc8; }
|
||||
.official-doc-preview .official-doc-preview--container .info-wrap .separator .toggle-btn:hover .image { scale: 1.25; }
|
||||
|
||||
.official-doc-preview .official-doc-preview--container .info-wrap .metadata { display: flex; width: 100%; height: fit-content; min-height: 0; border-top: 0.0625rem solid #a5b9b6; position: relative; overflow-x: hidden; overflow-y: scroll; transition: 0.3s; }
|
||||
.official-doc-preview .official-doc-preview--container .info-wrap.close .metadata { opacity: 0; }
|
||||
.official-doc-preview .official-doc-preview--container .info-wrap .metadata .metadata-item-wrap { display: flex; flex-direction: column; justify-content: center; width: calc(100% - 1.75rem); margin: 0 0.75rem 0 1rem; }
|
||||
.official-doc-preview .official-doc-preview--container .info-wrap .metadata .metadata-item-wrap .wrap { display: flex; justify-content: space-between; align-items: center; gap: 1rem; width: 100%; }
|
||||
.official-doc-preview .official-doc-preview--container .info-wrap .metadata .metadata-item-wrap .wrap.line1 .item,
|
||||
.official-doc-preview .official-doc-preview--container .info-wrap .metadata .metadata-item-wrap .wrap.line2 .item { border-bottom: 0.0625rem solid #ddd; padding: 0.5rem 0; align-items: center; }
|
||||
.official-doc-preview .official-doc-preview--container .info-wrap .metadata .metadata-item-wrap .wrap.line3 .item { border-bottom: 0.0625rem solid #ddd; }
|
||||
.official-doc-preview .official-doc-preview--container .info-wrap .metadata .metadata-item-wrap .wrap.line3 .item,
|
||||
.official-doc-preview .official-doc-preview--container .info-wrap .metadata .metadata-item-wrap .wrap.line4 .item { padding: 0.5rem 0; align-items: center; }
|
||||
.official-doc-preview .official-doc-preview--container .info-wrap .metadata .metadata-item-wrap .wrap.line2 .item { width: 30% !important; }
|
||||
.official-doc-preview .official-doc-preview--container .info-wrap .metadata .metadata-item-wrap .wrap .item { display: flex; gap: 1rem; width: 100%; height: 100%; align-items: center; }
|
||||
.official-doc-preview .official-doc-preview--container .info-wrap .metadata .metadata-item-wrap .wrap .item .key { display: flex; justify-content: space-between; white-space: nowrap; color: #777; min-width: 3rem; max-width: 3rem; }
|
||||
.official-doc-preview .official-doc-preview--container .info-wrap .metadata .metadata-item-wrap .wrap .item .key span { flex: 0 0 auto; font-weight: 300; line-height: 1.25rem; }
|
||||
.official-doc-preview .official-doc-preview--container .info-wrap .metadata .metadata-item-wrap .wrap .item .value-wrap { display: flex; justify-content: space-between; align-items: center; width: calc(100% - 4rem); height: 100%; font-weight: 500; }
|
||||
.official-doc-preview .official-doc-preview--container .info-wrap .metadata .metadata-item-wrap .wrap.line1 .item .value-wrap .value,
|
||||
.official-doc-preview .official-doc-preview--container .info-wrap .metadata .metadata-item-wrap .wrap.line2 .item .value-wrap .value { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; line-height: 1.25rem; }
|
||||
.official-doc-preview .official-doc-preview--container .info-wrap .metadata .metadata-item-wrap .wrap.line3 .item .value-wrap .value,
|
||||
.official-doc-preview .official-doc-preview--container .info-wrap .metadata .metadata-item-wrap .wrap.line4 .item .value-wrap .value { overflow: hidden; overflow-y: auto; max-height: 5rem; width: 100%; line-height: 1.25rem; }
|
||||
.official-doc-preview .official-doc-preview--container .info-wrap .metadata .metadata-item-wrap .wrap .item .btn { display: flex; align-items: center; height: 1.25rem; outline: 0.0625rem solid #aaa; border-radius: 0.25rem; padding: 0.125rem 0.25rem; transition: 0.3s; }
|
||||
.official-doc-preview .official-doc-preview--container .info-wrap .metadata .metadata-item-wrap .wrap .item .btn .text { transition: 0.3s; }
|
||||
.official-doc-preview .official-doc-preview--container .info-wrap .metadata .metadata-item-wrap .wrap .item .btn:hover { background: #000; cursor: pointer; }
|
||||
.official-doc-preview .official-doc-preview--container .info-wrap .metadata .metadata-item-wrap .wrap .item .btn:hover .text { color: #fff; }
|
||||
.official-doc-preview .official-doc-preview--container .info-wrap .metadata .metadata-item-wrap .wrap .item .textarea:disabled { color: #000; width: 100%; height: 100%; padding: 0.125rem 0; resize: none; border: none; border-radius: 0.25rem; font-size: 0.875rem; line-height: 1rem; background: transparent; z-index: 30; }
|
||||
|
||||
/******************************************************************************************************************************************************************/
|
||||
/********************************************************************************************************************************************** contextmenu *******/
|
||||
/******************************************************************************************************************************************************************/
|
||||
/* 컨텍스트메뉴 */
|
||||
.official-doc-contextmenu { display: none; flex-direction: column; position: absolute; min-width: 12.5rem; background: #fff; user-select: none; border: 0.0625rem solid #ddd; border-radius: 0.25rem; z-index: 40; }
|
||||
.official-doc-contextmenu div { font-size: 0.875rem; z-index: 40; }
|
||||
.official-doc-contextmenu .official-doc-contextmenu-container { width: 100%; height: 100%; position: relative; padding: 0.25rem; box-shadow: var(--box-shadow); font-weight: 300; z-index: 40; }
|
||||
.official-doc-contextmenu .official-doc-contextmenu-container .official-doc-contextmenu-padding { padding: 0.25rem; }
|
||||
.official-doc-contextmenu .official-doc-contextmenu-container .official-doc-contextmenu-item { display: flex; align-items: center; position: relative; color: var(--primary); cursor: pointer; transition: 0.3s; }
|
||||
.official-doc-contextmenu .official-doc-contextmenu-container .official-doc-contextmenu-item:hover { background: #d4dddb80; border-radius: 0.25rem; }
|
||||
.official-doc-contextmenu .official-doc-contextmenu-container .official-doc-contextmenu-item.disabled { background: #aaa; }
|
||||
.official-doc-contextmenu .official-doc-contextmenu-container .official-doc-contextmenu-item.disabled:hover { cursor: not-allowed; }
|
||||
.official-doc-contextmenu .official-doc-contextmenu-container .official-doc-contextmenu-item .btn { width: 100%; background: none; }
|
||||
.official-doc-contextmenu .official-doc-contextmenu-container .official-doc-contextmenu-item .btn:hover { background: none; }
|
||||
.official-doc-contextmenu .official-doc-contextmenu-container .official-doc-contextmenu-item img { width: 1.25rem; height: 1.25rem; margin-right: 0.875rem; }
|
||||
.official-doc-contextmenu .official-doc-contextmenu-container .official-doc-contextmenu-item input[type="file"] { display: none; }
|
||||
.official-doc-contextmenu .official-doc-contextmenu-container .official-doc-contextmenu-item .btn label { display: flex; align-items: center; cursor: pointer; width: 100%; }
|
||||
.official-doc-contextmenu .official-doc-contextmenu-container .official-doc-contextmenu-item .wrap { display: flex; flex-direction: row; justify-content: space-between; align-items: center; width: 100%; color: #111; }
|
||||
.official-doc-contextmenu .official-doc-contextmenu-container .official-doc-contextmenu-item .wrap .name { font-size: 0.875rem; color: #111; }
|
||||
.official-doc-contextmenu .official-doc-contextmenu-container .official-doc-contextmenu-item .wrap>div { pointer-events: none; }
|
||||
.official-doc-contextmenu .official-doc-contextmenu-container .official-doc-contextmenu-item .wrap .shortcut { color: #777; }
|
||||
|
||||
/******************************************************************************************************************************************************************/
|
||||
/********************************************************************************************************************************************** z-index *******/
|
||||
/******************************************************************************************************************************************************************/
|
||||
/*
|
||||
.official-doc-header 1
|
||||
.official-doc-main li.box-selected 3
|
||||
.official-doc-main-header .doc-custom-select .options 10
|
||||
|
||||
.official-doc-list-container 12
|
||||
.official-doc-main-body .doc-dnd-area 41
|
||||
|
||||
.official-doc-file .official-doc-center-division 2
|
||||
.official-doc-file .official-doc-center-xs-division 1
|
||||
|
||||
.official-doc-file .official-doc-division-button 1
|
||||
.official-doc-file .official-doc-division-xs-button 1
|
||||
|
||||
.official-doc-preview-container .official-doc-center-xs-division 1
|
||||
.official-doc-preview-container .official-doc-division-button 15
|
||||
.official-doc-preview-container .official-doc-division-xs-button 1
|
||||
|
||||
.official-doc-contextmenu 40
|
||||
.official-doc-contextmenu div 40
|
||||
.official-doc-contextmenu .official-doc-contextmenu-container 40
|
||||
|
||||
.official-doc-modal-background 52
|
||||
.official-doc-modal 53
|
||||
.official-doc-modal .doc-modal-custom-select .options 51
|
||||
.official-doc-modal .doc-modal-custom-select.open .options 51
|
||||
|
||||
.official-doc-main .official-doc-instructions 99
|
||||
.official-doc-instructions .doc-instructions-close-btn 99
|
||||
.doc-ai-loading 10000
|
||||
*/
|
||||
232
views/main/css/style_overview.css
Normal file
@@ -0,0 +1,232 @@
|
||||
.overview-main { display: none; }
|
||||
.overview { display: flex; background-color: #fff; max-width: 100dvw; height: calc(100dvh - 4.5rem); position: absolute; overflow-x: auto; overflow-y: hidden; }
|
||||
.overview-box-1 { min-width: 38rem; max-width: 38rem; display: flex; flex-direction: column; gap: 0.5rem; min-height: calc(100dvh - 4.5rem); overflow-x: hidden; overflow-y: auto; }
|
||||
.overview-box-2 { min-width: 38rem; max-width: 38rem; display: flex; flex-direction: column; gap: 0.5rem; min-height: calc(100dvh - 4.5rem); overflow-x: hidden; overflow-y: auto; }
|
||||
.overview-box-3 { display: flex; flex-direction: column; gap: 0.5rem; min-width: 43.5rem; max-width: 43.5rem; overflow-x: hidden; overflow-y: auto; }
|
||||
.overview .section-division-border { background-color: #E9EEED; min-width: 0.25rem; }
|
||||
.overview .overview-box--wrap { display: flex; gap: 0.5rem; }
|
||||
.overview .type--wrap { display: flex; gap: 0.5rem;}
|
||||
.overview .type--wrap-space-evenly { display: flex; justify-content: space-evenly; width: 100%; gap: 1rem; }
|
||||
.overview .box-header { display: flex; justify-content: space-between; padding: 0.5rem 1rem; border-bottom: 0.0625rem solid var(--primary-lv2); color: var(--primary-lv5); align-items: center; height: 2.25rem; }
|
||||
.overview .box-header--right { display: flex; gap: 0.5rem;}
|
||||
.overview .box-header h5 { color: #111; }
|
||||
.overview .box-header--right-set { display: flex; gap: 0.5rem; align-items: center; }
|
||||
.overview .box-header img { width: 1.375rem; height: 1.375rem; }
|
||||
.overview .type--wrap-left { min-width: 3.5rem; }
|
||||
.overview .wrap-2-set { display: flex; flex-direction: column; width: 50%; gap: 1rem; }
|
||||
.overview .wrap-3-set { display: flex; flex-direction: column; gap: 1rem; width: 100%; }
|
||||
.overview .wrap-3-set .type--wrap-right { width: 100%; }
|
||||
.overview .box-body { padding: 0.75rem 1rem; display: flex; flex-direction: column; gap: 1rem; font-size: 0.875rem; font-weight: 300; line-height: 1.25rem; flex-grow: 1;}
|
||||
.overview .box-body.facility-size .type--wrap-right { flex: 1; overflow: hidden;}
|
||||
.overview .box-body.facility-size .facility-overview {width: 95%; text-overflow: ellipsis; overflow: hidden; white-space: nowrap;}
|
||||
.overview .scroll-box.facility-size .box-body { gap : 0.5rem; padding: 0.5rem 1rem;}
|
||||
.overview .box-body.business-purpose {width: 95%; height: 50%; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; line-height: 1.25rem; white-space: normal;}
|
||||
.overview .calendar { width: 100%; height: fit-content; }
|
||||
.overview .xs-btn-type { color: #000; background-color: #fff; border-radius: 0.25rem; border: 0.0625rem solid #ddd; padding: 0 0.25rem; min-height: 1.25rem; max-height: 1.25rem; max-width: fit-content; min-width: fit-content; cursor: pointer; }
|
||||
.overview h3 { font-size: 0.875rem; font-weight: 500; line-height: 1.25rem; color: var(--primary-lv5); }
|
||||
.overview h4 { font-size: 0.875rem; font-weight: 300; line-height: 1.25rem; }
|
||||
.overview h5 { font-size: 0.75rem; font-weight: 500; line-height: 1.25rem; }
|
||||
.overview h6 { font-size: 0.75rem; font-weight: 300; line-height: 1.25rem; }
|
||||
.overview p { font-size: 0.75rem; font-weight: 300; line-height: 1.25rem; color: #777; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
|
||||
.overview .overview-table-container { overflow-x: auto; overflow-y: hidden; max-width: 100%; }
|
||||
.overview .overview-table-container table { border-collapse: collapse; width: 100%; }
|
||||
.overview .overview-table-container td { padding: 0.25rem; font-size: 0.875rem; font-weight: 300; line-height: 1.25rem; min-width: 7rem;}
|
||||
.overview .overview-table-container th { padding: 0.25rem; text-align: left; color: #777; font-size: 0.75rem; font-weight: 300; line-height: 1.25rem; min-width: 7rem;}
|
||||
.overview .overview-table-container th.sticky,.overview .overview-table-container .sticky { position: sticky; left: 0; background-color: #fff; color: #777; font-size: 0.75rem !important; font-weight: 300; line-height: 1.25rem; min-width: 5rem !important; }
|
||||
.overview .total { color: #111 !important; }
|
||||
.overview .host { color: #111; font-weight: 500; }
|
||||
.overview .xs-btn { background-color: #fff; padding: 0.125rem; border: 0.0663rem solid #ddd; border-radius: 0.25rem; display: flex; justify-content: center; align-items: center; width: 1.25rem; height: 1.25rem; }
|
||||
.overview .overview-map { width: 100%; height: 100%; border-radius: 0.25rem; border: 0.0625rem solid #ddd; object-fit: contain; }
|
||||
.overview .location-map { width: 100%; height: 100%; border-radius: 0.25rem; border: 0.0625rem solid #ddd; object-fit: contain; }
|
||||
.overview select { border: none; border-bottom: 0.0625rem solid #ddd; font-family: 'Pretendard'; font-size: 0.875rem; font-weight: 300; line-height: 1.25rem; color: #111; appearance: none; -webkit-appearance: none; -moz-appearance: none; }
|
||||
.overview select:focus { outline: none; box-shadow: none; border-color: inherit; }
|
||||
.overview .cursor-btn { cursor: pointer; }
|
||||
.overview .issue-box { width: 100%; height: 100%;}
|
||||
/*교류시간*/
|
||||
.overview .exchange-time { display: none;}
|
||||
.overview .top-section,.overview .top-section--div { display: flex; gap: 0.5rem; }
|
||||
.overview .top-section { gap: 1rem; }
|
||||
.overview .top-section--div { gap: 0.5rem; }
|
||||
.overview .bottom-section-1,.bottom-section-2,.bottom-section-3,.bottom-section-4,.timetable { display: flex; align-items: center; }
|
||||
.overview .timetable-block { width: 1.75rem; height: 1.75rem; border: 0.0625rem solid #ddd; display: flex;}
|
||||
.overview .timetable-half-block { width: 0.875rem; height: 1.687rem; display: flex;}
|
||||
.overview .timetable-quarter-block { width: 0.4375rem; height: 1.687rem;}
|
||||
.overview .bottom-section { position: relative; }
|
||||
.overview .bottom-section-1 p, .overview .bottom-section-4 p { text-overflow: unset; overflow: visible; }
|
||||
.overview .bottom-section h4 { width: 3rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
|
||||
.overview .time-bar { position: absolute; margin-left: 1.3rem; top: -0.3rem; display: flex; align-items: center; flex-direction: column; }
|
||||
.overview .time-bar .bar { height: 3.8rem; width: 0.063rem; background-color: #111; }
|
||||
.overview .time-bar .kst-time,.other-country-time { min-width: 3.5rem; background: #1E5149; border: 0.0625rem solid #ddd; color: #fff; border-radius: 0.25rem; padding: 0 0.25rem; }
|
||||
.overview .type-em-red { color: var(--color-dahong); font-weight: 300; font-size: 0.75rem; }
|
||||
|
||||
/*캘린더*/
|
||||
.overview #calendar { display: inline-block; text-align: left; width: 100%; height: 100%; overflow-y: auto; }
|
||||
.overview .calendar-header { display: flex; justify-content: center; gap: 2rem; border-bottom: 0.0625rem solid #dddddd; padding-top: 0.5rem; position: relative; align-items: center; }
|
||||
.overview .calendar-header .add-schedule-btn { position: absolute; right: 1.25rem; cursor: pointer; margin-bottom: 0.5rem; }
|
||||
.overview .calendar-header .add-schedule-btn img { width: 1.375rem; height: 1.375rem; }
|
||||
.overview .calendar-header .calendar-btn { cursor: pointer; margin-bottom: 0.5rem; }
|
||||
.overview .calendar-header .calendar-btn img { width: 3.5rem; height: 1.875rem; }
|
||||
.overview .schedule { width: 100%; display: flex; align-items: center; justify-content: space-evenly; cursor: pointer; }
|
||||
.overview .schedule.start_date { border-top-left-radius: 0.25rem; border-bottom-left-radius: 0.25rem; margin-left: 0.5rem; }
|
||||
.overview .schedule.end_date { border-top-right-radius: 0.25rem; border-bottom-right-radius: 0.25rem; margin-left: -0.5rem; }
|
||||
.overview .schedule .color { display: flex; align-items: center; width: 10%; margin-left: 0.5rem; }
|
||||
.overview .schedule .time { font-size: 0.625rem; font-weight: 300; color: #777777; }
|
||||
.overview .schedule .title { font-size: 0.75rem; font-weight: 300; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; width: 90%; }
|
||||
.overview .schedule .schedule-point { margin-bottom: 0.25rem; }
|
||||
.overview .schedule:hover { cursor: pointer; }
|
||||
.overview .remain-schedules { margin-left: 0.5rem; }
|
||||
.overview .month-header { font-size: 0.875rem; margin-bottom: 0.5rem; font-weight: 500; }
|
||||
.overview .days-of-week { display: flex; justify-content: space-around; font-weight: 300; padding-top: 0.625rem; padding-bottom: 0.625rem; font-size: 0.75rem; }
|
||||
.overview .days-of-week .days-of-week-day {font-size: 0.75rem;}
|
||||
.overview .days-of-week .sunday { color: #FF3D00; font-weight: 400; }
|
||||
.overview .days { display: flex; flex-wrap: wrap; justify-content: flex-start; outline: 0.0625rem solid #ddd; }
|
||||
.overview .day { width: calc(100% / 7); height: 5.5rem; border-right: 0.0625rem solid #ddd; border-bottom: 0.0625rem solid #ddd; padding-top: 0.25rem; text-overflow: ellipsis; overflow: hidden; }
|
||||
.overview .day.sunday { color: var(--color-dahong); font-weight: 300; }
|
||||
.overview .day.saturday { color: var(--color-blue); font-weight: 300; }
|
||||
.overview .day-today { padding: 0.25rem 0.5rem; font-size: 0.75rem; }
|
||||
.overview .day.today .day-today { width: 1.25rem; height: 1.25rem; background-color: var(--primary-lv5); color: #fff; border-radius: 0.25rem; display: flex; justify-content: center; padding: 0.25rem 0.5rem; margin-left: 0.375rem; }
|
||||
.overview .day .holiday { font-size: 0.625rem; display: flex; margin-left: 0.375rem; overflow: hidden; align-items: center; gap: 0.25rem; }
|
||||
.overview .day .holiday img { width: 0.875rem; height: 0.875rem; margin-right: 0.125rem; object-fit: contain;}
|
||||
.overview .work-hour { background-color: #E9EEED; color: #1E5149; display: flex; align-items: center; justify-content: center; }
|
||||
.overview .scroll-box { display: flex; overflow-y: hidden; overflow-x: auto; padding: 0 1rem; }
|
||||
.overview .scroll-box::-webkit-scrollbar { display: none; }
|
||||
.overview .section-box { background-color: #E9EEED; border: 0.0625rem solid #BCCBC8; border-radius: 0.25rem; min-width: 20rem; margin-right: 0.5rem; }
|
||||
.overview .section-box--header { color: var(--primary-lv5); padding: 0.5rem 1rem 0 1rem; }
|
||||
.overview .scroll-box.facility-size h4 {width: 14rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;}
|
||||
|
||||
.overview .box.issue {display: flex; flex-direction: column; flex-grow: 1;}
|
||||
.overview .box.issue .wrap {display: flex; flex-direction: column; flex-grow: 1; position: relative; padding: 0.5rem;}
|
||||
.overview .box.issue .message {position: absolute; width: 100%; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 0.85rem; color: #777; font-size: 0.75rem; font-weight: 300; text-align: center; line-height: 1.25rem; letter-spacing: -0.0175rem; }
|
||||
.overview .box.issue .message.active {color: #000; z-index: 1;}
|
||||
.overview .box.issue .issue-content {width: 100%; resize: none; position: relative; border : 0.063rem solid #ddd; border-radius: 0.25rem; font-size: 0.875rem; padding: 0.5rem 1rem; font-weight: 300; line-height: 1.25rem; letter-spacing: -0.0175rem; flex-grow: 1;}
|
||||
|
||||
|
||||
/* overview-modal */
|
||||
.overview-modal-wrapper { z-index: 50; position: absolute; width: 100vw; height: 100dvh; background-color: rgb(17, 17, 17, 0.6); display: none; top: 0; }
|
||||
.overview-modal { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); border: 0.0625rem solid #111; border-radius: 0.25rem; background-color: #ffffff; box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.16); z-index: 51; width: max-content; min-width: 40rem; max-height: calc(100dvh - 4rem)}
|
||||
.overview-modal.section-left {max-width: 40rem;}
|
||||
.overview-modal.section-middle {max-width: 53rem;}
|
||||
.overview-modal .xs-btn-type-icon { display: flex; justify-content: center; align-items: center; background-color: #fff; border-radius: 0.25rem; border: 0.0625rem solid #ddd; padding: 0 0.25rem 0 0.125rem; gap: 0.125rem; min-height: 1.25rem; max-height: 1.25rem; max-width: fit-content; min-width: fit-content; cursor: pointer; }
|
||||
.overview-modal .xs-btn-type-icon img { width: 1rem; height: 1rem; }
|
||||
.overview-modal .overview-box--wrap { display: flex; gap: 0.5rem; }
|
||||
.overview-modal .box-header { display: flex; justify-content: space-between; padding: 0.5rem 0; border-bottom: 0.0625rem solid var(--primary-lv2); color: var(--primary-lv5); font-weight: 500; font-size: 0.875rem; align-items: center; }
|
||||
.overview-modal .box-header--right { display: flex; gap: 0.5rem; /* margin-right: 2rem; */}
|
||||
.overview-modal .box-header h5 { color: #111; }
|
||||
.overview-modal .box-header--right-set { display: flex; gap: 0.5rem; }
|
||||
.overview-modal .wrap-2-set { display: flex; flex-direction: column; width: 50%; gap: 0.5rem; }
|
||||
.overview-modal .wrap-3-set { display: flex; flex-direction: column; width: 33.3333%; gap: 0.5rem; }
|
||||
.overview-modal .wrap-4-set { display: flex; width: 25%; gap: 0.5rem; align-items: center; }
|
||||
.overview-modal .box { display: flex; flex-direction: column; gap: 0.5rem; }
|
||||
.overview-modal .box-body { padding: 0.5rem 0; display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.875rem; }
|
||||
.overview-modal .type--wrap { display: flex; align-items: center; gap: 0.5rem; }
|
||||
.overview-modal .type--wrap-left { min-width: 3.5rem; font-weight: 300; color: #777; font-size: 0.75rem; display: flex; }
|
||||
.overview-modal .type--wrap-right {width: 100%;}
|
||||
.overview-modal .wrap-3-set>.type--wrap>.type--wrap-right { width: 100%; width: 12.5rem; }
|
||||
.overview-modal .overview-box--wrap { display: flex; gap: 0.0875rem; }
|
||||
.overview-modal h3 { font-size: 0.875rem; font-weight: 500; line-height: 1.25rem; }
|
||||
.overview-modal h4 { font-size: 0.875rem; font-weight: 300; line-height: 1.25rem; min-height: 1.5rem; width: 100%; display: flex; align-items: center; }
|
||||
.overview-modal h5 { font-size: 0.75rem; font-weight: 400; line-height: 1.25rem; min-width: fit-content; }
|
||||
.overview-modal h6 { font-size: 0.75rem; font-weight: 300; line-height: 1.25rem; min-width: fit-content; }
|
||||
.overview-modal p { font-size: 0.75rem; font-weight: 300; line-height: 1.25rem; color: #777; }
|
||||
.overview-modal p.project-code { min-width: 5.25rem; }
|
||||
.overview-modal-header { display: flex; align-items: center; justify-content: space-between; padding: 0.5rem 1rem; border-bottom: 0.0625rem solid #ddd; }
|
||||
.overview-modal .project-no {color: #111;}
|
||||
.overview-modal-header--end { display: flex; gap: 0.5rem; }
|
||||
.overview-modal-header--end img { pointer-events: auto; cursor: pointer; width: 1rem; height: 1rem; }
|
||||
.overview-modal-body { padding: 0 1rem 0.5rem; display: flex; flex-direction: column; gap: 0.5rem; max-height: calc(100dvh - 10rem); overflow: hidden auto; }
|
||||
.overview-table-container table { width: 100%; table-layout: auto; font-size: 0.765625rem; }
|
||||
.overview-table-container th, .overview-modal-table-container td { padding: 0.4375rem 0.65625rem; text-align: center; vertical-align: middle; font-weight: 400; font-size: 0.75rem; }
|
||||
.overview-modal .xs-btn-type {border-radius: 0.25rem; border: 0.0625rem solid #ddd; padding: 0 0.25rem; min-height: 1.25rem; max-height: 1.25rem; max-width: fit-content; min-width: fit-content; cursor: pointer; }
|
||||
.overview-modal-select-box { background-color: #E9EEED; padding: 0.4375rem; }
|
||||
.overview-modal .select,.overview-modal .select .sticky { background-color: #E9EEED; }
|
||||
.overview-modal .btn-box { display: flex; gap: 0.875rem; justify-content: center; margin-top: 0.875rem; }
|
||||
.overview-modal .modal-btn { display: flex; border: 0.0625rem solid #dddddd; border-radius: 0.25rem; width: 10rem; height: 2.25rem; justify-content: center; align-items: center; color: #111111; font-weight: 500; }
|
||||
.overview-modal .modal-btn-green { display: flex; border: 0.0625rem solid #dddddd; border-radius: 0.25rem; width: 10rem; height: 2.25rem; justify-content: center; align-items: center; color: #ffffff; background-color: #1e5149; font-weight: 500; }
|
||||
.overview-modal input[type="text"],.overview-modal textarea { border: 0.0625rem solid #ddd; border-radius: 0.25rem; font-size: 0.875rem; line-height: 1.25rem; font-family: 'Pretendard'; color: var(--color-dahong); font-weight: 300; width: 100%; padding: 0.125rem 0.5rem; }
|
||||
.overview-modal input[type="text"] { padding: 0.125rem 0.5rem !important; }
|
||||
.overview-modal textarea { resize: none; padding: 0.125rem 0.5rem !important; }
|
||||
.overview-modal input[type="text"]:focus,.overview-modal textarea:focus { outline: 0.0625rem solid #111; }
|
||||
.overview-modal .dropbox { background-color: #eee; border: 0.0625rem solid #ddd; border-radius: 0.25rem; display: flex; flex-direction: column; align-items: center; padding: 0.5rem; position: relative; z-index: 51; min-height: 10rem; justify-content: center;}
|
||||
.overview-modal .dropbox-wrap {width: 100%;}
|
||||
.overview-modal .dropbox .file-wrap-div {display: flex; border-bottom: 0.063rem solid #ddd; padding: 0.25rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;}
|
||||
.overview-modal .dropbox label { font-weight: 400; font-size: 0.65625rem; color: #aaaaaa; width: 100%; cursor: pointer; }
|
||||
.overview-modal .dropbox input[type="file"] { display: none; }
|
||||
.overview-modal .dropbox-top { display: flex; gap: 0.5rem; padding: 0.5rem 0 1rem 0; }
|
||||
.overview-modal .dropbox-top img { width: 2.5rem; height: 2.5rem; }
|
||||
.overview-modal .dropbox-bottom { display: flex; justify-content: space-between; width: 100%; padding: 0.5rem; background-color: #fff; border: 0.0625rem solid #ddd; border-radius: 0.25rem; align-items: center; cursor: pointer; }
|
||||
.overview-modal .dropbox-bottom img { width: 1rem; height: 1rem; }
|
||||
.overview-modal .dropbox-file-img { width: 1.25rem; height: 1.25rem;}
|
||||
.overview-modal .modal-footer { display: flex; justify-content: center; gap: 0.5rem; padding: 1rem; }
|
||||
.overview-modal .modal-footer .btn-delete { display: flex; justify-content: center; align-items: center; width: 9.375rem; height: 2.25rem; background-color: #fff; border: 0.0625rem solid #ddd; border-radius: 0.25rem; color: #FF3D00; cursor: pointer; }
|
||||
.overview-modal .modal-footer .btn-close { display: flex; width: 9.375rem; height: 2.25rem; justify-content: center; align-items: center; background-color: #fff; border: 0.0625rem solid #ddd; border-radius: 0.25rem; color: #111; cursor: pointer; }
|
||||
.overview-modal .modal-footer .btn-active { display: flex; width: 9.375rem; height: 2.25rem; justify-content: center; align-items: center; background-color: #1E5149; border-radius: 0.25rem; color: #fff; cursor: pointer;}
|
||||
.overview-modal .calendar-list { border: 0.0625rem solid #ddd; border-radius: 0.25rem; padding: 0.5rem 1rem; display: flex; gap: 0.25rem; min-width: 20.5rem; justify-content: space-between; align-items: center;}
|
||||
.overview-modal .calendar-list .schedule-title { display: flex; align-items: center; gap: 0.5rem; }
|
||||
.overview-modal .calendar-list h4 { max-width: 40rem; white-space: normal; word-break: break-word; }
|
||||
.overview-modal .time-group { display: flex; align-items: center; gap: 0.5rem; font-size: 1rem; font-family: sans-serif; }
|
||||
.overview-modal .time-field input { padding: 0.25rem 0.5rem; border: 0.0625rem solid #ddd; border-radius: 0.25rem; font-size: 0.875rem; font-family: 'Pretendard'; font-weight: 300; line-height: 1.25rem; cursor: pointer; }
|
||||
.overview-modal .separator { font-size: 0.875rem; color: #777; padding: 0 0.25rem; }
|
||||
.overview-modal .radio-wrapper { display: flex; gap: 0.5rem; cursor: pointer; user-select: none; margin: 0.125rem 0; align-items: center; }
|
||||
.overview-modal .radio-wrapper input[type="radio"] { display: none; }
|
||||
.overview-modal .custom-radio { width: 1.5rem; height: 1rem; border: 0.0625rem solid #ddd; border-radius: 100%; position: relative; }
|
||||
.overview-modal .radio-wrapper input[type="radio"]:checked+.custom-radio { border-color: #1E5149; }
|
||||
.overview-modal .custom-radio::after { content: ""; position: absolute; display: none; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 0.5rem; height: 0.5rem; border-radius: 100%; background-color: #1E5149; }
|
||||
.overview-modal .radio-wrapper input[type="radio"]:checked+.custom-radio::after { display: block; }
|
||||
.overview-modal input[type="color"] { width: 1.25rem; min-width: 1.25rem; height: 1.5rem; -webkit-appearance: none; -moz-appearance: none; appearance: none; background-color: transparent; border: none; }
|
||||
.overview-modal input[type="color"]::-webkit-color-swatch { border: none; }
|
||||
.overview-modal .custom-checkbox input[type="checkbox"] { display: none; }
|
||||
.overview-modal .custom-checkbox span { position: relative; width: 1.25rem; height: 1.25rem; border: 0.0625rem solid #ddd; border-radius: 0.25rem; background-color: #fff; display: inline-block; background-size: contain; background-position: center; background-repeat: no-repeat; cursor: pointer; }
|
||||
.overview-modal .custom-checkbox input[type="checkbox"]:checked+span { background-image: url(/main/img/overview/icon-checkbox.svg); width: 1.25rem; height: 1.25rem; }
|
||||
.overview-modal .color button { width: 1rem; height: 1rem; border-radius: 1rem; background: none; cursor: pointer; margin: 0 0.125rem; border: 0.125rem solid #fff; }
|
||||
.overview-modal .label-color.on { outline: 0.0625rem solid #111; border: 0.125rem solid #fff; }
|
||||
.overview-modal .work-list { width: calc(100% - 1.75rem); display: flex; gap: 0.5rem; }
|
||||
.overview-modal .work-list-number { min-width: 3.75rem; max-width: 3.75rem; overflow-x: hidden; text-overflow: ellipsis; white-space: nowrap; }
|
||||
.overview-modal .work-list-date, .overview-modal .work-list-redate, .overview-modal .work-list-changedate { min-width: 7.5rem; max-width: 7.5rem; overflow-x: hidden; text-overflow: ellipsis; white-space: nowrap;}
|
||||
.overview-modal .work-list-script { flex-grow: 1; min-width: 13rem; max-width: 13rem; overflow-x: hidden; text-overflow: ellipsis; white-space: nowrap; }
|
||||
.overview-modal .work-list-detail { min-width: 20rem; max-width: 20rem; overflow-x: hidden; text-overflow: ellipsis; white-space: nowrap; }
|
||||
.overview-modal .work-list li { display: flex; gap: 0.5rem; }
|
||||
.overview-modal ul { border-top: 0.0625rem solid #ddd; }
|
||||
.overview-modal li { padding: 0.5rem 0; border-bottom: 0.0625rem solid #eee; display: flex; gap: 0.5rem; align-items: center;}
|
||||
.overview-modal .section-tabs { display: flex; gap: 0.25rem; align-items: center; margin-left: 0.25rem; overflow-x: auto; white-space: nowrap;}
|
||||
.overview-modal .section-tabs._scrollbar::-webkit-scrollbar,.overview-table-container._scrollbar::-webkit-scrollbar, .overview-modal .overview-table-container._scrollbar::-webkit-scrollbar { height: 0.5rem;}
|
||||
.overview-modal .section-tabs .xs-btn:hover {cursor: pointer; scale: 1.5; transition: 0.2s;}
|
||||
.overview-modal .section-content--cell .xs-btn:hover {cursor: pointer; scale: 1.5; transition: 0.2s;}
|
||||
.overview-modal .section-tabs .xs-btn.add {flex-shrink: 0;}
|
||||
.overview-modal .click-on { background-color: #E9EEED; color: #1E5149; border: 0.0625rem solid #E9EEED !important; }
|
||||
.overview-modal .tab { display: flex; flex: 0 0 auto; gap: 0.5rem; padding: 0.5rem 0.5rem 0.5rem 1rem; border: 0.0625rem solid #ddd; border-bottom: none; border-radius: 0.25rem 0.25rem 0 0; align-items: center; cursor: pointer; }
|
||||
.overview-modal .tab-style-input { border: none !important; padding: 0rem !important; width: 7rem !important; }
|
||||
.overview-modal .tab-style-input:focus { outline: none !important; }
|
||||
.overview-modal .section-content { display: flex; flex-direction: column; gap: 0.5rem; background-color: var(--primary-lv0); padding: 0.5rem 1rem; border-radius: 0.25rem; }
|
||||
.overview-modal .section-content--cell { display: flex; gap: 0.5rem; align-items: center; justify-content: center; }
|
||||
.overview-modal .add-cell-btn { color: var(--primary-lv5); padding: 0.25rem 0; border: 0.0625rem solid var(--primary-lv2); border-radius: 0.25rem; gap: 0.25rem; align-items: center; justify-content: center; cursor: pointer; }
|
||||
.overview-modal .xs-btn img { width: 0.75rem; height: 0.75rem; }
|
||||
.overview-modal .joint-contract-add,.overview-modal .joint-contract-delete { color: #000; background-color: #fff; border-radius: 0.25rem; border: 0.063rem solid #ddd; padding: 0 0.25rem; min-height: 1.25rem; max-height: 1.25rem; max-width: fit-content; min-width: fit-content; cursor: pointer; font-size: 0.75rem; font-weight: 300; line-height: 1.25rem; }
|
||||
.overview-modal-tooltip { position: absolute; display: inline-block; background: #444; color: #fff; padding: 0.25rem 0.5rem; border-radius: 0.25rem; font-size: 0.8rem; white-space: nowrap; transition: opacity 0.3s ease; visibility: hidden; pointer-events: none; z-index: 52;}
|
||||
.overview-modal .overview-table-container { overflow-x: auto; max-width: 100%; }
|
||||
.overview-modal .overview-table-container table { border-collapse: collapse; width: 100%; color: #777; }
|
||||
.overview-modal .overview-table-container td { padding: 0.25rem; font-size: 0.875rem; font-weight: 300; line-height: 1.25rem; color: #111; min-width: 5rem;}
|
||||
.overview-modal .overview-table-container th { padding: 0.25rem; text-align: left; color: #777; font-size: 0.75rem; font-weight: 300; line-height: 1.25rem; min-width: 5rem; }
|
||||
.overview-modal .overview-table-container th.sticky,.overview-modal .overview-table-container td.sticky { position: sticky; left: 0; background-color: #fff; font-size: 0.75rem; font-weight: 300; line-height: 1.25rem; min-width: 4rem; color: #777 !important; }
|
||||
.overview-modal .xs-btn.remove-img { position: absolute; top: 0; right: 0; margin: 0.5rem; background-color: #fff; border: 0.0625rem solid #ddd; border-radius: 0.25rem; padding: 0.125rem; display: flex; align-items: center; justify-content: center; }
|
||||
.overview-modal .xs-btn.remove-img img { width: 0.75rem; height: 0.75rem; }
|
||||
.overview-modal .order.work-list-number { width: 3.75rem; }
|
||||
.overview-modal .suspension-date.work-list-date, .overview-modal .suspension-reason.work-list-script, .overview-modal .resumption-date.work-list-redate, .overview-modal .change-date.work-list-changedate { width: 7.5rem; }
|
||||
.overview-modal .consuletation-content.work-list-detail { width: 13rem; }
|
||||
.overview-modal .xs-btn.cell-remove {width: 2rem; height: 1rem; background-color: #fff; border: 0.063rem solid #ddd; border-radius: 0.25rem; display: flex; align-items: center; justify-content: center;}
|
||||
.overview-modal .body-not-gap { gap: 0.5rem !important; padding: 1rem !important; }
|
||||
.overview-modal .body-not-bottom { padding-bottom: 0 !important; }
|
||||
|
||||
.overview-modal input[type=date]{position: relative; -webkit-appearance: none; appearance: none; -moz-appearance: none; background: url(/main/img/overview/icon__calendar--aaa.svg) no-repeat; background-position: right 0.25rem center; padding-right: 0.5rem; background-size: 1rem 1rem; padding-right: 2rem; border: 0.0625rem solid #ddd; box-sizing:border-box; height: 1.75rem; border-radius: 0.25rem; width: 100%; padding: 0.125rem 0.5rem; color: #FF3D00; font-size: 0.875rem; font-weight: 300;}
|
||||
.overview-modal input[type=time]{position: relative; -webkit-appearance: none; appearance: none; -moz-appearance: none; background: url(/main/img/overview/icon__time--aaa.svg) no-repeat; background-position: right 0.25rem center; padding-right: 0.5rem; background-size: 1rem 1rem; padding-right: 2rem; border: 0.0625rem solid #ddd; box-sizing:border-box; height: 1.75rem; border-radius: 0.25rem; width: 100%; padding: 0.125rem 0.5rem; color: #FF3D00; font-size: 0.875rem; font-weight: 300; min-width: 6.5rem;}
|
||||
.overview-modal input[type=date]::-webkit-calendar-picker-indicator, .overview-modal input[type=time]::-webkit-calendar-picker-indicator { position:absolute; right: 0; top: 0; width: 100%; height: 100%; background: transparent; cursor: pointer;}
|
||||
.overview-modal input[type=date]:hover, .overview-modal input:hover[type=time]{border: 0.063rem solid #111; cursor: pointer; background-color: #eee;}
|
||||
|
||||
/* overview swiper */
|
||||
.overview .vb-swiper .swiper { width: 100%; height: 100%; position: relative; background: #eee; }
|
||||
.overview .vb-swiper .swiper-slide { width: 36rem !important; height: 22rem;}
|
||||
.overview .vb-swiper .swiper .swiper-slide img { width: 100%; height: 100%; display: block; object-fit: contain; }
|
||||
.overview .vb-swiper .swiper .swiper-wrapper { display: flex; align-items: center;}
|
||||
.overview .vb-swiper .swiper-button-prev, .overview .vb-swiper .swiper-button-next { position: absolute; top: 55%; width: 2rem; height: 2rem; transform: translateY(-50%); background-size: cover; cursor: pointer; z-index: 10; border: 0.0625rem solid #ddd; border-radius: 1rem; background-color: #fff; }
|
||||
.overview .swiper-button-prev::after,.overview .swiper-button-next::after { display: none}
|
||||
.overview .body-not-gap { gap: 0.5rem !important; padding: 1rem !important; }
|
||||
.overview .body-not-bottom { padding-bottom: 0 !important; }
|
||||
14
views/main/img/ai_logo.svg
Normal file
@@ -0,0 +1,14 @@
|
||||
<svg width="28" height="20" viewBox="0 0 28 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M21.0004 15.4999C20.7844 15.5025 20.5734 15.4351 20.3989 15.3078C20.2244 15.1804 20.0958 15 20.0324 14.7934L19.2254 12.2699L16.6939 11.4229C16.4896 11.3547 16.3123 11.2232 16.1876 11.0475C16.0629 10.8719 15.9972 10.6611 16.0001 10.4457C16.003 10.2303 16.0743 10.0214 16.2037 9.84913C16.3331 9.67689 16.5138 9.55023 16.7199 9.48745L19.2314 8.72045L20.0774 6.19345C20.1403 5.98588 20.2704 5.80512 20.4473 5.67958C20.6242 5.55404 20.8377 5.49085 21.0544 5.49995C21.2705 5.50024 21.4806 5.5705 21.6534 5.7002C21.8262 5.8299 21.9523 6.01207 22.0129 6.21945L22.7789 8.72695L25.2939 9.53195C25.4968 9.59999 25.6731 9.73004 25.7981 9.90373C25.923 10.0774 25.9902 10.286 25.9902 10.4999C25.9902 10.7139 25.923 10.9225 25.7981 11.0962C25.6731 11.2699 25.4968 11.3999 25.2939 11.4679L22.7744 12.2739L21.9684 14.7934C21.905 15 21.7765 15.1804 21.602 15.3078C21.4275 15.4351 21.2164 15.5025 21.0004 15.4999ZM26.2504 8.49995C26.139 8.49994 26.0307 8.4627 25.9428 8.39412C25.8549 8.32554 25.7925 8.22957 25.7654 8.12145L25.5869 7.40645L24.8704 7.21395C24.7627 7.18501 24.6678 7.12091 24.6007 7.03183C24.5337 6.94275 24.4983 6.8338 24.5002 6.72231C24.5022 6.61082 24.5414 6.50318 24.6115 6.4165C24.6817 6.32983 24.7788 6.26909 24.8874 6.24395L25.5874 6.08145L25.7654 5.37845C25.7925 5.27033 25.855 5.17437 25.9428 5.10581C26.0307 5.03724 26.139 5 26.2504 5C26.3619 5 26.4701 5.03724 26.558 5.10581C26.6459 5.17437 26.7083 5.27033 26.7354 5.37845L26.9124 6.08745L27.6214 6.26495C27.7295 6.29204 27.8255 6.35449 27.8941 6.44236C27.9626 6.53023 27.9999 6.63849 27.9999 6.74995C27.9999 6.8614 27.9626 6.96967 27.8941 7.05754C27.8255 7.14541 27.7295 7.20785 27.6214 7.23495L26.9124 7.41245L26.7354 8.12145C26.7083 8.22957 26.6459 8.32554 26.558 8.39412C26.4702 8.4627 26.3619 8.49994 26.2504 8.49995Z" fill="url(#paint0_linear_1662_531)"/>
|
||||
<path d="M2.17383 15H0.273438L3.75977 5.10156H5.94727L9.44727 15H7.54688L6.72656 12.5527H2.99414L2.17383 15ZM3.47266 11.1172H6.24805L4.89453 7.125H4.8125L3.47266 11.1172ZM12.1204 5.10156V15H10.343V5.10156H12.1204Z" fill="url(#paint1_linear_1662_531)"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_1662_531" x1="21.9999" y1="5" x2="21.9999" y2="15.5" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#DA8CF1"/>
|
||||
<stop offset="1" stop-color="#8BB1F2"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_1662_531" x1="7" y1="0" x2="7" y2="20" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#DA8CF1"/>
|
||||
<stop offset="1" stop-color="#8BB1F2"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.5 KiB |
29
views/main/img/ai_nomal.svg
Normal file
@@ -0,0 +1,29 @@
|
||||
<svg width="51" height="20" viewBox="0 0 51 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M33.3398 4.66016C34.9922 4.66016 36.2344 5.70312 36.2461 7.14453C36.2344 8.57422 34.9922 9.60547 33.3398 9.61719C31.6758 9.60547 30.4102 8.57422 30.4219 7.14453C30.4102 5.70312 31.6758 4.66016 33.3398 4.66016ZM33.3398 6.03125C32.6016 6.04297 32.0508 6.41797 32.0508 7.14453C32.0508 7.85938 32.5898 8.25781 33.3398 8.25781C34.0781 8.25781 34.6055 7.85938 34.6055 7.14453C34.6055 6.41797 34.0781 6.04297 33.3398 6.03125ZM39.3164 4.36719V9.72266H37.6289V4.36719H39.3164ZM39.3164 10.1328V13.1562H33.7031V13.6953H39.5742V15.0078H32.0625V11.9375H37.6289V11.4219H32.0273V10.1328H39.3164Z" fill="url(#paint0_linear_4409_1072)"/>
|
||||
<path d="M49.2188 4.37891V7.33203H50.6133V8.71484H49.2188V12.3008H47.5312V4.37891H49.2188ZM49.5703 13.6016V14.9492H42.1641V11.4805H43.8516V13.6016H49.5703ZM42.5977 5.14062V6.61719H44.5078V5.14062H46.1953V10.625H40.9336V5.14062H42.5977ZM42.5977 9.3125H44.5078V7.90625H42.5977V9.3125Z" fill="url(#paint1_linear_4409_1072)"/>
|
||||
<path d="M21.0004 15.4999C20.7844 15.5025 20.5734 15.4351 20.3989 15.3078C20.2244 15.1804 20.0958 15 20.0324 14.7934L19.2254 12.2699L16.6939 11.4229C16.4896 11.3547 16.3123 11.2232 16.1876 11.0475C16.0628 10.8719 15.9972 10.6611 16.0001 10.4457C16.003 10.2303 16.0743 10.0214 16.2037 9.84913C16.3331 9.67689 16.5138 9.55023 16.7199 9.48745L19.2314 8.72045L20.0774 6.19345C20.1403 5.98588 20.2704 5.80512 20.4473 5.67958C20.6242 5.55404 20.8377 5.49085 21.0544 5.49995C21.2705 5.50024 21.4806 5.5705 21.6534 5.7002C21.8262 5.8299 21.9523 6.01207 22.0129 6.21945L22.7789 8.72695L25.2939 9.53195C25.4968 9.59999 25.6731 9.73004 25.7981 9.90373C25.923 10.0774 25.9902 10.286 25.9902 10.4999C25.9902 10.7139 25.923 10.9225 25.7981 11.0962C25.6731 11.2699 25.4968 11.3999 25.2939 11.4679L22.7744 12.2739L21.9684 14.7934C21.905 15 21.7765 15.1804 21.602 15.3078C21.4275 15.4351 21.2164 15.5025 21.0004 15.4999ZM26.2504 8.49995C26.139 8.49994 26.0307 8.4627 25.9428 8.39412C25.8549 8.32554 25.7925 8.22957 25.7654 8.12145L25.5869 7.40645L24.8704 7.21395C24.7627 7.18501 24.6678 7.12091 24.6007 7.03183C24.5337 6.94275 24.4983 6.8338 24.5002 6.72231C24.5022 6.61082 24.5414 6.50318 24.6115 6.4165C24.6817 6.32983 24.7788 6.26909 24.8874 6.24395L25.5874 6.08145L25.7654 5.37845C25.7925 5.27033 25.855 5.17437 25.9428 5.10581C26.0307 5.03724 26.139 5 26.2504 5C26.3619 5 26.4701 5.03724 26.558 5.10581C26.6459 5.17437 26.7083 5.27033 26.7354 5.37845L26.9124 6.08745L27.6214 6.26495C27.7295 6.29204 27.8255 6.35449 27.8941 6.44236C27.9626 6.53023 27.9999 6.63849 27.9999 6.74995C27.9999 6.8614 27.9626 6.96967 27.8941 7.05754C27.8255 7.14541 27.7295 7.20785 27.6214 7.23495L26.9124 7.41245L26.7354 8.12145C26.7083 8.22957 26.6459 8.32554 26.558 8.39412C26.4702 8.4627 26.3619 8.49994 26.2504 8.49995Z" fill="url(#paint2_linear_4409_1072)"/>
|
||||
<path d="M2.17383 15H0.273438L3.75977 5.10156H5.94727L9.44727 15H7.54688L6.72656 12.5527H2.99414L2.17383 15ZM3.47266 11.1172H6.24805L4.89453 7.125H4.8125L3.47266 11.1172Z" fill="url(#paint3_linear_4409_1072)"/>
|
||||
<path d="M12.1204 5.10156V15H10.343V5.10156H12.1204Z" fill="url(#paint4_linear_4409_1072)"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_4409_1072" x1="25.5" y1="0" x2="25.5" y2="20" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#DA8CF1"/>
|
||||
<stop offset="1" stop-color="#8BB1F2"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_4409_1072" x1="25.5" y1="0" x2="25.5" y2="20" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#DA8CF1"/>
|
||||
<stop offset="1" stop-color="#8BB1F2"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_4409_1072" x1="25.5" y1="0" x2="25.5" y2="20" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#DA8CF1"/>
|
||||
<stop offset="1" stop-color="#8BB1F2"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint3_linear_4409_1072" x1="25.5" y1="0" x2="25.5" y2="20" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#DA8CF1"/>
|
||||
<stop offset="1" stop-color="#8BB1F2"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint4_linear_4409_1072" x1="25.5" y1="0" x2="25.5" y2="20" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#DA8CF1"/>
|
||||
<stop offset="1" stop-color="#8BB1F2"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.1 KiB |
29
views/main/img/ai_security.svg
Normal file
@@ -0,0 +1,29 @@
|
||||
<svg width="51" height="20" viewBox="0 0 51 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M40.1133 12.5469V13.918H30.2812V12.5469H34.3477V10.6602H31.2891V5.03516H32.9766V6.61719H37.3711V5.03516H39.0586V10.6602H36.0117V12.5469H40.1133ZM32.9766 9.32422H37.3711V7.94141H32.9766V9.32422Z" fill="url(#paint0_linear_4409_1071)"/>
|
||||
<path d="M49.2188 4.37891V7.40234H50.6133V8.78516H49.2188V12.1719H47.5312V4.37891H49.2188ZM49.5703 13.6016V14.9492H42.1641V11.3516H43.8516V13.6016H49.5703ZM43.6758 5.04688C45.3281 5.04688 46.6406 6.19531 46.6406 7.80078C46.6406 9.38281 45.3281 10.5547 43.6758 10.5547C42.0117 10.5547 40.6758 9.38281 40.6875 7.80078C40.6758 6.19531 42.0117 5.04688 43.6758 5.04688ZM43.6758 6.51172C42.9375 6.5 42.3281 6.96875 42.3398 7.80078C42.3281 8.62109 42.9375 9.08984 43.6758 9.08984C44.4141 9.08984 44.9883 8.62109 45 7.80078C44.9883 6.96875 44.4141 6.5 43.6758 6.51172Z" fill="url(#paint1_linear_4409_1071)"/>
|
||||
<path d="M21.0004 15.4999C20.7844 15.5025 20.5734 15.4351 20.3989 15.3078C20.2244 15.1804 20.0958 15 20.0324 14.7934L19.2254 12.2699L16.6939 11.4229C16.4896 11.3547 16.3123 11.2232 16.1876 11.0475C16.0628 10.8719 15.9972 10.6611 16.0001 10.4457C16.003 10.2303 16.0743 10.0214 16.2037 9.84913C16.3331 9.67689 16.5138 9.55023 16.7199 9.48745L19.2314 8.72045L20.0774 6.19345C20.1403 5.98588 20.2704 5.80512 20.4473 5.67958C20.6242 5.55404 20.8377 5.49085 21.0544 5.49995C21.2705 5.50024 21.4806 5.5705 21.6534 5.7002C21.8262 5.8299 21.9523 6.01207 22.0129 6.21945L22.7789 8.72695L25.2939 9.53195C25.4968 9.59999 25.6731 9.73004 25.7981 9.90373C25.923 10.0774 25.9902 10.286 25.9902 10.4999C25.9902 10.7139 25.923 10.9225 25.7981 11.0962C25.6731 11.2699 25.4968 11.3999 25.2939 11.4679L22.7744 12.2739L21.9684 14.7934C21.905 15 21.7765 15.1804 21.602 15.3078C21.4275 15.4351 21.2164 15.5025 21.0004 15.4999ZM26.2504 8.49995C26.139 8.49994 26.0307 8.4627 25.9428 8.39412C25.8549 8.32554 25.7925 8.22957 25.7654 8.12145L25.5869 7.40645L24.8704 7.21395C24.7627 7.18501 24.6678 7.12091 24.6007 7.03183C24.5337 6.94275 24.4983 6.8338 24.5002 6.72231C24.5022 6.61082 24.5414 6.50318 24.6115 6.4165C24.6817 6.32983 24.7788 6.26909 24.8874 6.24395L25.5874 6.08145L25.7654 5.37845C25.7925 5.27033 25.855 5.17437 25.9428 5.10581C26.0307 5.03724 26.139 5 26.2504 5C26.3619 5 26.4701 5.03724 26.558 5.10581C26.6459 5.17437 26.7083 5.27033 26.7354 5.37845L26.9124 6.08745L27.6214 6.26495C27.7295 6.29204 27.8255 6.35449 27.8941 6.44236C27.9626 6.53023 27.9999 6.63849 27.9999 6.74995C27.9999 6.8614 27.9626 6.96967 27.8941 7.05754C27.8255 7.14541 27.7295 7.20785 27.6214 7.23495L26.9124 7.41245L26.7354 8.12145C26.7083 8.22957 26.6459 8.32554 26.558 8.39412C26.4702 8.4627 26.3619 8.49994 26.2504 8.49995Z" fill="url(#paint2_linear_4409_1071)"/>
|
||||
<path d="M2.17383 15H0.273438L3.75977 5.10156H5.94727L9.44727 15H7.54688L6.72656 12.5527H2.99414L2.17383 15ZM3.47266 11.1172H6.24805L4.89453 7.125H4.8125L3.47266 11.1172Z" fill="url(#paint3_linear_4409_1071)"/>
|
||||
<path d="M12.1204 5.10156V15H10.343V5.10156H12.1204Z" fill="url(#paint4_linear_4409_1071)"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_4409_1071" x1="25.5" y1="0" x2="25.5" y2="20" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#DA8CF1"/>
|
||||
<stop offset="1" stop-color="#8BB1F2"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_4409_1071" x1="25.5" y1="0" x2="25.5" y2="20" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#DA8CF1"/>
|
||||
<stop offset="1" stop-color="#8BB1F2"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_4409_1071" x1="25.5" y1="0" x2="25.5" y2="20" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#DA8CF1"/>
|
||||
<stop offset="1" stop-color="#8BB1F2"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint3_linear_4409_1071" x1="25.5" y1="0" x2="25.5" y2="20" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#DA8CF1"/>
|
||||
<stop offset="1" stop-color="#8BB1F2"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint4_linear_4409_1071" x1="25.5" y1="0" x2="25.5" y2="20" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#DA8CF1"/>
|
||||
<stop offset="1" stop-color="#8BB1F2"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.0 KiB |
29
views/main/img/ai_summarize.svg
Normal file
@@ -0,0 +1,29 @@
|
||||
<svg width="51" height="20" viewBox="0 0 51 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M40.1133 12.5352V13.9062H30.2812V12.5352H32.4023V9.98047C31.5996 9.4707 31.1133 8.70898 31.1133 7.76562C31.1133 6.00781 32.8359 4.84766 35.1797 4.84766C37.5234 4.84766 39.2695 6.00781 39.2695 7.76562C39.2695 8.69141 38.7949 9.44141 38.0156 9.94531V12.5352H40.1133ZM35.1797 6.17188C33.7148 6.16016 32.7773 6.73438 32.7891 7.76562C32.7773 8.78516 33.7148 9.38281 35.1797 9.38281C36.6328 9.38281 37.5938 8.78516 37.5938 7.76562C37.5938 6.73438 36.6328 6.16016 35.1797 6.17188ZM34.0664 12.5352H36.3047V10.5898C35.9473 10.6543 35.5723 10.6836 35.1797 10.6836C34.7871 10.6836 34.418 10.6543 34.0664 10.5898V12.5352Z" fill="url(#paint0_linear_4067_2759)"/>
|
||||
<path d="M50.5547 5.71484V7.07422H49.2188V8.03516H50.5547V9.42969H49.2188V10.6953H47.5312V4.36719H49.2188V5.71484H50.5547ZM49.2188 11.1055V15.125H47.5312V12.4648H41.918V11.1055H49.2188ZM43.6758 4.94141C45.3516 4.94141 46.6406 6.05469 46.6406 7.58984C46.6406 9.14844 45.3516 10.25 43.6758 10.25C41.9766 10.25 40.6758 9.14844 40.6875 7.58984C40.6758 6.05469 41.9766 4.94141 43.6758 4.94141ZM43.6758 6.38281C42.9023 6.38281 42.3281 6.80469 42.3398 7.58984C42.3281 8.39844 42.9023 8.82031 43.6758 8.82031C44.4141 8.82031 44.9883 8.39844 45 7.58984C44.9883 6.80469 44.4141 6.38281 43.6758 6.38281Z" fill="url(#paint1_linear_4067_2759)"/>
|
||||
<path d="M21.0004 15.4999C20.7844 15.5025 20.5734 15.4351 20.3989 15.3078C20.2244 15.1804 20.0958 15 20.0324 14.7934L19.2254 12.2699L16.6939 11.4229C16.4896 11.3547 16.3123 11.2232 16.1876 11.0475C16.0628 10.8719 15.9972 10.6611 16.0001 10.4457C16.003 10.2303 16.0743 10.0214 16.2037 9.84913C16.3331 9.67689 16.5138 9.55023 16.7199 9.48745L19.2314 8.72045L20.0774 6.19345C20.1403 5.98588 20.2704 5.80512 20.4473 5.67958C20.6242 5.55404 20.8377 5.49085 21.0544 5.49995C21.2705 5.50024 21.4806 5.5705 21.6534 5.7002C21.8262 5.8299 21.9523 6.01207 22.0129 6.21945L22.7789 8.72695L25.2939 9.53195C25.4968 9.59999 25.6731 9.73004 25.7981 9.90373C25.923 10.0774 25.9902 10.286 25.9902 10.4999C25.9902 10.7139 25.923 10.9225 25.7981 11.0962C25.6731 11.2699 25.4968 11.3999 25.2939 11.4679L22.7744 12.2739L21.9684 14.7934C21.905 15 21.7765 15.1804 21.602 15.3078C21.4275 15.4351 21.2164 15.5025 21.0004 15.4999ZM26.2504 8.49995C26.139 8.49994 26.0307 8.4627 25.9428 8.39412C25.8549 8.32554 25.7925 8.22957 25.7654 8.12145L25.5869 7.40645L24.8704 7.21395C24.7627 7.18501 24.6678 7.12091 24.6007 7.03183C24.5337 6.94275 24.4983 6.8338 24.5002 6.72231C24.5022 6.61082 24.5414 6.50318 24.6115 6.4165C24.6817 6.32983 24.7788 6.26909 24.8874 6.24395L25.5874 6.08145L25.7654 5.37845C25.7925 5.27033 25.855 5.17437 25.9428 5.10581C26.0307 5.03724 26.139 5 26.2504 5C26.3619 5 26.4701 5.03724 26.558 5.10581C26.6459 5.17437 26.7083 5.27033 26.7354 5.37845L26.9124 6.08745L27.6214 6.26495C27.7295 6.29204 27.8255 6.35449 27.8941 6.44236C27.9626 6.53023 27.9999 6.63849 27.9999 6.74995C27.9999 6.8614 27.9626 6.96967 27.8941 7.05754C27.8255 7.14541 27.7295 7.20785 27.6214 7.23495L26.9124 7.41245L26.7354 8.12145C26.7083 8.22957 26.6459 8.32554 26.558 8.39412C26.4702 8.4627 26.3619 8.49994 26.2504 8.49995Z" fill="url(#paint2_linear_4067_2759)"/>
|
||||
<path d="M2.17383 15H0.273438L3.75977 5.10156H5.94727L9.44727 15H7.54688L6.72656 12.5527H2.99414L2.17383 15ZM3.47266 11.1172H6.24805L4.89453 7.125H4.8125L3.47266 11.1172Z" fill="url(#paint3_linear_4067_2759)"/>
|
||||
<path d="M12.1204 5.10156V15H10.343V5.10156H12.1204Z" fill="url(#paint4_linear_4067_2759)"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_4067_2759" x1="25.5" y1="0" x2="25.5" y2="20" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#DA8CF1"/>
|
||||
<stop offset="1" stop-color="#8BB1F2"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_4067_2759" x1="25.5" y1="0" x2="25.5" y2="20" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#DA8CF1"/>
|
||||
<stop offset="1" stop-color="#8BB1F2"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_4067_2759" x1="25.5" y1="0" x2="25.5" y2="20" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#DA8CF1"/>
|
||||
<stop offset="1" stop-color="#8BB1F2"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint3_linear_4067_2759" x1="25.5" y1="0" x2="25.5" y2="20" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#DA8CF1"/>
|
||||
<stop offset="1" stop-color="#8BB1F2"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint4_linear_4067_2759" x1="25.5" y1="0" x2="25.5" y2="20" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#DA8CF1"/>
|
||||
<stop offset="1" stop-color="#8BB1F2"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.4 KiB |
39
views/main/img/ai_test.svg
Normal file
@@ -0,0 +1,39 @@
|
||||
<svg width="61" height="20" viewBox="0 0 61 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M30.3516 7.14453V5.51562H37.4883V7.14453H34.9102V14H32.9297V7.14453H30.3516Z" fill="url(#paint0_linear_4905_8002)"/>
|
||||
<path d="M38.4844 14V5.51562H44.3555V7.14453H40.4766V8.9375H44.0508V10.5664H40.4766V12.3711H44.3672V14H38.4844Z" fill="url(#paint1_linear_4905_8002)"/>
|
||||
<path d="M50.2148 8.03516C50.168 7.41406 49.7109 7.05078 48.8906 7.05078C48.082 7.05078 47.6719 7.40234 47.6602 7.88281C47.6484 8.41016 48.1641 8.66797 48.9258 8.83203L49.6641 9.00781C51.293 9.37109 52.2422 10.1797 52.2539 11.5391C52.2422 13.1445 51 14.1172 48.8906 14.1172C46.7812 14.1172 45.4102 13.1562 45.375 11.2109H47.2969C47.3438 12.0312 47.9531 12.4531 48.8672 12.4531C49.7109 12.4531 50.2148 12.0781 50.2266 11.5391C50.2148 11.0469 49.7812 10.7891 48.8438 10.5781L47.9531 10.3672C46.4883 10.0273 45.5977 9.30078 45.5977 8.02344C45.5859 6.45312 46.9805 5.39844 48.9023 5.39844C50.8594 5.39844 52.1133 6.46484 52.1367 8.03516H50.2148Z" fill="url(#paint2_linear_4905_8002)"/>
|
||||
<path d="M52.9922 7.14453V5.51562H60.1289V7.14453H57.5508V14H55.5703V7.14453H52.9922Z" fill="url(#paint3_linear_4905_8002)"/>
|
||||
<path d="M21.0004 15.4999C20.7844 15.5025 20.5734 15.4351 20.3989 15.3078C20.2244 15.1804 20.0958 15 20.0324 14.7934L19.2254 12.2699L16.6939 11.4229C16.4896 11.3547 16.3123 11.2232 16.1876 11.0475C16.0628 10.8719 15.9972 10.6611 16.0001 10.4457C16.003 10.2303 16.0743 10.0214 16.2037 9.84913C16.3331 9.67689 16.5138 9.55023 16.7199 9.48745L19.2314 8.72045L20.0774 6.19345C20.1403 5.98588 20.2704 5.80512 20.4473 5.67958C20.6242 5.55404 20.8377 5.49085 21.0544 5.49995C21.2705 5.50024 21.4806 5.5705 21.6534 5.7002C21.8262 5.8299 21.9523 6.01207 22.0129 6.21945L22.7789 8.72695L25.2939 9.53195C25.4968 9.59999 25.6731 9.73004 25.7981 9.90373C25.923 10.0774 25.9902 10.286 25.9902 10.4999C25.9902 10.7139 25.923 10.9225 25.7981 11.0962C25.6731 11.2699 25.4968 11.3999 25.2939 11.4679L22.7744 12.2739L21.9684 14.7934C21.905 15 21.7765 15.1804 21.602 15.3078C21.4275 15.4351 21.2164 15.5025 21.0004 15.4999ZM26.2504 8.49995C26.139 8.49994 26.0307 8.4627 25.9428 8.39412C25.8549 8.32554 25.7925 8.22957 25.7654 8.12145L25.5869 7.40645L24.8704 7.21395C24.7627 7.18501 24.6678 7.12091 24.6007 7.03183C24.5337 6.94275 24.4983 6.8338 24.5002 6.72231C24.5022 6.61082 24.5414 6.50318 24.6115 6.4165C24.6817 6.32983 24.7788 6.26909 24.8874 6.24395L25.5874 6.08145L25.7654 5.37845C25.7925 5.27033 25.855 5.17437 25.9428 5.10581C26.0307 5.03724 26.139 5 26.2504 5C26.3619 5 26.4701 5.03724 26.558 5.10581C26.6459 5.17437 26.7083 5.27033 26.7354 5.37845L26.9124 6.08745L27.6214 6.26495C27.7295 6.29204 27.8255 6.35449 27.8941 6.44236C27.9626 6.53023 27.9999 6.63849 27.9999 6.74995C27.9999 6.8614 27.9626 6.96967 27.8941 7.05754C27.8255 7.14541 27.7295 7.20785 27.6214 7.23495L26.9124 7.41245L26.7354 8.12145C26.7083 8.22957 26.6459 8.32554 26.558 8.39412C26.4702 8.4627 26.3619 8.49994 26.2504 8.49995Z" fill="url(#paint4_linear_4905_8002)"/>
|
||||
<path d="M2.17383 15H0.273438L3.75977 5.10156H5.94727L9.44727 15H7.54688L6.72656 12.5527H2.99414L2.17383 15ZM3.47266 11.1172H6.24805L4.89453 7.125H4.8125L3.47266 11.1172Z" fill="url(#paint5_linear_4905_8002)"/>
|
||||
<path d="M12.1204 5.10156V15H10.343V5.10156H12.1204Z" fill="url(#paint6_linear_4905_8002)"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_4905_8002" x1="30.5" y1="0" x2="30.5" y2="20" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#DA8CF1"/>
|
||||
<stop offset="1" stop-color="#8BB1F2"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_4905_8002" x1="30.5" y1="0" x2="30.5" y2="20" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#DA8CF1"/>
|
||||
<stop offset="1" stop-color="#8BB1F2"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_4905_8002" x1="30.5" y1="0" x2="30.5" y2="20" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#DA8CF1"/>
|
||||
<stop offset="1" stop-color="#8BB1F2"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint3_linear_4905_8002" x1="30.5" y1="0" x2="30.5" y2="20" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#DA8CF1"/>
|
||||
<stop offset="1" stop-color="#8BB1F2"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint4_linear_4905_8002" x1="30.5" y1="0" x2="30.5" y2="20" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#DA8CF1"/>
|
||||
<stop offset="1" stop-color="#8BB1F2"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint5_linear_4905_8002" x1="30.5" y1="0" x2="30.5" y2="20" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#DA8CF1"/>
|
||||
<stop offset="1" stop-color="#8BB1F2"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint6_linear_4905_8002" x1="30.5" y1="0" x2="30.5" y2="20" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#DA8CF1"/>
|
||||
<stop offset="1" stop-color="#8BB1F2"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.6 KiB |
BIN
views/main/img/archive/_scroll_x_angle_left.png
Normal file
|
After Width: | Height: | Size: 3.7 KiB |
BIN
views/main/img/archive/_scroll_x_angle_right.png
Normal file
|
After Width: | Height: | Size: 3.5 KiB |
3
views/main/img/archive/alert_circle_yellow.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M7.99967 8.66634C8.18856 8.66634 8.34701 8.60234 8.47501 8.47434C8.60256 8.34679 8.66634 8.18856 8.66634 7.99967V5.31634C8.66634 5.12745 8.60256 4.9719 8.47501 4.84967C8.34701 4.72745 8.18856 4.66634 7.99967 4.66634C7.81079 4.66634 7.65256 4.73012 7.52501 4.85767C7.39701 4.98567 7.33301 5.14412 7.33301 5.33301V8.01634C7.33301 8.20523 7.39701 8.36079 7.52501 8.48301C7.65256 8.60523 7.81079 8.66634 7.99967 8.66634ZM7.99967 11.333C8.18856 11.333 8.34701 11.269 8.47501 11.141C8.60256 11.0135 8.66634 10.8552 8.66634 10.6663C8.66634 10.4775 8.60256 10.319 8.47501 10.191C8.34701 10.0635 8.18856 9.99967 7.99967 9.99967C7.81079 9.99967 7.65256 10.0635 7.52501 10.191C7.39701 10.319 7.33301 10.4775 7.33301 10.6663C7.33301 10.8552 7.39701 11.0135 7.52501 11.141C7.65256 11.269 7.81079 11.333 7.99967 11.333ZM7.99967 14.6663C7.07745 14.6663 6.21079 14.4912 5.39967 14.141C4.58856 13.7912 3.88301 13.3163 3.28301 12.7163C2.68301 12.1163 2.20812 11.4108 1.85834 10.5997C1.50812 9.78856 1.33301 8.9219 1.33301 7.99967C1.33301 7.07745 1.50812 6.21079 1.85834 5.39967C2.20812 4.58856 2.68301 3.88301 3.28301 3.28301C3.88301 2.68301 4.58856 2.2079 5.39967 1.85767C6.21079 1.5079 7.07745 1.33301 7.99967 1.33301C8.9219 1.33301 9.78856 1.5079 10.5997 1.85767C11.4108 2.2079 12.1163 2.68301 12.7163 3.28301C13.3163 3.88301 13.7912 4.58856 14.141 5.39967C14.4912 6.21079 14.6663 7.07745 14.6663 7.99967C14.6663 8.9219 14.4912 9.78856 14.141 10.5997C13.7912 11.4108 13.3163 12.1163 12.7163 12.7163C12.1163 13.3163 11.4108 13.7912 10.5997 14.141C9.78856 14.4912 8.9219 14.6663 7.99967 14.6663Z" fill="#FFBF00"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.7 KiB |
3
views/main/img/archive/close.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M12.6663 4.27301L11.7263 3.33301L7.99967 7.05967L4.27301 3.33301L3.33301 4.27301L7.05967 7.99967L3.33301 11.7263L4.27301 12.6663L7.99967 8.93967L11.7263 12.6663L12.6663 11.7263L8.93967 7.99967L12.6663 4.27301Z" fill="#AAAAAA"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 340 B |
12
views/main/img/archive/contextmenu/addOn_attachment.svg
Normal file
@@ -0,0 +1,12 @@
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
|
||||
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Transformed by: SVG Repo Mixer Tools -->
|
||||
<svg fill="#000000" height="64px" width="64px" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="-49.5 -49.5 429.01 429.01" xml:space="preserve" stroke="#000000" stroke-width="6.600199999999999">
|
||||
|
||||
<g id="SVGRepo_bgCarrier" stroke-width="0"/>
|
||||
|
||||
<g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
|
||||
<g id="SVGRepo_iconCarrier"> <g id="XMLID_221_"> <path id="XMLID_222_" d="M30.755,290.512c20.472,20.472,47.354,30.707,74.245,30.704c26.886-0.002,53.779-10.237,74.247-30.704 L308.079,161.68c29.242-29.243,29.24-76.823-0.002-106.065c-14.164-14.166-32.998-21.967-53.031-21.967 s-38.867,7.801-53.033,21.967L83.786,173.84c-17.545,17.545-17.545,46.093,0,63.64c17.547,17.545,46.096,17.544,63.641-0.002 l77.85-77.85c5.857-5.858,5.857-15.355,0-21.213c-5.857-5.858-15.355-5.858-21.213,0l-77.85,77.85 c-5.848,5.85-15.365,5.849-21.215,0.001c-5.848-5.849-5.848-15.366,0-21.214L223.226,76.828c8.5-8.499,19.8-13.18,31.82-13.18 c12.02,0,23.319,4.681,31.818,13.18c17.545,17.546,17.547,46.094,0.002,63.64L158.034,269.298 c-29.244,29.242-76.825,29.241-106.066,0C37.802,255.133,30,236.299,30,216.266s7.802-38.868,21.968-53.034L180.798,34.4 c5.857-5.858,5.857-15.356,0-21.213c-5.857-5.857-15.355-5.858-21.213,0L30.755,142.019C10.923,161.851,0,188.219,0,216.266 C0,244.313,10.923,270.681,30.755,290.512z"/> </g> </g>
|
||||
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
17
views/main/img/archive/contextmenu/addOn_ctb.svg
Normal file
|
After Width: | Height: | Size: 8.0 KiB |
7
views/main/img/archive/contextmenu/addOn_version.svg
Normal file
@@ -0,0 +1,7 @@
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
|
||||
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Transformed by: SVG Repo Mixer Tools -->
|
||||
<svg width="64px" height="64px" viewBox="-1.2 -1.2 26.40 26.40" xmlns="http://www.w3.org/2000/svg" fill="#000000" stroke="#000000" stroke-width="0.00024000000000000003">
|
||||
|
||||
<g id="SVGRepo_bgCarrier" stroke-width="0"/>
|
||||
|
||||
|
After Width: | Height: | Size: 918 B |
18
views/main/img/archive/contextmenu/addOn_xref.svg
Normal file
@@ -0,0 +1,18 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_4839_345)">
|
||||
<path d="M3.09093 3.63636C3.09093 3.33636 3.33639 3.09091 3.6364 3.09091H4.72733V2H3.6364C2.73093 2 2 2.73091 2 3.63636V4.72727H3.09093V3.63636Z" fill="#111111"/>
|
||||
<path d="M3.09093 12.3638V11.2729H2V12.3638C2 13.2692 2.73093 14.0001 3.6364 14.0001H4.72733V12.9092H3.6364C3.33639 12.9092 3.09093 12.6638 3.09093 12.3638Z" fill="#111111"/>
|
||||
<path d="M12.3636 2H11.2727V3.09091H12.3636C12.6636 3.09091 12.9091 3.33636 12.9091 3.63636V4.72727H14V3.63636C14 2.73091 13.2691 2 12.3636 2Z" fill="#111111"/>
|
||||
<path d="M12.9089 12.3638C12.9089 12.6638 12.6634 12.9092 12.3634 12.9092H11.2725V14.0001H12.3634C13.2689 14.0001 13.9998 13.2692 13.9998 12.3638V11.2729H12.9089V12.3638Z" fill="#111111"/>
|
||||
<path d="M5.19967 6L4.05693 7.98053L5.23156 10H4.41304L3.61578 8.54798L2.81852 10H2L3.16931 7.98053L2.02658 6H2.83446L3.61578 7.4242L4.39709 6H5.19967Z" fill="#111111"/>
|
||||
<path d="M6.87391 6C7.31683 6 7.65877 6.10385 7.89972 6.31154C8.14067 6.51553 8.26114 6.81224 8.26114 7.20167C8.26114 7.47241 8.20091 7.70051 8.08043 7.88595C7.95996 8.06769 7.7881 8.20677 7.56487 8.3032L8.41528 9.96106V10H7.66054L6.91112 8.48679H6.1989V10H5.50263V6H6.87391ZM6.1989 7.89152H6.87923C7.09892 7.89152 7.26723 7.83403 7.38416 7.71905C7.50109 7.60037 7.55956 7.44274 7.55956 7.24618C7.55956 7.03848 7.50286 6.87714 7.38947 6.76217C7.27609 6.6472 7.10423 6.58971 6.87391 6.58971H6.1989V7.89152Z" fill="#111111"/>
|
||||
<path d="M8.70254 6H11.2166V6.58971H9.40413V7.6523H10.9614V8.22531H9.40413V9.41029H11.2272V10H8.70254V6Z" fill="#111111"/>
|
||||
<path d="M11.5444 6H14V6.58971H12.246V7.73018H13.7874V8.31989H12.246V10H11.5444V6Z" fill="#111111"/>
|
||||
<path d="M13.9998 12.3638V11.2729H12.9089V12.3638L12.8975 12.4736C12.8462 12.7214 12.6258 12.9092 12.3634 12.9092L12.3633 12.7588C12.5803 12.7588 12.7585 12.5812 12.7588 12.3643V11.123H14.1494V12.3643C14.1492 13.3523 13.3514 14.1504 12.3633 14.1504H11.1221V12.7588H12.3633L12.3634 12.9092H11.2725V14.0001H12.3634C13.2123 14.0001 13.9076 13.3577 13.9912 12.5312L13.9998 12.3638ZM3.09093 12.3638V11.2729H2V12.3638L2.00879 12.5312C2.0868 13.3026 2.69743 13.9141 3.46875 13.9922L3.6364 14.0001H4.72733V12.9092H3.6364L3.63672 12.7588H4.87695V14.1504H3.63672C2.64857 14.1504 1.84987 13.3523 1.84961 12.3643V11.123H3.24121V12.3643C3.24148 12.5812 3.41971 12.7588 3.63672 12.7588L3.6364 12.9092L3.52637 12.8984C3.31413 12.8546 3.14642 12.6859 3.10254 12.4736L3.09093 12.3638ZM8.70254 6V10H11.2272V9.41029H9.40413V8.22531H10.9614V7.6523H9.40413V6.58971H11.2166V6H8.70254ZM13.7874 8.31989V7.73018H12.246V6.58971H14V6H11.5444V10H12.246V8.31989H13.7874ZM2.02658 6L3.16931 7.98053L2 10H2.81852L3.61578 8.54798L4.41304 10H5.23156L4.05693 7.98053L5.19967 6H4.39709L3.61578 7.4242L2.83446 6H2.02658ZM5.33008 6.0752L4.22949 7.97949L5.35254 9.90918V6.03516L5.33008 6.0752ZM7.40918 7.24609C7.40916 7.06609 7.36063 6.94668 7.28223 6.86719C7.20717 6.79134 7.08107 6.73928 6.87402 6.73926H6.34863V7.74121H6.87891L6.87923 7.89152H6.1989V6.58971H6.87391C7.10423 6.58971 7.27609 6.6472 7.38947 6.76217C7.50286 6.87714 7.55956 7.03848 7.55956 7.24618L7.54883 7.38672C7.52686 7.51938 7.47178 7.63012 7.38416 7.71905C7.26723 7.83403 7.09892 7.89152 6.87923 7.89152L6.87891 7.74121C7.073 7.74121 7.1989 7.69136 7.2793 7.6123C7.3626 7.52683 7.40918 7.40975 7.40918 7.24609ZM3.09093 3.63636C3.09093 3.37399 3.27857 3.15278 3.52637 3.10156L3.6364 3.09091H4.72733V2H3.6364L3.63672 1.84961H4.87695V3.24121H3.63672C3.41955 3.24121 3.24121 3.41956 3.24121 3.63672V4.87695H1.84961V3.63672C1.84961 2.64842 2.6484 1.84961 3.63672 1.84961L3.6364 2L3.46875 2.00879C2.6424 2.09245 2 2.78753 2 3.63636V4.72727H3.09093V3.63636ZM14 3.63636C14 2.73091 13.2691 2 12.3636 2L12.3633 1.84961C13.3516 1.84961 14.1504 2.64842 14.1504 3.63672V4.87695H12.7588V3.63672C12.7588 3.41956 12.5804 3.24121 12.3633 3.24121H11.123V1.84961H12.3633L12.3636 2H11.2727V3.09091H12.3636C12.6636 3.09091 12.9091 3.33636 12.9091 3.63636V4.72727H14V3.63636ZM11.3662 6.73926H9.55371V7.50195H11.1113V8.375H9.55371V9.26074H11.377V10.1504H7.56738L7.52637 10.0664L6.81738 8.63672H6.34863V10.1504H4.32422L3.61523 8.85938L2.9502 10.0723L2.90723 10.1504H1.74023L1.87012 9.9248L2.99512 7.97949L1.7666 5.84961H2.92285L2.96582 5.92773L3.61523 7.1123L4.30859 5.84961H6.87402L6.87391 6H5.50263V10H6.1989V8.48679H6.91112L7.66054 10H8.41528V9.96106L7.56487 8.3032C7.7881 8.20677 7.95996 8.06769 8.08043 7.88595C8.17083 7.74681 8.22743 7.58366 8.25 7.39648L8.26114 7.20167C8.26114 6.81224 8.14067 6.51553 7.89972 6.31154C7.68888 6.12989 7.40057 6.02758 7.03516 6.00488L6.87391 6L6.87402 5.84961C7.33844 5.84963 7.71994 5.95874 7.99707 6.19727L8.0957 6.29199C8.30993 6.52356 8.41113 6.83281 8.41113 7.20215C8.41106 7.49516 8.34548 7.75316 8.20605 7.96777L8.20508 7.96875C8.09469 8.13522 7.94684 8.2669 7.7666 8.36816L8.54883 9.89258L8.55273 9.89941V5.84961H11.3662V6.73926ZM14.1504 6.73926H12.3965V7.58008H13.9375V8.46973H12.3965V10.1504H11.3945V5.84961H14.1504V6.73926Z" fill="#111111"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_4839_345">
|
||||
<rect width="16" height="16" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.0 KiB |
3
views/main/img/archive/contextmenu/check.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="12" height="10" viewBox="0 0 12 10" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M4.0001 7.7799L1.2201 4.9999L0.273438 5.9399L4.0001 9.66656L12.0001 1.66656L11.0601 0.726562L4.0001 7.7799Z" fill="#000000"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 238 B |
10
views/main/img/archive/contextmenu/createFolder-drawing.svg
Normal file
@@ -0,0 +1,10 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_5131_4837)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M13.2003 3C13.9153 3 14.5 3.56309 14.5 4.25057V11.7503C14.4999 12.4378 13.9153 13 13.2003 13H2.79971C2.08489 12.9998 1.50009 12.4377 1.5 11.7503V4.25057C1.5 3.56319 2.08484 3.00017 2.79971 3H13.2003ZM9.5 8.46919V9.5L9.49524 9.59613C9.44519 10.0687 9.02972 10.4375 8.52498 10.4375H7.51296V11.7503H13.2003V8.46919H9.5ZM2.79971 11.7503H6.53794V10.4375H5.5L5.40002 10.4329C4.94134 10.388 4.57644 10.0371 4.52974 9.59613L4.52498 9.5V8.46919H2.79971V11.7503ZM5.5 9.5H8.52498V6.5H5.5V9.5ZM7.51296 5.56253H8.52498C9.06347 5.56253 9.5 5.98225 9.5 6.5V7.53172H13.2003V4.25057H7.51296V5.56253ZM2.79971 7.53172H4.52498V6.5L4.52974 6.40387C4.57644 5.96286 4.94134 5.61201 5.40002 5.56711L5.5 5.56253H6.53794V4.25057H2.79971V7.53172Z" fill="#111111"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_5131_4837">
|
||||
<rect width="16" height="16" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.0 KiB |
10
views/main/img/archive/contextmenu/createFolder-gallery.svg
Normal file
@@ -0,0 +1,10 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_5131_4714)">
|
||||
<path d="M12.6667 3.33333V12.6667H3.33333V3.33333H12.6667ZM12.6667 2H3.33333C2.6 2 2 2.6 2 3.33333V12.6667C2 13.4 2.6 14 3.33333 14H12.6667C13.4 14 14 13.4 14 12.6667V3.33333C14 2.6 13.4 2 12.6667 2ZM9.42667 7.90667L7.42667 10.4867L6 8.76L4 11.3333H12L9.42667 7.90667Z" fill="#111111"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_5131_4714">
|
||||
<rect width="16" height="16" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 536 B |
10
views/main/img/archive/contextmenu/createFolder.svg
Normal file
@@ -0,0 +1,10 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_615_3918)">
|
||||
<path d="M13.3335 4.00033H8.00016L6.66683 2.66699H2.66683C1.9335 2.66699 1.34016 3.26699 1.34016 4.00033L1.3335 12.0003C1.3335 12.7337 1.9335 13.3337 2.66683 13.3337H13.3335C14.0668 13.3337 14.6668 12.7337 14.6668 12.0003V5.33366C14.6668 4.60033 14.0668 4.00033 13.3335 4.00033ZM13.3335 12.0003H2.66683V5.33366H13.3335V12.0003Z" fill="#000000"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_615_3918">
|
||||
<rect width="16" height="16" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 593 B |
10
views/main/img/archive/contextmenu/create_folder.svg
Normal file
@@ -0,0 +1,10 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_267_1255)">
|
||||
<path d="M13.333 3.99999H7.99967L6.66634 2.66666H2.66634C1.92634 2.66666 1.33967 3.25999 1.33967 3.99999L1.33301 12C1.33301 12.74 1.92634 13.3333 2.66634 13.3333H13.333C14.073 13.3333 14.6663 12.74 14.6663 12V5.33332C14.6663 4.59332 14.073 3.99999 13.333 3.99999ZM13.333 12H2.66634V3.99999H6.11301L7.44634 5.33332H13.333V12ZM7.99967 9.33332H9.33301V10.6667H10.6663V9.33332H11.9997V7.99999H10.6663V6.66666H9.33301V7.99999H7.99967V9.33332Z" fill="#000000"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_267_1255">
|
||||
<rect width="16" height="16" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 703 B |
10
views/main/img/archive/contextmenu/deleteTarget.svg
Normal file
@@ -0,0 +1,10 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_551_1526)">
|
||||
<path d="M4.66683 7.33301V8.66634H11.3335V7.33301H4.66683ZM8.00016 1.33301C4.32016 1.33301 1.3335 4.31967 1.3335 7.99967C1.3335 11.6797 4.32016 14.6663 8.00016 14.6663C11.6802 14.6663 14.6668 11.6797 14.6668 7.99967C14.6668 4.31967 11.6802 1.33301 8.00016 1.33301ZM8.00016 13.333C5.06016 13.333 2.66683 10.9397 2.66683 7.99967C2.66683 5.05967 5.06016 2.66634 8.00016 2.66634C10.9402 2.66634 13.3335 5.05967 13.3335 7.99967C13.3335 10.9397 10.9402 13.333 8.00016 13.333Z" fill="#FF3D00"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_551_1526">
|
||||
<rect width="16" height="16" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 735 B |
10
views/main/img/archive/contextmenu/downloadTarget-folder.svg
Normal file
@@ -0,0 +1,10 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_267_1300)">
|
||||
<path d="M12.0003 9.99999V12H4.00033V9.99999H2.66699V12C2.66699 12.7333 3.26699 13.3333 4.00033 13.3333H12.0003C12.7337 13.3333 13.3337 12.7333 13.3337 12V9.99999H12.0003ZM11.3337 7.33332L10.3937 6.39332L8.66699 8.11332V2.66666H7.33366V8.11332L5.60699 6.39332L4.66699 7.33332L8.00033 10.6667L11.3337 7.33332Z" fill="#FF3D00"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_267_1300">
|
||||
<rect width="16" height="16" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 574 B |
10
views/main/img/archive/contextmenu/downloadTarget.svg
Normal file
@@ -0,0 +1,10 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_267_1300)">
|
||||
<path d="M12.0003 9.99999V12H4.00033V9.99999H2.66699V12C2.66699 12.7333 3.26699 13.3333 4.00033 13.3333H12.0003C12.7337 13.3333 13.3337 12.7333 13.3337 12V9.99999H12.0003ZM11.3337 7.33332L10.3937 6.39332L8.66699 8.11332V2.66666H7.33366V8.11332L5.60699 6.39332L4.66699 7.33332L8.00033 10.6667L11.3337 7.33332Z" fill="#000000"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_267_1300">
|
||||
<rect width="16" height="16" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 574 B |
3
views/main/img/archive/contextmenu/editAuthor.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M7.99984 10.6663C7.23317 10.6663 6.5165 10.783 5.84984 11.0163C5.18317 11.2497 4.5665 11.5775 3.99984 11.9997V13.333H11.9998V11.9997C11.4332 11.5775 10.8165 11.2497 10.1498 11.0163C9.48317 10.783 8.7665 10.6663 7.99984 10.6663ZM3.99984 14.6663C3.63317 14.6663 3.31928 14.5358 3.05817 14.2747C2.79706 14.0136 2.6665 13.6997 2.6665 13.333V2.66634C2.6665 2.29967 2.79706 1.98579 3.05817 1.72467C3.31928 1.46356 3.63317 1.33301 3.99984 1.33301H11.9998C12.3665 1.33301 12.6804 1.46356 12.9415 1.72467C13.2026 1.98579 13.3332 2.29967 13.3332 2.66634V13.333C13.3332 13.6997 13.2026 14.0136 12.9415 14.2747C12.6804 14.5358 12.3665 14.6663 11.9998 14.6663H3.99984ZM7.99984 9.33301C8.64428 9.33301 9.19428 9.10523 9.64984 8.64967C10.1054 8.19412 10.3332 7.64412 10.3332 6.99967C10.3332 6.35523 10.1054 5.80523 9.64984 5.34967C9.19428 4.89412 8.64428 4.66634 7.99984 4.66634C7.35539 4.66634 6.80539 4.89412 6.34984 5.34967C5.89428 5.80523 5.6665 6.35523 5.6665 6.99967C5.6665 7.64412 5.89428 8.19412 6.34984 8.64967C6.80539 9.10523 7.35539 9.33301 7.99984 9.33301Z" fill="#000000"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
10
views/main/img/archive/contextmenu/folder.svg
Normal file
@@ -0,0 +1,10 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_615_3918)">
|
||||
<path d="M13.3335 4.00033H8.00016L6.66683 2.66699H2.66683C1.9335 2.66699 1.34016 3.26699 1.34016 4.00033L1.3335 12.0003C1.3335 12.7337 1.9335 13.3337 2.66683 13.3337H13.3335C14.0668 13.3337 14.6668 12.7337 14.6668 12.0003V5.33366C14.6668 4.60033 14.0668 4.00033 13.3335 4.00033ZM13.3335 12.0003H2.66683V5.33366H13.3335V12.0003Z" fill="#000000"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_615_3918">
|
||||
<rect width="16" height="16" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 593 B |
3
views/main/img/archive/contextmenu/lock.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M4.00033 14.6667C3.63366 14.6667 3.31988 14.5362 3.05899 14.2753C2.79766 14.014 2.66699 13.7 2.66699 13.3333V6.66666C2.66699 6.29999 2.79766 5.98599 3.05899 5.72466C3.31988 5.46377 3.63366 5.33332 4.00033 5.33332H4.66699V3.99999C4.66699 3.07777 4.9921 2.29155 5.64233 1.64132C6.2921 0.991545 7.0781 0.666656 8.00033 0.666656C8.92255 0.666656 9.70877 0.991545 10.359 1.64132C11.0088 2.29155 11.3337 3.07777 11.3337 3.99999V5.33332H12.0003C12.367 5.33332 12.681 5.46377 12.9423 5.72466C13.2032 5.98599 13.3337 6.29999 13.3337 6.66666V13.3333C13.3337 13.7 13.2032 14.014 12.9423 14.2753C12.681 14.5362 12.367 14.6667 12.0003 14.6667H4.00033ZM6.00033 5.33332H10.0003V3.99999C10.0003 3.44443 9.80588 2.97221 9.41699 2.58332C9.0281 2.19443 8.55588 1.99999 8.00033 1.99999C7.44477 1.99999 6.97255 2.19443 6.58366 2.58332C6.19477 2.97221 6.00033 3.44443 6.00033 3.99999V5.33332ZM4.00033 13.3333H12.0003V6.66666H4.00033V13.3333ZM8.00033 11.3333C8.36699 11.3333 8.68099 11.2029 8.94233 10.942C9.20321 10.6807 9.33366 10.3667 9.33366 9.99999C9.33366 9.63332 9.20321 9.31932 8.94233 9.05799C8.68099 8.7971 8.36699 8.66666 8.00033 8.66666C7.63366 8.66666 7.31988 8.7971 7.05899 9.05799C6.79766 9.31932 6.66699 9.63332 6.66699 9.99999C6.66699 10.3667 6.79766 10.6807 7.05899 10.942C7.31988 11.2029 7.63366 11.3333 8.00033 11.3333Z" fill="#111"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
10
views/main/img/archive/contextmenu/mgmtFunc_resetConvert.svg
Normal file
@@ -0,0 +1,10 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_1_452)">
|
||||
<path d="M12.6665 5.33317L9.99984 7.99984H11.9998C11.9998 10.2065 10.2065 11.9998 7.99984 11.9998C7.3265 11.9998 6.6865 11.8332 6.13317 11.5332L5.15984 12.5065C5.97984 13.0265 6.95317 13.3332 7.99984 13.3332C10.9465 13.3332 13.3332 10.9465 13.3332 7.99984H15.3332L12.6665 5.33317ZM3.99984 7.99984C3.99984 5.79317 5.79317 3.99984 7.99984 3.99984C8.67317 3.99984 9.31317 4.1665 9.8665 4.4665L10.8398 3.49317C10.0198 2.97317 9.0465 2.6665 7.99984 2.6665C5.05317 2.6665 2.6665 5.05317 2.6665 7.99984H0.666504L3.33317 10.6665L5.99984 7.99984H3.99984Z" fill="#000000"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_1_452">
|
||||
<rect width="16" height="16" fill="black"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 805 B |
10
views/main/img/archive/contextmenu/relocateTarget.svg
Normal file
@@ -0,0 +1,10 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_292_739)">
|
||||
<path d="M3.99967 4V5.33333H9.72634L3.33301 11.7267L4.27301 12.6667L10.6663 6.27333V12H11.9997V4H3.99967Z" fill="#000000"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_292_739">
|
||||
<rect width="16" height="16" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 369 B |
3
views/main/img/archive/contextmenu/removeTarget.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M4.00065 12.6667C4.00065 13.4 4.60065 14 5.33398 14H10.6673C11.4007 14 12.0007 13.4 12.0007 12.6667V4.66667H4.00065V12.6667ZM5.33398 6H10.6673V12.6667H5.33398V6ZM10.334 2.66667L9.66732 2H6.33398L5.66732 2.66667H3.33398V4H12.6673V2.66667H10.334Z" fill="#EE1F2C"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 375 B |
11
views/main/img/archive/contextmenu/renameTarget.svg
Normal file
@@ -0,0 +1,11 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_267_1277)">
|
||||
<path d="M2 14H4.5L11.8733 6.62665L9.37333 4.12665L2 11.5V14ZM3.33333 12.0533L9.37333 6.01331L9.98667 6.62665L3.94667 12.6666H3.33333V12.0533Z" fill="#000000"/>
|
||||
<path d="M12.2469 2.19332C11.9869 1.93332 11.5669 1.93332 11.3069 2.19332L10.0869 3.41332L12.5869 5.91332L13.8069 4.69332C14.0669 4.43332 14.0669 4.01332 13.8069 3.75332L12.2469 2.19332Z" fill="#000000"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_267_1277">
|
||||
<rect width="16" height="16" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 613 B |
10
views/main/img/archive/contextmenu/security.svg
Normal file
@@ -0,0 +1,10 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_53_7416)">
|
||||
<path d="M8 0.666504L2 3.33317V7.33317C2 11.0332 4.56 14.4932 8 15.3332C11.44 14.4932 14 11.0332 14 7.33317V3.33317L8 0.666504ZM8 7.99317H12.6667C12.3133 10.7398 10.48 13.1865 8 13.9532V7.99984H3.33333V4.19984L8 2.1265V7.99317Z" fill="#000000"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_53_7416">
|
||||
<rect width="16" height="16" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 491 B |
3
views/main/img/archive/contextmenu/setPermission.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M7.99984 8.66693C8.64428 8.66693 9.19428 8.43915 9.64984 7.98359C10.1054 7.52804 10.3332 6.97804 10.3332 6.33359C10.3332 5.68915 10.1054 5.13915 9.64984 4.68359C9.19428 4.22804 8.64428 4.00026 7.99984 4.00026C7.35539 4.00026 6.80539 4.22804 6.34984 4.68359C5.89428 5.13915 5.6665 5.68915 5.6665 6.33359C5.6665 6.97804 5.89428 7.52804 6.34984 7.98359C6.80539 8.43915 7.35539 8.66693 7.99984 8.66693ZM7.99984 13.2669C8.65539 13.0558 9.23595 12.7253 9.7415 12.2753C10.2471 11.8253 10.6887 11.3169 11.0665 10.7503C10.5887 10.5058 10.0915 10.3197 9.57484 10.1919C9.05817 10.0641 8.53317 10.0003 7.99984 10.0003C7.4665 10.0003 6.9415 10.0641 6.42484 10.1919C5.90817 10.3197 5.41095 10.5058 4.93317 10.7503C5.31095 11.3169 5.75262 11.8253 6.25817 12.2753C6.76373 12.7253 7.34428 13.0558 7.99984 13.2669ZM7.99984 14.6003C7.92206 14.6003 7.84984 14.5947 7.78317 14.5836C7.7165 14.5725 7.64984 14.5558 7.58317 14.5336C6.08317 14.0336 4.88873 13.1086 3.99984 11.7586C3.11095 10.4086 2.6665 8.95582 2.6665 7.40026V4.25026C2.6665 3.97248 2.74706 3.72248 2.90817 3.50026C3.06928 3.27804 3.27762 3.11693 3.53317 3.01693L7.53317 1.51693C7.68873 1.46137 7.84428 1.43359 7.99984 1.43359C8.15539 1.43359 8.31095 1.46137 8.4665 1.51693L12.4665 3.01693C12.7221 3.11693 12.9304 3.27804 13.0915 3.50026C13.2526 3.72248 13.3332 3.97248 13.3332 4.25026V7.40026C13.3332 8.95582 12.8887 10.4086 11.9998 11.7586C11.1109 13.1086 9.9165 14.0336 8.4165 14.5336C8.34984 14.5558 8.28317 14.5725 8.2165 14.5836C8.14984 14.5947 8.07762 14.6003 7.99984 14.6003Z" fill="#000000"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
10
views/main/img/archive/contextmenu/upload.svg
Normal file
@@ -0,0 +1,10 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_292_734)">
|
||||
<path d="M12.0003 9.99999V12H4.00033V9.99999H2.66699V12C2.66699 12.7333 3.26699 13.3333 4.00033 13.3333H12.0003C12.7337 13.3333 13.3337 12.7333 13.3337 12V9.99999H12.0003ZM4.66699 5.99999L5.60699 6.93999L7.33366 5.21999V10.6667H8.66699V5.21999L10.3937 6.93999L11.3337 5.99999L8.00033 2.66666L4.66699 5.99999Z" fill="#000000"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_292_734">
|
||||
<rect width="16" height="16" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 572 B |
10
views/main/img/archive/contextmenu/uploadFile.svg
Normal file
@@ -0,0 +1,10 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_314_1738)">
|
||||
<path d="M9.33366 1.3335H4.00033C3.26699 1.3335 2.67366 1.9335 2.67366 2.66683L2.66699 13.3335C2.66699 14.0668 3.26033 14.6668 3.99366 14.6668H12.0003C12.7337 14.6668 13.3337 14.0668 13.3337 13.3335V5.3335L9.33366 1.3335ZM12.0003 13.3335H4.00033V2.66683H8.66699V6.00016H12.0003V13.3335ZM5.33366 10.0068L6.27366 10.9468L7.33366 9.8935V12.6668H8.66699V9.8935L9.72699 10.9535L10.667 10.0068L8.00699 7.3335L5.33366 10.0068Z" fill="#000000"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_314_1738">
|
||||
<rect width="16" height="16" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 685 B |
10
views/main/img/archive/contextmenu/uploadFolder.svg
Normal file
@@ -0,0 +1,10 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_314_1728)">
|
||||
<path d="M13.333 3.99984H7.99967L6.66634 2.6665H2.66634C1.93301 2.6665 1.33967 3.2665 1.33967 3.99984L1.33301 11.9998C1.33301 12.7332 1.93301 13.3332 2.66634 13.3332H13.333C14.0663 13.3332 14.6663 12.7332 14.6663 11.9998V5.33317C14.6663 4.59984 14.0663 3.99984 13.333 3.99984ZM13.333 11.9998H2.66634V3.99984H6.11301L7.44634 5.33317H13.333V11.9998ZM6.27301 9.61317L7.33301 8.55984V11.3332H8.66634V8.55984L9.72634 9.61984L10.6663 8.67317L8.00634 5.99984L5.33301 8.67317L6.27301 9.61317Z" fill="#000000"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_314_1728">
|
||||
<rect width="16" height="16" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 750 B |
10
views/main/img/archive/convert_gray.svg
Normal file
@@ -0,0 +1,10 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_1_452)">
|
||||
<path d="M12.6665 5.33317L9.99984 7.99984H11.9998C11.9998 10.2065 10.2065 11.9998 7.99984 11.9998C7.3265 11.9998 6.6865 11.8332 6.13317 11.5332L5.15984 12.5065C5.97984 13.0265 6.95317 13.3332 7.99984 13.3332C10.9465 13.3332 13.3332 10.9465 13.3332 7.99984H15.3332L12.6665 5.33317ZM3.99984 7.99984C3.99984 5.79317 5.79317 3.99984 7.99984 3.99984C8.67317 3.99984 9.31317 4.1665 9.8665 4.4665L10.8398 3.49317C10.0198 2.97317 9.0465 2.6665 7.99984 2.6665C5.05317 2.6665 2.6665 5.05317 2.6665 7.99984H0.666504L3.33317 10.6665L5.99984 7.99984H3.99984Z" fill="#666666"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_1_452">
|
||||
<rect width="16" height="16" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 805 B |
10
views/main/img/archive/convert_white.svg
Normal file
@@ -0,0 +1,10 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_1_452)">
|
||||
<path d="M12.6665 5.33317L9.99984 7.99984H11.9998C11.9998 10.2065 10.2065 11.9998 7.99984 11.9998C7.3265 11.9998 6.6865 11.8332 6.13317 11.5332L5.15984 12.5065C5.97984 13.0265 6.95317 13.3332 7.99984 13.3332C10.9465 13.3332 13.3332 10.9465 13.3332 7.99984H15.3332L12.6665 5.33317ZM3.99984 7.99984C3.99984 5.79317 5.79317 3.99984 7.99984 3.99984C8.67317 3.99984 9.31317 4.1665 9.8665 4.4665L10.8398 3.49317C10.0198 2.97317 9.0465 2.6665 7.99984 2.6665C5.05317 2.6665 2.6665 5.05317 2.6665 7.99984H0.666504L3.33317 10.6665L5.99984 7.99984H3.99984Z" fill="#ffffff"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_1_452">
|
||||
<rect width="16" height="16" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 805 B |
10
views/main/img/archive/drag-handle.svg
Normal file
@@ -0,0 +1,10 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_4836_7863)">
|
||||
<path d="M7.33366 12.0003C7.33366 12.7337 6.73366 13.3337 6.00033 13.3337C5.26699 13.3337 4.66699 12.7337 4.66699 12.0003C4.66699 11.267 5.26699 10.667 6.00033 10.667C6.73366 10.667 7.33366 11.267 7.33366 12.0003ZM6.00033 6.66699C5.26699 6.66699 4.66699 7.26699 4.66699 8.00033C4.66699 8.73366 5.26699 9.33366 6.00033 9.33366C6.73366 9.33366 7.33366 8.73366 7.33366 8.00033C7.33366 7.26699 6.73366 6.66699 6.00033 6.66699ZM6.00033 2.66699C5.26699 2.66699 4.66699 3.26699 4.66699 4.00033C4.66699 4.73366 5.26699 5.33366 6.00033 5.33366C6.73366 5.33366 7.33366 4.73366 7.33366 4.00033C7.33366 3.26699 6.73366 2.66699 6.00033 2.66699ZM10.0003 5.33366C10.7337 5.33366 11.3337 4.73366 11.3337 4.00033C11.3337 3.26699 10.7337 2.66699 10.0003 2.66699C9.26699 2.66699 8.66699 3.26699 8.66699 4.00033C8.66699 4.73366 9.26699 5.33366 10.0003 5.33366ZM10.0003 6.66699C9.26699 6.66699 8.66699 7.26699 8.66699 8.00033C8.66699 8.73366 9.26699 9.33366 10.0003 9.33366C10.7337 9.33366 11.3337 8.73366 11.3337 8.00033C11.3337 7.26699 10.7337 6.66699 10.0003 6.66699ZM10.0003 10.667C9.26699 10.667 8.66699 11.267 8.66699 12.0003C8.66699 12.7337 9.26699 13.3337 10.0003 13.3337C10.7337 13.3337 11.3337 12.7337 11.3337 12.0003C11.3337 11.267 10.7337 10.667 10.0003 10.667Z" fill="#AAAAAA"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_4836_7863">
|
||||
<rect width="16" height="16" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
4
views/main/img/archive/empty-profile.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect x="0.5" y="0.5" width="21" height="21" rx="10.5" fill="#F4F5F6" stroke="#CDD1D5"/>
|
||||
<path d="M11 11C12.3812 11 13.5 9.88125 13.5 8.5C13.5 7.11875 12.3812 6 11 6C9.61875 6 8.5 7.11875 8.5 8.5C8.5 9.88125 9.61875 11 11 11ZM11 12.25C9.33125 12.25 6 13.0875 6 14.75V16H16V14.75C16 13.0875 12.6687 12.25 11 12.25Z" fill="#B1B8BE"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 435 B |
10
views/main/img/archive/external_link_111.svg
Normal file
@@ -0,0 +1,10 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_1994_5883)">
|
||||
<path d="M12.6667 12.6667H3.33333V3.33333H8V2H3.33333C2.59333 2 2 2.6 2 3.33333V12.6667C2 13.4 2.59333 14 3.33333 14H12.6667C13.4 14 14 13.4 14 12.6667V8H12.6667V12.6667ZM9.33333 2V3.33333H11.7267L5.17333 9.88667L6.11333 10.8267L12.6667 4.27333V6.66667H14V2H9.33333Z" fill="#111"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_1994_5883">
|
||||
<rect width="16" height="16" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 531 B |
11
views/main/img/archive/external_link_fff.svg
Normal file
@@ -0,0 +1,11 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_1994_5883)">
|
||||
<path d="M12.6667 12.6667H3.33333V3.33333H8V2H3.33333C2.59333 2 2 2.6 2 3.33333V12.6667C2 13.4 2.59333 14 3.33333 14H12.6667C13.4 14 14 13.4 14 12.6667V8H12.6667V12.6667ZM9.33333 2V3.33333H11.7267L5.17333 9.88667L6.11333 10.8267L12.6667 4.27333V6.66667H14V2H9.33333Z" fill="#fff
|
||||
"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_1994_5883">
|
||||
<rect width="16" height="16" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 532 B |
10
views/main/img/archive/file_extension/3d.svg
Normal file
@@ -0,0 +1,10 @@
|
||||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_219_6405)">
|
||||
<path d="M15.2082 6.33366L10.6248 3.68366C10.2415 3.45866 9.75817 3.45866 9.37484 3.68366L4.7915 6.33366C4.40817 6.55866 4.1665 6.96699 4.1665 7.41699V12.7087C4.1665 13.1587 4.40817 13.567 4.7915 13.792L9.37484 16.442C9.75817 16.667 10.2415 16.667 10.6248 16.442L15.2082 13.792C15.5915 13.567 15.8332 13.1587 15.8332 12.7087V7.41699C15.8332 6.96699 15.5915 6.55866 15.2082 6.33366ZM5.83317 12.467V8.61699L9.1665 10.5503V14.392L5.83317 12.467ZM9.99984 9.10866L6.6665 7.17532L9.99984 5.25033L13.3332 7.17532L9.99984 9.10866ZM10.8332 14.392V10.5503L14.1665 8.61699V12.467L10.8332 14.392ZM5.83317 1.66699H2.9165C2.22484 1.66699 1.6665 2.22533 1.6665 2.91699V5.83366H3.33317V3.33366H5.83317V1.66699ZM14.1665 1.66699H17.0832C17.7748 1.66699 18.3332 2.22533 18.3332 2.91699V5.83366H16.6665V3.33366H14.1665V1.66699ZM5.83317 18.3337H2.9165C2.22484 18.3337 1.6665 17.7753 1.6665 17.0837V14.167H3.33317V16.667H5.83317V18.3337ZM14.1665 18.3337H17.0832C17.7748 18.3337 18.3332 17.7753 18.3332 17.0837V14.167H16.6665V16.667H14.1665V18.3337Z" fill="#4255BD"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_219_6405">
|
||||
<rect width="20" height="20" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.3 KiB |
10
views/main/img/archive/file_extension/audio.svg
Normal file
@@ -0,0 +1,10 @@
|
||||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_219_6340)">
|
||||
<path d="M11.6668 1.6665H5.00016C4.0835 1.6665 3.3335 2.4165 3.3335 3.33317V16.6665C3.3335 17.5832 4.0835 18.3332 5.00016 18.3332H15.0002C15.9168 18.3332 16.6668 17.5832 16.6668 16.6665V6.6665L11.6668 1.6665ZM5.00016 16.6665V3.33317H10.8335V7.49984H15.0002V16.6665H5.00016ZM13.3335 9.1665H10.0002V12.3998C9.70016 12.1998 9.34183 12.0832 8.9585 12.0832C7.92516 12.0832 7.0835 12.9248 7.0835 13.9582C7.0835 14.9915 7.92516 15.8332 8.9585 15.8332C9.99183 15.8332 10.8335 14.9915 10.8335 13.9582V10.8332H13.3335V9.1665Z" fill="#688897"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_219_6340">
|
||||
<rect width="20" height="20" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 781 B |
12
views/main/img/archive/file_extension/doc.svg
Normal file
@@ -0,0 +1,12 @@
|
||||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_219_6360)">
|
||||
<path d="M11.6668 1.6665H5.00016C4.0835 1.6665 3.34183 2.4165 3.34183 3.33317L3.3335 16.6665C3.3335 17.5832 4.07516 18.3332 4.99183 18.3332H15.0002C15.9168 18.3332 16.6668 17.5832 16.6668 16.6665V6.6665L11.6668 1.6665ZM5.00016 16.6665V3.33317H10.8335V7.49984H15.0002V16.6665H5.00016Z" fill="#0D8DF2"/>
|
||||
<line x1="6.25" y1="10.6" x2="12.5" y2="10.6" stroke="#0D8DF2" stroke-width="1.3"/>
|
||||
<line x1="6.25" y1="13.725" x2="12.5" y2="13.725" stroke="#0D8DF2" stroke-width="1.3"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_219_6360">
|
||||
<rect width="20" height="20" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 721 B |
16
views/main/img/archive/file_extension/dwg.svg
Normal file
@@ -0,0 +1,16 @@
|
||||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_219_6375)">
|
||||
<path d="M11.6668 1.66699H5.00016C4.0835 1.66699 3.34183 2.41699 3.34183 3.33366L3.3335 16.667C3.3335 17.5837 4.07516 18.3337 4.99183 18.3337H15.0002C15.9168 18.3337 16.6668 17.5837 16.6668 16.667V6.66699L11.6668 1.66699ZM5.00016 16.667V3.33366H10.8335V7.50033H15.0002V16.667H5.00016Z" fill="#A0705F"/>
|
||||
<g clip-path="url(#clip1_219_6375)">
|
||||
<path d="M12.9168 9.16699H11.2502L7.96266 14.4295L6.87516 12.5003L8.75016 9.16699H7.0835L5.2085 12.5003L7.0835 15.8337H8.75016L12.0377 10.5712L13.1252 12.5003L11.2502 15.8337H12.9168L14.7918 12.5003L12.9168 9.16699Z" fill="#A0705F"/>
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_219_6375">
|
||||
<rect width="20" height="20" fill="white"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip1_219_6375">
|
||||
<rect width="10" height="10" fill="white" transform="translate(5 7.5)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 942 B |
10
views/main/img/archive/file_extension/file.svg
Normal file
@@ -0,0 +1,10 @@
|
||||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_219_6371)">
|
||||
<path d="M11.6668 1.66699H5.00016C4.0835 1.66699 3.34183 2.41699 3.34183 3.33366L3.3335 16.667C3.3335 17.5837 4.07516 18.3337 4.99183 18.3337H15.0002C15.9168 18.3337 16.6668 17.5837 16.6668 16.667V6.66699L11.6668 1.66699ZM5.00016 16.667V3.33366H10.8335V7.50033H15.0002V16.667H5.00016Z" fill="#666666"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_219_6371">
|
||||
<rect width="20" height="20" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 550 B |
16
views/main/img/archive/file_extension/gsim.svg
Normal file
|
After Width: | Height: | Size: 54 KiB |
11
views/main/img/archive/file_extension/hwp.svg
Normal file
@@ -0,0 +1,11 @@
|
||||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_219_6382)">
|
||||
<path d="M11.6668 1.6665H5.00016C4.0835 1.6665 3.34183 2.4165 3.34183 3.33317L3.3335 16.6665C3.3335 17.5832 4.07516 18.3332 4.99183 18.3332H15.0002C15.9168 18.3332 16.6668 17.5832 16.6668 16.6665V6.6665L11.6668 1.6665ZM5.00016 16.6665V3.33317H10.8335V7.49984H15.0002V16.6665H5.00016Z" fill="#03AEFC"/>
|
||||
<path d="M12.9834 8.97266V9.87109H7.08496V8.97266H9.50684V7.84961H10.5908V8.97266H12.9834ZM10.0439 10.3789C11.3525 10.3789 12.3096 11.082 12.3193 12.0586C12.3096 13.0449 11.3525 13.748 10.0439 13.748C8.73535 13.748 7.77832 13.0449 7.77832 12.0586C7.77832 11.082 8.73535 10.3789 10.0439 10.3789ZM10.0439 11.2969C9.37988 11.2969 8.8916 11.5801 8.8916 12.0586C8.8916 12.5469 9.37988 12.8398 10.0439 12.8398C10.708 12.8398 11.1963 12.5469 11.1963 12.0586C11.1963 11.5801 10.708 11.2969 10.0439 11.2969Z" fill="#03AEFC"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_219_6382">
|
||||
<rect width="20" height="20" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.0 KiB |
10
views/main/img/archive/file_extension/img.svg
Normal file
@@ -0,0 +1,10 @@
|
||||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_219_6336)">
|
||||
<path d="M15.8333 4.16667V15.8333H4.16667V4.16667H15.8333ZM15.8333 2.5H4.16667C3.25 2.5 2.5 3.25 2.5 4.16667V15.8333C2.5 16.75 3.25 17.5 4.16667 17.5H15.8333C16.75 17.5 17.5 16.75 17.5 15.8333V4.16667C17.5 3.25 16.75 2.5 15.8333 2.5ZM11.7833 9.88333L9.28333 13.1083L7.5 10.95L5 14.1667H15L11.7833 9.88333Z" fill="#688897"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_219_6336">
|
||||
<rect width="20" height="20" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 571 B |
4
views/main/img/archive/file_extension/pdf.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M11.6673 1.25H5.00065C4.08398 1.25 3.34232 2 3.34232 2.91667L3.33398 16.25C3.33398 17.1667 4.07565 17.9167 4.99232 17.9167H15.0007C15.9173 17.9167 16.6673 17.1667 16.6673 16.25V6.25L11.6673 1.25ZM5.00065 16.25V2.91667H10.834V7.08333H15.0007V16.25H5.00065Z" fill="#F21D0D"/>
|
||||
<rect x="2.5" y="9.58301" width="15" height="3.75" fill="#F21D0D"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 454 B |
4
views/main/img/archive/file_extension/ppt.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M11.6668 1.6665H5.00016C4.0835 1.6665 3.34183 2.4165 3.34183 3.33317L3.3335 16.6665C3.3335 17.5832 4.07516 18.3332 4.99183 18.3332H15.0002C15.9168 18.3332 16.6668 17.5832 16.6668 16.6665V6.6665L11.6668 1.6665ZM5.00016 16.6665V3.33317H10.8335V7.49984H15.0002V16.6665H5.00016Z" fill="#FF3D00"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.375 8.75C7.64911 8.75 6.25 10.1491 6.25 11.875C6.25 13.6009 7.64911 15 9.375 15C11.1009 15 12.5 13.6009 12.5 11.875H9.375V8.75Z" fill="#FF3D00"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 603 B |
11
views/main/img/archive/file_extension/text.svg
Normal file
@@ -0,0 +1,11 @@
|
||||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_219_6366)">
|
||||
<path d="M11.6668 1.66699H5.00016C4.0835 1.66699 3.34183 2.41699 3.34183 3.33366L3.3335 16.667C3.3335 17.5837 4.07516 18.3337 4.99183 18.3337H15.0002C15.9168 18.3337 16.6668 17.5837 16.6668 16.667V6.66699L11.6668 1.66699ZM5.00016 16.667V3.33366H10.8335V7.50033H15.0002V16.667H5.00016Z" fill="#666666"/>
|
||||
<path d="M8.81332 13.0569H9.08332C9.22999 13.0569 9.32999 13.0302 9.38332 12.9769C9.44332 12.9169 9.47332 12.8235 9.47332 12.6969V8.07687H8.55332C8.41999 8.07687 8.32332 8.10687 8.26332 8.16687C8.20332 8.22021 8.17332 8.31021 8.17332 8.43687V8.75687H7.38332V7.33687H12.6133V8.75687H11.8233V8.43687C11.8233 8.30354 11.7933 8.21021 11.7333 8.15687C11.68 8.10354 11.5833 8.07687 11.4433 8.07687H10.5333V12.6969C10.5333 12.8235 10.56 12.9169 10.6133 12.9769C10.6733 13.0302 10.7767 13.0569 10.9233 13.0569H11.1933V13.7969H8.81332V13.0569Z" fill="#666666"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_219_6366">
|
||||
<rect width="20" height="20" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
3
views/main/img/archive/file_extension/video.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M7.50016 14.9998H10.8335C11.0696 14.9998 11.2677 14.9198 11.4277 14.7598C11.5871 14.6004 11.6668 14.4026 11.6668 14.1665V13.3332L13.3335 14.2082V10.7915L11.6668 11.6665V10.8332C11.6668 10.5971 11.5871 10.399 11.4277 10.239C11.2677 10.0796 11.0696 9.99984 10.8335 9.99984H7.50016C7.26405 9.99984 7.06627 10.0796 6.90683 10.239C6.74683 10.399 6.66683 10.5971 6.66683 10.8332V14.1665C6.66683 14.4026 6.74683 14.6004 6.90683 14.7598C7.06627 14.9198 7.26405 14.9998 7.50016 14.9998ZM5.00016 18.3332C4.54183 18.3332 4.14961 18.1701 3.8235 17.844C3.49683 17.5173 3.3335 17.1248 3.3335 16.6665V3.33317C3.3335 2.87484 3.49683 2.48234 3.8235 2.15567C4.14961 1.82956 4.54183 1.6665 5.00016 1.6665H11.6668L16.6668 6.6665V16.6665C16.6668 17.1248 16.5038 17.5173 16.1777 17.844C15.851 18.1701 15.4585 18.3332 15.0002 18.3332H5.00016ZM10.8335 7.49984V3.33317H5.00016V16.6665H15.0002V7.49984H10.8335Z" fill="#688897"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1015 B |
18
views/main/img/archive/file_extension/xls.svg
Normal file
@@ -0,0 +1,18 @@
|
||||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_219_6387)">
|
||||
<path d="M11.6668 1.66699H5.00016C4.0835 1.66699 3.34183 2.41699 3.34183 3.33366L3.3335 16.667C3.3335 17.5837 4.07516 18.3337 4.99183 18.3337H15.0002C15.9168 18.3337 16.6668 17.5837 16.6668 16.667V6.66699L11.6668 1.66699ZM5.00016 16.667V3.33366H10.8335V7.50033H15.0002V16.667H5.00016Z" fill="#4DB251"/>
|
||||
<g clip-path="url(#clip1_219_6387)">
|
||||
<path d="M7.91683 11.0156H6.146V15.3125H7.91683V11.0156Z" fill="#4DB251"/>
|
||||
<path d="M13.2293 12.5781H11.4585V15.3125H13.2293V12.5781Z" fill="#4DB251"/>
|
||||
<path d="M10.5731 9.0625H8.80225V15.3125H10.5731V9.0625Z" fill="#4DB251"/>
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_219_6387">
|
||||
<rect width="20" height="20" fill="white"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip1_219_6387">
|
||||
<rect width="10.625" height="9.375" fill="white" transform="translate(4.375 7.5)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 946 B |
10
views/main/img/archive/file_extension/zip.svg
Normal file
@@ -0,0 +1,10 @@
|
||||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_219_6399)">
|
||||
<path d="M11.6668 1.66699H5.00016C4.0835 1.66699 3.3335 2.41699 3.3335 3.33366V16.667C3.3335 17.5837 4.0835 18.3337 5.00016 18.3337H15.0002C15.9168 18.3337 16.6668 17.5837 16.6668 16.667V6.66699L11.6668 1.66699ZM15.0002 16.667H5.00016V3.33366H11.6668V6.66699H15.0002V16.667ZM10.0002 14.167C9.0835 14.167 8.3335 13.417 8.3335 12.5003V7.91699C8.3335 7.68366 8.51683 7.50033 8.75016 7.50033C8.9835 7.50033 9.16683 7.68366 9.16683 7.91699V12.5003H10.8335V7.91699C10.8335 6.76699 9.90016 5.83366 8.75016 5.83366C7.60016 5.83366 6.66683 6.76699 6.66683 7.91699V12.5003C6.66683 14.342 8.1585 15.8337 10.0002 15.8337C11.8418 15.8337 13.3335 14.342 13.3335 12.5003V9.16699H11.6668V12.5003C11.6668 13.417 10.9168 14.167 10.0002 14.167Z" fill="#6D3DC2"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_219_6399">
|
||||
<rect width="20" height="20" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 991 B |
16
views/main/img/archive/fit-111.svg
Normal file
@@ -0,0 +1,16 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_7218_1274)">
|
||||
<path d="M8.42857 6H9.27869L6 9.27869V8.42857H5V11H7.57143V10H6.72132L10 6.72132V7.57143H11V5H8.42857V6Z" fill="#111111"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip1_7218_1274)">
|
||||
<path d="M3.5 10.4H2V14H5.6V12.5H3.5V10.4ZM10.4 3.5H12.5V5.6H14V2H10.4V3.5ZM12.5 12.5H10.4V14H14V10.4H12.5V12.5ZM5.6 2H2V5.6H3.5V3.5H5.6V2Z" fill="#111111"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_7218_1274">
|
||||
<rect width="16" height="16" fill="white"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip1_7218_1274">
|
||||
<rect width="16" height="16" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 661 B |
3
views/main/img/archive/folder-bullet.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="8" cy="8" r="3" fill="#A5B9B6"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 148 B |
3
views/main/img/archive/folder-default.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M3.24924 13C2.9057 13 2.61171 12.8777 2.36728 12.6331C2.12243 12.3881 2 12.0938 2 11.75V4.25C2 3.90625 2.12243 3.61208 2.36728 3.3675C2.61171 3.1225 2.9057 3 3.24924 3H6.48163C6.6482 3 6.80706 3.03125 6.95821 3.09375C7.10896 3.15625 7.24158 3.24479 7.3561 3.35937L8.24618 4.25H13.2431C13.5867 4.25 13.8809 4.3725 14.1257 4.6175C14.3701 4.86208 14.4924 5.15625 14.4924 5.5H4.49847C4.15493 5.5 3.86094 5.62229 3.61651 5.86687C3.37166 6.11187 3.24924 6.40625 3.24924 6.75V11.75L4.48286 7.64063C4.56614 7.36979 4.71979 7.15354 4.94382 6.99188C5.16744 6.83063 5.41458 6.75 5.68524 6.75H13.7428C14.1696 6.75 14.5055 6.91917 14.7503 7.2575C14.9948 7.59625 15.0597 7.96354 14.9452 8.35937L13.8209 12.1094C13.7376 12.3802 13.5842 12.5965 13.3605 12.7581C13.1365 12.9194 12.8892 13 12.6185 13H3.24924Z" fill="#FF9800"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 922 B |
3
views/main/img/archive/folder-drawing.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M14.5 12C14.5 12.5523 14.0523 13 13.5 13H7.5127V10.4375H8.52539C9.02995 10.4373 9.44508 10.0682 9.49512 9.5957L9.5 9.5V8.46875H14.5V12ZM4.52539 9.5L4.5293 9.5957C4.576 10.0367 4.94171 10.3877 5.40039 10.4326L5.5 10.4375H6.53809V13H2.5C1.94772 13 1.5 12.5523 1.5 12V8.46875H4.52539V9.5ZM8.52539 9.5H5.5V6.5H8.52539V9.5ZM6.53809 5.5625H5.5L5.40039 5.56738C4.94171 5.61229 4.576 5.96328 4.5293 6.4043L4.52539 6.5V7.53125H1.5V4C1.5 3.44772 1.94772 3 2.5 3H6.53809V5.5625ZM13.5 3C14.0523 3 14.5 3.44772 14.5 4V7.53125H9.5V6.5C9.5 5.98238 9.06369 5.56272 8.52539 5.5625H7.5127V3H13.5Z" fill="#4255BD"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 709 B |
10
views/main/img/archive/folder-gallery.svg
Normal file
@@ -0,0 +1,10 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_4325_4609)">
|
||||
<path d="M14 12.6667V3.33333C14 2.6 13.4 2 12.6667 2H3.33333C2.6 2 2 2.6 2 3.33333V12.6667C2 13.4 2.6 14 3.33333 14H12.6667C13.4 14 14 13.4 14 12.6667ZM5.66667 9L7.33333 11.0067L9.66667 8L12.6667 12H3.33333L5.66667 9Z" fill="#4DB251"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_4325_4609">
|
||||
<rect width="16" height="16" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 485 B |
11
views/main/img/archive/gps-data-no.svg
Normal file
@@ -0,0 +1,11 @@
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
|
||||
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Transformed by: SVG Repo Mixer Tools -->
|
||||
<svg width="800px" height="800px" viewBox="-1.92 -1.92 19.84 19.84" xmlns="http://www.w3.org/2000/svg" fill="#000000" transform="matrix(-1, 0, 0, 1, 0, 0)">
|
||||
|
||||
<g id="SVGRepo_bgCarrier" stroke-width="0"/>
|
||||
|
||||
<g transform="translate(0,0.6)">
|
||||
|
||||
<g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round" stroke="#000" stroke-width="2.88"> <path d="m 8 0 c -1.894531 0 -3.582031 0.882812 -4.679688 2.257812 l -1.789062 -1.789062 l -1.0625 1.0625 l 14 14 l 1.0625 -1.0625 l -3.652344 -3.652344 c 0.449219 -0.546875 0.855469 -1.082031 1.167969 -1.570312 c 0.261719 -0.414063 0.46875 -0.808594 0.585937 -1.171875 l -0.019531 0.003906 c 0.25 -0.664063 0.382813 -1.367187 0.386719 -2.078125 c 0.003906 -3.3125 -2.6875 -6 -6 -6 z m 0 3.695312 c 1.273438 -0.003906 2.308594 1.03125 2.308594 2.304688 c 0 0.878906 -0.492188 1.640625 -1.214844 2.03125 l -3.125 -3.125 c 0.390625 -0.722656 1.152344 -1.210938 2.03125 -1.210938 z m -5.9375 1.429688 c -0.039062 0.289062 -0.0625 0.578125 -0.0625 0.875 c 0.003906 0.710938 0.136719 1.414062 0.386719 2.082031 l -0.015625 -0.007812 c 0.636718 1.988281 3.78125 5.082031 5.628906 6.925781 v 0.003906 v -0.003906 c 0.5625 -0.5625 1.25 -1.253906 1.945312 -1.992188 z m 0 0" fill="#ccc"/> </g>
|
||||
|
||||
|
After Width: | Height: | Size: 2.3 KiB |
11
views/main/img/archive/gps-data-yes.svg
Normal file
@@ -0,0 +1,11 @@
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
|
||||
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Transformed by: SVG Repo Mixer Tools -->
|
||||
<svg width="800px" height="800px" viewBox="-1.92 -1.92 19.84 19.84" xmlns="http://www.w3.org/2000/svg" fill="#000000">
|
||||
|
||||
<g id="SVGRepo_bgCarrier" stroke-width="0"/>
|
||||
|
||||
<g transform="translate(0,0.6)">
|
||||
|
||||
<g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round" stroke="#000000" stroke-width="2.88"> <path d="m 8 0 c -3.3125 0 -6 2.6875 -6 6 c 0.007812 0.710938 0.136719 1.414062 0.386719 2.078125 l -0.015625 -0.003906 c 0.636718 1.988281 3.78125 5.082031 5.625 6.929687 h 0.003906 v -0.003906 c 1.507812 -1.507812 3.878906 -3.925781 5.046875 -5.753906 c 0.261719 -0.414063 0.46875 -0.808594 0.585937 -1.171875 l -0.019531 0.003906 c 0.25 -0.664063 0.382813 -1.367187 0.386719 -2.078125 c 0 -3.3125 -2.683594 -6 -6 -6 z m 0 3.691406 c 1.273438 0 2.308594 1.035156 2.308594 2.308594 s -1.035156 2.308594 -2.308594 2.308594 c -1.273438 -0.003906 -2.304688 -1.035156 -2.304688 -2.308594 c -0.003906 -1.273438 1.03125 -2.304688 2.304688 -2.308594 z m 0 0" fill="#00cc00"/> </g>
|
||||
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
50
views/main/img/archive/header-corner-round-green.svg
Normal file
@@ -0,0 +1,50 @@
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="100%" viewBox="0 0 640 640" enable-background="new 0 0 640 640" xml:space="preserve">
|
||||
<path fill="#000000" opacity="0.000000" stroke="none"
|
||||
d="
|
||||
M1.000000,7.000000
|
||||
C1.000000,5.000658 1.000000,3.001316 1.000000,1.001481
|
||||
C214.262497,1.000987 427.524994,1.000987 641.000000,1.000987
|
||||
C641.000000,213.692459 641.000000,426.384979 640.539551,639.538757
|
||||
C632.371155,639.338928 624.633850,638.915527 616.961060,637.969055
|
||||
C599.060547,635.760864 580.984192,634.310303 563.359131,630.698303
|
||||
C539.080994,625.722900 515.104187,619.227234 491.089294,613.030457
|
||||
C467.299805,606.891724 444.474579,597.978271 421.832611,588.488220
|
||||
C393.058533,576.427979 365.090881,562.740845 338.445862,546.590576
|
||||
C311.546173,530.286011 284.973511,513.360352 261.134460,492.626190
|
||||
C241.846283,475.850159 222.582260,459.041077 203.589447,441.933594
|
||||
C197.080063,436.070343 191.320465,429.353729 185.405167,422.856842
|
||||
C177.070038,413.702240 168.548904,404.680847 160.764114,395.070465
|
||||
C150.968079,382.977173 141.878220,370.313721 132.406937,357.955109
|
||||
C111.712158,330.951538 94.342873,301.810608 78.616417,271.772522
|
||||
C68.370804,252.203064 59.017452,232.024811 51.100399,211.414032
|
||||
C41.387627,186.128342 32.906662,160.309998 25.189997,134.336624
|
||||
C19.434271,114.963547 15.125835,95.096359 11.308738,75.230965
|
||||
C8.034523,58.190895 6.425645,40.833523 3.963409,23.633207
|
||||
C3.165827,18.061575 1.998305,12.542899 1.000000,7.000000
|
||||
z"/>
|
||||
<path fill="#1e5149" opacity="1.000000" stroke="none"
|
||||
d="
|
||||
M1.000000,7.468657
|
||||
C1.998305,12.542899 3.165827,18.061575 3.963409,23.633207
|
||||
C6.425645,40.833523 8.034523,58.190895 11.308738,75.230965
|
||||
C15.125835,95.096359 19.434271,114.963547 25.189997,134.336624
|
||||
C32.906662,160.309998 41.387627,186.128342 51.100399,211.414032
|
||||
C59.017452,232.024811 68.370804,252.203064 78.616417,271.772522
|
||||
C94.342873,301.810608 111.712158,330.951538 132.406937,357.955109
|
||||
C141.878220,370.313721 150.968079,382.977173 160.764114,395.070465
|
||||
C168.548904,404.680847 177.070038,413.702240 185.405167,422.856842
|
||||
C191.320465,429.353729 197.080063,436.070343 203.589447,441.933594
|
||||
C222.582260,459.041077 241.846283,475.850159 261.134460,492.626190
|
||||
C284.973511,513.360352 311.546173,530.286011 338.445862,546.590576
|
||||
C365.090881,562.740845 393.058533,576.427979 421.832611,588.488220
|
||||
C444.474579,597.978271 467.299805,606.891724 491.089294,613.030457
|
||||
C515.104187,619.227234 539.080994,625.722900 563.359131,630.698303
|
||||
C580.984192,634.310303 599.060547,635.760864 616.961060,637.969055
|
||||
C624.633850,638.915527 632.371155,639.338928 640.539551,640.000000
|
||||
C640.833435,640.333313 640.684326,640.943848 640.497620,640.955566
|
||||
C639.170044,641.039001 637.834778,641.000000 636.501892,641.000000
|
||||
C424.741241,641.000000 212.980576,641.000000 1.000000,641.000000
|
||||
C1.000000,429.979156 1.000000,218.958237 1.000000,7.468657
|
||||
z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.9 KiB |
50
views/main/img/archive/header-corner-round-light-green.svg
Normal file
@@ -0,0 +1,50 @@
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="100%" viewBox="0 0 640 640" enable-background="new 0 0 640 640" xml:space="preserve">
|
||||
<path fill="#000000" opacity="0.000000" stroke="none"
|
||||
d="
|
||||
M1.000000,7.000000
|
||||
C1.000000,5.000658 1.000000,3.001316 1.000000,1.001481
|
||||
C214.262497,1.000987 427.524994,1.000987 641.000000,1.000987
|
||||
C641.000000,213.692459 641.000000,426.384979 640.539551,639.538757
|
||||
C632.371155,639.338928 624.633850,638.915527 616.961060,637.969055
|
||||
C599.060547,635.760864 580.984192,634.310303 563.359131,630.698303
|
||||
C539.080994,625.722900 515.104187,619.227234 491.089294,613.030457
|
||||
C467.299805,606.891724 444.474579,597.978271 421.832611,588.488220
|
||||
C393.058533,576.427979 365.090881,562.740845 338.445862,546.590576
|
||||
C311.546173,530.286011 284.973511,513.360352 261.134460,492.626190
|
||||
C241.846283,475.850159 222.582260,459.041077 203.589447,441.933594
|
||||
C197.080063,436.070343 191.320465,429.353729 185.405167,422.856842
|
||||
C177.070038,413.702240 168.548904,404.680847 160.764114,395.070465
|
||||
C150.968079,382.977173 141.878220,370.313721 132.406937,357.955109
|
||||
C111.712158,330.951538 94.342873,301.810608 78.616417,271.772522
|
||||
C68.370804,252.203064 59.017452,232.024811 51.100399,211.414032
|
||||
C41.387627,186.128342 32.906662,160.309998 25.189997,134.336624
|
||||
C19.434271,114.963547 15.125835,95.096359 11.308738,75.230965
|
||||
C8.034523,58.190895 6.425645,40.833523 3.963409,23.633207
|
||||
C3.165827,18.061575 1.998305,12.542899 1.000000,7.000000
|
||||
z"/>
|
||||
<path fill="#e9eeed" opacity="1.000000" stroke="none"
|
||||
d="
|
||||
M1.000000,7.468657
|
||||
C1.998305,12.542899 3.165827,18.061575 3.963409,23.633207
|
||||
C6.425645,40.833523 8.034523,58.190895 11.308738,75.230965
|
||||
C15.125835,95.096359 19.434271,114.963547 25.189997,134.336624
|
||||
C32.906662,160.309998 41.387627,186.128342 51.100399,211.414032
|
||||
C59.017452,232.024811 68.370804,252.203064 78.616417,271.772522
|
||||
C94.342873,301.810608 111.712158,330.951538 132.406937,357.955109
|
||||
C141.878220,370.313721 150.968079,382.977173 160.764114,395.070465
|
||||
C168.548904,404.680847 177.070038,413.702240 185.405167,422.856842
|
||||
C191.320465,429.353729 197.080063,436.070343 203.589447,441.933594
|
||||
C222.582260,459.041077 241.846283,475.850159 261.134460,492.626190
|
||||
C284.973511,513.360352 311.546173,530.286011 338.445862,546.590576
|
||||
C365.090881,562.740845 393.058533,576.427979 421.832611,588.488220
|
||||
C444.474579,597.978271 467.299805,606.891724 491.089294,613.030457
|
||||
C515.104187,619.227234 539.080994,625.722900 563.359131,630.698303
|
||||
C580.984192,634.310303 599.060547,635.760864 616.961060,637.969055
|
||||
C624.633850,638.915527 632.371155,639.338928 640.539551,640.000000
|
||||
C640.833435,640.333313 640.684326,640.943848 640.497620,640.955566
|
||||
C639.170044,641.039001 637.834778,641.000000 636.501892,641.000000
|
||||
C424.741241,641.000000 212.980576,641.000000 1.000000,641.000000
|
||||
C1.000000,429.979156 1.000000,218.958237 1.000000,7.468657
|
||||
z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.9 KiB |
50
views/main/img/archive/header-corner-round-white.svg
Normal file
@@ -0,0 +1,50 @@
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="100%" viewBox="0 0 640 640" enable-background="new 0 0 640 640" xml:space="preserve">
|
||||
<path fill="#000000" opacity="0.000000" stroke="none"
|
||||
d="
|
||||
M1.000000,7.000000
|
||||
C1.000000,5.000658 1.000000,3.001316 1.000000,1.001481
|
||||
C214.262497,1.000987 427.524994,1.000987 641.000000,1.000987
|
||||
C641.000000,213.692459 641.000000,426.384979 640.539551,639.538757
|
||||
C632.371155,639.338928 624.633850,638.915527 616.961060,637.969055
|
||||
C599.060547,635.760864 580.984192,634.310303 563.359131,630.698303
|
||||
C539.080994,625.722900 515.104187,619.227234 491.089294,613.030457
|
||||
C467.299805,606.891724 444.474579,597.978271 421.832611,588.488220
|
||||
C393.058533,576.427979 365.090881,562.740845 338.445862,546.590576
|
||||
C311.546173,530.286011 284.973511,513.360352 261.134460,492.626190
|
||||
C241.846283,475.850159 222.582260,459.041077 203.589447,441.933594
|
||||
C197.080063,436.070343 191.320465,429.353729 185.405167,422.856842
|
||||
C177.070038,413.702240 168.548904,404.680847 160.764114,395.070465
|
||||
C150.968079,382.977173 141.878220,370.313721 132.406937,357.955109
|
||||
C111.712158,330.951538 94.342873,301.810608 78.616417,271.772522
|
||||
C68.370804,252.203064 59.017452,232.024811 51.100399,211.414032
|
||||
C41.387627,186.128342 32.906662,160.309998 25.189997,134.336624
|
||||
C19.434271,114.963547 15.125835,95.096359 11.308738,75.230965
|
||||
C8.034523,58.190895 6.425645,40.833523 3.963409,23.633207
|
||||
C3.165827,18.061575 1.998305,12.542899 1.000000,7.000000
|
||||
z"/>
|
||||
<path fill="#FFFFFF" opacity="1.000000" stroke="none"
|
||||
d="
|
||||
M1.000000,7.468657
|
||||
C1.998305,12.542899 3.165827,18.061575 3.963409,23.633207
|
||||
C6.425645,40.833523 8.034523,58.190895 11.308738,75.230965
|
||||
C15.125835,95.096359 19.434271,114.963547 25.189997,134.336624
|
||||
C32.906662,160.309998 41.387627,186.128342 51.100399,211.414032
|
||||
C59.017452,232.024811 68.370804,252.203064 78.616417,271.772522
|
||||
C94.342873,301.810608 111.712158,330.951538 132.406937,357.955109
|
||||
C141.878220,370.313721 150.968079,382.977173 160.764114,395.070465
|
||||
C168.548904,404.680847 177.070038,413.702240 185.405167,422.856842
|
||||
C191.320465,429.353729 197.080063,436.070343 203.589447,441.933594
|
||||
C222.582260,459.041077 241.846283,475.850159 261.134460,492.626190
|
||||
C284.973511,513.360352 311.546173,530.286011 338.445862,546.590576
|
||||
C365.090881,562.740845 393.058533,576.427979 421.832611,588.488220
|
||||
C444.474579,597.978271 467.299805,606.891724 491.089294,613.030457
|
||||
C515.104187,619.227234 539.080994,625.722900 563.359131,630.698303
|
||||
C580.984192,634.310303 599.060547,635.760864 616.961060,637.969055
|
||||
C624.633850,638.915527 632.371155,639.338928 640.539551,640.000000
|
||||
C640.833435,640.333313 640.684326,640.943848 640.497620,640.955566
|
||||
C639.170044,641.039001 637.834778,641.000000 636.501892,641.000000
|
||||
C424.741241,641.000000 212.980576,641.000000 1.000000,641.000000
|
||||
C1.000000,429.979156 1.000000,218.958237 1.000000,7.468657
|
||||
z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.9 KiB |
16
views/main/img/archive/header-dev.svg
Normal file
@@ -0,0 +1,16 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_1997_4071)">
|
||||
<mask id="mask0_1997_4071" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="0" width="16" height="16">
|
||||
<path d="M16 0H0V16H16V0Z" fill="white"/>
|
||||
</mask>
|
||||
<g mask="url(#mask0_1997_4071)">
|
||||
<path d="M8.0001 14.3996C11.5347 14.3996 14.4001 11.5342 14.4001 7.99961C14.4001 4.46499 11.5347 1.59961 8.0001 1.59961C4.46548 1.59961 1.6001 4.46499 1.6001 7.99961C1.6001 11.5342 4.46548 14.3996 8.0001 14.3996Z" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.99992 1.33398C4.31992 1.33398 1.33325 4.32065 1.33325 8.00066C1.33325 11.6807 4.31992 14.6673 7.99992 14.6673C11.6799 14.6673 14.6666 11.6807 14.6666 8.00066C14.6666 4.32065 11.6799 1.33398 7.99992 1.33398ZM11.2666 10.3273L10.3333 11.2607C10.1999 11.3939 9.99325 11.3939 9.85989 11.2607L7.58659 8.9873C6.77325 9.27394 5.82659 9.10066 5.17325 8.4473C4.43325 7.70731 4.30659 6.58731 4.77992 5.71398L6.34659 7.28065L7.28659 6.34065L5.71992 4.78065C6.59992 4.30731 7.71325 4.43398 8.45325 5.17398C9.10661 5.82731 9.27989 6.77398 8.99325 7.58731L11.2666 9.86066C11.3933 9.9873 11.3933 10.2007 11.2666 10.3273Z" fill="#111111"/>
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_1997_4071">
|
||||
<rect width="16" height="16" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.3 KiB |
3
views/main/img/archive/header-not-allowed.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M7.99496 1.33008C4.3141 1.33008 1.32996 4.31422 1.32996 7.9953C1.32996 11.6757 4.3141 14.6601 7.99496 14.6601C11.6758 14.6601 14.66 11.6757 14.66 7.9953C14.66 4.31422 11.6758 1.33008 7.99496 1.33008ZM12.8826 7.9953C12.8826 9.02371 12.5643 9.97747 12.0215 10.7646L5.2252 3.96853C6.01256 3.42578 6.96632 3.10741 7.99496 3.10741C10.6943 3.10741 12.8826 5.29598 12.8826 7.9953ZM3.10729 7.9953C3.10729 6.96667 3.42588 6.01269 3.96841 5.22533L10.7647 12.0216C9.97757 12.5644 9.02359 12.883 7.99496 12.883C5.29563 12.883 3.10729 10.6942 3.10729 7.9953Z" fill="#FF0000"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 676 B |
10
views/main/img/archive/header-progress-status.svg
Normal file
@@ -0,0 +1,10 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_2427_260)">
|
||||
<path d="M3.33333 6.66634H12.6667V7.99967H14V3.99967C14 3.26634 13.4 2.66634 12.6667 2.66634H12V1.33301H10.6667V2.66634H5.33333V1.33301H4V2.66634H3.33333C2.59333 2.66634 2.00667 3.26634 2.00667 3.99967L2 13.333C2 14.0663 2.59333 14.6663 3.33333 14.6663H8V13.333H3.33333V6.66634ZM3.33333 3.99967H12.6667V5.33301H3.33333V3.99967ZM15.2267 10.853L14.7533 11.3263L13.34 9.91301L13.8133 9.43967C14.0733 9.17967 14.4933 9.17967 14.7533 9.43967L15.2267 9.91301C15.4867 10.173 15.4867 10.593 15.2267 10.853ZM12.8667 10.3863L14.28 11.7997L10.7467 15.333H9.33333V13.9197L12.8667 10.3863Z" fill="#789792"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_2427_260">
|
||||
<rect width="16" height="16" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 842 B |
4
views/main/img/archive/header-sub-master.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M4.5 5L8 3L11.5 5V10L11 12L8 14L5 12L4.5 10V5Z" fill="#FDE8EF"/>
|
||||
<path d="M7.99984 8.66668C8.64428 8.66668 9.19428 8.43891 9.64984 7.98335C10.1054 7.52779 10.3332 6.97779 10.3332 6.33335C10.3332 5.68891 10.1054 5.13891 9.64984 4.68335C9.19428 4.22779 8.64428 4.00002 7.99984 4.00002C7.35539 4.00002 6.80539 4.22779 6.34984 4.68335C5.89428 5.13891 5.6665 5.68891 5.6665 6.33335C5.6665 6.97779 5.89428 7.52779 6.34984 7.98335C6.80539 8.43891 7.35539 8.66668 7.99984 8.66668ZM7.99984 13.2667C8.65539 13.0556 9.23595 12.725 9.7415 12.275C10.2471 11.825 10.6887 11.3167 11.0665 10.75C10.5887 10.5056 10.0915 10.3195 9.57484 10.1917C9.05817 10.0639 8.53317 10 7.99984 10C7.4665 10 6.9415 10.0639 6.42484 10.1917C5.90817 10.3195 5.41095 10.5056 4.93317 10.75C5.31095 11.3167 5.75262 11.825 6.25817 12.275C6.76373 12.725 7.34428 13.0556 7.99984 13.2667ZM7.99984 14.6C7.92206 14.6 7.84984 14.5945 7.78317 14.5834C7.7165 14.5722 7.64984 14.5556 7.58317 14.5333C6.08317 14.0333 4.88873 13.1083 3.99984 11.7584C3.11095 10.4083 2.6665 8.95557 2.6665 7.40002V4.25002C2.6665 3.97224 2.74706 3.72224 2.90817 3.50002C3.06928 3.27779 3.27762 3.11668 3.53317 3.01668L7.53317 1.51668C7.68873 1.46113 7.84428 1.43335 7.99984 1.43335C8.15539 1.43335 8.31095 1.46113 8.4665 1.51668L12.4665 3.01668C12.7221 3.11668 12.9304 3.27779 13.0915 3.50002C13.2526 3.72224 13.3332 3.97224 13.3332 4.25002V7.40002C13.3332 8.95557 12.8887 10.4083 11.9998 11.7584C11.1109 13.1083 9.9165 14.0333 8.4165 14.5333C8.34984 14.5556 8.28317 14.5722 8.2165 14.5834C8.14984 14.5945 8.07762 14.6 7.99984 14.6Z" fill="#E8175E"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.7 KiB |
4
views/main/img/archive/header-viewer.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M4.5 5L8 3L11.5 5V10L11 12L8 14L5 12L4.5 10V5Z" fill="#F8EBFB"/>
|
||||
<path d="M7.99984 8.66668C8.64428 8.66668 9.19428 8.43891 9.64984 7.98335C10.1054 7.52779 10.3332 6.97779 10.3332 6.33335C10.3332 5.68891 10.1054 5.13891 9.64984 4.68335C9.19428 4.22779 8.64428 4.00002 7.99984 4.00002C7.35539 4.00002 6.80539 4.22779 6.34984 4.68335C5.89428 5.13891 5.6665 5.68891 5.6665 6.33335C5.6665 6.97779 5.89428 7.52779 6.34984 7.98335C6.80539 8.43891 7.35539 8.66668 7.99984 8.66668ZM7.99984 13.2667C8.65539 13.0556 9.23595 12.725 9.7415 12.275C10.2471 11.825 10.6887 11.3167 11.0665 10.75C10.5887 10.5056 10.0915 10.3195 9.57484 10.1917C9.05817 10.0639 8.53317 10 7.99984 10C7.4665 10 6.9415 10.0639 6.42484 10.1917C5.90817 10.3195 5.41095 10.5056 4.93317 10.75C5.31095 11.3167 5.75262 11.825 6.25817 12.275C6.76373 12.725 7.34428 13.0556 7.99984 13.2667ZM7.99984 14.6C7.92206 14.6 7.84984 14.5945 7.78317 14.5834C7.7165 14.5722 7.64984 14.5556 7.58317 14.5333C6.08317 14.0333 4.88873 13.1083 3.99984 11.7584C3.11095 10.4083 2.6665 8.95557 2.6665 7.40002V4.25002C2.6665 3.97224 2.74706 3.72224 2.90817 3.50002C3.06928 3.27779 3.27762 3.11668 3.53317 3.01668L7.53317 1.51668C7.68873 1.46113 7.84428 1.43335 7.99984 1.43335C8.15539 1.43335 8.31095 1.46113 8.4665 1.51668L12.4665 3.01668C12.7221 3.11668 12.9304 3.27779 13.0915 3.50002C13.2526 3.72224 13.3332 3.97224 13.3332 4.25002V7.40002C13.3332 8.95557 12.8887 10.4083 11.9998 11.7584C11.1109 13.1083 9.9165 14.0333 8.4165 14.5333C8.34984 14.5556 8.28317 14.5722 8.2165 14.5834C8.14984 14.5945 8.07762 14.6 7.99984 14.6Z" fill="#0D8DF2"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.7 KiB |
4
views/main/img/archive/header-worker.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M4.5 5L8 3L11.5 5V10L11 12L8 14L5 12L4.5 10V5Z" fill="#F8EBFB"/>
|
||||
<path d="M7.99984 8.66668C8.64428 8.66668 9.19428 8.43891 9.64984 7.98335C10.1054 7.52779 10.3332 6.97779 10.3332 6.33335C10.3332 5.68891 10.1054 5.13891 9.64984 4.68335C9.19428 4.22779 8.64428 4.00002 7.99984 4.00002C7.35539 4.00002 6.80539 4.22779 6.34984 4.68335C5.89428 5.13891 5.6665 5.68891 5.6665 6.33335C5.6665 6.97779 5.89428 7.52779 6.34984 7.98335C6.80539 8.43891 7.35539 8.66668 7.99984 8.66668ZM7.99984 13.2667C8.65539 13.0556 9.23595 12.725 9.7415 12.275C10.2471 11.825 10.6887 11.3167 11.0665 10.75C10.5887 10.5056 10.0915 10.3195 9.57484 10.1917C9.05817 10.0639 8.53317 10 7.99984 10C7.4665 10 6.9415 10.0639 6.42484 10.1917C5.90817 10.3195 5.41095 10.5056 4.93317 10.75C5.31095 11.3167 5.75262 11.825 6.25817 12.275C6.76373 12.725 7.34428 13.0556 7.99984 13.2667ZM7.99984 14.6C7.92206 14.6 7.84984 14.5945 7.78317 14.5834C7.7165 14.5722 7.64984 14.5556 7.58317 14.5333C6.08317 14.0333 4.88873 13.1083 3.99984 11.7584C3.11095 10.4083 2.6665 8.95557 2.6665 7.40002V4.25002C2.6665 3.97224 2.74706 3.72224 2.90817 3.50002C3.06928 3.27779 3.27762 3.11668 3.53317 3.01668L7.53317 1.51668C7.68873 1.46113 7.84428 1.43335 7.99984 1.43335C8.15539 1.43335 8.31095 1.46113 8.4665 1.51668L12.4665 3.01668C12.7221 3.11668 12.9304 3.27779 13.0915 3.50002C13.2526 3.72224 13.3332 3.97224 13.3332 4.25002V7.40002C13.3332 8.95557 12.8887 10.4083 11.9998 11.7584C11.1109 13.1083 9.9165 14.0333 8.4165 14.5333C8.34984 14.5556 8.28317 14.5722 8.2165 14.5834C8.14984 14.5945 8.07762 14.6 7.99984 14.6Z" fill="#B92ED1"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.7 KiB |
14
views/main/img/archive/highlight-bg.svg
Normal file
@@ -0,0 +1,14 @@
|
||||
<svg width="312" height="221" viewBox="0 0 312 221" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="4" height="40" transform="matrix(1 0 0 -1 10 211)" fill="#F9613B"/>
|
||||
<rect width="4" height="40" transform="matrix(-4.37114e-08 -1 -1 4.37114e-08 50 211)" fill="#F9613B"/>
|
||||
<rect width="4" height="221" fill="#F9613B"/>
|
||||
<rect y="217" width="312" height="4" fill="#F9613B"/>
|
||||
<rect width="312" height="4" fill="#F9613B"/>
|
||||
<rect x="308" width="4" height="221" fill="#F9613B"/>
|
||||
<rect x="10" y="10" width="4" height="40" fill="#F9613B"/>
|
||||
<rect x="50" y="10" width="4" height="40" transform="rotate(90 50 10)" fill="#F9613B"/>
|
||||
<rect width="4" height="40" transform="matrix(-1 0 0 1 302 10)" fill="#F9613B"/>
|
||||
<rect width="4" height="40" transform="matrix(4.37114e-08 1 1 -4.37114e-08 262 10)" fill="#F9613B"/>
|
||||
<rect x="302" y="211" width="4" height="40" transform="rotate(180 302 211)" fill="#F9613B"/>
|
||||
<rect x="262" y="211" width="4" height="40" transform="rotate(-90 262 211)" fill="#F9613B"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1006 B |
10
views/main/img/archive/icon--big-edit.svg
Normal file
@@ -0,0 +1,10 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_2438_3978)">
|
||||
<path d="M3 10H14V12H3V10ZM3 8H14V6H3V8ZM3 16H10V14H3V16ZM18.01 12.87L18.72 12.16C19.11 11.77 19.74 11.77 20.13 12.16L20.84 12.87C21.23 13.26 21.23 13.89 20.84 14.28L20.13 14.99L18.01 12.87ZM17.3 13.58L12 18.88V21H14.12L19.42 15.7L17.3 13.58Z" fill="#111111"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_2438_3978">
|
||||
<rect width="24" height="24" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 510 B |
3
views/main/img/archive/icon--download.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M4.00033 13.3337C3.63366 13.3337 3.31988 13.2032 3.05899 12.9423C2.79766 12.681 2.66699 12.367 2.66699 12.0003V10.0003H4.00033V12.0003H12.0003V10.0003H13.3337V12.0003C13.3337 12.367 13.2032 12.681 12.9423 12.9423C12.681 13.2032 12.367 13.3337 12.0003 13.3337H4.00033ZM8.00033 10.667L4.66699 7.33366L5.60033 6.36699L7.33366 8.10033V2.66699H8.66699V8.10033L10.4003 6.36699L11.3337 7.33366L8.00033 10.667Z" fill="#111111"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 533 B |
10
views/main/img/archive/icon--photo.svg
Normal file
@@ -0,0 +1,10 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_2438_3898)">
|
||||
<path d="M12.6667 3.33333V12.6667H3.33333V3.33333H12.6667ZM12.6667 2H3.33333C2.6 2 2 2.6 2 3.33333V12.6667C2 13.4 2.6 14 3.33333 14H12.6667C13.4 14 14 13.4 14 12.6667V3.33333C14 2.6 13.4 2 12.6667 2ZM9.42667 7.90667L7.42667 10.4867L6 8.76L4 11.3333H12L9.42667 7.90667Z" fill="#111111"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_2438_3898">
|
||||
<rect width="16" height="16" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 536 B |
11
views/main/img/archive/icon--photoDelete.svg
Normal file
@@ -0,0 +1,11 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_2438_3902)">
|
||||
<path d="M12.6667 3.33333V10.78L14.0001 12.1133V3.33333C14.0001 2.6 13.4001 2 12.6667 2H3.88672L5.22005 3.33333H12.6667Z" fill="#111111"/>
|
||||
<path d="M1.87342 1.87305L0.926758 2.81305L2.00009 3.88638V12.6664C2.00009 13.3997 2.60009 13.9997 3.33342 13.9997H12.1134L13.1868 15.073L14.1268 14.133L1.87342 1.87305ZM3.33342 12.6664V5.21971L8.04676 9.93305L7.50009 10.6664L6.00009 8.66638L4.00009 11.333H9.44676L10.7801 12.6664H3.33342Z" fill="#111111"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_2438_3902">
|
||||
<rect width="16" height="16" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 696 B |
10
views/main/img/archive/icon-map-111.svg
Normal file
@@ -0,0 +1,10 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_1464_4638)">
|
||||
<path d="M13.6667 2L13.56 2.02L10 3.4L6 2L2.24 3.26667C2.1 3.31333 2 3.43333 2 3.58667V13.6667C2 13.8533 2.14667 14 2.33333 14L2.44 13.98L6 12.6L10 14L13.76 12.7333C13.9 12.6867 14 12.5667 14 12.4133V2.33333C14 2.14667 13.8533 2 13.6667 2ZM10 12.6667L6 11.26V3.33333L10 4.74V12.6667Z" fill="#111111"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_1464_4638">
|
||||
<rect width="16" height="16" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 551 B |
10
views/main/img/archive/icon-map-fff.svg
Normal file
@@ -0,0 +1,10 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_767_10324)">
|
||||
<path d="M13.6667 2L13.56 2.02L10 3.4L6 2L2.24 3.26667C2.1 3.31333 2 3.43333 2 3.58667V13.6667C2 13.8533 2.14667 14 2.33333 14L2.44 13.98L6 12.6L10 14L13.76 12.7333C13.9 12.6867 14 12.5667 14 12.4133V2.33333C14 2.14667 13.8533 2 13.6667 2ZM10 12.6667L6 11.26V3.33333L10 4.74V12.6667Z" fill="white"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_767_10324">
|
||||
<rect width="16" height="16" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 549 B |
3
views/main/img/archive/icon__arrow-up--777.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M7.99951 2L12.5 6L11 7.5L8.99951 5.50769L8.99951 14L6.99951 14L6.99951 5.50769L5 7.5L3.5 6L7.99951 2Z" fill="#777777"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 232 B |
10
views/main/img/archive/icon__download--111.svg
Normal file
@@ -0,0 +1,10 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_4743_10088)">
|
||||
<path d="M12.0003 10.0003V12.0003H4.00033V10.0003H2.66699V12.0003C2.66699 12.7337 3.26699 13.3337 4.00033 13.3337H12.0003C12.7337 13.3337 13.3337 12.7337 13.3337 12.0003V10.0003H12.0003ZM11.3337 7.33366L10.3937 6.39366L8.66699 8.11366V2.66699H7.33366V8.11366L5.60699 6.39366L4.66699 7.33366L8.00033 10.667L11.3337 7.33366Z" fill="#111111"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_4743_10088">
|
||||
<rect width="16" height="16" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 592 B |
10
views/main/img/archive/icon__grid-view--111.svg
Normal file
@@ -0,0 +1,10 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_4877_949)">
|
||||
<path d="M2 2V7.33333H7.33333V2H2ZM6 6H3.33333V3.33333H6V6ZM2 8.66667V14H7.33333V8.66667H2ZM6 12.6667H3.33333V10H6V12.6667ZM8.66667 2V7.33333H14V2H8.66667ZM12.6667 6H10V3.33333H12.6667V6ZM8.66667 8.66667V14H14V8.66667H8.66667ZM12.6667 12.6667H10V10H12.6667V12.6667Z" fill="#111111"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_4877_949">
|
||||
<rect width="16" height="16" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 531 B |
10
views/main/img/archive/icon__grid-view--fff.svg
Normal file
@@ -0,0 +1,10 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_4877_950)">
|
||||
<path d="M2 2V7.33333H7.33333V2H2ZM6 6H3.33333V3.33333H6V6ZM2 8.66667V14H7.33333V8.66667H2ZM6 12.6667H3.33333V10H6V12.6667ZM8.66667 2V7.33333H14V2H8.66667ZM12.6667 6H10V3.33333H12.6667V6ZM8.66667 8.66667V14H14V8.66667H8.66667ZM12.6667 12.6667H10V10H12.6667V12.6667Z" fill="white"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_4877_950">
|
||||
<rect width="16" height="16" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 529 B |
10
views/main/img/archive/icon__list-memo.svg
Normal file
@@ -0,0 +1,10 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_7373_7159)">
|
||||
<path d="M5.33335 10.6663H10.6667V11.9997H5.33335V10.6663ZM5.33335 7.99967H10.6667V9.33301H5.33335V7.99967ZM9.33335 1.33301H4.00002C3.26669 1.33301 2.66669 1.93301 2.66669 2.66634V13.333C2.66669 14.0663 3.26002 14.6663 3.99335 14.6663H12C12.7334 14.6663 13.3334 14.0663 13.3334 13.333V5.33301L9.33335 1.33301ZM12 13.333H4.00002V2.66634H8.66669V5.99967H12V13.333Z" fill="#AAAAAA"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_7373_7159">
|
||||
<rect width="16" height="16" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 630 B |
3
views/main/img/archive/icon__list-view--111.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M2 12H14V10.6667H2V12ZM2 8.66667H14V7.33333H2V8.66667ZM2 4V5.33333H14V4H2Z" fill="#111111"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 205 B |
3
views/main/img/archive/icon__list-view--fff.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M2 12H14V10.6667H2V12ZM2 8.66667H14V7.33333H2V8.66667ZM2 4V5.33333H14V4H2Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 203 B |
3
views/main/img/archive/icon__map-view--111.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M8 14C7.17 14 6.39 13.8425 5.66 13.5275C4.93 13.2125 4.295 12.785 3.755 12.245C3.215 11.705 2.7875 11.07 2.4725 10.34C2.1575 9.61 2 8.83 2 8C2 7.17 2.1575 6.39 2.4725 5.66C2.7875 4.93 3.215 4.295 3.755 3.755C4.295 3.215 4.93 2.7875 5.66 2.4725C6.39 2.1575 7.17 2 8 2C8.83 2 9.61 2.1575 10.34 2.4725C11.07 2.7875 11.705 3.215 12.245 3.755C12.785 4.295 13.2125 4.93 13.5275 5.66C13.8425 6.39 14 7.17 14 8C14 8.83 13.8425 9.61 13.5275 10.34C13.2125 11.07 12.785 11.705 12.245 12.245C11.705 12.785 11.07 13.2125 10.34 13.5275C9.61 13.8425 8.83 14 8 14ZM8 12.8C9.34 12.8 10.475 12.335 11.405 11.405C12.335 10.475 12.8 9.34 12.8 8C12.8 7.93 12.7975 7.8575 12.7925 7.7825C12.7875 7.7075 12.785 7.645 12.785 7.595C12.735 7.885 12.6 8.125 12.38 8.315C12.16 8.505 11.9 8.6 11.6 8.6H10.4C10.07 8.6 9.7875 8.4825 9.5525 8.2475C9.3175 8.0125 9.2 7.73 9.2 7.4V6.8H6.8V5.6C6.8 5.27 6.9175 4.9875 7.1525 4.7525C7.3875 4.5175 7.67 4.4 8 4.4H8.6C8.6 4.17 8.6625 3.9675 8.7875 3.7925C8.9125 3.6175 9.065 3.475 9.245 3.365C9.045 3.315 8.8425 3.275 8.6375 3.245C8.4325 3.215 8.22 3.2 8 3.2C6.66 3.2 5.525 3.665 4.595 4.595C3.665 5.525 3.2 6.66 3.2 8H6.2C6.86 8 7.425 8.235 7.895 8.705C8.365 9.175 8.6 9.74 8.6 10.4V11H6.8V12.65C7 12.7 7.1975 12.7375 7.3925 12.7625C7.5875 12.7875 7.79 12.8 8 12.8Z" fill="#111111"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
3
views/main/img/archive/icon__map-view--fff.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M8 14C7.17 14 6.39 13.8425 5.66 13.5275C4.93 13.2125 4.295 12.785 3.755 12.245C3.215 11.705 2.7875 11.07 2.4725 10.34C2.1575 9.61 2 8.83 2 8C2 7.17 2.1575 6.39 2.4725 5.66C2.7875 4.93 3.215 4.295 3.755 3.755C4.295 3.215 4.93 2.7875 5.66 2.4725C6.39 2.1575 7.17 2 8 2C8.83 2 9.61 2.1575 10.34 2.4725C11.07 2.7875 11.705 3.215 12.245 3.755C12.785 4.295 13.2125 4.93 13.5275 5.66C13.8425 6.39 14 7.17 14 8C14 8.83 13.8425 9.61 13.5275 10.34C13.2125 11.07 12.785 11.705 12.245 12.245C11.705 12.785 11.07 13.2125 10.34 13.5275C9.61 13.8425 8.83 14 8 14ZM8 12.8C9.34 12.8 10.475 12.335 11.405 11.405C12.335 10.475 12.8 9.34 12.8 8C12.8 7.93 12.7975 7.8575 12.7925 7.7825C12.7875 7.7075 12.785 7.645 12.785 7.595C12.735 7.885 12.6 8.125 12.38 8.315C12.16 8.505 11.9 8.6 11.6 8.6H10.4C10.07 8.6 9.7875 8.4825 9.5525 8.2475C9.3175 8.0125 9.2 7.73 9.2 7.4V6.8H6.8V5.6C6.8 5.27 6.9175 4.9875 7.1525 4.7525C7.3875 4.5175 7.67 4.4 8 4.4H8.6C8.6 4.17 8.6625 3.9675 8.7875 3.7925C8.9125 3.6175 9.065 3.475 9.245 3.365C9.045 3.315 8.8425 3.275 8.6375 3.245C8.4325 3.215 8.22 3.2 8 3.2C6.66 3.2 5.525 3.665 4.595 4.595C3.665 5.525 3.2 6.66 3.2 8H6.2C6.86 8 7.425 8.235 7.895 8.705C8.365 9.175 8.6 9.74 8.6 10.4V11H6.8V12.65C7 12.7 7.1975 12.7375 7.3925 12.7625C7.5875 12.7875 7.79 12.8 8 12.8Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
BIN
views/main/img/archive/image__preview-help_page.jpg
Normal file
|
After Width: | Height: | Size: 598 KiB |
BIN
views/main/img/archive/img--designDocument-center.jpg
Normal file
|
After Width: | Height: | Size: 375 KiB |
10
views/main/img/archive/logout_111.svg
Normal file
@@ -0,0 +1,10 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_2290_805)">
|
||||
<path d="M11.3333 5.33333L10.3933 6.27333L11.4467 7.33333H6V8.66667H11.4467L10.3933 9.72L11.3333 10.6667L14 8L11.3333 5.33333ZM3.33333 3.33333H8V2H3.33333C2.6 2 2 2.6 2 3.33333V12.6667C2 13.4 2.6 14 3.33333 14H8V12.6667H3.33333V3.33333Z" fill="#111111"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_2290_805">
|
||||
<rect width="16" height="16" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 502 B |
10
views/main/img/archive/logout_fff.svg
Normal file
@@ -0,0 +1,10 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_2290_805)">
|
||||
<path d="M11.3333 5.33333L10.3933 6.27333L11.4467 7.33333H6V8.66667H11.4467L10.3933 9.72L11.3333 10.6667L14 8L11.3333 5.33333ZM3.33333 3.33333H8V2H3.33333C2.6 2 2 2.6 2 3.33333V12.6667C2 13.4 2.6 14 3.33333 14H8V12.6667H3.33333V3.33333Z" fill="#ffffff"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_2290_805">
|
||||
<rect width="16" height="16" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 502 B |
5
views/main/img/archive/message_000.svg
Normal file
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?><!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
||||
<svg width="800px" height="800px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect x="4" y="6" width="16" height="12" rx="2" stroke="#000000" stroke-width="2"/>
|
||||
<path d="M4 9L11.1056 12.5528C11.6686 12.8343 12.3314 12.8343 12.8944 12.5528L20 9" stroke="#000000" stroke-width="2"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 431 B |
5
views/main/img/archive/message_fff.svg
Normal file
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?><!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
||||
<svg width="800px" height="800px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect x="4" y="6" width="16" height="12" rx="2" stroke="#ffffff" stroke-width="2"/>
|
||||
<path d="M4 9L11.1056 12.5528C11.6686 12.8343 12.3314 12.8343 12.8944 12.5528L20 9" stroke="#ffffff" stroke-width="2"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 431 B |
7
views/main/img/archive/play.svg
Normal file
@@ -0,0 +1,7 @@
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
|
||||
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Transformed by: SVG Repo Mixer Tools -->
|
||||
<svg fill="#ffffff" width="800px" height="800px" viewBox="-288 -288 2496.00 2496.00" xmlns="http://www.w3.org/2000/svg" stroke="#ffffff">
|
||||
|
||||
<g id="SVGRepo_bgCarrier" stroke-width="0"/>
|
||||
|
||||
|
After Width: | Height: | Size: 662 B |
7
views/main/img/archive/play2.svg
Normal file
@@ -0,0 +1,7 @@
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
|
||||
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Transformed by: SVG Repo Mixer Tools -->
|
||||
<svg fill="#ffffff" width="800px" height="800px" viewBox="-288 -288 2496.00 2496.00" xmlns="http://www.w3.org/2000/svg" stroke="#ffffff">
|
||||
|
||||
<g id="SVGRepo_bgCarrier" stroke-width="0"/>
|
||||
|
||||
|
After Width: | Height: | Size: 664 B |