vault backup: 2023-05-15 09:42:13
This commit is contained in:
File diff suppressed because one or more lines are too long
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"id": "obsidian-chartsview-plugin",
|
||||
"name": "Charts View",
|
||||
"version": "1.2.3",
|
||||
"minAppVersion": "0.9.12",
|
||||
"description": "Data visualization solution in Obsidian based on Ant Design Charts.",
|
||||
"author": "caronchen",
|
||||
"authorUrl": "https://github.com/caronchen/obsidian-chartsview-plugin",
|
||||
"isDesktopOnly": false,
|
||||
"fundingUrl": "https://paypal.me/caronchenhz"
|
||||
}
|
||||
@@ -0,0 +1,55 @@
|
||||
.chartsview-donation {
|
||||
width: fit-content;
|
||||
margin: 25px auto;
|
||||
text-align: center;
|
||||
position: absolute;
|
||||
left: 200px;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
}
|
||||
|
||||
.chartsview-donation a.paypal {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.chartsview-thumbnail-container.is-selected .chartsview-thumbnail {
|
||||
display: unset;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
right: 0;
|
||||
}
|
||||
|
||||
.chartsview-thumbnail-container .chartsview-thumbnail {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* #### Desktops #### */
|
||||
@media screen and (min-width: 1024px) {
|
||||
.chartsview-thumbnail-container .chartsview-thumbnail img {
|
||||
width: 500px;
|
||||
}
|
||||
}
|
||||
|
||||
/* #### Mobile Phones Portrait or Landscape #### */
|
||||
@media screen and (max-device-width: 640px) {
|
||||
.chartsview-thumbnail-container .chartsview-thumbnail img {
|
||||
width: 300px;
|
||||
}
|
||||
}
|
||||
|
||||
.chartsview-export-button {
|
||||
padding: 5px;
|
||||
position: relative;
|
||||
width: fit-content;
|
||||
display: flex;
|
||||
opacity: 0;
|
||||
transition: opacity 500ms;
|
||||
background-color: var(--interactive-accent);
|
||||
color: var(--text-on-accent);
|
||||
border-radius: 5px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.block-language-chartsview:hover .chartsview-export-button {
|
||||
opacity: 1;
|
||||
}
|
||||
Reference in New Issue
Block a user