Skip to content

Commit

Permalink
v0.2.14
Browse files Browse the repository at this point in the history
  • Loading branch information
juestchaos committed Dec 23, 2022
1 parent 3fe4ae0 commit 12ba88e
Show file tree
Hide file tree
Showing 62 changed files with 73,185 additions and 8,008 deletions.
7 changes: 5 additions & 2 deletions .obsidian/appearance.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"baseFontSize": 19,
"baseFontSize": 18,
"theme": "obsidian",
"cssTheme": "Minimal",
"translucency": false,
Expand All @@ -19,7 +19,10 @@
"masonry",
"【图标】External Link Icons",
"【Linkcard】",
"通过yaml区域控制样式"
"通过yaml区域控制样式",
"headings indent",
"dataviewmasonry",
"通过yaml区域控制标题"
],
"interfaceFontFamily": "Microsoft YaHei",
"textFontFamily": "Microsoft YaHei",
Expand Down
29 changes: 29 additions & 0 deletions .obsidian/core-plugins-migration.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"file-explorer": true,
"global-search": true,
"switcher": true,
"graph": true,
"backlink": true,
"outgoing-link": true,
"tag-pane": true,
"page-preview": true,
"daily-notes": true,
"templates": false,
"note-composer": true,
"command-palette": true,
"slash-command": true,
"editor-status": true,
"starred": true,
"markdown-importer": false,
"zk-prefixer": false,
"random-note": false,
"outline": true,
"word-count": true,
"slides": true,
"audio-recorder": false,
"workspaces": true,
"file-recovery": true,
"publish": false,
"sync": false,
"canvas": true
}
1 change: 1 addition & 0 deletions .obsidian/core-plugins.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"switcher",
"graph",
"backlink",
"canvas",
"outgoing-link",
"tag-pane",
"page-preview",
Expand Down
50 changes: 23 additions & 27 deletions .obsidian/plugins/dbfolder/main.js

Large diffs are not rendered by default.

