View tab-stacks.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* @settings | |
name: Tab stacks | |
id: tab-stacks | |
settings: | |
- | |
id: tab-stacked-pane-width | |
title: Stacked width | |
type: variable-number | |
description: Width of a stacked tab in pixels |
View minimal-dev.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.mod-root .view-header:after { | |
display:flex; | |
align-items:flex-end; | |
content:"\00a0pane\00a0"; | |
font-size:12px; | |
color:gray; | |
font-family:var(--font-monospace); | |
width:100%; | |
max-width:100%; | |
height:100vh; |
View obsidian-web-clipper.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript: Promise.all([import('https://unpkg.com/turndown@6.0.0?module'), import('https://unpkg.com/@tehshrike/readability@0.2.0'), ]).then(async ([{ | |
default: Turndown | |
}, { | |
default: Readability | |
}]) => { | |
/* Optional vault name */ | |
const vault = ""; | |
/* Optional folder name such as "Clippings/" */ |
View minimal-folding.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* TOC | |
Relationship lines in Preview | |
Relationship lines in Edit mode | |
Folding padding adjustment | |
Folding icons in Preview | |
Folding icons in Edit mode | |
*/ |
View clean-google-docs.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.docs-material #docs-header .docs-titlebar-buttons, | |
.docs-material .goog-toolbar-button, | |
.docs-material .goog-toolbar-combo-button, | |
.docs-material .goog-toolbar-menu-button, | |
.docs-navigation-tab-button, | |
#docs-toolbar-wrapper, | |
#docs-editor, | |
#docs-chrome { | |
box-shadow:none; | |
background-color: #fafafa !important; |