Skip to content

Commit

Permalink
v0.2.15
Browse files Browse the repository at this point in the history
  • Loading branch information
juestchaos committed Dec 28, 2022
1 parent 12ba88e commit 16000fc
Show file tree
Hide file tree
Showing 26 changed files with 1,557 additions and 955 deletions.
8 changes: 4 additions & 4 deletions .obsidian/community-plugins.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
"obsidian-booknote-plugin",
"buttons",
"card-board",
"obsidian-colorful-tag",
"obsidian-custom-frames",
"obsidian-diagrams-net",
"dbfolder",
Expand All @@ -47,15 +46,16 @@
"obsidian-tasks-plugin",
"obsidian-task-progress-bar",
"tag-wrangler",
"obsidian-table-generator",
"ob-table-enhancer",
"obsidian-style-settings",
"obsidian-sortable",
"pane-relief",
"obsidian-pandoc",
"ProxyGithub",
"another-web-browser",
"editing-toolbar",
"dataview",
"surfing"
"surfing",
"music-code-blocks",
"obsidian-colorful-tag",
"obsidian-math-plus"
]
10 changes: 5 additions & 5 deletions .obsidian/plugins/chronology/main.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .obsidian/plugins/chronology/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "chronology",
"name": "Chronology",
"version": "1.0.2",
"version": "1.1.0",
"minAppVersion": "0.15.0",
"description": "Provides a calendar and a timeline of the notes creation and modification",
"author": "Gabriele Cannata",
Expand Down
24 changes: 22 additions & 2 deletions .obsidian/plugins/chronology/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@ If your plugin does not need CSS, delete this file.
}


.chronology-cell-other-months {
color: var(--text-faint);
.chronology-other-month {
color: var(--text-muted);
}


Expand Down Expand Up @@ -194,6 +194,26 @@ If your plugin does not need CSS, delete this file.
display: block;
}


.chronology-noteslist-container {
margin-top: 10px;
margin-bottom: 10px;
height: 100%;
width: 100%;

overflow-y: auto;
overflow-x: hidden;
}
.chronology-noteslist-container .chronology-noteslist-wrapper {
display: flex;
flex-direction: column;

}

.chronology-noteslist-container .chronology-noteslist-wrapper .chrono-temp-note {
margin-top: 3px;
}

.chrono-temp-note:hover {
background-color: var(--background-secondary-alt);
color: var(--text-normal);
Expand Down
22 changes: 11 additions & 11 deletions .obsidian/plugins/dbfolder/main.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .obsidian/plugins/dbfolder/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "dbfolder",
"name": "DB Folder",
"version": "3.1.0",
"version": "3.1.2",
"minAppVersion": "1.1.1",
"description": "Folder with the capability to store and retrieve data from a folder like database",
"author": "RafaelGB",
Expand Down
12 changes: 11 additions & 1 deletion .obsidian/plugins/dbfolder/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
******************/
.database-plugin__container {
--dbfolder-line-height: 1rem;
--dbfolder-font-size: 16px;
}
/*****************
* Base
Expand Down Expand Up @@ -126,11 +127,14 @@ div.database-plugin__td.data-input:hover {
text-align: -webkit-center;
vertical-align: middle;
line-height: var(--dbfolder-line-height);
font-size: var(--dbfolder-font-size);
}

.database-plugin__td.data-input p {
margin: 0;
font-size: var(--dbfolder-font-size);
}

/** children of data-input fills parent div*/
.data-input > * {
border: none;
Expand Down Expand Up @@ -525,7 +529,7 @@ div.database-plugin__td.data-input:hover {
width: fit-content;
height: 40px;
list-style: none;
bottom: 1em;
bottom: 1.15em;
position: absolute;
right: 0;
margin: 0;
Expand Down Expand Up @@ -858,6 +862,12 @@ div.database-plugin__td.data-input:hover {
.database-plugin__container div.dataview-error-box {
display: none;
}

.database-plugin__textarea-setting {
min-width: 350px;
min-height: 80px;
margin: 10px;
}
/************************************************************
* EXTERNAL APIs STYLES
************************************************************/
Expand Down
Loading

0 comments on commit 16000fc

Please sign in to comment.