7 changes: 4 additions & 3 deletions .obsidian/plugins/dbfolder/manifest.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
{
"id": "dbfolder",
"name": "DB Folder",
"version": "3.0.1",
"minAppVersion": "0.16.3",
"version": "3.1.0",
"minAppVersion": "1.1.1",
"description": "Folder with the capability to store and retrieve data from a folder like database",
"author": "RafaelGB",
"authorUrl": "https://github.com/RafaelGB/obsidian-bd-folder",
"isDesktopOnly": false
"isDesktopOnly": false,
"fundingUrl": "https://www.buymeacoffee.com/5tsytn22v9Z"
}
132 changes: 105 additions & 27 deletions .obsidian/plugins/dbfolder/styles.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
/*****************
* VARIABLES
******************/
.database-plugin__container {
--dbfolder-line-height: 1rem;
}
/*****************
* Base
******************/
.database-plugin__html {
Expand Down Expand Up @@ -92,6 +98,13 @@ div.database-plugin__td.data-input:hover {
/*** FOOTER ***/
.database-plugin__tfoot {
display: table-footer-group;
bottom: 0;
position: sticky;
z-index: 5;
}

.database-plugin__footer-group {
background-color: var(--background-primary);
}

.database-plugin__footer {
Expand All @@ -107,16 +120,16 @@ div.database-plugin__td.data-input:hover {
border: none;
padding: 0.5rem;
color: var(--text-normal);
font-size: 1rem;
resize: none;
box-sizing: border-box;
flex: 1 1 auto;
text-align: -webkit-center;
vertical-align: middle;
line-height: var(--dbfolder-line-height);
}

.database-plugin__td.data-input p {
margin: 6px 0px;
margin: 0;
}
/** children of data-input fills parent div*/
.data-input > * {
Expand All @@ -137,16 +150,21 @@ div.database-plugin__td.data-input:hover {
background-color: var(--background-secondary);
}

.database-plugin__td span.is-loaded,
span.database-plugin__calendar,
div.database-plugin__checkbox {
display: flex;
align-items: center;
justify-content: center;
/******************************************************
* Editor cells
******************************************************/
.database-plugin__editor-cell {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}

.database-plugin__checkbox {
place-self: center;
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
}

.database-plugin__checkbox input[type="checkbox"] {
Expand Down Expand Up @@ -407,14 +425,14 @@ div.database-plugin__checkbox {
}

.database-plugin__cell_size_wide .database-plugin__td {
padding: 0.6rem;
padding: 0.3rem;
}

.database-plugin__table .database-plugin__td:first-child,
.database-plugin__table .database-plugin__th:first-child {
position: sticky;
left: 0;
z-index: 1;
z-index: 5;
}

.database-plugin__sticky_first_column .database-plugin__td:nth-child(2),
Expand Down Expand Up @@ -466,7 +484,7 @@ div.database-plugin__checkbox {
position: sticky;
left: 0;
top: 0;
z-index: 2;
z-index: 10;
}

.database-plugin__thead {
Expand Down Expand Up @@ -504,12 +522,12 @@ div.database-plugin__checkbox {
}

.database-plugin__pagination {
width: 100%;
width: fit-content;
height: 40px;
justify-content: flex-end;
list-style: none;
bottom: 1em;
position: sticky;
position: absolute;
right: 0;
margin: 0;
padding: 0 10px 0 0;
display: flex;
Expand All @@ -529,19 +547,23 @@ div.database-plugin__checkbox {
}

.database-plugin__pagination-button:disabled {
opacity: 0.5;
cursor: "not-allowed";
cursor: not-allowed;
background-color: var(--background-secondary);
box-shadow: var(--input-shadow);
color: var(--text-normal);
border: thick double var(--text-accent);
opacity: 1;
}

.database-plugin__padding-left-05 {
padding-left: 0.5rem;
}

.database-plugin__calendar {
align-self: center;
place-self: center;
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
}

.database-plugin__relationship,
Expand Down Expand Up @@ -596,6 +618,7 @@ div.database-plugin__checkbox {
display: flex;
justify-content: flex-end;
text-align: right;
align-items: center;
}

.database-plugin__text-align-center {
Expand All @@ -609,6 +632,7 @@ div.database-plugin__checkbox {
display: flex;
justify-content: flex-start;
text-align: left;
align-items: center;
}

.database-plugin__text-align-justify {
Expand All @@ -618,6 +642,7 @@ div.database-plugin__checkbox {

.database-plugin__text-wrap {
white-space: normal;
flex-wrap: wrap;
}

.database-plugin__text-nowrap {
Expand Down Expand Up @@ -663,22 +688,33 @@ div.database-plugin__checkbox {
.database-plugin__scroll-container {
will-change: transform;
width: 100%;
height: 92%;
height: 98%;
scroll-margin-bottom: 1rem;
}

@media only screen and (max-width: 768px) {
@media only screen and (max-height: 1440px) {
.database-plugin__scroll-container {
will-change: transform;
width: 100%;
height: 85%;
height: 95%;
}
}

.draggable {
top: auto !important;
left: auto !important;
@media only screen and (max-height: 1024px) {
.database-plugin__scroll-container {
will-change: transform;
width: 100%;
height: 92%;
}
}

@media only screen and (max-height: 768px) {
.database-plugin__scroll-container {
will-change: transform;
width: 100%;
height: 85%;
}
}
/*
* Settings styles
*/
Expand Down Expand Up @@ -787,10 +823,52 @@ div.database-plugin__checkbox {
.database-plugin__file-suggestion-subtitle {
color: var(--text-on-accent);
}
/************************************************************
* Headers DnD styles
************************************************************/
.database-plugin__dnd-over {
background-color: var(--background-secondary);
box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px,
rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}

/*************************
* React-datepicker styles
**************************/
.database-plugin__dnd-dragging {
opacity: 0.5;
background-color: var(--background-modifier-box-shadow);
}
/************************************************************
* MODAL STYLES
************************************************************/
.database-plugin__text-modal {
width: 100%;
margin: 10px;
}

.database-plugin__textarea-modal {
width: 100%;
height: 100%;
margin: 10px;
}

.database-plugin__confirm-modal-controls {
display: flex;
justify-content: center;
}

.database-plugin__container div.dataview-error-box {
display: none;
}
/************************************************************
* EXTERNAL APIs STYLES
************************************************************/
.database-plugin__project-view-container {
width: 100%;
height: 100%;
}
/************************************************************
* React-datepicker styles
************************************************************/
/** VARIABLES */
.react-datepicker {
--react-datepicker-navigation-height: 24px;
--react-datepicker-navigation-width: 24px;
Expand Down
8 changes: 4 additions & 4 deletions .obsidian/plugins/editing-toolbar/main.js

Large diffs are not rendered by default.

11 changes: 1 addition & 10 deletions .obsidian/plugins/editing-toolbar/manifest.json
Original file line number Diff line number Diff line change
@@ -1,10 +1 @@
{
"id": "editing-toolbar",
"name": "Editing Toolbar",
"version": "2.2.2",
"minAppVersion": "0.14.0",
"description": "The Obsidian Editing Toolbar is modified from cmenu, which provides more powerful customization settings and has many built-in editing commands to be a MS Word-like toolbar editing experience.",
"author": "Cuman",
"authorUrl": "https://github.com/cumany/obsidian-editing-toolbar",
"isDesktopOnly": true
}
{"id":"editing-toolbar","name":"Editing Toolbar","version":"2.2.3","minAppVersion":"0.14.0","description":"The Obsidian Editing Toolbar is modified from cmenu, which provides more powerful customization settings and has many built-in editing commands to be a MS Word-like toolbar editing experience.","author":"Cuman","authorUrl":"https://github.com/cumany/obsidian-editing-toolbar","isDesktopOnly":true}
Loading

0 comments on commit 12ba88e

Please sign in to comment.