dis
parent
778e2e47fb
commit
4b4d5a5fcc
|
|
@ -2,15 +2,15 @@
|
|||
<html lang="ru">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Органайзер RustDesk</title>
|
||||
<title>Органайзер АйТи-Депо</title>
|
||||
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jstree/3.3.12/jstree.min.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script> <!-- Библиотека для Markdown -->
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jstree/3.3.12/themes/default/style.min.css">
|
||||
<style>
|
||||
body { display: flex; font-family: Arial, sans-serif; }
|
||||
#tree-container { width: 30%; padding: 10px; border-right: 1px solid #ccc; }
|
||||
#installs-container { width: 40%; padding: 10px; position: relative; }
|
||||
body { display: flex; font-family: Arial, sans-serif; margin: 0; }
|
||||
#tree-container { width: 20%; padding: 10px; border-right: 1px solid #ccc; }
|
||||
#installs-container { width: 50%; padding: 10px; position: relative; }
|
||||
.install-item { padding: 5px; margin: 2px; border: 1px solid #ddd; cursor: move; }
|
||||
.form-container { margin-bottom: 20px; }
|
||||
.jstree-node { position: relative; }
|
||||
|
|
@ -30,7 +30,7 @@
|
|||
#import-label:hover { background: #0056b3; }
|
||||
.folder-select { margin: 5px 0; }
|
||||
.time-hint { font-size: 12px; color: #666; margin-top: 5px; }
|
||||
#notes-panel { width: 30%; padding: 10px; border-left: 1px solid #ccc; background: #f9f9f9; min-height: 200px; margin-top: 60px; } /* Сужаем и смещаем вниз */
|
||||
#notes-panel { width: 30%; padding: 10px; border-left: 1px solid #ccc; background: #f9f9f9; min-height: 200px; margin-top: 70px; } /* Смещаем ниже и начинаем с уровня заголовка */
|
||||
#notes-content { margin-top: 10px; }
|
||||
#note-modal { display: none; position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); background: white; padding: 20px; border: 1px solid #ccc; box-shadow: 0 0 10px rgba(0,0,0,0.3); z-index: 1000; width: 500px; }
|
||||
#note-modal .markdown-buttons { margin-bottom: 10px; }
|
||||
|
|
@ -38,6 +38,8 @@
|
|||
#note-modal textarea { width: 100%; height: 200px; margin-bottom: 10px; }
|
||||
#note-modal button { margin-right: 10px; }
|
||||
#modal-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 999; }
|
||||
.header-logo { display: flex; align-items: center; }
|
||||
.header-logo img { height: 50px; margin-right: 10px; } /* Логотип 50x50 пикселей */
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
|
@ -47,7 +49,10 @@
|
|||
<button onclick="addFolder()">Добавить папку</button>
|
||||
</div>
|
||||
<div id="installs-container">
|
||||
<h1>Органайзер RustDesk</h1>
|
||||
<h1 class="header-logo">
|
||||
<img src="/icons/it-depo-logo.png" alt="АйТи-Депо логотип"> <!-- Логотип -->
|
||||
Органайзер АйТи-Депо
|
||||
</h1>
|
||||
<div id="search-container">
|
||||
<input type="text" id="search-input" placeholder="Поиск по ID или имени" onkeyup="filterInstalls()">
|
||||
<div>
|
||||
|
|
|
|||
Loading…
Reference in New Issue