icons fix
parent
51da9cd359
commit
b844621af2
Binary file not shown.
|
After Width: | Height: | Size: 1.6 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 1.4 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 827 B |
|
|
@ -193,21 +193,26 @@
|
|||
transition: background-color 0.2s, transform 0.2s;
|
||||
}
|
||||
.custom-icon:hover {
|
||||
background-color: #e0e0e0; /* Светлый фон при наведении */
|
||||
transform: scale(1.1); /* Небольшое увеличение */
|
||||
background-color: #e0e0e0;
|
||||
transform: scale(1.1);
|
||||
}
|
||||
.custom-icon.dark-theme:hover {
|
||||
background-color: #444; /* Темный фон при наведении на темной теме */
|
||||
background-color: #444;
|
||||
}
|
||||
/* Иконки для светлой темы */
|
||||
.edit-icon { background-image: url('/icons/edit.png'); }
|
||||
.copy-icon { background-image: url('/icons/copy.png'); }
|
||||
.note-icon { background-image: url('/icons/note.png'); }
|
||||
.delete-icon { background-image: url('/icons/delete.png'); }
|
||||
.folder-edit-icon { background-image: url('/icons/edit.png'); }
|
||||
.folder-delete-icon { background-image: url('/icons/delete.png'); }
|
||||
.edit-icon.dark-theme, .copy-icon.dark-theme, .note-icon.dark-theme, .delete-icon.dark-theme, .folder-edit-icon.dark-theme, .folder-delete-icon.dark-theme {
|
||||
filter: brightness(0) invert(1); /* Инверсия для темной темы */
|
||||
}
|
||||
/* Иконки для темной темы */
|
||||
.edit-icon.dark-theme { background-image: url('/icons/edit-dark.png'); }
|
||||
.copy-icon.dark-theme { background-image: url('/icons/copy-dark.png'); }
|
||||
.note-icon.dark-theme { background-image: url('/icons/note-dark.png'); }
|
||||
.delete-icon.dark-theme { background-image: url('/icons/delete-dark.png'); }
|
||||
.folder-edit-icon.dark-theme { background-image: url('/icons/edit-dark.png'); }
|
||||
.folder-delete-icon.dark-theme { background-image: url('/icons/delete-dark.png'); }
|
||||
#notes-content {
|
||||
padding: 10px;
|
||||
min-height: 200px;
|
||||
|
|
|
|||
Loading…
Reference in New Issue