CSS common for a few scripts that put an autofill button next to a date
Version vom
Dieses Skript sollte nicht direkt installiert werden. Es handelt sich hier um eine Bibliothek für andere Skripte, welche über folgenden Befehl in den Metadaten eines Skriptes eingebunden wird // @require https://update.greasyfork.org/scripts/554804/1689525/Nate%27s%20Day%20Button.js
// ==UserScript==
// @name Nate's Day Button
// @namespace https://github.com/nate-kean/
// @version 2025.11.4
// @description CSS common for a few scripts that put an autofill button next to a date
// @author Nate Kean
// @match https://jamesriver.fellowshiponego.com/members/edit/*
// @match https://jamesriver.fellowshiponego.com/members/add*
// @icon https://www.google.com/s2/favicons?sz=64&domain=fellowshiponego.com
// @grant none
// ==/UserScript==
(function() {
document.head.insertAdjacentHTML("beforeend", `
<style id="nates-day-button-css">
.nates-day-button {
font-weight: 600;
border: none;
font-size: 13px;
padding: 0;
}
</style>
`);
})();