Skip to content

Instantly share code, notes, and snippets.

@berteh
Last active January 13, 2023 08:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save berteh/f1ae5468e683316910500ffbbe012aa1 to your computer and use it in GitHub Desktop.
Save berteh/f1ae5468e683316910500ffbbe012aa1 to your computer and use it in GitHub Desktop.
organice (OrgMode online editor): change default font and make 'edit' icons layout more compact. Install Tampermonkey extension in your browser, then
// ==UserScript==
// @name Organice compact looks
// @namespace https://organice.200ok.ch/
// @version 0.1
// @description Organice: change default font and make edit icons layout more compact
// @author berteh
// @url https://gist.github.com/berteh/
// @match https://organice.200ok.ch/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=organice.200ok.ch
// @license https://creativecommons.org/licenses/by-nc-sa/4.0/
// @grant GM_addStyle
// ==/UserScript==
GM_addStyle (""+
"div.header-list-container, .App:not(.landing-page) .textarea { font-family: Verdana,sans-serif !important; }"+
".header--selected {display: flex; flex-wrap: wrap; }"+
".header--selected .title-line {margin: 0 1ex 0 5px; flex-grow: 8;}"+
".header-action-drawer-container {display: flex; flex-wrap: wrap;}"+
".header-content-container {flex-basis: 100%;}"+
".header-action-drawer__ff-click-catcher-container {margin: 0 0.5ex;}"+
""
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment