Compare commits

..

No commits in common. "3526aaf70ceb91f60319651af1fd4dcdf455411b" and "0ec307eab6a0c73569ecab3ec0ffe69fe29573b1" have entirely different histories.

7 changed files with 10 additions and 17 deletions

View file

@ -1,7 +1,7 @@
{
"id": "obsidian-custom-frames",
"name": "Custom Frames",
"version": "2.4.7",
"version": "2.4.6",
"minAppVersion": "1.2.0",
"description": "A plugin that turns web apps into panes using iframes with custom styling. Also comes with presets for Google Keep, Todoist and more.",
"author": "Ellpeck",

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{
"name": "obsidian-custom-frames",
"version": "2.4.7",
"version": "2.4.6",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "obsidian-custom-frames",
"version": "2.4.7",
"version": "2.4.6",
"license": "MIT",
"devDependencies": {
"@types/node": "^16.11.6",

View file

@ -1,6 +1,6 @@
{
"name": "obsidian-custom-frames",
"version": "2.4.7",
"version": "2.4.6",
"description": "An Obsidian plugin that turns web apps into panes using iframes with custom styling. Also comes with presets for Google Keep, Todoist and more.",
"main": "main.js",
"scripts": {

View file

@ -197,8 +197,7 @@ export class CustomFramesSettingTab extends PluginSettingTab {
openInCenter: false,
zoomLevel: 1,
forceIframe: false,
customCss: "",
customJs: ""
customCss: ""
});
} else {
this.plugin.settings.frames.push(presets[option]);

View file

@ -59,15 +59,10 @@ div[style*="min-width: 238px"] span[role*="heading"] {
openInCenter: false,
zoomLevel: 1,
forceIframe: false,
customCss: `/* hide the menu bar, the "Keep" text and the Google Apps button */
customCss: `/* hide the menu bar and the "Keep" text */
html > body > div:nth-child(2) > div:nth-child(2) > div:first-child,
html > body > div:first-child > header:first-child > div > div:first-child > div > div:first-child > a:first-child > span,
html > body > div:first-child > header:first-child > div:nth-child(2) > div:first-child > div:first-child,
html > body > div:first-child > header:first-child > div:nth-child(2) > div:nth-child(3) > div:first-child > div:first-child > div:first-child {
html > body > div:first-child > header:first-child > div > div:first-child > div > div:first-child > a:first-child > span {
display: none !important;
}
html > body > div:first-child > header:first-child > div > div:first-child > div > div:first-child > a:first-child {
cursor: default;
}`,
customJs: ""
},

View file

@ -20,7 +20,7 @@
"openInCenter": false,
"zoomLevel": 1,
"forceIframe": false,
"customCss": "/* hide the menu bar, the \"Keep\" text and the Google Apps button */\nhtml > body > div:nth-child(2) > div:nth-child(2) > div:first-child, \nhtml > body > div:first-child > header:first-child > div > div:first-child > div > div:first-child > a:first-child > span, \nhtml > body > div:first-child > header:first-child > div:nth-child(2) > div:first-child > div:first-child, \nhtml > body > div:first-child > header:first-child > div:nth-child(2) > div:nth-child(3) > div:first-child > div:first-child > div:first-child { \n\tdisplay: none !important; \n}\nhtml > body > div:first-child > header:first-child > div > div:first-child > div > div:first-child > a:first-child {\n\tcursor: default; \n}"
"customCss": "/* hide the menu bar and the \"Keep\" text */\nhtml > body > div:nth-child(2) > div:nth-child(2) > div:first-child, \nhtml > body > div:first-child > header:first-child > div > div:first-child > div > div:first-child > a:first-child > span { \n\tdisplay: none !important; \n}"
},
{
"url": "https://calendar.google.com/calendar",
@ -46,4 +46,4 @@
}
],
"padding": 5
}
}

View file

@ -12,6 +12,5 @@
"2.4.3": "0.15.5",
"2.4.4": "0.16.0",
"2.4.5": "1.1.0",
"2.4.6": "1.2.0",
"2.4.7": "1.2.0"
"2.4.6": "1.2.0"
}