Skip to content

Instantly share code, notes, and snippets.

@thewebsitetherapist
Created February 27, 2019 04:42
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 thewebsitetherapist/72d6d31aa4f5f7f2882c02933028052a to your computer and use it in GitHub Desktop.
Save thewebsitetherapist/72d6d31aa4f5f7f2882c02933028052a to your computer and use it in GitHub Desktop.
Make Accelo at home in a fluid.app - also useful on Chrome
/* I find I can't distinguish bold from regular text in Accelo,
* so this helps emphasise that important difference.
* Especially handy in editing projects.
* I use this in Stylebot in chrome and in user styles in the fluid app.
*/
.mileStoneRow td, .mileStoneRow td input, .jobRow td, .jobRow td input, .milestoneRow td, .milestoneRow td input {
color: #000;
font-weight: bold;
}
.taskRow td, .taskRow td input {
color: #444;
font-weight: lighter;
}
div {
font-weight: lighter;
}
// This sets the username & password fields in my fluid app so I can log in easier.
// It's configured as a UserScript for *.myaccount.accelo.com*
function setLoginInfo() {
var u = document.getElementById('username');
if (u) {
u.value = 'MY_EMAIL@example.com';
}
var p = document.getElementById('password');
if (p) {
p.value = 'MY_PASSWORD';
}
}
window.addEventListener('load', function() {
setLoginInfo();
}, false);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment