|
63 | 63 | <div class="app-menu">
|
64 | 64 | <ul class="accordion-menu">
|
65 | 65 | <li>
|
66 |
| - <a class="new-note-btn" href="#">NUEVA NOTA <i class="material-icons">add_box</i></a> |
| 66 | + <a class="new-note-btn" data-bs-toggle="tooltip" data-bs-placement="top" title="Nueva Nota" href="#">NUEVA NOTA <i class="material-icons">add_box</i></a> |
67 | 67 | </li>
|
68 | 68 | <li class="sidebar-title">
|
69 | 69 | Historial
|
|
78 | 78 | </div>
|
79 | 79 | <div class="note-details">
|
80 | 80 | <div class="note-title">
|
81 |
| - Motor Edege |
| 81 | + Motor Edge |
82 | 82 | </div>
|
83 | 83 | <div class="note-category ideas">
|
84 | 84 | Ideas
|
85 | 85 | </div>
|
86 | 86 | </div>
|
87 |
| - <div class="note-date">20 oct →</div> |
| 87 | + <div class="note-date">20 oct <span>→</span></div> |
88 | 88 | </div>
|
89 | 89 | </a>
|
90 | 90 | </li>
|
|
103 | 103 | Tareas
|
104 | 104 | </div>
|
105 | 105 | </div>
|
106 |
| - <div class="note-date">18 oct →</div> |
| 106 | + <div class="note-date">18 oct <span>→</span></div> |
107 | 107 | </div>
|
108 | 108 | </a>
|
109 | 109 | </li>
|
|
122 | 122 | Tareas
|
123 | 123 | </div>
|
124 | 124 | </div>
|
125 |
| - <div class="note-date">17 oct →</div> |
| 125 | + <div class="note-date">17 oct <span>→</span></div> |
126 | 126 | </div>
|
127 | 127 | </a>
|
128 | 128 | </li>
|
|
140 | 140 | Proyectos
|
141 | 141 | </div>
|
142 | 142 | </div>
|
143 |
| - <div class="note-date">10 oct →</div> |
| 143 | + <div class="note-date">10 oct <span>→</span></div> |
144 | 144 | </div>
|
145 | 145 | </a>
|
146 | 146 | </li>
|
|
159 | 159 | Proyectos
|
160 | 160 | </div>
|
161 | 161 | </div>
|
162 |
| - <div class="note-date">8 oct →</div> |
| 162 | + <div class="note-date">8 oct <span>→</span></div> |
163 | 163 | </div>
|
164 | 164 | </a>
|
165 | 165 | </li>
|
|
178 | 178 | Tareas
|
179 | 179 | </div>
|
180 | 180 | </div>
|
181 |
| - <div class="note-date">30 sept →</div> |
| 181 | + <div class="note-date">30 sept <span>→</span></div> |
182 | 182 | </div>
|
183 | 183 | </a>
|
184 | 184 | </li>
|
|
197 | 197 | Proyectos
|
198 | 198 | </div>
|
199 | 199 | </div>
|
200 |
| - <div class="note-date">28 sept →</div> |
| 200 | + <div class="note-date">28 sept <span>→</span></div> |
201 | 201 | </div>
|
202 | 202 | </a>
|
203 | 203 | </li>
|
|
216 | 216 | Tareas
|
217 | 217 | </div>
|
218 | 218 | </div>
|
219 |
| - <div class="note-date">27 sept →</div> |
| 219 | + <div class="note-date">27 sept <span>→</span></div> |
220 | 220 | </div>
|
221 | 221 | </a>
|
222 | 222 | </li>
|
223 | 223 | </ul>
|
224 | 224 | <hr>
|
225 | 225 | <li class="sidebar-footer">
|
226 |
| - <a id="collaborate-button" class="new-colaborate" href="#">COLABORAR <i |
| 226 | + <a id="collaborate-button" class="new-colaborate" data-bs-toggle="tooltip" data-bs-placement="top" title="Colaborar" href="#">COLABORAR <i |
227 | 227 | class="material-icons">group</i></a>
|
228 | 228 | </li>
|
229 | 229 | </ul>
|
230 | 230 | </div>
|
231 | 231 | </div>
|
| 232 | + |
| 233 | + <!-- Template de las notas creadas en el historial --> |
| 234 | + |
| 235 | + <template id="note-template"> |
| 236 | + <li> |
| 237 | + <a href="#"> |
| 238 | + <div class="note-item"> |
| 239 | + <div class="note-icon"> |
| 240 | + <!-- Aqui se debe de poner la imagen de la nota --> |
| 241 | + </div> |
| 242 | + <div class="note-details"> |
| 243 | + <div class="note-title"> |
| 244 | + <!-- Aqui se debe de poner el nombre de la nota --> |
| 245 | + </div> |
| 246 | + <div class="note-category ideas"> |
| 247 | + <!-- Aqui se debe de poner la categoria de la nota --> |
| 248 | + </div> |
| 249 | + </div> |
| 250 | + <div class="note-date"> |
| 251 | + <!-- Aqui se debe de poner la fecha de la nota --> |
| 252 | + <span>→</span> |
| 253 | + </div> |
| 254 | + </div> |
| 255 | + </a> |
| 256 | + </li> |
| 257 | + </template> |
| 258 | + |
232 | 259 | <div class="app-container">
|
233 | 260 | <div class="app-header">
|
234 | 261 | <nav class="navbar navbar-light navbar-expand-lg">
|
@@ -305,53 +332,53 @@ <h6 class="dropdown-header">Perfil</h6>
|
305 | 332 | <div class="row">
|
306 | 333 | <div class="col">
|
307 | 334 | <div class="top-functions d-flex justify-content-between p-3 mx-3">
|
308 |
| - <button onclick="applyFormat('bold')"> |
| 335 | + <button onclick="applyFormat('bold')" data-bs-toggle="tooltip" data-bs-placement="top" title="Negrita"> |
309 | 336 | <i class="material-icons">
|
310 | 337 | format_bold
|
311 | 338 | </i>
|
312 | 339 | </button>
|
313 |
| - <button onclick="applyFormat('italic')"> |
| 340 | + <button onclick="applyFormat('italic')" data-bs-toggle="tooltip" data-bs-placement="top" title="Cursiva"> |
314 | 341 | <i class="material-icons">
|
315 | 342 | format_italic
|
316 | 343 | </i>
|
317 | 344 | </button>
|
318 |
| - <button onclick="applyFormat('underline')"> |
| 345 | + <button onclick="applyFormat('underline')" data-bs-toggle="tooltip" data-bs-placement="top" title="Subrayado"> |
319 | 346 | <i class="material-icons">
|
320 | 347 | format_underlined
|
321 | 348 | </i>
|
322 | 349 | </button>
|
323 |
| - <button onclick="applyFormat('strikethrough')"> |
| 350 | + <button onclick="applyFormat('strikethrough')" data-bs-toggle="tooltip" data-bs-placement="top" title="Tachado"> |
324 | 351 | <i class="material-icons">
|
325 | 352 | format_strikethrough
|
326 | 353 | </i>
|
327 | 354 | </button>
|
328 |
| - <button onclick="toggleColorPicker()" id="colorPickerButton"> |
| 355 | + <button onclick="toggleColorPicker()" id="colorPickerButton" data-bs-toggle="tooltip" data-bs-placement="top" title="Cambiar color"> |
329 | 356 | <i class="material-icons">
|
330 | 357 | title
|
331 | 358 | </i>
|
332 | 359 | <div class="color-indicator" id="colorIndicator"></div>
|
333 | 360 | </button>
|
334 |
| - <button onclick="applyAlign('justifyLeft')"> |
| 361 | + <button onclick="applyAlign('justifyLeft')" data-bs-toggle="tooltip" data-bs-placement="top" title="Alinear a izquierda"> |
335 | 362 | <i class="material-icons">
|
336 | 363 | format_align_left
|
337 | 364 | </i>
|
338 | 365 | </button>
|
339 |
| - <button onclick="applyAlign('justifyCenter')"> |
| 366 | + <button onclick="applyAlign('justifyCenter')" data-bs-toggle="tooltip" data-bs-placement="top" title="Alinear al centro"> |
340 | 367 | <i class="material-icons">
|
341 | 368 | format_align_center
|
342 | 369 | </i>
|
343 | 370 | </button>
|
344 |
| - <button onclick="applyAlign('justifyRight')"> |
| 371 | + <button onclick="applyAlign('justifyRight')" data-bs-toggle="tooltip" data-bs-placement="top" title="Alinear a derecha"> |
345 | 372 | <i class="material-icons">
|
346 | 373 | format_align_right
|
347 | 374 | </i>
|
348 | 375 | </button>
|
349 |
| - <button onclick="applyAlign('justifyFull')"> |
| 376 | + <button onclick="applyAlign('justifyFull')" data-bs-toggle="tooltip" data-bs-placement="top" title="Justificar"> |
350 | 377 | <i class="material-icons">
|
351 | 378 | format_align_justify
|
352 | 379 | </i>
|
353 | 380 | </button>
|
354 |
| - <button onclick="addLink()"> |
| 381 | + <button onclick="addLink()" data-bs-toggle="tooltip" data-bs-placement="top" title="Agregar hipervínculo"> |
355 | 382 | <i class="material-icons">
|
356 | 383 | add_link
|
357 | 384 | </i>
|
@@ -455,24 +482,24 @@ <h2 class="text-lg font-semibold">Compartir Peer ID</h2>
|
455 | 482 | <div class="col">
|
456 | 483 | <div class="bottom-functions d-flex justify-content-between p-3 mx-3">
|
457 | 484 | <label for="image-upload" id="image-upload-label">
|
458 |
| - <button onclick="addImage()"> |
| 485 | + <button onclick="addImage()" data-bs-toggle="tooltip" data-bs-placement="top" title="Agregar imagen"> |
459 | 486 | <i class="material-icons">
|
460 | 487 | image
|
461 | 488 | </i>
|
462 | 489 | </button>
|
463 | 490 | </label>
|
464 |
| - <button id="savePDF"> |
| 491 | + <button id="savePDF" data-bs-toggle="tooltip" data-bs-placement="top" title="Guardar PDF"> |
465 | 492 | <i class="material-icons">
|
466 | 493 | picture_as_pdf
|
467 | 494 | </i>
|
468 | 495 | </button>
|
469 |
| - <button id="saveWord"> |
| 496 | + <button id="saveWord" data-bs-toggle="tooltip" data-bs-placement="top" title="Guardar Word"> |
470 | 497 | <i class="material-icons">
|
471 | 498 | description
|
472 | 499 | </i>
|
473 | 500 | </button>
|
474 | 501 | <input type="file" id="fileInput" accept=".txt,.docx" class="hidden" />
|
475 |
| - <button id="importButton"> |
| 502 | + <button id="importButton" data-bs-toggle="tooltip" data-bs-placement="top" title="Importar"> |
476 | 503 | <i class="material-icons">
|
477 | 504 | upload_file
|
478 | 505 | </i>
|
|
0 commit comments