vault backup: 17. 09. 2024 21:06:25

This commit is contained in:
Limit6
2024-09-17 21:06:25 +02:00
parent 8263fdfb0e
commit 230102236a
93 changed files with 167331 additions and 8 deletions
+45
View File
@@ -0,0 +1,45 @@
{
"settings": {
"migrated": 4,
"iconPacksPath": ".obsidian/icons",
"fontSize": 16,
"emojiStyle": "none",
"iconColor": null,
"recentlyUsedIcons": [
"LiTestTube2",
"LiClipboard",
"LiAtom",
"LiPresentation",
"LiPencil"
],
"recentlyUsedIconsSize": 5,
"rules": [],
"extraMargin": {
"top": 0,
"right": 4,
"bottom": 0,
"left": 0
},
"iconInTabsEnabled": false,
"iconInTitleEnabled": false,
"iconInFrontmatterEnabled": false,
"iconsBackgroundCheckEnabled": false,
"iconsInNotesEnabled": true,
"iconIdentifier": ":"
},
"Osobní/Movies Series.md": "LiSofa",
"Osobní/Rubik algorythms.md": "LiGrid3x3",
"10 Škola/10.1 Čeština": "FiBookOpen",
"10 Škola/10.2 Angličtina": "LiLanguages",
"10 Škola/10.3 Elektrotechnika": "LiActivitySquare",
"10 Škola/10.4 Programování": "LiCode2",
"10 Škola/10.5 Kyberbezpečnost": "LiLaptop",
"10 Škola/10.6 Dějepis": "FiClock",
"10 Škola/10.7 Hardware": "LiKeyboard",
"10 Škola/10.8 Sítě": "LiNetwork",
"10 Škola/10.9 Technické kreslení": "LiPencil",
"10 Škola/10.10 Prezentační dovednosti": "LiPresentation",
"10 Škola/10.11 Fyzika": "LiAtom",
"10 Škola/10.12 Chemie": "LiTestTube2",
"10 Škola/10.0 Assets": "LiClipboard"
}
File diff suppressed because one or more lines are too long
+10
View File
@@ -0,0 +1,10 @@
{
"id": "obsidian-icon-folder",
"name": "Iconize",
"version": "2.10.1",
"minAppVersion": "0.9.12",
"description": "Add icons to anything you desire in Obsidian, including files, folders, and text.",
"author": "Florian Woelki",
"authorUrl": "https://florianwoelki.com/",
"isDesktopOnly": false
}
+110
View File
@@ -0,0 +1,110 @@
.iconize-title-icon {
max-width: var(--max-width);
width: var(--line-width);
margin-inline: var(--content-margin) !important;
}
.iconize-icon {
border: 1px solid transparent;
margin: 0px 4px 0px 0px;
display: flex;
align-self: center;
margin: auto 0;
}
.nav-folder-title,
.nav-file-title {
align-items: center;
}
.iconize-setting input[type='color'] {
margin: 0 6px;
}
.iconize-modal.prompt-results {
margin: 0;
overflow-y: auto;
display: grid;
grid-template-columns: repeat(5, minmax(0, 1fr));
}
.prompt .iconize-subheadline {
margin-top: 12px;
font-size: 12px;
color: gray;
grid-column-start: 1;
grid-column-end: 6;
}
@media (max-width: 640px) {
.iconize-modal.prompt-results {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
.prompt .iconize-subheadline {
grid-column-end: 4;
}
}
.iconize-modal.prompt-results .suggestion-item {
cursor: pointer;
white-space: pre-wrap;
display: flex;
justify-content: flex-end;
align-items: center;
flex-direction: column-reverse;
text-align: center;
font-size: 13px;
color: var(--text-muted);
padding: 16px 8px;
line-break: auto;
word-break: break-word;
line-height: 1.3;
}
.iconize-modal.prompt-results
.suggestion-item.suggestion-item__center {
justify-content: center;
}
.iconize-icon-preview {
font-size: 22px;
}
.iconize-icon-preview img {
width: 16px;
height: 16px;
}
.iconize-icon-preview svg {
width: 24px;
height: 24px;
color: currentColor;
margin-bottom: 4px;
}
.iconize-dragover {
position: relative;
}
.iconize-dragover-el {
position: absolute;
width: 100%;
height: 100%;
color: var(--text-normal);
background-color: var(--background-secondary-alt);
display: flex;
align-items: center;
justify-content: center;
}
/* Custom rule modal. */
.iconize-custom-modal .modal-content {
display: flex;
align-items: center;
justify-content: center;
}
.iconize-custom-modal .modal-content input {
width: 100%;
margin-right: 0.5rem;
}